cura.po 335 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445
  1. # Cura
  2. # Copyright (C) 2021 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 4.12\n"
  8. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  9. "POT-Creation-Date: 2021-10-20 16:43+0200\n"
  10. "PO-Revision-Date: 2021-04-16 15:04+0200\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language-Team: Chinese <info@lionbridge.com>, PCDotFan <pc@edu.ax>, Chinese <info@bothof.nl>\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 2.4.1\n"
  19. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  20. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110
  21. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
  22. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1615
  23. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
  24. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  25. msgctxt "@label"
  26. msgid "Unknown"
  27. msgstr "未知"
  28. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  29. msgctxt "@label"
  30. msgid "The printer(s) below cannot be connected because they are part of a group"
  31. msgstr "无法连接到下列打印机,因为这些打印机已在组中"
  32. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  33. msgctxt "@label"
  34. msgid "Available networked printers"
  35. msgstr "可用的网络打印机"
  36. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219
  37. msgctxt "@menuitem"
  38. msgid "Not overridden"
  39. msgstr "未覆盖"
  40. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
  41. #, python-brace-format
  42. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  43. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  44. msgstr "是否确实要删除 {0}?此操作无法撤消!"
  45. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  46. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
  47. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
  48. msgctxt "@label"
  49. msgid "Default"
  50. msgstr "Default"
  51. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  52. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
  53. msgctxt "@label"
  54. msgid "Visual"
  55. msgstr "视觉"
  56. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  57. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
  58. msgctxt "@text"
  59. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  60. msgstr "视觉配置文件用于打印视觉原型和模型,可实现出色的视觉效果和表面质量。"
  61. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  62. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
  63. msgctxt "@label"
  64. msgid "Engineering"
  65. msgstr "Engineering"
  66. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  67. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
  68. msgctxt "@text"
  69. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  70. msgstr "工程配置文件用于打印功能性原型和最终用途部件,可提高准确性和减小公差。"
  71. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  72. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
  73. msgctxt "@label"
  74. msgid "Draft"
  75. msgstr "草稿"
  76. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  77. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
  78. msgctxt "@text"
  79. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  80. msgstr "草稿配置文件用于打印初始原型和概念验证,可大大缩短打印时间。"
  81. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:53
  82. msgctxt "@action:button"
  83. msgid "Please sync the material profiles with your printers before starting to print."
  84. msgstr "请在开始打印之前将材料配置文件与您的打印机同步。"
  85. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:54
  86. msgctxt "@action:button"
  87. msgid "New materials installed"
  88. msgstr "新材料已装载"
  89. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:61
  90. msgctxt "@action:button"
  91. msgid "Sync materials with printers"
  92. msgstr "同步材料与打印机"
  93. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:69
  94. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80
  95. msgctxt "@action:button"
  96. msgid "Learn more"
  97. msgstr "详细了解"
  98. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:285
  99. msgctxt "@label"
  100. msgid "Custom Material"
  101. msgstr "自定义材料"
  102. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:286
  103. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:233
  104. msgctxt "@label"
  105. msgid "Custom"
  106. msgstr "自定义"
  107. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:356
  108. msgctxt "@message:text"
  109. msgid "Could not save material archive to {}:"
  110. msgstr "未能将材料存档保存到 {}:"
  111. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:357
  112. msgctxt "@message:title"
  113. msgid "Failed to save material archive"
  114. msgstr "未能保存材料存档"
  115. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
  116. msgctxt "@label"
  117. msgid "Custom profiles"
  118. msgstr "自定义配置文件"
  119. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
  120. #, python-brace-format
  121. msgctxt "@item:inlistbox"
  122. msgid "All Supported Types ({0})"
  123. msgstr "所有支持的文件类型 ({0})"
  124. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
  125. msgctxt "@item:inlistbox"
  126. msgid "All Files (*)"
  127. msgstr "所有文件 (*)"
  128. #: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:186
  129. msgctxt "@info:title"
  130. msgid "Login failed"
  131. msgstr "登录失败"
  132. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  133. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  134. msgctxt "@info:status"
  135. msgid "Finding new location for objects"
  136. msgstr "正在为模型寻找新位置"
  137. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  138. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  139. msgctxt "@info:title"
  140. msgid "Finding Location"
  141. msgstr "正在寻找位置"
  142. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
  143. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  144. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99
  145. msgctxt "@info:status"
  146. msgid "Unable to find a location within the build volume for all objects"
  147. msgstr "无法在成形空间体积内放下全部模型"
  148. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152
  149. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  150. msgctxt "@info:title"
  151. msgid "Can't Find Location"
  152. msgstr "找不到位置"
  153. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115
  154. msgctxt "@info:backup_failed"
  155. msgid "Could not create archive from user data directory: {}"
  156. msgstr "不能从用户数据目录创建存档: {}"
  157. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122
  158. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159
  159. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118
  160. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  161. msgctxt "@info:title"
  162. msgid "Backup"
  163. msgstr "备份"
  164. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134
  165. msgctxt "@info:backup_failed"
  166. msgid "Tried to restore a Cura backup without having proper data or meta data."
  167. msgstr "试图在没有适当数据或元数据的情况下恢复Cura备份。"
  168. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145
  169. msgctxt "@info:backup_failed"
  170. msgid "Tried to restore a Cura backup that is higher than the current version."
  171. msgstr "尝试恢复的 Cura 备份版本高于当前版本。"
  172. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158
  173. msgctxt "@info:backup_failed"
  174. msgid "The following error occurred while trying to restore a Cura backup:"
  175. msgstr "尝试恢复 Cura 备份时出现以下错误:"
  176. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
  177. msgctxt "@info:status"
  178. 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."
  179. msgstr "由于“打印序列”设置的值,成形空间体积高度已被减少,以防止十字轴与打印模型相冲突。"
  180. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:101
  181. msgctxt "@info:title"
  182. msgid "Build Volume"
  183. msgstr "成形空间体积"
  184. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
  185. msgctxt "@title:window"
  186. msgid "Cura can't start"
  187. msgstr "Cura 无法启动"
  188. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
  189. msgctxt "@label crash message"
  190. msgid ""
  191. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  192. " <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"
  193. " <p>Backups can be found in the configuration folder.</p>\n"
  194. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  195. " "
  196. msgstr ""
  197. "<p><b>糟糕,Ultimaker Cura 似乎遇到了问题。</p></b>\n"
  198. " <p>在启动时发生了不可修复的错误。这可能是因某些配置文件出错导致的。建议您备份并重置配置。</p>\n"
  199. " <p>您可在配置文件夹中找到备份。</p>\n"
  200. " <p>请向我们发送此错误报告,以便解决问题。</p>\n"
  201. " "
  202. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
  203. msgctxt "@action:button"
  204. msgid "Send crash report to Ultimaker"
  205. msgstr "向 Ultimaker 发送错误报告"
  206. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
  207. msgctxt "@action:button"
  208. msgid "Show detailed crash report"
  209. msgstr "显示详细的错误报告"
  210. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
  211. msgctxt "@action:button"
  212. msgid "Show configuration folder"
  213. msgstr "显示配置文件夹"
  214. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
  215. msgctxt "@action:button"
  216. msgid "Backup and Reset Configuration"
  217. msgstr "备份并重置配置"
  218. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
  219. msgctxt "@title:window"
  220. msgid "Crash Report"
  221. msgstr "错误报告"
  222. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
  223. msgctxt "@label crash message"
  224. msgid ""
  225. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  226. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  227. " "
  228. msgstr ""
  229. "<p><b>Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题</p></b>\n"
  230. " <p>请使用“发送报告”按钮将错误报告自动发布到我们的服务器</p>\n"
  231. " "
  232. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
  233. msgctxt "@title:groupbox"
  234. msgid "System information"
  235. msgstr "系统信息"
  236. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
  237. msgctxt "@label unknown version of Cura"
  238. msgid "Unknown"
  239. msgstr "未知"
  240. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
  241. msgctxt "@label Cura version number"
  242. msgid "Cura version"
  243. msgstr "Cura 版本"
  244. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
  245. msgctxt "@label"
  246. msgid "Cura language"
  247. msgstr "Cura 语言"
  248. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
  249. msgctxt "@label"
  250. msgid "OS language"
  251. msgstr "操作系统语言"
  252. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
  253. msgctxt "@label Type of platform"
  254. msgid "Platform"
  255. msgstr "平台"
  256. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
  257. msgctxt "@label"
  258. msgid "Qt version"
  259. msgstr "Qt 版本"
  260. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
  261. msgctxt "@label"
  262. msgid "PyQt version"
  263. msgstr "PyQt 版本"
  264. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
  265. msgctxt "@label OpenGL version"
  266. msgid "OpenGL"
  267. msgstr "OpenGL"
  268. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
  269. msgctxt "@label"
  270. msgid "Not yet initialized<br/>"
  271. msgstr "尚未初始化<br/>"
  272. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
  273. #, python-brace-format
  274. msgctxt "@label OpenGL version"
  275. msgid "<li>OpenGL Version: {version}</li>"
  276. msgstr "<li>OpenGL 版本: {version}</li>"
  277. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
  278. #, python-brace-format
  279. msgctxt "@label OpenGL vendor"
  280. msgid "<li>OpenGL Vendor: {vendor}</li>"
  281. msgstr "<li>OpenGL 供应商: {vendor}</li>"
  282. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
  283. #, python-brace-format
  284. msgctxt "@label OpenGL renderer"
  285. msgid "<li>OpenGL Renderer: {renderer}</li>"
  286. msgstr "<li>OpenGL 渲染器: {renderer}</li>"
  287. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
  288. msgctxt "@title:groupbox"
  289. msgid "Error traceback"
  290. msgstr "错误追溯"
  291. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
  292. msgctxt "@title:groupbox"
  293. msgid "Logs"
  294. msgstr "日志"
  295. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
  296. msgctxt "@action:button"
  297. msgid "Send report"
  298. msgstr "发送报告"
  299. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:529
  300. msgctxt "@info:progress"
  301. msgid "Loading machines..."
  302. msgstr "正在载入打印机..."
  303. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:536
  304. msgctxt "@info:progress"
  305. msgid "Setting up preferences..."
  306. msgstr "正在设置偏好设置..."
  307. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:674
  308. msgctxt "@info:progress"
  309. msgid "Initializing Active Machine..."
  310. msgstr "正在初始化当前机器..."
  311. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:809
  312. msgctxt "@info:progress"
  313. msgid "Initializing machine manager..."
  314. msgstr "正在初始化机器管理器..."
  315. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823
  316. msgctxt "@info:progress"
  317. msgid "Initializing build volume..."
  318. msgstr "正在初始化成形空间体积..."
  319. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:894
  320. msgctxt "@info:progress"
  321. msgid "Setting up scene..."
  322. msgstr "正在设置场景..."
  323. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:930
  324. msgctxt "@info:progress"
  325. msgid "Loading interface..."
  326. msgstr "正在载入界面..."
  327. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:935
  328. msgctxt "@info:progress"
  329. msgid "Initializing engine..."
  330. msgstr "正在初始化引擎..."
  331. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1252
  332. #, python-format
  333. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  334. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  335. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  336. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1805
  337. #, python-brace-format
  338. msgctxt "@info:status"
  339. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  340. msgstr "一次只能加载一个 G-code 文件。{0} 已跳过导入"
  341. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1807
  342. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:198
  343. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:258
  344. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177
  345. msgctxt "@info:title"
  346. msgid "Warning"
  347. msgstr "警告"
  348. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1817
  349. #, python-brace-format
  350. msgctxt "@info:status"
  351. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  352. msgstr "如果加载 G-code,则无法打开其他任何文件。{0} 已跳过导入"
  353. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1819
  354. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156
  355. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166
  356. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141
  357. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  358. msgctxt "@info:title"
  359. msgid "Error"
  360. msgstr "错误"
  361. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30
  362. msgctxt "@info:status"
  363. msgid "Multiplying and placing objects"
  364. msgstr "复制并放置模型"
  365. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32
  366. msgctxt "@info:title"
  367. msgid "Placing Objects"
  368. msgstr "放置模型"
  369. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100
  370. msgctxt "@info:title"
  371. msgid "Placing Object"
  372. msgstr "放置模型"
  373. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92
  374. msgctxt "@message"
  375. msgid "Could not read response."
  376. msgstr "无法读取响应。"
  377. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
  378. msgctxt "@message"
  379. msgid "The provided state is not correct."
  380. msgstr "所提供的状态不正确。"
  381. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
  382. msgctxt "@message"
  383. msgid "Please give the required permissions when authorizing this application."
  384. msgstr "在授权此应用程序时,须提供所需权限。"
  385. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
  386. msgctxt "@message"
  387. msgid "Something unexpected happened when trying to log in, please try again."
  388. msgstr "尝试登录时出现意外情况,请重试。"
  389. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:197
  390. msgctxt "@info"
  391. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  392. msgstr "无法开始新的登录过程。请检查是否仍在尝试进行另一登录。"
  393. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:257
  394. msgctxt "@info"
  395. msgid "Unable to reach the Ultimaker account server."
  396. msgstr "无法连接 Ultimaker 帐户服务器。"
  397. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207
  398. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140
  399. msgctxt "@title:window"
  400. msgid "File Already Exists"
  401. msgstr "文件已存在"
  402. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208
  403. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141
  404. #, python-brace-format
  405. msgctxt "@label Don't translate the XML tag <filename>!"
  406. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  407. msgstr "文件 <filename>{0}</filename> 已存在。您确定要覆盖它吗?"
  408. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459
  409. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462
  410. msgctxt "@info:status"
  411. msgid "Invalid file URL:"
  412. msgstr "文件 URL 无效:"
  413. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153
  414. #, python-brace-format
  415. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  416. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  417. msgstr "无法将配置文件导出至<filename> {0} </filename>: <message>{1}</message>"
  418. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163
  419. #, python-brace-format
  420. msgctxt "@info:status Don't translate the XML tag <filename>!"
  421. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  422. msgstr "无法将配置文件导出至<filename> {0} </filename>: 写入器插件报告故障。"
  423. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171
  424. #, python-brace-format
  425. msgctxt "@info:status Don't translate the XML tag <filename>!"
  426. msgid "Exported profile to <filename>{0}</filename>"
  427. msgstr "配置文件已导出至:<filename> {0} </filename>"
  428. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173
  429. msgctxt "@info:title"
  430. msgid "Export succeeded"
  431. msgstr "导出成功"
  432. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205
  433. #, python-brace-format
  434. msgctxt "@info:status Don't translate the XML tags <filename>!"
  435. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  436. msgstr "无法从 <filename>{0}</filename> 导入配置文件:{1}"
  437. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209
  438. #, python-brace-format
  439. msgctxt "@info:status Don't translate the XML tags <filename>!"
  440. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  441. msgstr "无法在添加打印机前从 <filename>{0}</filename> 导入配置文件。"
  442. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224
  443. #, python-brace-format
  444. msgctxt "@info:status Don't translate the XML tags <filename>!"
  445. msgid "No custom profile to import in file <filename>{0}</filename>"
  446. msgstr "没有可导入文件 <filename>{0}</filename> 的自定义配置文件"
  447. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228
  448. #, python-brace-format
  449. msgctxt "@info:status Don't translate the XML tags <filename>!"
  450. msgid "Failed to import profile from <filename>{0}</filename>:"
  451. msgstr "无法从 <filename>{0}</filename> 导入配置文件:"
  452. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252
  453. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262
  454. #, python-brace-format
  455. msgctxt "@info:status Don't translate the XML tags <filename>!"
  456. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  457. msgstr "此配置文件 <filename>{0}</filename> 包含错误数据,无法导入。"
  458. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355
  459. #, python-brace-format
  460. msgctxt "@info:status Don't translate the XML tag <filename>!"
  461. msgid "Failed to import profile from <filename>{0}</filename>:"
  462. msgstr "无法从 <filename>{0}</filename> 导入配置文件:"
  463. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359
  464. #, python-brace-format
  465. msgctxt "@info:status"
  466. msgid "Successfully imported profile {0}."
  467. msgstr "已成功导入配置文件 {0}。"
  468. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366
  469. #, python-brace-format
  470. msgctxt "@info:status"
  471. msgid "File {0} does not contain any valid profile."
  472. msgstr "文件 {0} 不包含任何有效的配置文件。"
  473. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369
  474. #, python-brace-format
  475. msgctxt "@info:status"
  476. msgid "Profile {0} has an unknown file type or is corrupted."
  477. msgstr "配置 {0} 文件类型未知或已损坏。"
  478. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443
  479. msgctxt "@label"
  480. msgid "Custom profile"
  481. msgstr "自定义配置文件"
  482. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459
  483. msgctxt "@info:status"
  484. msgid "Profile is missing a quality type."
  485. msgstr "配置文件缺少打印质量类型定义。"
  486. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463
  487. msgctxt "@info:status"
  488. msgid "There is no active printer yet."
  489. msgstr "尚无处于活动状态的打印机。"
  490. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469
  491. msgctxt "@info:status"
  492. msgid "Unable to add the profile."
  493. msgstr "无法添加配置文件。"
  494. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483
  495. #, python-brace-format
  496. msgctxt "@info:status"
  497. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  498. msgstr "质量类型“{0}”与当前有效的机器定义“{1}”不兼容。"
  499. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488
  500. #, python-brace-format
  501. msgctxt "@info:status"
  502. 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."
  503. msgstr "警告:配置文件不可见,因为其质量类型“{0}”对当前配置不可用。请切换到可使用此质量类型的材料/喷嘴组合。"
  504. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
  505. msgctxt "@info:not supported profile"
  506. msgid "Not supported"
  507. msgstr "不支持"
  508. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
  509. msgctxt "@info:No intent profile selected"
  510. msgid "Default"
  511. msgstr "Default"
  512. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713
  513. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
  514. msgctxt "@label"
  515. msgid "Nozzle"
  516. msgstr "喷嘴"
  517. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857
  518. msgctxt "@info:message Followed by a list of settings."
  519. msgid "Settings have been changed to match the current availability of extruders:"
  520. msgstr "已根据挤出机的当前可用性更改设置:"
  521. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:859
  522. msgctxt "@info:title"
  523. msgid "Settings updated"
  524. msgstr "设置已更新"
  525. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1481
  526. msgctxt "@info:title"
  527. msgid "Extruder(s) Disabled"
  528. msgstr "挤出机已禁用"
  529. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
  530. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  531. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
  532. msgctxt "@action:button"
  533. msgid "Add"
  534. msgstr "添加"
  535. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26
  536. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272
  537. msgctxt "@action:button"
  538. msgid "Finish"
  539. msgstr "完成"
  540. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33
  541. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
  542. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
  543. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  544. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  545. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  546. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  547. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  548. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44
  549. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
  550. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  551. msgctxt "@action:button"
  552. msgid "Cancel"
  553. msgstr "取消"
  554. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
  555. #, python-brace-format
  556. msgctxt "@label"
  557. msgid "Group #{group_nr}"
  558. msgstr "组 #{group_nr}"
  559. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
  560. msgctxt "@tooltip"
  561. msgid "Outer Wall"
  562. msgstr "外壁"
  563. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
  564. msgctxt "@tooltip"
  565. msgid "Inner Walls"
  566. msgstr "内壁"
  567. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
  568. msgctxt "@tooltip"
  569. msgid "Skin"
  570. msgstr "表层"
  571. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
  572. msgctxt "@tooltip"
  573. msgid "Infill"
  574. msgstr "填充"
  575. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
  576. msgctxt "@tooltip"
  577. msgid "Support Infill"
  578. msgstr "支撑填充"
  579. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
  580. msgctxt "@tooltip"
  581. msgid "Support Interface"
  582. msgstr "支撑接触面"
  583. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
  584. msgctxt "@tooltip"
  585. msgid "Support"
  586. msgstr "支撑"
  587. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
  588. msgctxt "@tooltip"
  589. msgid "Skirt"
  590. msgstr "Skirt"
  591. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
  592. msgctxt "@tooltip"
  593. msgid "Prime Tower"
  594. msgstr "装填塔"
  595. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94
  596. msgctxt "@tooltip"
  597. msgid "Travel"
  598. msgstr "移动"
  599. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95
  600. msgctxt "@tooltip"
  601. msgid "Retractions"
  602. msgstr "回抽"
  603. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96
  604. msgctxt "@tooltip"
  605. msgid "Other"
  606. msgstr "其它"
  607. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37
  608. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:61
  609. msgctxt "@text:window"
  610. msgid "The release notes could not be opened."
  611. msgstr "无法打开版本说明。"
  612. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
  613. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259
  614. msgctxt "@action:button"
  615. msgid "Next"
  616. msgstr "下一步"
  617. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268
  618. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55
  619. msgctxt "@action:button"
  620. msgid "Skip"
  621. msgstr "跳过"
  622. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60
  623. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  624. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  625. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485
  626. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174
  627. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
  628. msgctxt "@action:button"
  629. msgid "Close"
  630. msgstr "关闭"
  631. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
  632. msgctxt "@info:title"
  633. msgid "3D Model Assistant"
  634. msgstr "三维模型的助理"
  635. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97
  636. #, python-brace-format
  637. msgctxt "@info:status"
  638. msgid ""
  639. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  640. "<p>{model_names}</p>\n"
  641. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  642. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  643. msgstr ""
  644. "<p>由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:</p>\n"
  645. "<p>{model_names}</p>\n"
  646. "<p>找出如何确保最好的打印质量和可靠性.</p>\n"
  647. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">查看打印质量指南</a></p>"
  648. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540
  649. #, python-brace-format
  650. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  651. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  652. msgstr "项目文件 <filename>{0}</filename> 包含未知机器类型 <message>{1}</message>。无法导入机器。将改为导入模型。"
  653. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543
  654. msgctxt "@info:title"
  655. msgid "Open Project File"
  656. msgstr "打开项目文件"
  657. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640
  658. #, python-brace-format
  659. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  660. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  661. msgstr "突然无法访问项目文件 <filename>{0}</filename>:<message>{1}</message>。"
  662. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
  663. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:649
  664. msgctxt "@info:title"
  665. msgid "Can't Open Project File"
  666. msgstr "无法打开项目文件"
  667. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:648
  668. #, python-brace-format
  669. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  670. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  671. msgstr "项目文件 <filename>{0}</filename> 损坏: <message>{1}</message>。"
  672. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:701
  673. #, python-brace-format
  674. msgctxt "@info:error Don't translate the XML tag <filename>!"
  675. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  676. msgstr "项目文件 <filename>{0}</filename> 是用此 Ultimaker Cura 版本未识别的配置文件制作的。"
  677. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  678. msgctxt "@title:tab"
  679. msgid "Recommended"
  680. msgstr "推荐"
  681. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  682. msgctxt "@title:tab"
  683. msgid "Custom"
  684. msgstr "自定义"
  685. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27
  686. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
  687. msgctxt "@item:inlistbox"
  688. msgid "3MF File"
  689. msgstr "3MF 文件"
  690. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  691. msgctxt "@error:zip"
  692. msgid "3MF Writer plug-in is corrupt."
  693. msgstr "3MF 编写器插件已损坏。"
  694. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
  695. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
  696. msgctxt "@error:zip"
  697. msgid "No permission to write the workspace here."
  698. msgstr "没有在此处写入工作区的权限。"
  699. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
  700. msgctxt "@error:zip"
  701. msgid "The operating system does not allow saving a project file to this location or with this file name."
  702. msgstr "操作系统不允许向此位置或用此文件名保存项目文件。"
  703. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
  704. msgctxt "@error:zip"
  705. msgid "Error writing 3mf file."
  706. msgstr "写入 3mf 文件时出错。"
  707. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
  708. msgctxt "@item:inlistbox"
  709. msgid "3MF file"
  710. msgstr "3MF 文件"
  711. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
  712. msgctxt "@item:inlistbox"
  713. msgid "Cura Project 3MF file"
  714. msgstr "Cura 项目 3MF 文件"
  715. #: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
  716. msgctxt "@item:inlistbox"
  717. msgid "AMF File"
  718. msgstr "AMF 文件"
  719. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  720. msgctxt "@info:title"
  721. msgid "Backups"
  722. msgstr "备份"
  723. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  724. msgctxt "@info:backup_status"
  725. msgid "There was an error while uploading your backup."
  726. msgstr "上传您的备份时出错。"
  727. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  728. msgctxt "@info:backup_status"
  729. msgid "Creating your backup..."
  730. msgstr "正在创建您的备份..."
  731. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  732. msgctxt "@info:backup_status"
  733. msgid "There was an error while creating your backup."
  734. msgstr "创建您的备份时出错。"
  735. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  736. msgctxt "@info:backup_status"
  737. msgid "Uploading your backup..."
  738. msgstr "正在上传您的备份..."
  739. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  740. msgctxt "@info:backup_status"
  741. msgid "Your backup has finished uploading."
  742. msgstr "您的备份已完成上传。"
  743. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  744. msgctxt "@error:file_size"
  745. msgid "The backup exceeds the maximum file size."
  746. msgstr "备份超过了最大文件大小。"
  747. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  748. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  749. msgctxt "@info:backup_status"
  750. msgid "There was an error trying to restore your backup."
  751. msgstr "尝试恢复您的备份时出错。"
  752. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  753. msgctxt "@item:inmenu"
  754. msgid "Manage backups"
  755. msgstr "管理备份"
  756. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161
  757. msgctxt "@message"
  758. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  759. msgstr "发生意外错误,切片失败。请于问题跟踪器上报告错误。"
  760. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  761. msgctxt "@message:title"
  762. msgid "Slicing failed"
  763. msgstr "切片失败"
  764. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167
  765. msgctxt "@message:button"
  766. msgid "Report a bug"
  767. msgstr "报告错误"
  768. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  769. msgctxt "@message:description"
  770. msgid "Report a bug on Ultimaker Cura's issue tracker."
  771. msgstr "在 Ultimaker Cura 问题跟踪器上报告错误。"
  772. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395
  773. msgctxt "@info:status"
  774. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  775. msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。"
  776. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396
  777. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429
  778. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456
  779. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468
  780. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480
  781. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493
  782. msgctxt "@info:title"
  783. msgid "Unable to slice"
  784. msgstr "无法切片"
  785. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  786. #, python-brace-format
  787. msgctxt "@info:status"
  788. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  789. msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}"
  790. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  791. #, python-brace-format
  792. msgctxt "@info:status"
  793. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  794. msgstr "因部分特定模型设置而无法切片。 以下设置在一个或多个模型上存在错误: {error_labels}"
  795. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  796. msgctxt "@info:status"
  797. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  798. msgstr "无法切片(原因:主塔或主位置无效)。"
  799. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479
  800. #, python-format
  801. msgctxt "@info:status"
  802. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  803. msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。"
  804. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489
  805. msgctxt "@info:status"
  806. msgid ""
  807. "Please review settings and check if your models:\n"
  808. "- Fit within the build volume\n"
  809. "- Are assigned to an enabled extruder\n"
  810. "- Are not all set as modifier meshes"
  811. msgstr ""
  812. "请检查设置并检查您的模型是否:\n"
  813. "- 适合构建体积\n"
  814. "- 分配给了已启用的挤出器\n"
  815. "- 尚未全部设置为修改器网格"
  816. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  817. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  818. msgctxt "@info:status"
  819. msgid "Processing Layers"
  820. msgstr "正在处理层"
  821. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  822. msgctxt "@info:title"
  823. msgid "Information"
  824. msgstr "信息"
  825. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
  826. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
  827. msgctxt "@item:inlistbox"
  828. msgid "Cura Profile"
  829. msgstr "Cura 配置文件"
  830. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  831. msgctxt "@info"
  832. msgid "Could not access update information."
  833. msgstr "无法获取更新信息。"
  834. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  835. #, python-brace-format
  836. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  837. 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}."
  838. msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将其更新为 {latest_version} 版。"
  839. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  840. #, python-format
  841. msgctxt "@info:title The %s gets replaced with the printer name."
  842. msgid "New %s stable firmware available"
  843. msgstr "新 %s 稳定固件可用"
  844. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  845. msgctxt "@action:button"
  846. msgid "How to update"
  847. msgstr "如何更新"
  848. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  849. msgctxt "@action"
  850. msgid "Update Firmware"
  851. msgstr "更新固件"
  852. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
  853. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
  854. msgctxt "@item:inlistbox"
  855. msgid "Compressed G-code File"
  856. msgstr "压缩 G-code 文件"
  857. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  858. msgctxt "@error:not supported"
  859. msgid "GCodeGzWriter does not support text mode."
  860. msgstr "GCodeGzWriter 不支持文本模式。"
  861. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
  862. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14
  863. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
  864. msgctxt "@item:inlistbox"
  865. msgid "G-code File"
  866. msgstr "GCode 文件"
  867. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347
  868. msgctxt "@info:status"
  869. msgid "Parsing G-code"
  870. msgstr "解析 G-code"
  871. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349
  872. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503
  873. msgctxt "@info:title"
  874. msgid "G-code Details"
  875. msgstr "G-code 详细信息"
  876. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501
  877. msgctxt "@info:generic"
  878. 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."
  879. msgstr "发送文件之前,请确保 G-code 适用于当前打印机和打印机配置。当前 G-code 文件可能不准确。"
  880. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
  881. msgctxt "@item:inlistbox"
  882. msgid "G File"
  883. msgstr "G 文件"
  884. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  885. msgctxt "@error:not supported"
  886. msgid "GCodeWriter does not support non-text mode."
  887. msgstr "GCodeWriter 不支持非文本模式。"
  888. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  889. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  890. msgctxt "@warning:status"
  891. msgid "Please prepare G-code before exporting."
  892. msgstr "导出前请先准备 G-code。"
  893. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
  894. msgctxt "@item:inlistbox"
  895. msgid "JPG Image"
  896. msgstr "JPG 图像"
  897. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
  898. msgctxt "@item:inlistbox"
  899. msgid "JPEG Image"
  900. msgstr "JPEG 图像"
  901. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
  902. msgctxt "@item:inlistbox"
  903. msgid "PNG Image"
  904. msgstr "PNG 图像"
  905. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
  906. msgctxt "@item:inlistbox"
  907. msgid "BMP Image"
  908. msgstr "BMP 图像"
  909. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
  910. msgctxt "@item:inlistbox"
  911. msgid "GIF Image"
  912. msgstr "GIF 图像"
  913. #: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
  914. msgctxt "@item:inlistbox"
  915. msgid "Cura 15.04 profiles"
  916. msgstr "Cura 15.04 配置文件"
  917. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  918. msgctxt "@action"
  919. msgid "Machine Settings"
  920. msgstr "打印机设置"
  921. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
  922. msgctxt "@item:inmenu"
  923. msgid "Monitor"
  924. msgstr "监控"
  925. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  926. msgctxt "@label"
  927. msgid "Per Model Settings"
  928. msgstr "单一模型设置"
  929. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  930. msgctxt "@info:tooltip"
  931. msgid "Configure Per Model Settings"
  932. msgstr "设置对每个模型的单独设定"
  933. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  934. msgctxt "@item:inmenu"
  935. msgid "Post Processing"
  936. msgstr "后期处理"
  937. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  938. msgctxt "@item:inmenu"
  939. msgid "Modify G-Code"
  940. msgstr "修改 G-Code"
  941. #: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
  942. msgctxt "@item:inmenu"
  943. msgid "Prepare"
  944. msgstr "准备"
  945. #: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
  946. msgctxt "@item:inmenu"
  947. msgid "Preview"
  948. msgstr "预览"
  949. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  950. msgctxt "@action:button Preceded by 'Ready to'."
  951. msgid "Save to Removable Drive"
  952. msgstr "保存至可移动磁盘"
  953. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  954. #, python-brace-format
  955. msgctxt "@item:inlistbox"
  956. msgid "Save to Removable Drive {0}"
  957. msgstr "保存到可移动磁盘 {0}"
  958. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  959. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  960. msgctxt "@info:status"
  961. msgid "There are no file formats available to write with!"
  962. msgstr "没有可进行写入的文件格式!"
  963. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97
  964. #, python-brace-format
  965. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  966. msgid "Saving to Removable Drive <filename>{0}</filename>"
  967. msgstr "保存到可移动磁盘 <filename> {0} </filename>"
  968. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98
  969. msgctxt "@info:title"
  970. msgid "Saving"
  971. msgstr "正在保存"
  972. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108
  973. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111
  974. #, python-brace-format
  975. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  976. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  977. msgstr "无法保存到 <filename>{0}</filename>:<message>{1}</message>"
  978. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127
  979. #, python-brace-format
  980. msgctxt "@info:status Don't translate the tag {device}!"
  981. msgid "Could not find a file name when trying to write to {device}."
  982. msgstr "尝试写入到 {device} 时找不到文件名。"
  983. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140
  984. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159
  985. #, python-brace-format
  986. msgctxt "@info:status"
  987. msgid "Could not save to removable drive {0}: {1}"
  988. msgstr "无法保存到可移动磁盘 {0}:{1}"
  989. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150
  990. #, python-brace-format
  991. msgctxt "@info:status"
  992. msgid "Saved to Removable Drive {0} as {1}"
  993. msgstr "保存到可移动磁盘 {0} :{1}"
  994. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  995. msgctxt "@info:title"
  996. msgid "File Saved"
  997. msgstr "文件已保存"
  998. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  999. msgctxt "@action:button"
  1000. msgid "Eject"
  1001. msgstr "弹出"
  1002. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  1003. #, python-brace-format
  1004. msgctxt "@action"
  1005. msgid "Eject removable device {0}"
  1006. msgstr "弹出可移动设备 {0}"
  1007. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172
  1008. #, python-brace-format
  1009. msgctxt "@info:status"
  1010. msgid "Ejected {0}. You can now safely remove the drive."
  1011. msgstr "已弹出 {0}。现在,您可以安全地拔出磁盘。"
  1012. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  1013. msgctxt "@info:title"
  1014. msgid "Safely Remove Hardware"
  1015. msgstr "安全移除硬件"
  1016. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176
  1017. #, python-brace-format
  1018. msgctxt "@info:status"
  1019. msgid "Failed to eject {0}. Another program may be using the drive."
  1020. msgstr "无法弹出 {0},另一个程序可能正在使用磁盘。"
  1021. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  1022. msgctxt "@item:intext"
  1023. msgid "Removable Drive"
  1024. msgstr "可移动磁盘"
  1025. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129
  1026. msgctxt "@info:status"
  1027. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1028. msgstr "启用“单线打印”后,Cura 将无法准确地显示打印层。"
  1029. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
  1030. msgctxt "@info:title"
  1031. msgid "Simulation View"
  1032. msgstr "仿真视图"
  1033. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133
  1034. msgctxt "@info:status"
  1035. msgid "Nothing is shown because you need to slice first."
  1036. msgstr "由于需要先切片,因此未显示任何内容。"
  1037. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134
  1038. msgctxt "@info:title"
  1039. msgid "No layers to show"
  1040. msgstr "无层可显示"
  1041. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136
  1042. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74
  1043. msgctxt "@info:option_text"
  1044. msgid "Do not show this message again"
  1045. msgstr "不再显示此消息"
  1046. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
  1047. msgctxt "@item:inlistbox"
  1048. msgid "Layer view"
  1049. msgstr "分层视图"
  1050. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  1051. msgctxt "@text"
  1052. msgid "Unable to read example data file."
  1053. msgstr "无法读取示例数据文件。"
  1054. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71
  1055. msgctxt "@info:status"
  1056. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1057. msgstr "突出显示的区域指示缺少或多余的表面。修复模型,并再次在 Cura 中打开。"
  1058. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73
  1059. msgctxt "@info:title"
  1060. msgid "Model Errors"
  1061. msgstr "模型错误"
  1062. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
  1063. msgctxt "@item:inmenu"
  1064. msgid "Solid view"
  1065. msgstr "实体视图"
  1066. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
  1067. msgctxt "@label"
  1068. msgid "Support Blocker"
  1069. msgstr "支撑拦截器"
  1070. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
  1071. msgctxt "@info:tooltip"
  1072. msgid "Create a volume in which supports are not printed."
  1073. msgstr "创建一个不打印支撑的体积。"
  1074. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  1075. msgctxt "@info:generic"
  1076. msgid "Do you want to sync material and software packages with your account?"
  1077. msgstr "是否要与您的帐户同步材料和软件包?"
  1078. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  1079. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95
  1080. msgctxt "@info:title"
  1081. msgid "Changes detected from your Ultimaker account"
  1082. msgstr "检测到您的 Ultimaker 帐户有更改"
  1083. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
  1084. msgctxt "@action:button"
  1085. msgid "Sync"
  1086. msgstr "同步"
  1087. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91
  1088. msgctxt "@info:generic"
  1089. msgid "Syncing..."
  1090. msgstr "正在同步..."
  1091. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  1092. msgctxt "@button"
  1093. msgid "Decline"
  1094. msgstr "拒绝"
  1095. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
  1096. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  1097. msgctxt "@button"
  1098. msgid "Agree"
  1099. msgstr "同意"
  1100. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  1101. msgctxt "@title:window"
  1102. msgid "Plugin License Agreement"
  1103. msgstr "插件许可协议"
  1104. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41
  1105. msgctxt "@button"
  1106. msgid "Decline and remove from account"
  1107. msgstr "拒绝并从帐户中删除"
  1108. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19
  1109. msgctxt "@info:generic"
  1110. msgid "You need to quit and restart {} before changes have effect."
  1111. msgstr "需要退出并重新启动 {},然后更改才能生效。"
  1112. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
  1113. msgctxt "@info:generic"
  1114. msgid "{} plugins failed to download"
  1115. msgstr "{} 个插件下载失败"
  1116. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
  1117. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1118. msgid "Open Compressed Triangle Mesh"
  1119. msgstr "打开压缩三角网格"
  1120. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
  1121. msgctxt "@item:inlistbox"
  1122. msgid "COLLADA Digital Asset Exchange"
  1123. msgstr "COLLADA 数据资源交换"
  1124. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
  1125. msgctxt "@item:inlistbox"
  1126. msgid "glTF Binary"
  1127. msgstr "glTF 二进制"
  1128. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
  1129. msgctxt "@item:inlistbox"
  1130. msgid "glTF Embedded JSON"
  1131. msgstr "glTF 嵌入式 JSON"
  1132. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
  1133. msgctxt "@item:inlistbox"
  1134. msgid "Stanford Triangle Format"
  1135. msgstr "斯坦福三角格式"
  1136. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
  1137. msgctxt "@item:inlistbox"
  1138. msgid "Compressed COLLADA Digital Asset Exchange"
  1139. msgstr "压缩 COLLADA 数据资源交换"
  1140. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22
  1141. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
  1142. msgctxt "@item:inlistbox"
  1143. msgid "Ultimaker Format Package"
  1144. msgstr "Ultimaker 格式包"
  1145. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57
  1146. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72
  1147. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94
  1148. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149
  1149. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159
  1150. msgctxt "@info:error"
  1151. msgid "Can't write to UFP file:"
  1152. msgstr "无法写入到 UFP 文件:"
  1153. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1154. msgctxt "@action"
  1155. msgid "Level build plate"
  1156. msgstr "调平打印平台"
  1157. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1158. msgctxt "@action"
  1159. msgid "Select upgrades"
  1160. msgstr "选择升级"
  1161. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  1162. msgctxt "@action:button"
  1163. msgid "Print via cloud"
  1164. msgstr "通过云打印"
  1165. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
  1166. msgctxt "@properties:tooltip"
  1167. msgid "Print via cloud"
  1168. msgstr "通过云打印"
  1169. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
  1170. msgctxt "@info:status"
  1171. msgid "Connected via cloud"
  1172. msgstr "通过云连接"
  1173. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261
  1174. msgctxt "@action:button"
  1175. msgid "Monitor print"
  1176. msgstr "监控打印"
  1177. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263
  1178. msgctxt "@action:tooltip"
  1179. msgid "Track the print in Ultimaker Digital Factory"
  1180. msgstr "在 Ultimaker Digital Factory 中跟踪打印"
  1181. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279
  1182. #, python-brace-format
  1183. msgctxt "@error:send"
  1184. msgid "Unknown error code when uploading print job: {0}"
  1185. msgstr "上传打印作业时出现未知错误代码:{0}"
  1186. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:222
  1187. msgctxt "info:status"
  1188. msgid "New printer detected from your Ultimaker account"
  1189. msgid_plural "New printers detected from your Ultimaker account"
  1190. msgstr[0] "从您的 Ultimaker 帐户中检测到新的打印机"
  1191. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:233
  1192. #, python-brace-format
  1193. msgctxt "info:status Filled in with printer name and printer model."
  1194. msgid "Adding printer {name} ({model}) from your account"
  1195. msgstr "正在从您的帐户添加打印机 {name} ({model})"
  1196. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:250
  1197. #, python-brace-format
  1198. msgctxt "info:{0} gets replaced by a number of printers"
  1199. msgid "... and {0} other"
  1200. msgid_plural "... and {0} others"
  1201. msgstr[0] "... 和另外 {0} 台"
  1202. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
  1203. msgctxt "info:status"
  1204. msgid "Printers added from Digital Factory:"
  1205. msgstr "从 Digital Factory 添加的打印机:"
  1206. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:311
  1207. msgctxt "info:status"
  1208. msgid "A cloud connection is not available for a printer"
  1209. msgid_plural "A cloud connection is not available for some printers"
  1210. msgstr[0] "某些打印机无云连接可用"
  1211. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:320
  1212. msgctxt "info:status"
  1213. msgid "This printer is not linked to the Digital Factory:"
  1214. msgid_plural "These printers are not linked to the Digital Factory:"
  1215. msgstr[0] "这些打印机未链接到 Digital Factory:"
  1216. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:325
  1217. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:415
  1218. msgctxt "info:name"
  1219. msgid "Ultimaker Digital Factory"
  1220. msgstr "Ultimaker Digital Factory"
  1221. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
  1222. #, python-brace-format
  1223. msgctxt "info:status"
  1224. msgid "To establish a connection, please visit the {website_link}"
  1225. msgstr "要建立连接,请访问 {website_link}"
  1226. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
  1227. msgctxt "@action:button"
  1228. msgid "Keep printer configurations"
  1229. msgstr "保留打印机配置"
  1230. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:338
  1231. msgctxt "@action:button"
  1232. msgid "Remove printers"
  1233. msgstr "删除打印机"
  1234. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:417
  1235. #, python-brace-format
  1236. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1237. msgid "{printer_name} will be removed until the next account sync."
  1238. msgstr "将删除 {printer_name},直到下次帐户同步为止。"
  1239. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:418
  1240. #, python-brace-format
  1241. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1242. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  1243. msgstr "要永久删除 {printer_name},请访问 {digital_factory_link}"
  1244. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
  1245. #, python-brace-format
  1246. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1247. msgid "Are you sure you want to remove {printer_name} temporarily?"
  1248. msgstr "是否确实要暂时删除 {printer_name}?"
  1249. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:456
  1250. msgctxt "@title:window"
  1251. msgid "Remove printers?"
  1252. msgstr "是否删除打印机?"
  1253. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:459
  1254. #, python-brace-format
  1255. msgctxt "@label"
  1256. msgid ""
  1257. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  1258. "Are you sure you want to continue?"
  1259. msgid_plural ""
  1260. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  1261. "Are you sure you want to continue?"
  1262. msgstr[0] ""
  1263. "您即将从 Cura 中删除 {0} 台打印机。此操作无法撤消。\n"
  1264. "是否确实要继续?"
  1265. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:464
  1266. msgctxt "@label"
  1267. msgid ""
  1268. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  1269. "Are you sure you want to continue?"
  1270. msgstr ""
  1271. "您即将从 Cura 中删除所有打印机。此操作无法撤消。\n"
  1272. "是否确定继续?"
  1273. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  1274. #, python-brace-format
  1275. msgctxt "@info:status"
  1276. msgid ""
  1277. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  1278. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  1279. msgstr "未能通过云连接您的打印机 <b>{printer_name}</b>。\n只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果"
  1280. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  1281. msgctxt "@info:title"
  1282. msgid "Are you ready for cloud printing?"
  1283. msgstr "是否进行云打印?"
  1284. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  1285. msgctxt "@action"
  1286. msgid "Get started"
  1287. msgstr "开始"
  1288. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  1289. msgctxt "@action"
  1290. msgid "Learn more"
  1291. msgstr "了解详情"
  1292. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1293. msgctxt "@info:status"
  1294. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1295. msgstr "您正在尝试连接未运行 Ultimaker Connect 的打印机。请将打印机更新至最新固件。"
  1296. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1297. msgctxt "@info:title"
  1298. msgid "Update your printer"
  1299. msgstr "请更新升级打印机"
  1300. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1301. #, python-brace-format
  1302. msgctxt "@info:status"
  1303. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1304. msgstr "Cura 已检测到材料配置文件尚未安装到组 {0} 中的主机打印机上。"
  1305. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1306. msgctxt "@info:title"
  1307. msgid "Sending materials to printer"
  1308. msgstr "正在将材料发送到打印机"
  1309. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  1310. #, python-brace-format
  1311. msgctxt "@info:status"
  1312. 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."
  1313. msgstr "您正在尝试连接到 {0},但它不是组中的主机。您可以访问网页,将其配置为组主机。"
  1314. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  1315. msgctxt "@info:title"
  1316. msgid "Not a group host"
  1317. msgstr "非组中的主机"
  1318. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  1319. msgctxt "@action"
  1320. msgid "Configure group"
  1321. msgstr "配置组"
  1322. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  1323. msgctxt "@info:status"
  1324. msgid "Please wait until the current job has been sent."
  1325. msgstr "请等待当前作业完成发送。"
  1326. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  1327. msgctxt "@info:title"
  1328. msgid "Print error"
  1329. msgstr "打印错误"
  1330. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  1331. msgctxt "@info:text"
  1332. msgid "Could not upload the data to the printer."
  1333. msgstr "无法将数据上传到打印机。"
  1334. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1335. msgctxt "@info:title"
  1336. msgid "Network error"
  1337. msgstr "网络错误"
  1338. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  1339. msgctxt "@info:status"
  1340. msgid "Sending Print Job"
  1341. msgstr "发送打印作业"
  1342. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  1343. msgctxt "@info:status"
  1344. msgid "Uploading print job to printer."
  1345. msgstr "正在将打印作业上传至打印机。"
  1346. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  1347. msgctxt "@info:status"
  1348. msgid "Print job queue is full. The printer can't accept a new job."
  1349. msgstr "打印作业队列已满。打印机无法接受新作业。"
  1350. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  1351. msgctxt "@info:title"
  1352. msgid "Queue Full"
  1353. msgstr "队列已满"
  1354. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1355. msgctxt "@info:status"
  1356. msgid "Print job was successfully sent to the printer."
  1357. msgstr "打印作业已成功发送到打印机。"
  1358. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1359. msgctxt "@info:title"
  1360. msgid "Data Sent"
  1361. msgstr "数据已发送"
  1362. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1363. msgctxt "@action:button Preceded by 'Ready to'."
  1364. msgid "Print over network"
  1365. msgstr "通过网络打印"
  1366. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1367. msgctxt "@properties:tooltip"
  1368. msgid "Print over network"
  1369. msgstr "通过网络打印"
  1370. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  1371. msgctxt "@info:status"
  1372. msgid "Connected over the network"
  1373. msgstr "已通过网络连接"
  1374. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  1375. msgctxt "@action"
  1376. msgid "Connect via Network"
  1377. msgstr "通过网络连接"
  1378. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  1379. msgctxt "@info:status"
  1380. msgid "tomorrow"
  1381. msgstr "明天"
  1382. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  1383. msgctxt "@info:status"
  1384. msgid "today"
  1385. msgstr "今天"
  1386. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  1387. msgctxt "@item:inmenu"
  1388. msgid "USB printing"
  1389. msgstr "USB 联机打印"
  1390. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  1391. msgctxt "@action:button Preceded by 'Ready to'."
  1392. msgid "Print via USB"
  1393. msgstr "通过 USB 联机打印"
  1394. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  1395. msgctxt "@info:tooltip"
  1396. msgid "Print via USB"
  1397. msgstr "通过 USB 联机打印"
  1398. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  1399. msgctxt "@info:status"
  1400. msgid "Connected via USB"
  1401. msgstr "通过 USB 连接"
  1402. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  1403. msgctxt "@label"
  1404. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  1405. msgstr "正在进行 USB 打印,关闭 Cura 将停止此打印。您确定吗?"
  1406. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  1407. msgctxt "@message"
  1408. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  1409. msgstr "正在进行打印在上一次打印完成之前,Cura 无法通过 USB 启动另一次打印。"
  1410. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  1411. msgctxt "@message"
  1412. msgid "Print in Progress"
  1413. msgstr "正在进行打印"
  1414. #: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
  1415. msgctxt "@item:inlistbox"
  1416. msgid "X3D File"
  1417. msgstr "X3D 文件"
  1418. #: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
  1419. msgctxt "@item:inlistbox"
  1420. msgid "X-Ray view"
  1421. msgstr "透视视图"
  1422. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
  1423. msgctxt "@info:tooltip"
  1424. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  1425. msgstr "此次打印可能出现了某些问题。点击查看调整提示。"
  1426. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  1427. msgctxt "@title:window"
  1428. msgid "Open Project"
  1429. msgstr "打开项目"
  1430. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  1431. msgctxt "@action:ComboBox Update/override existing profile"
  1432. msgid "Update existing"
  1433. msgstr "更新已有配置"
  1434. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
  1435. msgctxt "@action:ComboBox Save settings in a new profile"
  1436. msgid "Create new"
  1437. msgstr "新建"
  1438. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
  1439. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70
  1440. msgctxt "@action:title"
  1441. msgid "Summary - Cura Project"
  1442. msgstr "摘要 - Cura 项目"
  1443. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
  1444. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94
  1445. msgctxt "@action:label"
  1446. msgid "Printer settings"
  1447. msgstr "打印机设置"
  1448. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
  1449. msgctxt "@info:tooltip"
  1450. msgid "How should the conflict in the machine be resolved?"
  1451. msgstr "机器的设置冲突应如何解决?"
  1452. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
  1453. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103
  1454. msgctxt "@action:label"
  1455. msgid "Type"
  1456. msgstr "类型"
  1457. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
  1458. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118
  1459. msgctxt "@action:label"
  1460. msgid "Printer Group"
  1461. msgstr "打印机组"
  1462. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
  1463. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219
  1464. msgctxt "@action:label"
  1465. msgid "Profile settings"
  1466. msgstr "配置文件设置"
  1467. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
  1468. msgctxt "@info:tooltip"
  1469. msgid "How should the conflict in the profile be resolved?"
  1470. msgstr "配置文件中的冲突如何解决?"
  1471. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
  1472. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
  1473. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118
  1474. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243
  1475. msgctxt "@action:label"
  1476. msgid "Name"
  1477. msgstr "名字"
  1478. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
  1479. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260
  1480. msgctxt "@action:label"
  1481. msgid "Intent"
  1482. msgstr "Intent"
  1483. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
  1484. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227
  1485. msgctxt "@action:label"
  1486. msgid "Not in profile"
  1487. msgstr "不在配置文件中"
  1488. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
  1489. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232
  1490. msgctxt "@action:label"
  1491. msgid "%1 override"
  1492. msgid_plural "%1 overrides"
  1493. msgstr[0] "%1 重写"
  1494. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
  1495. msgctxt "@action:label"
  1496. msgid "Derivative from"
  1497. msgstr "衍生自"
  1498. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
  1499. msgctxt "@action:label"
  1500. msgid "%1, %2 override"
  1501. msgid_plural "%1, %2 overrides"
  1502. msgstr[0] "%1, %2 重写"
  1503. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  1504. msgctxt "@action:label"
  1505. msgid "Material settings"
  1506. msgstr "材料设置"
  1507. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
  1508. msgctxt "@info:tooltip"
  1509. msgid "How should the conflict in the material be resolved?"
  1510. msgstr "材料的设置冲突应如何解决?"
  1511. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
  1512. msgctxt "@action:label"
  1513. msgid "Setting visibility"
  1514. msgstr "设置可见性"
  1515. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
  1516. msgctxt "@action:label"
  1517. msgid "Mode"
  1518. msgstr "模式"
  1519. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  1520. msgctxt "@action:label"
  1521. msgid "Visible settings:"
  1522. msgstr "可见设置:"
  1523. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
  1524. msgctxt "@action:label"
  1525. msgid "%1 out of %2"
  1526. msgstr "%1 / %2"
  1527. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
  1528. msgctxt "@action:warning"
  1529. msgid "Loading a project will clear all models on the build plate."
  1530. msgstr "加载项目将清除打印平台上的所有模型。"
  1531. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
  1532. msgctxt "@action:button"
  1533. msgid "Open"
  1534. msgstr "打开"
  1535. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1536. msgctxt "@button"
  1537. msgid "Want more?"
  1538. msgstr "想要更多?"
  1539. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1540. msgctxt "@button"
  1541. msgid "Backup Now"
  1542. msgstr "立即备份"
  1543. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1544. msgctxt "@checkbox:description"
  1545. msgid "Auto Backup"
  1546. msgstr "自动备份"
  1547. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1548. msgctxt "@checkbox:description"
  1549. msgid "Automatically create a backup each day that Cura is started."
  1550. msgstr "在 Cura 每天启动时自动创建备份。"
  1551. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  1552. msgctxt "@button"
  1553. msgid "Restore"
  1554. msgstr "恢复"
  1555. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  1556. msgctxt "@dialog:title"
  1557. msgid "Delete Backup"
  1558. msgstr "删除备份"
  1559. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101
  1560. msgctxt "@dialog:info"
  1561. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1562. msgstr "您确定要删除此备份吗?此操作无法撤销。"
  1563. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  1564. msgctxt "@dialog:title"
  1565. msgid "Restore Backup"
  1566. msgstr "恢复备份"
  1567. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110
  1568. msgctxt "@dialog:info"
  1569. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1570. msgstr "您需要重新启动 Cura 才能恢复备份。您要立即关闭 Cura 吗?"
  1571. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1572. msgctxt "@backuplist:label"
  1573. msgid "Cura Version"
  1574. msgstr "Cura 版本"
  1575. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1576. msgctxt "@backuplist:label"
  1577. msgid "Machines"
  1578. msgstr "机器"
  1579. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1580. msgctxt "@backuplist:label"
  1581. msgid "Materials"
  1582. msgstr "材料"
  1583. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1584. msgctxt "@backuplist:label"
  1585. msgid "Profiles"
  1586. msgstr "配置文件"
  1587. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1588. msgctxt "@backuplist:label"
  1589. msgid "Plugins"
  1590. msgstr "插件"
  1591. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
  1592. msgctxt "@title:window"
  1593. msgid "Cura Backups"
  1594. msgstr "Cura 备份"
  1595. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1596. msgctxt "@title"
  1597. msgid "My Backups"
  1598. msgstr "我的备份"
  1599. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  1600. msgctxt "@empty_state"
  1601. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1602. msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个备份。"
  1603. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  1604. msgctxt "@backup_limit_info"
  1605. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1606. msgstr "在预览阶段,将限制为 5 个可见备份。移除一个备份以查看更早的备份。"
  1607. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1608. msgctxt "@description"
  1609. msgid "Backup and synchronize your Cura settings."
  1610. msgstr "备份并同步您的 Cura 设置。"
  1611. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  1612. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
  1613. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53
  1614. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:225
  1615. msgctxt "@button"
  1616. msgid "Sign in"
  1617. msgstr "登录"
  1618. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1619. msgctxt "@title"
  1620. msgid "Update Firmware"
  1621. msgstr "更新固件"
  1622. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1623. msgctxt "@label"
  1624. 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."
  1625. msgstr "固件是直接在 3D 打印机上运行的一个软件。此固件控制步进电机,调节温度并最终使打印机正常工作。"
  1626. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1627. msgctxt "@label"
  1628. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1629. msgstr "新打印机出厂配备的固件完全可以正常使用,但新版本往往具有更多的新功能和改进。"
  1630. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1631. msgctxt "@action:button"
  1632. msgid "Automatically upgrade Firmware"
  1633. msgstr "自动升级固件"
  1634. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1635. msgctxt "@action:button"
  1636. msgid "Upload custom Firmware"
  1637. msgstr "上传自定义固件"
  1638. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1639. msgctxt "@label"
  1640. msgid "Firmware can not be updated because there is no connection with the printer."
  1641. msgstr "未连接打印机,无法更新固件。"
  1642. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1643. msgctxt "@label"
  1644. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1645. msgstr "与打印机间的连接不支持固件更新,因此无法更新固件。"
  1646. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1647. msgctxt "@title:window"
  1648. msgid "Select custom firmware"
  1649. msgstr "选择自定义固件"
  1650. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1651. msgctxt "@title:window"
  1652. msgid "Firmware Update"
  1653. msgstr "固件升级"
  1654. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1655. msgctxt "@label"
  1656. msgid "Updating firmware."
  1657. msgstr "更新固件中..."
  1658. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1659. msgctxt "@label"
  1660. msgid "Firmware update completed."
  1661. msgstr "固件更新已完成。"
  1662. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1663. msgctxt "@label"
  1664. msgid "Firmware update failed due to an unknown error."
  1665. msgstr "由于未知错误,固件更新失败。"
  1666. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1667. msgctxt "@label"
  1668. msgid "Firmware update failed due to an communication error."
  1669. msgstr "由于通信错误,导致固件升级失败。"
  1670. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1671. msgctxt "@label"
  1672. msgid "Firmware update failed due to an input/output error."
  1673. msgstr "由于输入/输出错误,导致固件升级失败。"
  1674. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1675. msgctxt "@label"
  1676. msgid "Firmware update failed due to missing firmware."
  1677. msgstr "由于固件丢失,导致固件升级失败。"
  1678. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
  1679. msgctxt "@title:window"
  1680. msgid "Convert Image..."
  1681. msgstr "转换图像..."
  1682. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
  1683. msgctxt "@info:tooltip"
  1684. msgid "The maximum distance of each pixel from \"Base.\""
  1685. msgstr "每个像素与底板的最大距离"
  1686. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
  1687. msgctxt "@action:label"
  1688. msgid "Height (mm)"
  1689. msgstr "高度 (mm)"
  1690. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
  1691. msgctxt "@info:tooltip"
  1692. msgid "The base height from the build plate in millimeters."
  1693. msgstr "距离打印平台的底板高度,以毫米为单位。"
  1694. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
  1695. msgctxt "@action:label"
  1696. msgid "Base (mm)"
  1697. msgstr "底板 (mm)"
  1698. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
  1699. msgctxt "@info:tooltip"
  1700. msgid "The width in millimeters on the build plate."
  1701. msgstr "打印平台宽度,以毫米为单位。"
  1702. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
  1703. msgctxt "@action:label"
  1704. msgid "Width (mm)"
  1705. msgstr "宽度 (mm)"
  1706. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
  1707. msgctxt "@info:tooltip"
  1708. msgid "The depth in millimeters on the build plate"
  1709. msgstr "打印平台深度,以毫米为单位"
  1710. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
  1711. msgctxt "@action:label"
  1712. msgid "Depth (mm)"
  1713. msgstr "深度 (mm)"
  1714. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
  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. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1719. msgctxt "@item:inlistbox"
  1720. msgid "Darker is higher"
  1721. msgstr "颜色越深厚度越大"
  1722. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1723. msgctxt "@item:inlistbox"
  1724. msgid "Lighter is higher"
  1725. msgstr "颜色越浅厚度越大"
  1726. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
  1727. msgctxt "@info:tooltip"
  1728. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1729. msgstr "对于隐雕,提供一个用于半透明的简单对数模型。对于高度图,像素值与高度线性对应。"
  1730. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  1731. msgctxt "@item:inlistbox"
  1732. msgid "Linear"
  1733. msgstr "线性"
  1734. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  1735. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
  1736. msgctxt "@item:inlistbox"
  1737. msgid "Translucency"
  1738. msgstr "半透明"
  1739. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
  1740. msgctxt "@info:tooltip"
  1741. 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."
  1742. msgstr "穿透 1 毫米厚的打印件的光线百分比。降低此值将增大图像暗区中的对比度并减小图像亮区中的对比度。"
  1743. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
  1744. msgctxt "@action:label"
  1745. msgid "1mm Transmittance (%)"
  1746. msgstr "1 毫米透射率 (%)"
  1747. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
  1748. msgctxt "@info:tooltip"
  1749. msgid "The amount of smoothing to apply to the image."
  1750. msgstr "要应用到图像的平滑量。"
  1751. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
  1752. msgctxt "@action:label"
  1753. msgid "Smoothing"
  1754. msgstr "平滑"
  1755. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
  1756. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  1757. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  1758. msgctxt "@action:button"
  1759. msgid "OK"
  1760. msgstr "确定"
  1761. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1762. msgctxt "@title:tab"
  1763. msgid "Printer"
  1764. msgstr "打印机"
  1765. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1766. msgctxt "@title:label"
  1767. msgid "Nozzle Settings"
  1768. msgstr "喷嘴设置"
  1769. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  1770. msgctxt "@label"
  1771. msgid "Nozzle size"
  1772. msgstr "喷嘴孔径"
  1773. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  1774. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  1775. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  1776. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  1777. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  1778. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  1779. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  1780. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  1781. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  1782. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  1783. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  1784. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  1785. msgctxt "@label"
  1786. msgid "mm"
  1787. msgstr "mm"
  1788. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  1789. msgctxt "@label"
  1790. msgid "Compatible material diameter"
  1791. msgstr "兼容的材料直径"
  1792. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  1793. msgctxt "@label"
  1794. msgid "Nozzle offset X"
  1795. msgstr "喷嘴偏移 X"
  1796. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  1797. msgctxt "@label"
  1798. msgid "Nozzle offset Y"
  1799. msgstr "喷嘴偏移 Y"
  1800. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  1801. msgctxt "@label"
  1802. msgid "Cooling Fan Number"
  1803. msgstr "冷却风扇数量"
  1804. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  1805. msgctxt "@title:label"
  1806. msgid "Extruder Start G-code"
  1807. msgstr "挤出机的开始 G-code"
  1808. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  1809. msgctxt "@title:label"
  1810. msgid "Extruder End G-code"
  1811. msgstr "挤出机的结束 G-code"
  1812. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1813. msgctxt "@title:label"
  1814. msgid "Printer Settings"
  1815. msgstr "打印机设置"
  1816. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  1817. msgctxt "@label"
  1818. msgid "X (Width)"
  1819. msgstr "X (宽度)"
  1820. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  1821. msgctxt "@label"
  1822. msgid "Y (Depth)"
  1823. msgstr "Y (深度)"
  1824. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  1825. msgctxt "@label"
  1826. msgid "Z (Height)"
  1827. msgstr "Z (高度)"
  1828. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  1829. msgctxt "@label"
  1830. msgid "Build plate shape"
  1831. msgstr "打印平台形状"
  1832. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  1833. msgctxt "@label"
  1834. msgid "Origin at center"
  1835. msgstr "置中"
  1836. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  1837. msgctxt "@label"
  1838. msgid "Heated bed"
  1839. msgstr "加热床"
  1840. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  1841. msgctxt "@label"
  1842. msgid "Heated build volume"
  1843. msgstr "加热的构建体积"
  1844. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  1845. msgctxt "@label"
  1846. msgid "G-code flavor"
  1847. msgstr "G-code 风格"
  1848. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  1849. msgctxt "@title:label"
  1850. msgid "Printhead Settings"
  1851. msgstr "打印头设置"
  1852. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1853. msgctxt "@label"
  1854. msgid "X min"
  1855. msgstr "X 最小值"
  1856. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1857. msgctxt "@label"
  1858. msgid "Y min"
  1859. msgstr "Y 最小值"
  1860. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1861. msgctxt "@label"
  1862. msgid "X max"
  1863. msgstr "X 最大值"
  1864. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1865. msgctxt "@label"
  1866. msgid "Y max"
  1867. msgstr "Y 最大值"
  1868. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1869. msgctxt "@label"
  1870. msgid "Gantry Height"
  1871. msgstr "十字轴高度"
  1872. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  1873. msgctxt "@label"
  1874. msgid "Number of Extruders"
  1875. msgstr "挤出机数目"
  1876. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  1877. msgctxt "@label"
  1878. msgid "Apply Extruder offsets to GCode"
  1879. msgstr "将挤出器偏移量应用于 GCode"
  1880. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  1881. msgctxt "@title:label"
  1882. msgid "Start G-code"
  1883. msgstr "开始 G-code"
  1884. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  1885. msgctxt "@title:label"
  1886. msgid "End G-code"
  1887. msgstr "结束 G-code"
  1888. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1889. msgctxt "@info"
  1890. msgid ""
  1891. "Please make sure your printer has a connection:\n"
  1892. "- Check if the printer is turned on.\n"
  1893. "- Check if the printer is connected to the network.\n"
  1894. "- Check if you are signed in to discover cloud-connected printers."
  1895. msgstr ""
  1896. "请确保您的打印机已连接:\n"
  1897. "- 检查打印机是否已启动。\n"
  1898. "- 检查打印机是否连接至网络。\n"
  1899. "- 检查您是否已登录查找云连接的打印机。"
  1900. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
  1901. msgctxt "@info"
  1902. msgid "Please connect your printer to the network."
  1903. msgstr "请将打印机连接到网络。"
  1904. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155
  1905. msgctxt "@label link to technical assistance"
  1906. msgid "View user manuals online"
  1907. msgstr "查看联机用户手册"
  1908. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172
  1909. msgctxt "@info"
  1910. msgid "In order to monitor your print from Cura, please connect the printer."
  1911. msgstr "为了从 Cura 监控您的打印,请连接打印机。"
  1912. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1913. msgctxt "@label"
  1914. msgid "Mesh Type"
  1915. msgstr "网格类型"
  1916. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1917. msgctxt "@label"
  1918. msgid "Normal model"
  1919. msgstr "正常模式"
  1920. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1921. msgctxt "@label"
  1922. msgid "Print as support"
  1923. msgstr "打印为支撑"
  1924. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1925. msgctxt "@label"
  1926. msgid "Modify settings for overlaps"
  1927. msgstr "修改重叠设置"
  1928. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1929. msgctxt "@label"
  1930. msgid "Don't support overlaps"
  1931. msgstr "不支持重叠"
  1932. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151
  1933. msgctxt "@item:inlistbox"
  1934. msgid "Infill mesh only"
  1935. msgstr "仅填充网格"
  1936. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152
  1937. msgctxt "@item:inlistbox"
  1938. msgid "Cutting mesh"
  1939. msgstr "切割网格"
  1940. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382
  1941. msgctxt "@action:button"
  1942. msgid "Select settings"
  1943. msgstr "选择设置"
  1944. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1945. msgctxt "@title:window"
  1946. msgid "Select Settings to Customize for this model"
  1947. msgstr "选择对此模型的自定义设置"
  1948. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
  1949. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96
  1950. msgctxt "@label:textbox"
  1951. msgid "Filter..."
  1952. msgstr "筛选..."
  1953. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1954. msgctxt "@label:checkbox"
  1955. msgid "Show all"
  1956. msgstr "显示全部"
  1957. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20
  1958. msgctxt "@title:window"
  1959. msgid "Post Processing Plugin"
  1960. msgstr "后期处理插件"
  1961. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59
  1962. msgctxt "@label"
  1963. msgid "Post Processing Scripts"
  1964. msgstr "后期处理脚本"
  1965. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235
  1966. msgctxt "@action"
  1967. msgid "Add a script"
  1968. msgstr "添加一个脚本"
  1969. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282
  1970. msgctxt "@label"
  1971. msgid "Settings"
  1972. msgstr "设置"
  1973. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502
  1974. msgctxt "@info:tooltip"
  1975. msgid "Change active post-processing scripts."
  1976. msgstr "更改处于活动状态的后期处理脚本。"
  1977. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506
  1978. msgctxt "@info:tooltip"
  1979. msgid "The following script is active:"
  1980. msgid_plural "The following scripts are active:"
  1981. msgstr[0] "以下脚本处于活动状态:"
  1982. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  1983. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  1984. msgctxt "@label"
  1985. msgid "Color scheme"
  1986. msgstr "颜色方案"
  1987. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110
  1988. msgctxt "@label:listbox"
  1989. msgid "Material Color"
  1990. msgstr "材料颜色"
  1991. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114
  1992. msgctxt "@label:listbox"
  1993. msgid "Line Type"
  1994. msgstr "走线类型"
  1995. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118
  1996. msgctxt "@label:listbox"
  1997. msgid "Speed"
  1998. msgstr "速度"
  1999. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122
  2000. msgctxt "@label:listbox"
  2001. msgid "Layer Thickness"
  2002. msgstr "层厚度"
  2003. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126
  2004. msgctxt "@label:listbox"
  2005. msgid "Line Width"
  2006. msgstr "走线宽度"
  2007. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130
  2008. msgctxt "@label:listbox"
  2009. msgid "Flow"
  2010. msgstr "流量"
  2011. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171
  2012. msgctxt "@label"
  2013. msgid "Compatibility Mode"
  2014. msgstr "兼容模式"
  2015. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245
  2016. msgctxt "@label"
  2017. msgid "Travels"
  2018. msgstr "空驶"
  2019. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251
  2020. msgctxt "@label"
  2021. msgid "Helpers"
  2022. msgstr "打印辅助结构"
  2023. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2024. msgctxt "@label"
  2025. msgid "Shell"
  2026. msgstr "外壳"
  2027. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
  2028. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  2029. msgctxt "@label"
  2030. msgid "Infill"
  2031. msgstr "填充"
  2032. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271
  2033. msgctxt "@label"
  2034. msgid "Starts"
  2035. msgstr "开始"
  2036. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
  2037. msgctxt "@label"
  2038. msgid "Only Show Top Layers"
  2039. msgstr "只显示顶层"
  2040. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332
  2041. msgctxt "@label"
  2042. msgid "Show 5 Detailed Layers On Top"
  2043. msgstr "在顶部显示 5 层打印细节"
  2044. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346
  2045. msgctxt "@label"
  2046. msgid "Top / Bottom"
  2047. msgstr "顶 / 底层"
  2048. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350
  2049. msgctxt "@label"
  2050. msgid "Inner Wall"
  2051. msgstr "内壁"
  2052. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419
  2053. msgctxt "@label"
  2054. msgid "min"
  2055. msgstr "最小"
  2056. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488
  2057. msgctxt "@label"
  2058. msgid "max"
  2059. msgstr "最大"
  2060. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2061. msgctxt "@title:window"
  2062. msgid "More information on anonymous data collection"
  2063. msgstr "更多关于匿名数据收集的信息"
  2064. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2065. msgctxt "@text:window"
  2066. 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:"
  2067. msgstr "为了改善打印质量和用户体验,Ultimaker Cura 会收集匿名数据。以下是所有数据分享的示例:"
  2068. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2069. msgctxt "@text:window"
  2070. msgid "I don't want to send anonymous data"
  2071. msgstr "我不想发送匿名数据"
  2072. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2073. msgctxt "@text:window"
  2074. msgid "Allow sending anonymous data"
  2075. msgstr "允许发送匿名数据"
  2076. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  2077. msgctxt "@action:button"
  2078. msgid "Back"
  2079. msgstr "背部"
  2080. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  2081. msgctxt "@label"
  2082. msgid "Compatibility"
  2083. msgstr "兼容性"
  2084. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  2085. msgctxt "@label:table_header"
  2086. msgid "Machine"
  2087. msgstr "机器"
  2088. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  2089. msgctxt "@label:table_header"
  2090. msgid "Build Plate"
  2091. msgstr "打印平台"
  2092. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  2093. msgctxt "@label:table_header"
  2094. msgid "Support"
  2095. msgstr "支持"
  2096. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  2097. msgctxt "@label:table_header"
  2098. msgid "Quality"
  2099. msgstr "质量"
  2100. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  2101. msgctxt "@action:label"
  2102. msgid "Technical Data Sheet"
  2103. msgstr "技术数据表"
  2104. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  2105. msgctxt "@action:label"
  2106. msgid "Safety Data Sheet"
  2107. msgstr "安全数据表"
  2108. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  2109. msgctxt "@action:label"
  2110. msgid "Printing Guidelines"
  2111. msgstr "打印指南"
  2112. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  2113. msgctxt "@action:label"
  2114. msgid "Website"
  2115. msgstr "网站"
  2116. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  2117. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  2118. msgctxt "@action:button"
  2119. msgid "Installed"
  2120. msgstr "已安装"
  2121. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  2122. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2123. msgid "<a href='%1'>Log in</a> is required to install or update"
  2124. msgstr "安装或更新需要<a href='%1'>登录</a>"
  2125. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  2126. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2127. msgid "<a href='%1'>Buy material spools</a>"
  2128. msgstr "<a href='%1'>购买材料线轴</a>"
  2129. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  2130. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  2131. msgctxt "@action:button"
  2132. msgid "Update"
  2133. msgstr "更新"
  2134. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  2135. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  2136. msgctxt "@action:button"
  2137. msgid "Updating"
  2138. msgstr "更新"
  2139. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  2140. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  2141. msgctxt "@action:button"
  2142. msgid "Updated"
  2143. msgstr "更新"
  2144. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  2145. msgctxt "@label"
  2146. msgid "Premium"
  2147. msgstr "高级"
  2148. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  2149. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  2150. msgctxt "@info:tooltip"
  2151. msgid "Go to Web Marketplace"
  2152. msgstr "前往网上市场"
  2153. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  2154. msgctxt "@label"
  2155. msgid "Search materials"
  2156. msgstr "搜索材料"
  2157. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  2158. msgctxt "@info"
  2159. msgid "You will need to restart Cura before changes in packages have effect."
  2160. msgstr "在包装更改生效之前,您需要重新启动Cura。"
  2161. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  2162. msgctxt "@info:button, %1 is the application name"
  2163. msgid "Quit %1"
  2164. msgstr "退出 %1"
  2165. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  2166. msgctxt "@title:tab"
  2167. msgid "Plugins"
  2168. msgstr "插件"
  2169. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
  2170. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:475
  2171. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  2172. msgctxt "@title:tab"
  2173. msgid "Materials"
  2174. msgstr "材料"
  2175. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  2176. msgctxt "@title:tab"
  2177. msgid "Installed"
  2178. msgstr "安装"
  2179. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  2180. msgctxt "@label"
  2181. msgid "Will install upon restarting"
  2182. msgstr "将安装后重新启动"
  2183. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  2184. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2185. msgid "<a href='%1'>Log in</a> is required to update"
  2186. msgstr "更新需要<a href='%1'>登录</a>"
  2187. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2188. msgctxt "@action:button"
  2189. msgid "Downgrade"
  2190. msgstr "降级"
  2191. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2192. msgctxt "@action:button"
  2193. msgid "Uninstall"
  2194. msgstr "卸载"
  2195. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  2196. msgctxt "@action:button"
  2197. msgid "Install"
  2198. msgstr "安装"
  2199. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  2200. msgctxt "@title"
  2201. msgid "Changes from your account"
  2202. msgstr "您的帐户有更改"
  2203. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2204. msgctxt "@button"
  2205. msgid "Dismiss"
  2206. msgstr "解除"
  2207. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2208. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  2209. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  2210. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186
  2211. msgctxt "@button"
  2212. msgid "Next"
  2213. msgstr "下一步"
  2214. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  2215. msgctxt "@label"
  2216. msgid "The following packages will be added:"
  2217. msgstr "将添加以下程序包:"
  2218. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  2219. msgctxt "@label"
  2220. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2221. msgstr "由于 Cura 版本不兼容,无法安装以下程序包:"
  2222. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  2223. msgctxt "@title:window"
  2224. msgid "Confirm uninstall"
  2225. msgstr "确认卸载"
  2226. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  2227. msgctxt "@text:window"
  2228. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  2229. msgstr "您正在卸载仍在使用的材料和/或配置文件。确认会将以下材料/配置文件重置为默认值。"
  2230. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  2231. msgctxt "@text:window"
  2232. msgid "Materials"
  2233. msgstr "材料"
  2234. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  2235. msgctxt "@text:window"
  2236. msgid "Profiles"
  2237. msgstr "配置文件"
  2238. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  2239. msgctxt "@action:button"
  2240. msgid "Confirm"
  2241. msgstr "确认"
  2242. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  2243. msgctxt "@label"
  2244. msgid "You need to accept the license to install the package"
  2245. msgstr "需要接受许可证才能安装该程序包"
  2246. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  2247. msgctxt "@label"
  2248. msgid "Website"
  2249. msgstr "网站"
  2250. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  2251. msgctxt "@label"
  2252. msgid "Email"
  2253. msgstr "电子邮件"
  2254. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  2255. msgctxt "@label"
  2256. msgid "Version"
  2257. msgstr "版本"
  2258. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  2259. msgctxt "@label"
  2260. msgid "Last updated"
  2261. msgstr "更新日期"
  2262. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
  2263. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  2264. msgctxt "@label"
  2265. msgid "Brand"
  2266. msgstr "品牌"
  2267. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  2268. msgctxt "@label"
  2269. msgid "Downloads"
  2270. msgstr "下载项"
  2271. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2272. msgctxt "@label"
  2273. msgid "Community Contributions"
  2274. msgstr "社区贡献"
  2275. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2276. msgctxt "@label"
  2277. msgid "Community Plugins"
  2278. msgstr "社区插件"
  2279. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  2280. msgctxt "@label"
  2281. msgid "Generic Materials"
  2282. msgstr "通用材料"
  2283. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  2284. msgctxt "@info"
  2285. msgid "Could not connect to the Cura Package database. Please check your connection."
  2286. msgstr "无法连接到Cura包数据库。请检查您的连接。"
  2287. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  2288. msgctxt "@title:tab"
  2289. msgid "Installed plugins"
  2290. msgstr "已安装的插件"
  2291. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  2292. msgctxt "@info"
  2293. msgid "No plugin has been installed."
  2294. msgstr "尚未安装任何插件。"
  2295. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87
  2296. msgctxt "@title:tab"
  2297. msgid "Installed materials"
  2298. msgstr "已安装的材料"
  2299. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126
  2300. msgctxt "@info"
  2301. msgid "No material has been installed."
  2302. msgstr "尚未安装任何材料。"
  2303. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141
  2304. msgctxt "@title:tab"
  2305. msgid "Bundled plugins"
  2306. msgstr "已捆绑的插件"
  2307. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186
  2308. msgctxt "@title:tab"
  2309. msgid "Bundled materials"
  2310. msgstr "已捆绑的材料"
  2311. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  2312. msgctxt "@info"
  2313. msgid "Fetching packages..."
  2314. msgstr "获取包..."
  2315. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  2316. msgctxt "@description"
  2317. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  2318. msgstr "请登录以获取经验证适用于 Ultimaker Cura Enterprise 的插件和材料"
  2319. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  2320. msgctxt "@title"
  2321. msgid "Marketplace"
  2322. msgstr "市场"
  2323. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2324. msgctxt "@title"
  2325. msgid "Build Plate Leveling"
  2326. msgstr "打印平台调平"
  2327. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2328. msgctxt "@label"
  2329. 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."
  2330. msgstr "为了确保打印质量出色,您现在可以开始调整您的打印平台。当您点击「移动到下一个位置」时,喷嘴将移动到可以调节的不同位置。"
  2331. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2332. msgctxt "@label"
  2333. 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."
  2334. msgstr "在打印头停止的每一个位置下方插入一张纸,并调整平台高度。当纸张恰好被喷嘴的尖端轻微压住时,此时打印平台的高度已被正确校准。"
  2335. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2336. msgctxt "@action:button"
  2337. msgid "Start Build Plate Leveling"
  2338. msgstr "开始进行打印平台调平"
  2339. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2340. msgctxt "@action:button"
  2341. msgid "Move to Next Position"
  2342. msgstr "移动到下一个位置"
  2343. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2344. msgctxt "@label"
  2345. msgid "Please select any upgrades made to this Ultimaker Original"
  2346. msgstr "请选择适用于 Ultimaker Original 的升级文件"
  2347. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2348. msgctxt "@label"
  2349. msgid "Heated Build Plate (official kit or self-built)"
  2350. msgstr "热床(官方版本或自制)"
  2351. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  2352. msgctxt "@title:window"
  2353. msgid "Connect to Networked Printer"
  2354. msgstr "连接到网络打印机"
  2355. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2356. msgctxt "@label"
  2357. 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."
  2358. msgstr "欲通过网络向打印机发送打印请求,请确保您的打印机已通过网线或 WIFI 连接至网络。若不能连接 Cura 与打印机,亦可通过使用 USB 设备将 G-code 文件传输到打印机。"
  2359. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2360. msgctxt "@label"
  2361. msgid "Select your printer from the list below:"
  2362. msgstr "请从以下列表中选择您的打印机:"
  2363. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  2364. msgctxt "@action:button"
  2365. msgid "Edit"
  2366. msgstr "编辑"
  2367. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  2368. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
  2369. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  2370. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  2371. msgctxt "@action:button"
  2372. msgid "Remove"
  2373. msgstr "删除"
  2374. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  2375. msgctxt "@action:button"
  2376. msgid "Refresh"
  2377. msgstr "刷新"
  2378. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  2379. msgctxt "@label"
  2380. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2381. msgstr "如果您的打印机未列出,请阅读<a href='%1'>网络打印故障排除指南</a>"
  2382. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  2383. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  2384. msgctxt "@label"
  2385. msgid "Type"
  2386. msgstr "类型"
  2387. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  2388. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  2389. msgctxt "@label"
  2390. msgid "Firmware version"
  2391. msgstr "固件版本"
  2392. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  2393. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  2394. msgctxt "@label"
  2395. msgid "Address"
  2396. msgstr "地址"
  2397. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  2398. msgctxt "@label"
  2399. msgid "This printer is not set up to host a group of printers."
  2400. msgstr "这台打印机未设置为运行一组打印机。"
  2401. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  2402. msgctxt "@label"
  2403. msgid "This printer is the host for a group of %1 printers."
  2404. msgstr "这台打印机是一组共 %1 台打印机的主机。"
  2405. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  2406. msgctxt "@label"
  2407. msgid "The printer at this address has not yet responded."
  2408. msgstr "该网络地址的打印机尚未响应。"
  2409. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  2410. msgctxt "@action:button"
  2411. msgid "Connect"
  2412. msgstr "连接"
  2413. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  2414. msgctxt "@title:window"
  2415. msgid "Invalid IP address"
  2416. msgstr "IP 地址无效"
  2417. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2418. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  2419. msgctxt "@text"
  2420. msgid "Please enter a valid IP address."
  2421. msgstr "请输入有效的 IP 地址。"
  2422. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  2423. msgctxt "@title:window"
  2424. msgid "Printer Address"
  2425. msgstr "打印机网络地址"
  2426. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  2427. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  2428. msgctxt "@label"
  2429. msgid "Enter the IP address of your printer on the network."
  2430. msgstr "请输入打印机在网络上的 IP 地址。"
  2431. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2432. msgctxt "@title:window"
  2433. msgid "Configuration Changes"
  2434. msgstr "配置更改"
  2435. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  2436. msgctxt "@action:button"
  2437. msgid "Override"
  2438. msgstr "覆盖"
  2439. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  2440. msgctxt "@label"
  2441. msgid "The assigned printer, %1, requires the following configuration change:"
  2442. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2443. msgstr[0] "分配的打印机 %1 需要以下配置更改:"
  2444. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  2445. msgctxt "@label"
  2446. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2447. msgstr "已向打印机 %1 分配作业,但作业包含未知的材料配置。"
  2448. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  2449. msgctxt "@label"
  2450. msgid "Change material %1 from %2 to %3."
  2451. msgstr "将材料 %1 从 %2 更改为 %3。"
  2452. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  2453. msgctxt "@label"
  2454. msgid "Load %3 as material %1 (This cannot be overridden)."
  2455. msgstr "将 %3 作为材料 %1 进行加载(此操作无法覆盖)。"
  2456. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  2457. msgctxt "@label"
  2458. msgid "Change print core %1 from %2 to %3."
  2459. msgstr "将 Print Core %1 从 %2 更改为 %3。"
  2460. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  2461. msgctxt "@label"
  2462. msgid "Change build plate to %1 (This cannot be overridden)."
  2463. msgstr "将打印平台更改为 %1(此操作无法覆盖)。"
  2464. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  2465. msgctxt "@label"
  2466. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2467. msgstr "覆盖将使用包含现有打印机配置的指定设置。这可能会导致打印失败。"
  2468. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  2469. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  2470. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  2471. msgctxt "@label"
  2472. msgid "Glass"
  2473. msgstr "玻璃"
  2474. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  2475. msgctxt "@label"
  2476. msgid "Aluminum"
  2477. msgstr "铝"
  2478. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  2479. msgctxt "@label"
  2480. msgid "Move to top"
  2481. msgstr "移至顶部"
  2482. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  2483. msgctxt "@label"
  2484. msgid "Delete"
  2485. msgstr "删除"
  2486. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  2487. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290
  2488. msgctxt "@label"
  2489. msgid "Resume"
  2490. msgstr "恢复"
  2491. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  2492. msgctxt "@label"
  2493. msgid "Pausing..."
  2494. msgstr "正在暂停..."
  2495. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  2496. msgctxt "@label"
  2497. msgid "Resuming..."
  2498. msgstr "正在恢复..."
  2499. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  2500. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285
  2501. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294
  2502. msgctxt "@label"
  2503. msgid "Pause"
  2504. msgstr "暂停"
  2505. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2506. msgctxt "@label"
  2507. msgid "Aborting..."
  2508. msgstr "正在中止..."
  2509. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2510. msgctxt "@label"
  2511. msgid "Abort"
  2512. msgstr "中止"
  2513. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  2514. msgctxt "@label %1 is the name of a print job."
  2515. msgid "Are you sure you want to move %1 to the top of the queue?"
  2516. msgstr "您确定要将 %1 移至队列顶部吗?"
  2517. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2518. msgctxt "@window:title"
  2519. msgid "Move print job to top"
  2520. msgstr "将打印作业移至顶部"
  2521. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  2522. msgctxt "@label %1 is the name of a print job."
  2523. msgid "Are you sure you want to delete %1?"
  2524. msgstr "您确定要删除 %1 吗?"
  2525. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  2526. msgctxt "@window:title"
  2527. msgid "Delete print job"
  2528. msgstr "删除打印作业"
  2529. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  2530. msgctxt "@label %1 is the name of a print job."
  2531. msgid "Are you sure you want to abort %1?"
  2532. msgstr "您确定要中止 %1 吗?"
  2533. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  2534. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336
  2535. msgctxt "@window:title"
  2536. msgid "Abort print"
  2537. msgstr "中止打印"
  2538. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  2539. msgctxt "@label link to Connect and Cloud interfaces"
  2540. msgid "Manage printer"
  2541. msgstr "管理打印机"
  2542. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
  2543. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
  2544. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  2545. msgctxt "@info"
  2546. msgid "Please update your printer's firmware to manage the queue remotely."
  2547. msgstr "请及时更新打印机固件以远程管理打印队列。"
  2548. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288
  2549. msgctxt "@info"
  2550. msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  2551. msgstr "无法从 Ultimaker Cura 中查看云打印机的网络摄像头馈送。请单击“管理打印机”以访问 Ultimaker Digital Factory 并查看此网络摄像头。"
  2552. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2553. msgctxt "@label:status"
  2554. msgid "Loading..."
  2555. msgstr "正在加载..."
  2556. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2557. msgctxt "@label:status"
  2558. msgid "Unavailable"
  2559. msgstr "不可用"
  2560. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2561. msgctxt "@label:status"
  2562. msgid "Unreachable"
  2563. msgstr "无法连接"
  2564. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2565. msgctxt "@label:status"
  2566. msgid "Idle"
  2567. msgstr "空闲"
  2568. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
  2569. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2570. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2571. msgctxt "@label:status"
  2572. msgid "Preparing..."
  2573. msgstr "正在准备..."
  2574. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
  2575. msgctxt "@label:status"
  2576. msgid "Printing"
  2577. msgstr "打印"
  2578. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
  2579. msgctxt "@label"
  2580. msgid "Untitled"
  2581. msgstr "未命名"
  2582. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
  2583. msgctxt "@label"
  2584. msgid "Anonymous"
  2585. msgstr "匿名"
  2586. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
  2587. msgctxt "@label:status"
  2588. msgid "Requires configuration changes"
  2589. msgstr "需要更改配置"
  2590. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
  2591. msgctxt "@action:button"
  2592. msgid "Details"
  2593. msgstr "详细信息"
  2594. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  2595. msgctxt "@label"
  2596. msgid "Unavailable printer"
  2597. msgstr "不可用的打印机"
  2598. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  2599. msgctxt "@label"
  2600. msgid "First available"
  2601. msgstr "第一个可用"
  2602. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2603. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2604. msgctxt "@label:status"
  2605. msgid "Aborted"
  2606. msgstr "已中止"
  2607. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2608. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2609. msgctxt "@label:status"
  2610. msgid "Finished"
  2611. msgstr "已完成"
  2612. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2613. msgctxt "@label:status"
  2614. msgid "Aborting..."
  2615. msgstr "正在中止..."
  2616. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2617. msgctxt "@label:status"
  2618. msgid "Pausing..."
  2619. msgstr "正在暂停..."
  2620. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2621. msgctxt "@label:status"
  2622. msgid "Paused"
  2623. msgstr "已暂停"
  2624. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2625. msgctxt "@label:status"
  2626. msgid "Resuming..."
  2627. msgstr "正在恢复..."
  2628. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2629. msgctxt "@label:status"
  2630. msgid "Action required"
  2631. msgstr "需要采取行动"
  2632. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2633. msgctxt "@label:status"
  2634. msgid "Finishes %1 at %2"
  2635. msgstr "完成 %1 于 %2"
  2636. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  2637. msgctxt "@label"
  2638. msgid "Queued"
  2639. msgstr "已排队"
  2640. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  2641. msgctxt "@label link to connect manager"
  2642. msgid "Manage in browser"
  2643. msgstr "请于浏览器中进行管理"
  2644. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2645. msgctxt "@label"
  2646. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2647. msgstr "队列中无打印任务。可通过切片和发送添加任务。"
  2648. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  2649. msgctxt "@label"
  2650. msgid "Print jobs"
  2651. msgstr "打印作业"
  2652. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  2653. msgctxt "@label"
  2654. msgid "Total print time"
  2655. msgstr "总打印时间"
  2656. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  2657. msgctxt "@label"
  2658. msgid "Waiting for"
  2659. msgstr "等待"
  2660. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13
  2661. msgctxt "@title:window"
  2662. msgid "Print over network"
  2663. msgstr "通过网络打印"
  2664. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54
  2665. msgctxt "@action:button"
  2666. msgid "Print"
  2667. msgstr "打印"
  2668. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82
  2669. msgctxt "@label"
  2670. msgid "Printer selection"
  2671. msgstr "打印机选择"
  2672. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
  2673. msgctxt "@action:button"
  2674. msgid "Sign in"
  2675. msgstr "登录"
  2676. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20
  2677. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  2678. msgctxt "@label"
  2679. msgid "Sign in to the Ultimaker platform"
  2680. msgstr "登录 Ultimaker 平台"
  2681. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42
  2682. msgctxt "@text"
  2683. msgid ""
  2684. "- Add material profiles and plug-ins from the Marketplace\n"
  2685. "- Back-up and sync your material profiles and plug-ins\n"
  2686. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  2687. msgstr ""
  2688. "- 从 Marketplace 添加材料配置文件和插件\n"
  2689. "- 备份和同步材料配置文件和插件\n"
  2690. "- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助"
  2691. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62
  2692. msgctxt "@button"
  2693. msgid "Create a free Ultimaker account"
  2694. msgstr "创建免费的 Ultimaker 帐户"
  2695. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28
  2696. msgctxt "@label"
  2697. msgid "Checking..."
  2698. msgstr "正在检查..."
  2699. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35
  2700. msgctxt "@label"
  2701. msgid "Account synced"
  2702. msgstr "帐户已同步"
  2703. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42
  2704. msgctxt "@label"
  2705. msgid "Something went wrong..."
  2706. msgstr "发生了错误..."
  2707. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96
  2708. msgctxt "@button"
  2709. msgid "Install pending updates"
  2710. msgstr "安装挂起的更新"
  2711. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118
  2712. msgctxt "@button"
  2713. msgid "Check for account updates"
  2714. msgstr "检查是否存在帐户更新"
  2715. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:82
  2716. msgctxt "@label The argument is a timestamp"
  2717. msgid "Last update: %1"
  2718. msgstr "上次更新时间:%1"
  2719. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:110
  2720. msgctxt "@button"
  2721. msgid "Ultimaker Account"
  2722. msgstr "Ultimaker 帐户"
  2723. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126
  2724. msgctxt "@button"
  2725. msgid "Sign Out"
  2726. msgstr "注销"
  2727. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  2728. msgctxt "@label"
  2729. msgid "No time estimation available"
  2730. msgstr "无可用时间估计"
  2731. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  2732. msgctxt "@label"
  2733. msgid "No cost estimation available"
  2734. msgstr "无可用成本估计"
  2735. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  2736. msgctxt "@button"
  2737. msgid "Preview"
  2738. msgstr "预览"
  2739. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  2740. msgctxt "@label"
  2741. msgid "Time estimation"
  2742. msgstr "预计时间"
  2743. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  2744. msgctxt "@label"
  2745. msgid "Material estimation"
  2746. msgstr "预计材料"
  2747. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  2748. msgctxt "@label m for meter"
  2749. msgid "%1m"
  2750. msgstr "%1m"
  2751. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  2752. msgctxt "@label g for grams"
  2753. msgid "%1g"
  2754. msgstr "%1g"
  2755. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  2756. msgctxt "@label:PrintjobStatus"
  2757. msgid "Slicing..."
  2758. msgstr "正在切片..."
  2759. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82
  2760. msgctxt "@label:PrintjobStatus"
  2761. msgid "Unable to slice"
  2762. msgstr "无法切片"
  2763. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  2764. msgctxt "@button"
  2765. msgid "Processing"
  2766. msgstr "正在处理中"
  2767. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  2768. msgctxt "@button"
  2769. msgid "Slice"
  2770. msgstr "切片"
  2771. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122
  2772. msgctxt "@label"
  2773. msgid "Start the slicing process"
  2774. msgstr "开始切片流程"
  2775. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136
  2776. msgctxt "@button"
  2777. msgid "Cancel"
  2778. msgstr "取消"
  2779. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83
  2780. msgctxt "@action:inmenu"
  2781. msgid "Show Online Troubleshooting Guide"
  2782. msgstr "显示联机故障排除指南"
  2783. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90
  2784. msgctxt "@action:inmenu"
  2785. msgid "Toggle Full Screen"
  2786. msgstr "切换完整界面"
  2787. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98
  2788. msgctxt "@action:inmenu"
  2789. msgid "Exit Full Screen"
  2790. msgstr "退出完整界面"
  2791. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105
  2792. msgctxt "@action:inmenu menubar:edit"
  2793. msgid "&Undo"
  2794. msgstr "撤销(&U)"
  2795. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115
  2796. msgctxt "@action:inmenu menubar:edit"
  2797. msgid "&Redo"
  2798. msgstr "重做(&R)"
  2799. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133
  2800. msgctxt "@action:inmenu menubar:file"
  2801. msgid "&Quit"
  2802. msgstr "退出(&Q)"
  2803. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:141
  2804. msgctxt "@action:inmenu menubar:view"
  2805. msgid "3D View"
  2806. msgstr "3D 视图"
  2807. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:148
  2808. msgctxt "@action:inmenu menubar:view"
  2809. msgid "Front View"
  2810. msgstr "正视图"
  2811. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:155
  2812. msgctxt "@action:inmenu menubar:view"
  2813. msgid "Top View"
  2814. msgstr "顶视图"
  2815. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:162
  2816. msgctxt "@action:inmenu menubar:view"
  2817. msgid "Bottom View"
  2818. msgstr "仰视图"
  2819. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:169
  2820. msgctxt "@action:inmenu menubar:view"
  2821. msgid "Left Side View"
  2822. msgstr "左视图"
  2823. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:176
  2824. msgctxt "@action:inmenu menubar:view"
  2825. msgid "Right Side View"
  2826. msgstr "右视图"
  2827. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:190
  2828. msgctxt "@action:inmenu"
  2829. msgid "Configure Cura..."
  2830. msgstr "配置 Cura..."
  2831. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:197
  2832. msgctxt "@action:inmenu menubar:printer"
  2833. msgid "&Add Printer..."
  2834. msgstr "新增打印机(&A)..."
  2835. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203
  2836. msgctxt "@action:inmenu menubar:printer"
  2837. msgid "Manage Pr&inters..."
  2838. msgstr "管理打印机(&I)..."
  2839. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
  2840. msgctxt "@action:inmenu"
  2841. msgid "Manage Materials..."
  2842. msgstr "管理材料..."
  2843. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218
  2844. msgctxt "@action:inmenu"
  2845. msgid "Add more materials from Marketplace"
  2846. msgstr "从市场添加更多材料"
  2847. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:225
  2848. msgctxt "@action:inmenu menubar:profile"
  2849. msgid "&Update profile with current settings/overrides"
  2850. msgstr "使用当前设置 / 重写值更新配置文件(&U)"
  2851. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:233
  2852. msgctxt "@action:inmenu menubar:profile"
  2853. msgid "&Discard current changes"
  2854. msgstr "舍弃当前更改(&D)"
  2855. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:245
  2856. msgctxt "@action:inmenu menubar:profile"
  2857. msgid "&Create profile from current settings/overrides..."
  2858. msgstr "从当前设置 / 重写值创建配置文件(&C)..."
  2859. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:251
  2860. msgctxt "@action:inmenu menubar:profile"
  2861. msgid "Manage Profiles..."
  2862. msgstr "管理配置文件.."
  2863. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:259
  2864. msgctxt "@action:inmenu menubar:help"
  2865. msgid "Show Online &Documentation"
  2866. msgstr "显示在线文档(&D)"
  2867. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:267
  2868. msgctxt "@action:inmenu menubar:help"
  2869. msgid "Report a &Bug"
  2870. msgstr "BUG 反馈(&B)"
  2871. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:275
  2872. msgctxt "@action:inmenu menubar:help"
  2873. msgid "What's New"
  2874. msgstr "新增功能"
  2875. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:289
  2876. msgctxt "@action:inmenu menubar:help"
  2877. msgid "About..."
  2878. msgstr "关于..."
  2879. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:296
  2880. msgctxt "@action:inmenu menubar:edit"
  2881. msgid "Delete Selected"
  2882. msgstr "删除所选项"
  2883. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:306
  2884. msgctxt "@action:inmenu menubar:edit"
  2885. msgid "Center Selected"
  2886. msgstr "居中所选项"
  2887. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315
  2888. msgctxt "@action:inmenu menubar:edit"
  2889. msgid "Multiply Selected"
  2890. msgstr "复制所选项"
  2891. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:324
  2892. msgctxt "@action:inmenu"
  2893. msgid "Delete Model"
  2894. msgstr "删除模型"
  2895. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:332
  2896. msgctxt "@action:inmenu"
  2897. msgid "Ce&nter Model on Platform"
  2898. msgstr "使模型居于平台中央(&N)"
  2899. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:338
  2900. msgctxt "@action:inmenu menubar:edit"
  2901. msgid "&Group Models"
  2902. msgstr "绑定模型(&G)"
  2903. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:358
  2904. msgctxt "@action:inmenu menubar:edit"
  2905. msgid "Ungroup Models"
  2906. msgstr "拆分模型"
  2907. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:368
  2908. msgctxt "@action:inmenu menubar:edit"
  2909. msgid "&Merge Models"
  2910. msgstr "合并模型(&M)"
  2911. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:378
  2912. msgctxt "@action:inmenu"
  2913. msgid "&Multiply Model..."
  2914. msgstr "复制模型…(&M)"
  2915. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:385
  2916. msgctxt "@action:inmenu menubar:edit"
  2917. msgid "Select All Models"
  2918. msgstr "选择所有模型"
  2919. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:395
  2920. msgctxt "@action:inmenu menubar:edit"
  2921. msgid "Clear Build Plate"
  2922. msgstr "清空打印平台"
  2923. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:405
  2924. msgctxt "@action:inmenu menubar:file"
  2925. msgid "Reload All Models"
  2926. msgstr "重新载入所有模型"
  2927. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:414
  2928. msgctxt "@action:inmenu menubar:edit"
  2929. msgid "Arrange All Models To All Build Plates"
  2930. msgstr "将所有模型编位到所有打印平台"
  2931. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:421
  2932. msgctxt "@action:inmenu menubar:edit"
  2933. msgid "Arrange All Models"
  2934. msgstr "编位所有的模型"
  2935. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429
  2936. msgctxt "@action:inmenu menubar:edit"
  2937. msgid "Arrange Selection"
  2938. msgstr "为所选模型编位"
  2939. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:436
  2940. msgctxt "@action:inmenu menubar:edit"
  2941. msgid "Reset All Model Positions"
  2942. msgstr "复位所有模型的位置"
  2943. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443
  2944. msgctxt "@action:inmenu menubar:edit"
  2945. msgid "Reset All Model Transformations"
  2946. msgstr "复位所有模型的变动"
  2947. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:452
  2948. msgctxt "@action:inmenu menubar:file"
  2949. msgid "&Open File(s)..."
  2950. msgstr "打开文件(&O)..."
  2951. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:462
  2952. msgctxt "@action:inmenu menubar:file"
  2953. msgid "&New Project..."
  2954. msgstr "新建项目(&N)..."
  2955. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:469
  2956. msgctxt "@action:inmenu menubar:help"
  2957. msgid "Show Configuration Folder"
  2958. msgstr "显示配置文件夹"
  2959. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:476
  2960. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:535
  2961. msgctxt "@action:menu"
  2962. msgid "Configure setting visibility..."
  2963. msgstr "配置设定可见性..."
  2964. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:483
  2965. msgctxt "@action:menu"
  2966. msgid "&Marketplace"
  2967. msgstr "市场(&M)"
  2968. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  2969. msgctxt "@label:button"
  2970. msgid "My printers"
  2971. msgstr "我的打印机"
  2972. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  2973. msgctxt "@tooltip:button"
  2974. msgid "Monitor printers in Ultimaker Digital Factory."
  2975. msgstr "在 Ultimaker Digital Factory 中监控打印机。"
  2976. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  2977. msgctxt "@tooltip:button"
  2978. msgid "Create print projects in Digital Library."
  2979. msgstr "在 Digital Library 中创建打印项目。"
  2980. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  2981. msgctxt "@label:button"
  2982. msgid "Print jobs"
  2983. msgstr "打印作业"
  2984. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  2985. msgctxt "@tooltip:button"
  2986. msgid "Monitor print jobs and reprint from your print history."
  2987. msgstr "监控打印作业并从打印历史记录重新打印。"
  2988. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  2989. msgctxt "@tooltip:button"
  2990. msgid "Extend Ultimaker Cura with plugins and material profiles."
  2991. msgstr "用插件和材料配置文件扩展 Ultimaker Cura。"
  2992. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  2993. msgctxt "@tooltip:button"
  2994. msgid "Become a 3D printing expert with Ultimaker e-learning."
  2995. msgstr "通过 Ultimaker 线上课程教学,成为 3D 打印专家。"
  2996. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  2997. msgctxt "@label:button"
  2998. msgid "Ultimaker support"
  2999. msgstr "Ultimaker 支持"
  3000. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  3001. msgctxt "@tooltip:button"
  3002. msgid "Learn how to get started with Ultimaker Cura."
  3003. msgstr "了解如何开始使用 Ultimaker Cura。"
  3004. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  3005. msgctxt "@label:button"
  3006. msgid "Ask a question"
  3007. msgstr "提问"
  3008. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  3009. msgctxt "@tooltip:button"
  3010. msgid "Consult the Ultimaker Community."
  3011. msgstr "咨询 Ultimaker 社区。"
  3012. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  3013. msgctxt "@label:button"
  3014. msgid "Report a bug"
  3015. msgstr "报告错误"
  3016. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  3017. msgctxt "@tooltip:button"
  3018. msgid "Let developers know that something is going wrong."
  3019. msgstr "向开发人员报错。"
  3020. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  3021. msgctxt "@tooltip:button"
  3022. msgid "Visit the Ultimaker website."
  3023. msgstr "访问 Ultimaker 网站。"
  3024. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257
  3025. msgctxt "@label"
  3026. msgid "This package will be installed after restarting."
  3027. msgstr "这个包将在重新启动后安装。"
  3028. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468
  3029. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17
  3030. msgctxt "@title:tab"
  3031. msgid "General"
  3032. msgstr "基本"
  3033. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:471
  3034. msgctxt "@title:tab"
  3035. msgid "Settings"
  3036. msgstr "设置"
  3037. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:473
  3038. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
  3039. msgctxt "@title:tab"
  3040. msgid "Printers"
  3041. msgstr "打印机"
  3042. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:477
  3043. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  3044. msgctxt "@title:tab"
  3045. msgid "Profiles"
  3046. msgstr "配置文件"
  3047. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:594
  3048. msgctxt "@title:window %1 is the application name"
  3049. msgid "Closing %1"
  3050. msgstr "正在关闭 %1"
  3051. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:595
  3052. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:607
  3053. msgctxt "@label %1 is the application name"
  3054. msgid "Are you sure you want to exit %1?"
  3055. msgstr "您确定要退出 %1 吗?"
  3056. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:645
  3057. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  3058. msgctxt "@title:window"
  3059. msgid "Open file(s)"
  3060. msgstr "打开文件"
  3061. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:755
  3062. msgctxt "@window:title"
  3063. msgid "Install Package"
  3064. msgstr "安装包"
  3065. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:763
  3066. msgctxt "@title:window"
  3067. msgid "Open File(s)"
  3068. msgstr "打开文件"
  3069. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:766
  3070. msgctxt "@text:window"
  3071. 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."
  3072. msgstr "我们已经在您选择的文件中找到一个或多个 G-Code 文件。您一次只能打开一个 G-Code 文件。若需打开 G-Code 文件,请仅选择一个。"
  3073. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:875
  3074. msgctxt "@title:window"
  3075. msgid "Add Printer"
  3076. msgstr "新增打印机"
  3077. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:883
  3078. msgctxt "@title:window"
  3079. msgid "What's New"
  3080. msgstr "新增功能"
  3081. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  3082. msgctxt "@title:window The argument is the application name."
  3083. msgid "About %1"
  3084. msgstr "关于 %1"
  3085. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  3086. msgctxt "@label"
  3087. msgid "version: %1"
  3088. msgstr "版本: %1"
  3089. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  3090. msgctxt "@label"
  3091. msgid "End-to-end solution for fused filament 3D printing."
  3092. msgstr "熔丝 3D 打印技术的的端对端解决方案。"
  3093. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  3094. msgctxt "@info:credit"
  3095. msgid ""
  3096. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  3097. "Cura proudly uses the following open source projects:"
  3098. msgstr ""
  3099. "Cura 由 Ultimaker B.V. 与社区合作开发。\n"
  3100. "Cura 使用以下开源项目:"
  3101. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  3102. msgctxt "@label"
  3103. msgid "Graphical user interface"
  3104. msgstr "图形用户界面"
  3105. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  3106. msgctxt "@label"
  3107. msgid "Application framework"
  3108. msgstr "应用框架"
  3109. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  3110. msgctxt "@label"
  3111. msgid "G-code generator"
  3112. msgstr "G-code 生成器"
  3113. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  3114. msgctxt "@label"
  3115. msgid "Interprocess communication library"
  3116. msgstr "进程间通信交互使用库"
  3117. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  3118. msgctxt "@label"
  3119. msgid "Programming language"
  3120. msgstr "编程语言"
  3121. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  3122. msgctxt "@label"
  3123. msgid "GUI framework"
  3124. msgstr "GUI 框架"
  3125. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  3126. msgctxt "@label"
  3127. msgid "GUI framework bindings"
  3128. msgstr "GUI 框架绑定"
  3129. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  3130. msgctxt "@label"
  3131. msgid "C/C++ Binding library"
  3132. msgstr "C / C++ 绑定库"
  3133. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  3134. msgctxt "@label"
  3135. msgid "Data interchange format"
  3136. msgstr "数据交换格式"
  3137. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  3138. msgctxt "@label"
  3139. msgid "Support library for scientific computing"
  3140. msgstr "科学计算支持库"
  3141. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  3142. msgctxt "@label"
  3143. msgid "Support library for faster math"
  3144. msgstr "高速运算支持库"
  3145. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  3146. msgctxt "@label"
  3147. msgid "Support library for handling STL files"
  3148. msgstr "用于处理 STL 文件的支持库"
  3149. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  3150. msgctxt "@label"
  3151. msgid "Support library for handling planar objects"
  3152. msgstr "用于处理平面对象的支持库"
  3153. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3154. msgctxt "@label"
  3155. msgid "Support library for handling triangular meshes"
  3156. msgstr "用于处理三角网格的支持库"
  3157. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3158. msgctxt "@label"
  3159. msgid "Support library for handling 3MF files"
  3160. msgstr "用于处理 3MF 文件的支持库"
  3161. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3162. msgctxt "@label"
  3163. msgid "Support library for file metadata and streaming"
  3164. msgstr "用于文件元数据和流媒体的支持库"
  3165. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3166. msgctxt "@label"
  3167. msgid "Serial communication library"
  3168. msgstr "串口通讯库"
  3169. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3170. msgctxt "@label"
  3171. msgid "ZeroConf discovery library"
  3172. msgstr "ZeroConf 发现库"
  3173. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3174. msgctxt "@label"
  3175. msgid "Polygon clipping library"
  3176. msgstr "多边形剪辑库"
  3177. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3178. msgctxt "@Label"
  3179. msgid "Static type checker for Python"
  3180. msgstr "适用于 Python 的静态类型检查器"
  3181. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3182. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3183. msgctxt "@Label"
  3184. msgid "Root Certificates for validating SSL trustworthiness"
  3185. msgstr "用于验证 SSL 可信度的根证书"
  3186. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3187. msgctxt "@Label"
  3188. msgid "Python Error tracking library"
  3189. msgstr "Python 错误跟踪库"
  3190. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3191. msgctxt "@label"
  3192. msgid "Polygon packing library, developed by Prusa Research"
  3193. msgstr "Prusa Research 开发的多边形打包库"
  3194. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3195. msgctxt "@label"
  3196. msgid "Python bindings for libnest2d"
  3197. msgstr "libnest2d 的 Python 绑定"
  3198. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  3199. msgctxt "@label"
  3200. msgid "Support library for system keyring access"
  3201. msgstr "支持系统密钥环访问库"
  3202. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3203. msgctxt "@label"
  3204. msgid "Python extensions for Microsoft Windows"
  3205. msgstr "适用于 Microsoft Windows 的 Python 扩展"
  3206. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3207. msgctxt "@label"
  3208. msgid "Font"
  3209. msgstr "字体"
  3210. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3211. msgctxt "@label"
  3212. msgid "SVG icons"
  3213. msgstr "SVG 图标"
  3214. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  3215. msgctxt "@label"
  3216. msgid "Linux cross-distribution application deployment"
  3217. msgstr "Linux 交叉分布应用程序部署"
  3218. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3219. msgctxt "@title:window"
  3220. msgid "Open project file"
  3221. msgstr "打开项目文件"
  3222. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
  3223. msgctxt "@text:window"
  3224. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3225. msgstr "这是一个 Cura 项目文件。您想将其作为一个项目打开还是从中导入模型?"
  3226. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
  3227. msgctxt "@text:window"
  3228. msgid "Remember my choice"
  3229. msgstr "记住我的选择"
  3230. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
  3231. msgctxt "@action:button"
  3232. msgid "Open as project"
  3233. msgstr "作为项目打开"
  3234. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
  3235. msgctxt "@action:button"
  3236. msgid "Import models"
  3237. msgstr "导入模型"
  3238. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16
  3239. msgctxt "@title:window"
  3240. msgid "Discard or Keep changes"
  3241. msgstr "舍弃或保留更改"
  3242. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58
  3243. msgctxt "@text:window, %1 is a profile name"
  3244. msgid ""
  3245. "You have customized some profile settings.\n"
  3246. "Would you like to Keep these changed settings after switching profiles?\n"
  3247. "Alternatively, you can discard the changes to load the defaults from '%1'."
  3248. msgstr ""
  3249. "您已经自定义了若干配置文件设置。\n"
  3250. "是否要在切换配置文件后保留这些更改的设置?\n"
  3251. "或者,也可舍弃更改以从“%1”加载默认值。"
  3252. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112
  3253. msgctxt "@title:column"
  3254. msgid "Profile settings"
  3255. msgstr "配置文件设置"
  3256. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126
  3257. msgctxt "@title:column"
  3258. msgid "Current changes"
  3259. msgstr "当前更改"
  3260. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  3261. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:755
  3262. msgctxt "@option:discardOrKeep"
  3263. msgid "Always ask me this"
  3264. msgstr "总是询问"
  3265. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161
  3266. msgctxt "@option:discardOrKeep"
  3267. msgid "Discard and never ask again"
  3268. msgstr "舍弃更改,并不再询问此问题"
  3269. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162
  3270. msgctxt "@option:discardOrKeep"
  3271. msgid "Keep and never ask again"
  3272. msgstr "保留更改,并不再询问此问题"
  3273. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199
  3274. msgctxt "@action:button"
  3275. msgid "Discard changes"
  3276. msgstr "舍弃更改"
  3277. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212
  3278. msgctxt "@action:button"
  3279. msgid "Keep changes"
  3280. msgstr "保留更改"
  3281. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  3282. msgctxt "@text:window"
  3283. 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?"
  3284. msgstr "我们已经在您所选择的文件中找到一个或多个项目文件,但一次只能打开一个项目文件。我们建议只从那些文件中导入模型而不打开项目。您要继续操作吗?"
  3285. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
  3286. msgctxt "@action:button"
  3287. msgid "Import all as models"
  3288. msgstr "导入所有模型"
  3289. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16
  3290. msgctxt "@title:window"
  3291. msgid "Save Project"
  3292. msgstr "保存项目"
  3293. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174
  3294. msgctxt "@action:label"
  3295. msgid "Extruder %1"
  3296. msgstr "挤出机 %1"
  3297. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190
  3298. msgctxt "@action:label"
  3299. msgid "%1 & material"
  3300. msgstr "%1 & 材料"
  3301. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192
  3302. msgctxt "@action:label"
  3303. msgid "Material"
  3304. msgstr "材料"
  3305. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282
  3306. msgctxt "@action:label"
  3307. msgid "Don't show project summary on save again"
  3308. msgstr "保存时不再显示项目摘要"
  3309. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301
  3310. msgctxt "@action:button"
  3311. msgid "Save"
  3312. msgstr "保存"
  3313. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
  3314. msgctxt "@label %1 is filled in with the name of an extruder"
  3315. msgid "Print Selected Model with %1"
  3316. msgid_plural "Print Selected Models with %1"
  3317. msgstr[0] "用 %1 打印所选模型"
  3318. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
  3319. msgctxt "@text Print job name"
  3320. msgid "Untitled"
  3321. msgstr "未命名"
  3322. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  3323. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
  3324. msgctxt "@title:menu menubar:toplevel"
  3325. msgid "&File"
  3326. msgstr "文件(&F)"
  3327. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  3328. msgctxt "@title:menu menubar:toplevel"
  3329. msgid "&Edit"
  3330. msgstr "编辑(&E)"
  3331. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
  3332. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
  3333. msgctxt "@title:menu menubar:toplevel"
  3334. msgid "&View"
  3335. msgstr "视图(&V)"
  3336. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60
  3337. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
  3338. msgctxt "@title:menu menubar:toplevel"
  3339. msgid "&Settings"
  3340. msgstr "设置(&S)"
  3341. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66
  3342. msgctxt "@title:menu menubar:toplevel"
  3343. msgid "E&xtensions"
  3344. msgstr "扩展(&X)"
  3345. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112
  3346. msgctxt "@title:menu menubar:toplevel"
  3347. msgid "P&references"
  3348. msgstr "偏好设置(&R)"
  3349. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120
  3350. msgctxt "@title:menu menubar:toplevel"
  3351. msgid "&Help"
  3352. msgstr "帮助(&H)"
  3353. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166
  3354. msgctxt "@title:window"
  3355. msgid "New project"
  3356. msgstr "新建项目"
  3357. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167
  3358. msgctxt "@info:question"
  3359. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  3360. msgstr "你确定要开始一个新项目吗?这将清除打印平台及任何未保存的设置。"
  3361. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  3362. msgctxt "@action:button"
  3363. msgid "Marketplace"
  3364. msgstr "市场"
  3365. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3366. msgctxt "@header"
  3367. msgid "Configurations"
  3368. msgstr "配置"
  3369. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3370. msgctxt "@label"
  3371. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3372. msgstr "此配置不可用,因为 %1 未被识别。请访问 %2 以下载正确的材料配置文件。"
  3373. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3374. msgctxt "@label"
  3375. msgid "Marketplace"
  3376. msgstr "市场"
  3377. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  3378. msgctxt "@label"
  3379. msgid "Loading available configurations from the printer..."
  3380. msgstr "正在从打印机加载可用配置..."
  3381. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  3382. msgctxt "@label"
  3383. msgid "The configurations are not available because the printer is disconnected."
  3384. msgstr "该配置不可用,因为打印机已断开连接。"
  3385. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:140
  3386. msgctxt "@label"
  3387. msgid "Select configuration"
  3388. msgstr "选择配置"
  3389. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:251
  3390. msgctxt "@label"
  3391. msgid "Configurations"
  3392. msgstr "配置"
  3393. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  3394. msgctxt "@header"
  3395. msgid "Custom"
  3396. msgstr "自定义"
  3397. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  3398. msgctxt "@label"
  3399. msgid "Printer"
  3400. msgstr "打印机"
  3401. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  3402. msgctxt "@label"
  3403. msgid "Enabled"
  3404. msgstr "已启用"
  3405. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  3406. msgctxt "@label"
  3407. msgid "Material"
  3408. msgstr "材料"
  3409. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407
  3410. msgctxt "@label"
  3411. msgid "Use glue for better adhesion with this material combination."
  3412. msgstr "用胶粘和此材料组合以产生更好的附着。"
  3413. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
  3414. msgctxt "@label"
  3415. msgid "Print Selected Model With:"
  3416. msgid_plural "Print Selected Models With:"
  3417. msgstr[0] "打印所选模型:"
  3418. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
  3419. msgctxt "@title:window"
  3420. msgid "Multiply Selected Model"
  3421. msgid_plural "Multiply Selected Models"
  3422. msgstr[0] "复制所选模型"
  3423. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
  3424. msgctxt "@label"
  3425. msgid "Number of Copies"
  3426. msgstr "复制个数"
  3427. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41
  3428. msgctxt "@title:menu menubar:file"
  3429. msgid "&Save Project..."
  3430. msgstr "保存项目(&S)..."
  3431. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74
  3432. msgctxt "@title:menu menubar:file"
  3433. msgid "&Export..."
  3434. msgstr "导出(&E)..."
  3435. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85
  3436. msgctxt "@action:inmenu menubar:file"
  3437. msgid "Export Selection..."
  3438. msgstr "导出选择..."
  3439. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3440. msgctxt "@label:category menu label"
  3441. msgid "Material"
  3442. msgstr "材料"
  3443. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
  3444. msgctxt "@label:category menu label"
  3445. msgid "Favorites"
  3446. msgstr "收藏"
  3447. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
  3448. msgctxt "@label:category menu label"
  3449. msgid "Generic"
  3450. msgstr "通用"
  3451. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  3452. msgctxt "@title:menu menubar:file"
  3453. msgid "Open File(s)..."
  3454. msgstr "打开文件..."
  3455. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3456. msgctxt "@label:category menu label"
  3457. msgid "Network enabled printers"
  3458. msgstr "网络打印机"
  3459. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3460. msgctxt "@label:category menu label"
  3461. msgid "Local printers"
  3462. msgstr "本地打印机"
  3463. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3464. msgctxt "@title:menu menubar:file"
  3465. msgid "Open &Recent"
  3466. msgstr "打开最近使用过的文件(&R)"
  3467. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  3468. msgctxt "@title:menu menubar:file"
  3469. msgid "Save Project..."
  3470. msgstr "保存项目..."
  3471. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
  3472. msgctxt "@title:menu menubar:settings"
  3473. msgid "&Printer"
  3474. msgstr "打印机(&P)"
  3475. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29
  3476. msgctxt "@title:menu"
  3477. msgid "&Material"
  3478. msgstr "材料(&M)"
  3479. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44
  3480. msgctxt "@action:inmenu"
  3481. msgid "Set as Active Extruder"
  3482. msgstr "设为主要挤出机"
  3483. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50
  3484. msgctxt "@action:inmenu"
  3485. msgid "Enable Extruder"
  3486. msgstr "启用挤出机"
  3487. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57
  3488. msgctxt "@action:inmenu"
  3489. msgid "Disable Extruder"
  3490. msgstr "禁用挤出机"
  3491. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  3492. msgctxt "@action:inmenu"
  3493. msgid "Visible Settings"
  3494. msgstr "可见设置"
  3495. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
  3496. msgctxt "@action:inmenu"
  3497. msgid "Collapse All Categories"
  3498. msgstr "折叠所有类别"
  3499. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  3500. msgctxt "@action:inmenu"
  3501. msgid "Manage Setting Visibility..."
  3502. msgstr "管理设置可见性..."
  3503. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
  3504. msgctxt "@action:inmenu menubar:view"
  3505. msgid "&Camera position"
  3506. msgstr "摄像头位置(&C)"
  3507. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45
  3508. msgctxt "@action:inmenu menubar:view"
  3509. msgid "Camera view"
  3510. msgstr "摄像头视图"
  3511. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48
  3512. msgctxt "@action:inmenu menubar:view"
  3513. msgid "Perspective"
  3514. msgstr "透视"
  3515. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60
  3516. msgctxt "@action:inmenu menubar:view"
  3517. msgid "Orthographic"
  3518. msgstr "正交"
  3519. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81
  3520. msgctxt "@action:inmenu menubar:view"
  3521. msgid "&Build plate"
  3522. msgstr "打印平台(&B)"
  3523. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
  3524. msgctxt "@label:MonitorStatus"
  3525. msgid "Not connected to a printer"
  3526. msgstr "未连接至打印机"
  3527. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
  3528. msgctxt "@label:MonitorStatus"
  3529. msgid "Printer does not accept commands"
  3530. msgstr "打印机不接受命令"
  3531. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
  3532. msgctxt "@label:MonitorStatus"
  3533. msgid "In maintenance. Please check the printer"
  3534. msgstr "维护中。请检查打印机"
  3535. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
  3536. msgctxt "@label:MonitorStatus"
  3537. msgid "Lost connection with the printer"
  3538. msgstr "与打印机的连接中断"
  3539. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
  3540. msgctxt "@label:MonitorStatus"
  3541. msgid "Printing..."
  3542. msgstr "打印中..."
  3543. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
  3544. msgctxt "@label:MonitorStatus"
  3545. msgid "Paused"
  3546. msgstr "已暂停"
  3547. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
  3548. msgctxt "@label:MonitorStatus"
  3549. msgid "Preparing..."
  3550. msgstr "初始化中..."
  3551. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
  3552. msgctxt "@label:MonitorStatus"
  3553. msgid "Please remove the print"
  3554. msgstr "请取出打印件"
  3555. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326
  3556. msgctxt "@label"
  3557. msgid "Abort Print"
  3558. msgstr "中止打印"
  3559. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338
  3560. msgctxt "@label"
  3561. msgid "Are you sure you want to abort the print?"
  3562. msgstr "您确定要中止打印吗?"
  3563. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112
  3564. msgctxt "@label"
  3565. msgid "Is printed as support."
  3566. msgstr "打印为支撑。"
  3567. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115
  3568. msgctxt "@label"
  3569. msgid "Other models overlapping with this model are modified."
  3570. msgstr "修改了与此模型重叠的其他模型。"
  3571. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118
  3572. msgctxt "@label"
  3573. msgid "Infill overlapping with this model is modified."
  3574. msgstr "修改了与该模型重叠的填充。"
  3575. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:121
  3576. msgctxt "@label"
  3577. msgid "Overlaps with this model are not supported."
  3578. msgstr "不支持与此模型重叠。"
  3579. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:128
  3580. msgctxt "@label %1 is the number of settings it overrides."
  3581. msgid "Overrides %1 setting."
  3582. msgid_plural "Overrides %1 settings."
  3583. msgstr[0] "覆盖 %1 设置。"
  3584. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
  3585. msgctxt "@label"
  3586. msgid "Object list"
  3587. msgstr "对象列表"
  3588. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:143
  3589. msgctxt "@label"
  3590. msgid "Interface"
  3591. msgstr "接口"
  3592. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:215
  3593. msgctxt "@label"
  3594. msgid "Currency:"
  3595. msgstr "币种:"
  3596. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:228
  3597. msgctxt "@label"
  3598. msgid "Theme:"
  3599. msgstr "主题:"
  3600. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:273
  3601. msgctxt "@label"
  3602. msgid "You will need to restart the application for these changes to have effect."
  3603. msgstr "需重新启动 Cura,新的设置才能生效。"
  3604. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:290
  3605. msgctxt "@info:tooltip"
  3606. msgid "Slice automatically when changing settings."
  3607. msgstr "当设置被更改时自动进行切片。"
  3608. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:298
  3609. msgctxt "@option:check"
  3610. msgid "Slice automatically"
  3611. msgstr "自动切片"
  3612. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:312
  3613. msgctxt "@label"
  3614. msgid "Viewport behavior"
  3615. msgstr "视区行为"
  3616. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320
  3617. msgctxt "@info:tooltip"
  3618. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3619. msgstr "以红色突出显示模型需要增加支撑结构的区域。没有支撑,这些区域将无法正确打印。"
  3620. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:329
  3621. msgctxt "@option:check"
  3622. msgid "Display overhang"
  3623. msgstr "显示悬垂(Overhang)"
  3624. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:339
  3625. msgctxt "@info:tooltip"
  3626. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3627. msgstr "使用警告标志突出显示模型缺少或多余的表面。刀具路径常常是要打印的几何结构缺少的部分。"
  3628. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:348
  3629. msgctxt "@option:check"
  3630. msgid "Display model errors"
  3631. msgstr "显示模型错误"
  3632. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:356
  3633. msgctxt "@info:tooltip"
  3634. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3635. msgstr "当模型被选中时,视角将自动调整到最合适的观察位置(模型处于正中央)"
  3636. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:361
  3637. msgctxt "@action:button"
  3638. msgid "Center camera when item is selected"
  3639. msgstr "当项目被选中时,自动对中视角"
  3640. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:371
  3641. msgctxt "@info:tooltip"
  3642. msgid "Should the default zoom behavior of cura be inverted?"
  3643. msgstr "需要令 Cura 的默认缩放操作反转吗?"
  3644. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:376
  3645. msgctxt "@action:button"
  3646. msgid "Invert the direction of camera zoom."
  3647. msgstr "反转视角变焦方向。"
  3648. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:392
  3649. msgctxt "@info:tooltip"
  3650. msgid "Should zooming move in the direction of the mouse?"
  3651. msgstr "是否跟随鼠标方向进行缩放?"
  3652. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:392
  3653. msgctxt "@info:tooltip"
  3654. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3655. msgstr "正交透视不支持通过鼠标进行缩放。"
  3656. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:397
  3657. msgctxt "@action:button"
  3658. msgid "Zoom toward mouse direction"
  3659. msgstr "跟随鼠标方向缩放"
  3660. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:423
  3661. msgctxt "@info:tooltip"
  3662. msgid "Should models on the platform be moved so that they no longer intersect?"
  3663. msgstr "需要移动平台上的模型,使它们不再相交吗?"
  3664. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:428
  3665. msgctxt "@option:check"
  3666. msgid "Ensure models are kept apart"
  3667. msgstr "确保每个模型都保持分离"
  3668. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437
  3669. msgctxt "@info:tooltip"
  3670. msgid "Should models on the platform be moved down to touch the build plate?"
  3671. msgstr "需要转动模型,使它们接触打印平台吗?"
  3672. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:442
  3673. msgctxt "@option:check"
  3674. msgid "Automatically drop models to the build plate"
  3675. msgstr "自动下降模型到打印平台"
  3676. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3677. msgctxt "@info:tooltip"
  3678. msgid "Show caution message in g-code reader."
  3679. msgstr "在 G-code 读取器中显示警告信息。"
  3680. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463
  3681. msgctxt "@option:check"
  3682. msgid "Caution message in g-code reader"
  3683. msgstr "G-code 读取器中的警告信息"
  3684. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:471
  3685. msgctxt "@info:tooltip"
  3686. msgid "Should layer be forced into compatibility mode?"
  3687. msgstr "层视图要强制进入兼容模式吗?"
  3688. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:476
  3689. msgctxt "@option:check"
  3690. msgid "Force layer view compatibility mode (restart required)"
  3691. msgstr "强制层视图兼容模式(需要重新启动)"
  3692. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:486
  3693. msgctxt "@info:tooltip"
  3694. msgid "Should Cura open at the location it was closed?"
  3695. msgstr "Cura 是否应该在关闭的位置打开?"
  3696. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:491
  3697. msgctxt "@option:check"
  3698. msgid "Restore window position on start"
  3699. msgstr "恢复初始窗口位置"
  3700. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:501
  3701. msgctxt "@info:tooltip"
  3702. msgid "What type of camera rendering should be used?"
  3703. msgstr "应使用哪种类型的摄像头进行渲染?"
  3704. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:508
  3705. msgctxt "@window:text"
  3706. msgid "Camera rendering:"
  3707. msgstr "摄像头渲染:"
  3708. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:515
  3709. msgid "Perspective"
  3710. msgstr "透视"
  3711. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516
  3712. msgid "Orthographic"
  3713. msgstr "正交"
  3714. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:554
  3715. msgctxt "@label"
  3716. msgid "Opening and saving files"
  3717. msgstr "打开并保存文件"
  3718. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:561
  3719. msgctxt "@info:tooltip"
  3720. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3721. msgstr "应从桌面打开文件还是在同一 Cura 实例中打开外部应用程序?"
  3722. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:566
  3723. msgctxt "@option:check"
  3724. msgid "Use a single instance of Cura"
  3725. msgstr "使用单个 Cura 实例"
  3726. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:576
  3727. msgctxt "@info:tooltip"
  3728. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  3729. msgstr "是否应在清理构建板后再将新模型加载到单个 Cura 实例中?"
  3730. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:582
  3731. msgctxt "@option:check"
  3732. msgid "Clear buildplate before loading model into the single instance"
  3733. msgstr "在清理构建板后再将模型加载到单个实例中"
  3734. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:592
  3735. msgctxt "@info:tooltip"
  3736. msgid "Should models be scaled to the build volume if they are too large?"
  3737. msgstr "当模型的尺寸过大时,是否将模型自动缩小至成形空间体积?"
  3738. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:597
  3739. msgctxt "@option:check"
  3740. msgid "Scale large models"
  3741. msgstr "缩小过大模型"
  3742. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:607
  3743. msgctxt "@info:tooltip"
  3744. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3745. msgstr "当模型以米而不是毫米为单位时,模型可能会在打印平台中显得非常小。在此情况下是否进行放大?"
  3746. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:612
  3747. msgctxt "@option:check"
  3748. msgid "Scale extremely small models"
  3749. msgstr "放大过小模型"
  3750. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:622
  3751. msgctxt "@info:tooltip"
  3752. msgid "Should models be selected after they are loaded?"
  3753. msgstr "模型是否应该在加载后被选中?"
  3754. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:627
  3755. msgctxt "@option:check"
  3756. msgid "Select models when loaded"
  3757. msgstr "选择模型时加载"
  3758. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:637
  3759. msgctxt "@info:tooltip"
  3760. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3761. msgstr "打印机名是否自动作为打印作业名称的前缀?"
  3762. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:642
  3763. msgctxt "@option:check"
  3764. msgid "Add machine prefix to job name"
  3765. msgstr "将机器前缀添加到作业名称中"
  3766. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652
  3767. msgctxt "@info:tooltip"
  3768. msgid "Should a summary be shown when saving a project file?"
  3769. msgstr "保存项目文件时是否显示摘要?"
  3770. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:656
  3771. msgctxt "@option:check"
  3772. msgid "Show summary dialog when saving project"
  3773. msgstr "保存项目时显示摘要对话框"
  3774. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666
  3775. msgctxt "@info:tooltip"
  3776. msgid "Default behavior when opening a project file"
  3777. msgstr "打开项目文件时的默认行为"
  3778. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:674
  3779. msgctxt "@window:text"
  3780. msgid "Default behavior when opening a project file: "
  3781. msgstr "打开项目文件时的默认行为: "
  3782. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688
  3783. msgctxt "@option:openProject"
  3784. msgid "Always ask me this"
  3785. msgstr "总是询问"
  3786. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:689
  3787. msgctxt "@option:openProject"
  3788. msgid "Always open as a project"
  3789. msgstr "始终作为一个项目打开"
  3790. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:690
  3791. msgctxt "@option:openProject"
  3792. msgid "Always import models"
  3793. msgstr "始终导入模型"
  3794. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:727
  3795. msgctxt "@info:tooltip"
  3796. 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."
  3797. msgstr "当您对配置文件进行更改并切换到其他配置文件时将显示一个对话框,询问您是否要保留修改。您也可以选择一个默认行为并令其不再显示该对话框。"
  3798. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:736
  3799. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  3800. msgctxt "@label"
  3801. msgid "Profiles"
  3802. msgstr "配置文件"
  3803. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:741
  3804. msgctxt "@window:text"
  3805. msgid "Default behavior for changed setting values when switching to a different profile: "
  3806. msgstr "切换到不同配置文件时对设置值更改的默认操作: "
  3807. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:756
  3808. msgctxt "@option:discardOrKeep"
  3809. msgid "Always discard changed settings"
  3810. msgstr "总是舍失更改的设置"
  3811. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:757
  3812. msgctxt "@option:discardOrKeep"
  3813. msgid "Always transfer changed settings to new profile"
  3814. msgstr "总是将更改的设置传输至新配置文件"
  3815. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:791
  3816. msgctxt "@label"
  3817. msgid "Privacy"
  3818. msgstr "隐私"
  3819. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797
  3820. msgctxt "@info:tooltip"
  3821. 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."
  3822. msgstr "您愿意将关于您的打印数据以匿名形式发送到 Ultimaker 吗?注意:我们不会记录/发送任何模型、IP 地址或其他私人数据。"
  3823. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:802
  3824. msgctxt "@option:check"
  3825. msgid "Send (anonymous) print information"
  3826. msgstr "(匿名)发送打印信息"
  3827. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:811
  3828. msgctxt "@action:button"
  3829. msgid "More information"
  3830. msgstr "详细信息"
  3831. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:829
  3832. msgctxt "@label"
  3833. msgid "Updates"
  3834. msgstr "更新"
  3835. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:836
  3836. msgctxt "@info:tooltip"
  3837. msgid "Should Cura check for updates when the program is started?"
  3838. msgstr "当 Cura 启动时,是否自动检查更新?"
  3839. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841
  3840. msgctxt "@option:check"
  3841. msgid "Check for updates on start"
  3842. msgstr "启动时检查更新"
  3843. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:852
  3844. msgctxt "@info:tooltip"
  3845. msgid "When checking for updates, only check for stable releases."
  3846. msgstr "在检查更新时,只检查稳定版。"
  3847. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:857
  3848. msgctxt "@option:radio"
  3849. msgid "Stable releases only"
  3850. msgstr "仅限稳定版"
  3851. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:868
  3852. msgctxt "@info:tooltip"
  3853. msgid "When checking for updates, check for both stable and for beta releases."
  3854. msgstr "在检查更新时,同时检查稳定版和测试版。"
  3855. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:873
  3856. msgctxt "@option:radio"
  3857. msgid "Stable and Beta releases"
  3858. msgstr "稳定版和测试版"
  3859. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:884
  3860. msgctxt "@info:tooltip"
  3861. 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!"
  3862. msgstr "是否应在每次启动 Cura 时自动检查新插件?强烈建议您不要禁用此功能!"
  3863. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:889
  3864. msgctxt "@option:check"
  3865. msgid "Get notifications for plugin updates"
  3866. msgstr "获取插件更新通知"
  3867. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
  3868. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  3869. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3870. msgctxt "@action:button"
  3871. msgid "Activate"
  3872. msgstr "激活"
  3873. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
  3874. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3875. msgctxt "@action:button"
  3876. msgid "Rename"
  3877. msgstr "重命名"
  3878. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3879. msgctxt "@action:button"
  3880. msgid "Create"
  3881. msgstr "创建"
  3882. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3883. msgctxt "@action:button"
  3884. msgid "Duplicate"
  3885. msgstr "复制"
  3886. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  3887. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3888. msgctxt "@action:button"
  3889. msgid "Import"
  3890. msgstr "导入"
  3891. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  3892. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3893. msgctxt "@action:button"
  3894. msgid "Export"
  3895. msgstr "导出"
  3896. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199
  3897. msgctxt "@action:button Sending materials to printers"
  3898. msgid "Sync with Printers"
  3899. msgstr "与打印机同步"
  3900. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:249
  3901. msgctxt "@action:label"
  3902. msgid "Printer"
  3903. msgstr "打印机"
  3904. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:313
  3905. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  3906. msgctxt "@title:window"
  3907. msgid "Confirm Remove"
  3908. msgstr "确认删除"
  3909. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316
  3910. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3911. msgctxt "@label (%1 is object name)"
  3912. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3913. msgstr "您确认要删除 %1?该操作无法恢复!"
  3914. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:330
  3915. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338
  3916. msgctxt "@title:window"
  3917. msgid "Import Material"
  3918. msgstr "导入配置"
  3919. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:339
  3920. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3921. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3922. msgstr "无法导入材料 <filename>%1</filename>: <message>%2</message>"
  3923. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:343
  3924. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3925. msgid "Successfully imported material <filename>%1</filename>"
  3926. msgstr "成功导入材料 <filename>%1</filename>"
  3927. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:361
  3928. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:369
  3929. msgctxt "@title:window"
  3930. msgid "Export Material"
  3931. msgstr "导出材料"
  3932. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:373
  3933. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3934. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3935. msgstr "无法导出材料至 <filename>%1</filename>: <message>%2</message>"
  3936. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:379
  3937. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3938. msgid "Successfully exported material to <filename>%1</filename>"
  3939. msgstr "成功导出材料至: <filename>%1</filename>"
  3940. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:389
  3941. msgctxt "@title:window"
  3942. msgid "Export All Materials"
  3943. msgstr "导出所有材料"
  3944. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3945. msgctxt "@title"
  3946. msgid "Information"
  3947. msgstr "信息"
  3948. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3949. msgctxt "@title:window"
  3950. msgid "Confirm Diameter Change"
  3951. msgstr "确认直径更改"
  3952. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3953. msgctxt "@label (%1 is a number)"
  3954. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3955. msgstr "新的灯丝直径被设置为%1毫米,这与当前的挤出机不兼容。你想继续吗?"
  3956. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3957. msgctxt "@label"
  3958. msgid "Display Name"
  3959. msgstr "显示名称"
  3960. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3961. msgctxt "@label"
  3962. msgid "Material Type"
  3963. msgstr "材料类型"
  3964. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3965. msgctxt "@label"
  3966. msgid "Color"
  3967. msgstr "颜色"
  3968. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3969. msgctxt "@label"
  3970. msgid "Properties"
  3971. msgstr "属性"
  3972. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3973. msgctxt "@label"
  3974. msgid "Density"
  3975. msgstr "密度"
  3976. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3977. msgctxt "@label"
  3978. msgid "Diameter"
  3979. msgstr "直径"
  3980. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3981. msgctxt "@label"
  3982. msgid "Filament Cost"
  3983. msgstr "耗材成本"
  3984. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3985. msgctxt "@label"
  3986. msgid "Filament weight"
  3987. msgstr "耗材重量"
  3988. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3989. msgctxt "@label"
  3990. msgid "Filament length"
  3991. msgstr "耗材长度"
  3992. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3993. msgctxt "@label"
  3994. msgid "Cost per Meter"
  3995. msgstr "每米成本"
  3996. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3997. msgctxt "@label"
  3998. msgid "This material is linked to %1 and shares some of its properties."
  3999. msgstr "此材料与 %1 相关联,并共享其某些属性。"
  4000. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  4001. msgctxt "@label"
  4002. msgid "Unlink Material"
  4003. msgstr "解绑材料"
  4004. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  4005. msgctxt "@label"
  4006. msgid "Description"
  4007. msgstr "描述"
  4008. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  4009. msgctxt "@label"
  4010. msgid "Adhesion Information"
  4011. msgstr "粘附信息"
  4012. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  4013. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  4014. msgctxt "@label"
  4015. msgid "Print settings"
  4016. msgstr "打印设置"
  4017. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  4018. msgctxt "@label"
  4019. msgid "Create"
  4020. msgstr "创建"
  4021. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  4022. msgctxt "@label"
  4023. msgid "Duplicate"
  4024. msgstr "复制"
  4025. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  4026. msgctxt "@title:window"
  4027. msgid "Create Profile"
  4028. msgstr "创建配置文件"
  4029. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  4030. msgctxt "@info"
  4031. msgid "Please provide a name for this profile."
  4032. msgstr "请为此配置文件提供名称。"
  4033. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263
  4034. msgctxt "@title:window"
  4035. msgid "Duplicate Profile"
  4036. msgstr "复制配置文件"
  4037. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  4038. msgctxt "@title:window"
  4039. msgid "Rename Profile"
  4040. msgstr "重命名配置文件"
  4041. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307
  4042. msgctxt "@title:window"
  4043. msgid "Import Profile"
  4044. msgstr "导入配置文件"
  4045. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336
  4046. msgctxt "@title:window"
  4047. msgid "Export Profile"
  4048. msgstr "导出配置文件"
  4049. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399
  4050. msgctxt "@label %1 is printer name"
  4051. msgid "Printer: %1"
  4052. msgstr "打印机:%1"
  4053. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557
  4054. msgctxt "@action:button"
  4055. msgid "Update profile with current settings/overrides"
  4056. msgstr "使用当前设置 / 重写值更新配置文件"
  4057. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564
  4058. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
  4059. msgctxt "@action:button"
  4060. msgid "Discard current changes"
  4061. msgstr "舍弃当前更改"
  4062. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583
  4063. msgctxt "@action:label"
  4064. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  4065. msgstr "此配置文件使用打印机指定的默认值,因此在下面的列表中没有此设置项。"
  4066. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591
  4067. msgctxt "@action:label"
  4068. msgid "Your current settings match the selected profile."
  4069. msgstr "您当前的设置与选定的配置文件相匹配。"
  4070. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609
  4071. msgctxt "@title:tab"
  4072. msgid "Global Settings"
  4073. msgstr "全局设置"
  4074. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
  4075. msgctxt "@info:status"
  4076. msgid "Calculated"
  4077. msgstr "已计算"
  4078. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
  4079. msgctxt "@title:column"
  4080. msgid "Setting"
  4081. msgstr "设置"
  4082. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
  4083. msgctxt "@title:column"
  4084. msgid "Profile"
  4085. msgstr "配置文件"
  4086. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
  4087. msgctxt "@title:column"
  4088. msgid "Current"
  4089. msgstr "当前"
  4090. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
  4091. msgctxt "@title:column"
  4092. msgid "Unit"
  4093. msgstr "单位"
  4094. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16
  4095. msgctxt "@title:tab"
  4096. msgid "Setting Visibility"
  4097. msgstr "设置可见性"
  4098. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48
  4099. msgctxt "@label:textbox"
  4100. msgid "Check all"
  4101. msgstr "全部勾选"
  4102. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  4103. msgctxt "@label"
  4104. msgid "Extruder"
  4105. msgstr "挤出机"
  4106. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  4107. msgctxt "@tooltip"
  4108. 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."
  4109. msgstr "热端的目标温度。 热端将加热或冷却至此温度。 如果目标温度为 0,则热端加热将关闭。"
  4110. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  4111. msgctxt "@tooltip"
  4112. msgid "The current temperature of this hotend."
  4113. msgstr "该热端的当前温度。"
  4114. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  4115. msgctxt "@tooltip of temperature input"
  4116. msgid "The temperature to pre-heat the hotend to."
  4117. msgstr "热端的预热温度。"
  4118. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  4119. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  4120. msgctxt "@button Cancel pre-heating"
  4121. msgid "Cancel"
  4122. msgstr "取消"
  4123. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  4124. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  4125. msgctxt "@button"
  4126. msgid "Pre-heat"
  4127. msgstr "预热"
  4128. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  4129. msgctxt "@tooltip of pre-heat"
  4130. 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."
  4131. msgstr "打印前请预热热端。您可以在热端加热时继续调整打印机,而不必等待热端加热完毕再做好打印准备。"
  4132. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  4133. msgctxt "@tooltip"
  4134. msgid "The colour of the material in this extruder."
  4135. msgstr "该挤出机中材料的颜色。"
  4136. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  4137. msgctxt "@tooltip"
  4138. msgid "The material in this extruder."
  4139. msgstr "该挤出机中的材料。"
  4140. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  4141. msgctxt "@tooltip"
  4142. msgid "The nozzle inserted in this extruder."
  4143. msgstr "该挤出机所使用的喷嘴。"
  4144. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  4145. msgctxt "@label"
  4146. msgid "Build plate"
  4147. msgstr "打印平台"
  4148. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  4149. msgctxt "@tooltip"
  4150. 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."
  4151. msgstr "热床的目标温度。热床将加热或冷却至此温度。若设置为 0,则不使用热床。"
  4152. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4153. msgctxt "@tooltip"
  4154. msgid "The current temperature of the heated bed."
  4155. msgstr "热床当前温度。"
  4156. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  4157. msgctxt "@tooltip of temperature input"
  4158. msgid "The temperature to pre-heat the bed to."
  4159. msgstr "热床的预热温度。"
  4160. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  4161. msgctxt "@tooltip of pre-heat"
  4162. 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."
  4163. msgstr "打印前请预热热床。您可以在热床加热时继续调整相关项,让您在准备打印时不必等待热床加热完毕。"
  4164. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  4165. msgctxt "@label"
  4166. msgid "Printer control"
  4167. msgstr "打印机控制"
  4168. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  4169. msgctxt "@label"
  4170. msgid "Jog Position"
  4171. msgstr "垛齐位置"
  4172. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  4173. msgctxt "@label"
  4174. msgid "X/Y"
  4175. msgstr "X/Y"
  4176. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  4177. msgctxt "@label"
  4178. msgid "Z"
  4179. msgstr "Z"
  4180. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4181. msgctxt "@label"
  4182. msgid "Jog Distance"
  4183. msgstr "垛齐距离"
  4184. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  4185. msgctxt "@label"
  4186. msgid "Send G-code"
  4187. msgstr "发送 G-code"
  4188. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  4189. msgctxt "@tooltip of G-code command input"
  4190. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4191. msgstr "向连接的打印机发送自定义 G-code 命令。按“Enter”发送命令。"
  4192. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4193. msgctxt "@info:status"
  4194. msgid "The printer is not connected."
  4195. msgstr "尚未连接到打印机。"
  4196. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4197. msgctxt "@status"
  4198. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  4199. msgstr "云打印机离线。请检查打印机是否已开启并连接到 Internet。"
  4200. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4201. msgctxt "@status"
  4202. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4203. msgstr "此打印机未链接到您的帐户。请访问 Ultimaker Digital Factory 以建立连接。"
  4204. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4205. msgctxt "@status"
  4206. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4207. msgstr "云连接当前不可用。请登录以连接到云打印机。"
  4208. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4209. msgctxt "@status"
  4210. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4211. msgstr "云连接当前不可用。请检查您的 Internet 连接。"
  4212. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252
  4213. msgctxt "@button"
  4214. msgid "Add printer"
  4215. msgstr "添加打印机"
  4216. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269
  4217. msgctxt "@button"
  4218. msgid "Manage printers"
  4219. msgstr "管理打印机"
  4220. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4221. msgctxt "@label"
  4222. msgid "Connected printers"
  4223. msgstr "已连接的打印机"
  4224. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4225. msgctxt "@label"
  4226. msgid "Preset printers"
  4227. msgstr "预设打印机"
  4228. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
  4229. msgctxt "@label"
  4230. msgid "Active print"
  4231. msgstr "正在打印"
  4232. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
  4233. msgctxt "@label"
  4234. msgid "Job Name"
  4235. msgstr "作业名"
  4236. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
  4237. msgctxt "@label"
  4238. msgid "Printing Time"
  4239. msgstr "打印时间"
  4240. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
  4241. msgctxt "@label"
  4242. msgid "Estimated time left"
  4243. msgstr "预计剩余时间"
  4244. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  4245. msgctxt "@label"
  4246. msgid "Profile"
  4247. msgstr "配置文件"
  4248. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  4249. msgctxt "@tooltip"
  4250. msgid ""
  4251. "Some setting/override values are different from the values stored in the profile.\n"
  4252. "\n"
  4253. "Click to open the profile manager."
  4254. msgstr ""
  4255. "某些设置/重写值与存储在配置文件中的值不同。\n"
  4256. "\n"
  4257. "点击打开配置文件管理器。"
  4258. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  4259. msgctxt "@label:header"
  4260. msgid "Custom profiles"
  4261. msgstr "自定义配置文件"
  4262. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  4263. 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')"
  4264. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  4265. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  4266. msgstr[0] "没有 %1 配置文件可用于挤出器 %2 中的配置。将改为使用默认意图"
  4267. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  4268. msgctxt "@label shown when we load a Gcode file"
  4269. msgid "Print setup disabled. G-code file can not be modified."
  4270. msgstr "打印设置已禁用。无法修改 G code 文件。"
  4271. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  4272. msgctxt "@button"
  4273. msgid "Recommended"
  4274. msgstr "推荐"
  4275. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  4276. msgctxt "@button"
  4277. msgid "Custom"
  4278. msgstr "自定义"
  4279. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  4280. msgctxt "@label:Should be short"
  4281. msgid "On"
  4282. msgstr "开"
  4283. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  4284. msgctxt "@label:Should be short"
  4285. msgid "Off"
  4286. msgstr "关"
  4287. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  4288. msgctxt "@label"
  4289. msgid "Experimental"
  4290. msgstr "实验性"
  4291. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  4292. msgctxt "@label"
  4293. msgid "Adhesion"
  4294. msgstr "附着"
  4295. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75
  4296. msgctxt "@label"
  4297. 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."
  4298. msgstr "允许打印 Brim 或 Raft。这将在您的对象周围或下方添加一个容易切断的平面区域。"
  4299. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196
  4300. msgctxt "@label"
  4301. msgid "Gradual infill"
  4302. msgstr "渐层填充"
  4303. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235
  4304. msgctxt "@label"
  4305. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  4306. msgstr "渐层填充(Gradual infill)将随着打印高度的提升而逐渐加大填充密度。"
  4307. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82
  4308. msgctxt "@tooltip"
  4309. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  4310. msgstr "您已修改部分配置文件设置。 如果您想对其进行更改,请转至自定义模式。"
  4311. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  4312. msgctxt "@label"
  4313. msgid "Support"
  4314. msgstr "支持"
  4315. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72
  4316. msgctxt "@label"
  4317. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  4318. msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。"
  4319. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:203
  4320. msgctxt "@label"
  4321. msgid ""
  4322. "Some hidden settings use values different from their normal calculated value.\n"
  4323. "\n"
  4324. "Click to make these settings visible."
  4325. msgstr ""
  4326. "一些隐藏设置正在使用有别于一般设置的计算值。\n"
  4327. "\n"
  4328. "单击以使这些设置可见。"
  4329. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
  4330. msgctxt "@label"
  4331. msgid "This setting is not used because all the settings that it influences are overridden."
  4332. msgstr "未使用此设置,因为受其影响的所有设置均已覆盖。"
  4333. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
  4334. msgctxt "@label Header for list of settings."
  4335. msgid "Affects"
  4336. msgstr "影响"
  4337. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
  4338. msgctxt "@label Header for list of settings."
  4339. msgid "Affected By"
  4340. msgstr "受影响项目"
  4341. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:188
  4342. msgctxt "@label"
  4343. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4344. msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改变所有挤出机的值。"
  4345. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:192
  4346. msgctxt "@label"
  4347. msgid "This setting is resolved from conflicting extruder-specific values:"
  4348. msgstr "此设置与挤出器特定值不同:"
  4349. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:232
  4350. msgctxt "@label"
  4351. msgid ""
  4352. "This setting has a value that is different from the profile.\n"
  4353. "\n"
  4354. "Click to restore the value of the profile."
  4355. msgstr ""
  4356. "此设置的值与配置文件不同。\n"
  4357. "\n"
  4358. "单击以恢复配置文件的值。"
  4359. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:332
  4360. msgctxt "@label"
  4361. msgid ""
  4362. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4363. "\n"
  4364. "Click to restore the calculated value."
  4365. msgstr ""
  4366. "此设置通常可被自动计算,但其当前已被绝对定义。\n"
  4367. "\n"
  4368. "单击以恢复自动计算的值。"
  4369. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:51
  4370. msgctxt "@label:textbox"
  4371. msgid "Search settings"
  4372. msgstr "搜索设置"
  4373. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453
  4374. msgctxt "@action:menu"
  4375. msgid "Copy value to all extruders"
  4376. msgstr "将值复制到所有挤出机"
  4377. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:462
  4378. msgctxt "@action:menu"
  4379. msgid "Copy all changed values to all extruders"
  4380. msgstr "将所有修改值复制到所有挤出机"
  4381. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:499
  4382. msgctxt "@action:menu"
  4383. msgid "Hide this setting"
  4384. msgstr "隐藏此设置"
  4385. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:512
  4386. msgctxt "@action:menu"
  4387. msgid "Don't show this setting"
  4388. msgstr "不再显示此设置"
  4389. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:516
  4390. msgctxt "@action:menu"
  4391. msgid "Keep this setting visible"
  4392. msgstr "保持此设置可见"
  4393. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
  4394. msgctxt "@info:tooltip"
  4395. msgid "3D View"
  4396. msgstr "3D 视图"
  4397. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
  4398. msgctxt "@info:tooltip"
  4399. msgid "Front View"
  4400. msgstr "正视图"
  4401. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
  4402. msgctxt "@info:tooltip"
  4403. msgid "Top View"
  4404. msgstr "顶视图"
  4405. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
  4406. msgctxt "@info:tooltip"
  4407. msgid "Left View"
  4408. msgstr "左视图"
  4409. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
  4410. msgctxt "@info:tooltip"
  4411. msgid "Right View"
  4412. msgstr "右视图"
  4413. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
  4414. msgctxt "@label"
  4415. msgid "View type"
  4416. msgstr "查看类型"
  4417. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  4418. msgctxt "@label"
  4419. msgid "Add a Cloud printer"
  4420. msgstr "添加云打印机"
  4421. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  4422. msgctxt "@label"
  4423. msgid "Waiting for Cloud response"
  4424. msgstr "等待云响应"
  4425. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  4426. msgctxt "@label"
  4427. msgid "No printers found in your account?"
  4428. msgstr "在您的帐户中未找到任何打印机?"
  4429. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  4430. msgctxt "@label"
  4431. msgid "The following printers in your account have been added in Cura:"
  4432. msgstr "您帐户中的以下打印机已添加到 Cura 中:"
  4433. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  4434. msgctxt "@button"
  4435. msgid "Add printer manually"
  4436. msgstr "手动添加打印机"
  4437. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234
  4438. msgctxt "@label"
  4439. msgid "Manufacturer"
  4440. msgstr "制造商"
  4441. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251
  4442. msgctxt "@label"
  4443. msgid "Profile author"
  4444. msgstr "配置文件作者"
  4445. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269
  4446. msgctxt "@label"
  4447. msgid "Printer name"
  4448. msgstr "打印机名称"
  4449. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278
  4450. msgctxt "@text"
  4451. msgid "Please name your printer"
  4452. msgstr "请为您的打印机命名"
  4453. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  4454. msgctxt "@label"
  4455. msgid "Add a printer"
  4456. msgstr "添加打印机"
  4457. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  4458. msgctxt "@label"
  4459. msgid "Add a networked printer"
  4460. msgstr "添加已联网打印机"
  4461. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  4462. msgctxt "@label"
  4463. msgid "Add a non-networked printer"
  4464. msgstr "添加未联网打印机"
  4465. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  4466. msgctxt "@label"
  4467. msgid "There is no printer found over your network."
  4468. msgstr "未找到网络内打印机。"
  4469. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  4470. msgctxt "@label"
  4471. msgid "Refresh"
  4472. msgstr "刷新"
  4473. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  4474. msgctxt "@label"
  4475. msgid "Add printer by IP"
  4476. msgstr "按 IP 添加打印机"
  4477. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  4478. msgctxt "@label"
  4479. msgid "Add cloud printer"
  4480. msgstr "添加云打印机"
  4481. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241
  4482. msgctxt "@label"
  4483. msgid "Troubleshooting"
  4484. msgstr "故障排除"
  4485. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4486. msgctxt "@label"
  4487. msgid "Add printer by IP address"
  4488. msgstr "按 IP 地址添加打印机"
  4489. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  4490. msgctxt "@text"
  4491. msgid "Enter your printer's IP address."
  4492. msgstr "输入您打印机的 IP 地址。"
  4493. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  4494. msgctxt "@button"
  4495. msgid "Add"
  4496. msgstr "添加"
  4497. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  4498. msgctxt "@label"
  4499. msgid "Could not connect to device."
  4500. msgstr "无法连接到设备。"
  4501. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  4502. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  4503. msgctxt "@label"
  4504. msgid "Can't connect to your Ultimaker printer?"
  4505. msgstr "无法连接到 Ultimaker 打印机?"
  4506. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  4507. msgctxt "@label"
  4508. msgid "The printer at this address has not responded yet."
  4509. msgstr "该网络地址的打印机尚未响应。"
  4510. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  4511. msgctxt "@label"
  4512. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  4513. msgstr "由于是未知打印机或不是组内主机,无法添加该打印机。"
  4514. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  4515. msgctxt "@button"
  4516. msgid "Back"
  4517. msgstr "返回"
  4518. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  4519. msgctxt "@button"
  4520. msgid "Connect"
  4521. msgstr "连接"
  4522. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  4523. msgctxt "@label"
  4524. msgid "Release Notes"
  4525. msgstr "版本说明"
  4526. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  4527. msgctxt "@text"
  4528. msgid "Add material settings and plugins from the Marketplace"
  4529. msgstr "从 Marketplace 添加材料设置和插件"
  4530. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  4531. msgctxt "@text"
  4532. msgid "Backup and sync your material settings and plugins"
  4533. msgstr "备份和同步材料设置和插件"
  4534. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  4535. msgctxt "@text"
  4536. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  4537. msgstr "在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助"
  4538. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:202
  4539. msgctxt "@button"
  4540. msgid "Skip"
  4541. msgstr "跳过"
  4542. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:214
  4543. msgctxt "@text"
  4544. msgid "Create a free Ultimaker Account"
  4545. msgstr "创建免费的 Ultimaker 帐户"
  4546. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  4547. msgctxt "@label"
  4548. msgid "Help us to improve Ultimaker Cura"
  4549. msgstr "帮助我们改进 Ultimaker Cura"
  4550. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  4551. msgctxt "@text"
  4552. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  4553. msgstr "为了改善打印质量和用户体验,Ultimaker Cura 会收集匿名数据,这些数据包括:"
  4554. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  4555. msgctxt "@text"
  4556. msgid "Machine types"
  4557. msgstr "机器类型"
  4558. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  4559. msgctxt "@text"
  4560. msgid "Material usage"
  4561. msgstr "材料使用"
  4562. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  4563. msgctxt "@text"
  4564. msgid "Number of slices"
  4565. msgstr "切片数量"
  4566. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  4567. msgctxt "@text"
  4568. msgid "Print settings"
  4569. msgstr "打印设置"
  4570. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  4571. msgctxt "@text"
  4572. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  4573. msgstr "Ultimaker Cura 收集的数据不会包含任何个人信息。"
  4574. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  4575. msgctxt "@text"
  4576. msgid "More information"
  4577. msgstr "更多信息"
  4578. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  4579. msgctxt "@label"
  4580. msgid "Empty"
  4581. msgstr "空"
  4582. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  4583. msgctxt "@label"
  4584. msgid "User Agreement"
  4585. msgstr "用户协议"
  4586. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  4587. msgctxt "@button"
  4588. msgid "Decline and close"
  4589. msgstr "拒绝并关闭"
  4590. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  4591. msgctxt "@label"
  4592. msgid "Welcome to Ultimaker Cura"
  4593. msgstr "欢迎使用 Ultimaker Cura"
  4594. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  4595. msgctxt "@text"
  4596. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  4597. msgstr ""
  4598. "请按照以下步骤设置\n"
  4599. "Ultimaker Cura。此操作只需要几分钟时间。"
  4600. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  4601. msgctxt "@button"
  4602. msgid "Get started"
  4603. msgstr "开始"
  4604. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29
  4605. msgctxt "@label"
  4606. msgid "What's New"
  4607. msgstr "新增功能"
  4608. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18
  4609. msgctxt "@label"
  4610. msgid "No items to select from"
  4611. msgstr "没有可供选择的项目"
  4612. #: ModelChecker/plugin.json
  4613. msgctxt "description"
  4614. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4615. msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。"
  4616. #: ModelChecker/plugin.json
  4617. msgctxt "name"
  4618. msgid "Model Checker"
  4619. msgstr "模型检查器"
  4620. #: 3MFReader/plugin.json
  4621. msgctxt "description"
  4622. msgid "Provides support for reading 3MF files."
  4623. msgstr "提供对读取 3MF 格式文件的支持。"
  4624. #: 3MFReader/plugin.json
  4625. msgctxt "name"
  4626. msgid "3MF Reader"
  4627. msgstr "3MF 读取器"
  4628. #: 3MFWriter/plugin.json
  4629. msgctxt "description"
  4630. msgid "Provides support for writing 3MF files."
  4631. msgstr "提供对写入 3MF 文件的支持。"
  4632. #: 3MFWriter/plugin.json
  4633. msgctxt "name"
  4634. msgid "3MF Writer"
  4635. msgstr "3MF 写入器"
  4636. #: AMFReader/plugin.json
  4637. msgctxt "description"
  4638. msgid "Provides support for reading AMF files."
  4639. msgstr "提供对读取 AMF 文件的支持。"
  4640. #: AMFReader/plugin.json
  4641. msgctxt "name"
  4642. msgid "AMF Reader"
  4643. msgstr "AMF 读取器"
  4644. #: CuraDrive/plugin.json
  4645. msgctxt "description"
  4646. msgid "Backup and restore your configuration."
  4647. msgstr "备份和还原配置。"
  4648. #: CuraDrive/plugin.json
  4649. msgctxt "name"
  4650. msgid "Cura Backups"
  4651. msgstr "Cura 备份"
  4652. #: CuraEngineBackend/plugin.json
  4653. msgctxt "description"
  4654. msgid "Provides the link to the CuraEngine slicing backend."
  4655. msgstr "提供 CuraEngine 切片后端的路径。"
  4656. #: CuraEngineBackend/plugin.json
  4657. msgctxt "name"
  4658. msgid "CuraEngine Backend"
  4659. msgstr "CuraEngine 后端"
  4660. #: CuraProfileReader/plugin.json
  4661. msgctxt "description"
  4662. msgid "Provides support for importing Cura profiles."
  4663. msgstr "提供了对导入 Cura 配置文件的支持。"
  4664. #: CuraProfileReader/plugin.json
  4665. msgctxt "name"
  4666. msgid "Cura Profile Reader"
  4667. msgstr "Cura 配置文件读取器"
  4668. #: CuraProfileWriter/plugin.json
  4669. msgctxt "description"
  4670. msgid "Provides support for exporting Cura profiles."
  4671. msgstr "提供了对导出 Cura 配置文件的支持。"
  4672. #: CuraProfileWriter/plugin.json
  4673. msgctxt "name"
  4674. msgid "Cura Profile Writer"
  4675. msgstr "Cura 配置文件写入器"
  4676. #: DigitalLibrary/plugin.json
  4677. msgctxt "description"
  4678. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4679. msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。"
  4680. #: DigitalLibrary/plugin.json
  4681. msgctxt "name"
  4682. msgid "Ultimaker Digital Library"
  4683. msgstr "Ultimaker Digital Library"
  4684. #: FirmwareUpdateChecker/plugin.json
  4685. msgctxt "description"
  4686. msgid "Checks for firmware updates."
  4687. msgstr "检查以进行固件更新。"
  4688. #: FirmwareUpdateChecker/plugin.json
  4689. msgctxt "name"
  4690. msgid "Firmware Update Checker"
  4691. msgstr "固件更新检查程序"
  4692. #: FirmwareUpdater/plugin.json
  4693. msgctxt "description"
  4694. msgid "Provides a machine actions for updating firmware."
  4695. msgstr "为固件更新提供操作选项。"
  4696. #: FirmwareUpdater/plugin.json
  4697. msgctxt "name"
  4698. msgid "Firmware Updater"
  4699. msgstr "固件更新程序"
  4700. #: GCodeGzReader/plugin.json
  4701. msgctxt "description"
  4702. msgid "Reads g-code from a compressed archive."
  4703. msgstr "从压缩存档文件读取 G-code。"
  4704. #: GCodeGzReader/plugin.json
  4705. msgctxt "name"
  4706. msgid "Compressed G-code Reader"
  4707. msgstr "压缩 G-code 读取器"
  4708. #: GCodeGzWriter/plugin.json
  4709. msgctxt "description"
  4710. msgid "Writes g-code to a compressed archive."
  4711. msgstr "将 G-code 写入至压缩存档文件。"
  4712. #: GCodeGzWriter/plugin.json
  4713. msgctxt "name"
  4714. msgid "Compressed G-code Writer"
  4715. msgstr "压缩 G-code 写入器"
  4716. #: GCodeProfileReader/plugin.json
  4717. msgctxt "description"
  4718. msgid "Provides support for importing profiles from g-code files."
  4719. msgstr "提供了从 GCode 文件中导入配置文件的支持。"
  4720. #: GCodeProfileReader/plugin.json
  4721. msgctxt "name"
  4722. msgid "G-code Profile Reader"
  4723. msgstr "G-code 配置文件读取器"
  4724. #: GCodeReader/plugin.json
  4725. msgctxt "description"
  4726. msgid "Allows loading and displaying G-code files."
  4727. msgstr "允许加载和显示 G-code 文件。"
  4728. #: GCodeReader/plugin.json
  4729. msgctxt "name"
  4730. msgid "G-code Reader"
  4731. msgstr "G-code 读取器"
  4732. #: GCodeWriter/plugin.json
  4733. msgctxt "description"
  4734. msgid "Writes g-code to a file."
  4735. msgstr "将 G-code 写入至文件。"
  4736. #: GCodeWriter/plugin.json
  4737. msgctxt "name"
  4738. msgid "G-code Writer"
  4739. msgstr "G-code 写入器"
  4740. #: ImageReader/plugin.json
  4741. msgctxt "description"
  4742. msgid "Enables ability to generate printable geometry from 2D image files."
  4743. msgstr "支持从 2D 图像文件生成可打印几何模型的能力。"
  4744. #: ImageReader/plugin.json
  4745. msgctxt "name"
  4746. msgid "Image Reader"
  4747. msgstr "图像读取器"
  4748. #: LegacyProfileReader/plugin.json
  4749. msgctxt "description"
  4750. msgid "Provides support for importing profiles from legacy Cura versions."
  4751. msgstr "支持从 Cura 旧版本导入配置文件。"
  4752. #: LegacyProfileReader/plugin.json
  4753. msgctxt "name"
  4754. msgid "Legacy Cura Profile Reader"
  4755. msgstr "旧版 Cura 配置文件读取器"
  4756. #: MachineSettingsAction/plugin.json
  4757. msgctxt "description"
  4758. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4759. msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。"
  4760. #: MachineSettingsAction/plugin.json
  4761. msgctxt "name"
  4762. msgid "Machine Settings Action"
  4763. msgstr "打印机设置操作"
  4764. #: MonitorStage/plugin.json
  4765. msgctxt "description"
  4766. msgid "Provides a monitor stage in Cura."
  4767. msgstr "在 Cura 中提供监视阶段。"
  4768. #: MonitorStage/plugin.json
  4769. msgctxt "name"
  4770. msgid "Monitor Stage"
  4771. msgstr "监视阶段"
  4772. #: PerObjectSettingsTool/plugin.json
  4773. msgctxt "description"
  4774. msgid "Provides the Per Model Settings."
  4775. msgstr "提供对每个模型的单独设置。"
  4776. #: PerObjectSettingsTool/plugin.json
  4777. msgctxt "name"
  4778. msgid "Per Model Settings Tool"
  4779. msgstr "单一模型设置工具"
  4780. #: PostProcessingPlugin/plugin.json
  4781. msgctxt "description"
  4782. msgid "Extension that allows for user created scripts for post processing"
  4783. msgstr "扩展程序(允许用户创建脚本进行后期处理)"
  4784. #: PostProcessingPlugin/plugin.json
  4785. msgctxt "name"
  4786. msgid "Post Processing"
  4787. msgstr "后期处理"
  4788. #: PrepareStage/plugin.json
  4789. msgctxt "description"
  4790. msgid "Provides a prepare stage in Cura."
  4791. msgstr "在 Cura 中提供准备阶段。"
  4792. #: PrepareStage/plugin.json
  4793. msgctxt "name"
  4794. msgid "Prepare Stage"
  4795. msgstr "准备阶段"
  4796. #: PreviewStage/plugin.json
  4797. msgctxt "description"
  4798. msgid "Provides a preview stage in Cura."
  4799. msgstr "在 Cura 中提供预览阶段。"
  4800. #: PreviewStage/plugin.json
  4801. msgctxt "name"
  4802. msgid "Preview Stage"
  4803. msgstr "预览阶段"
  4804. #: RemovableDriveOutputDevice/plugin.json
  4805. msgctxt "description"
  4806. msgid "Provides removable drive hotplugging and writing support."
  4807. msgstr "提供可移动磁盘热插拔和写入文件的支持。"
  4808. #: RemovableDriveOutputDevice/plugin.json
  4809. msgctxt "name"
  4810. msgid "Removable Drive Output Device Plugin"
  4811. msgstr "可移动磁盘输出设备插件"
  4812. #: SentryLogger/plugin.json
  4813. msgctxt "description"
  4814. msgid "Logs certain events so that they can be used by the crash reporter"
  4815. msgstr "记录某些事件,以使其可供崩溃报告器使用"
  4816. #: SentryLogger/plugin.json
  4817. msgctxt "name"
  4818. msgid "Sentry Logger"
  4819. msgstr "Sentry 日志记录"
  4820. #: SimulationView/plugin.json
  4821. msgctxt "description"
  4822. msgid "Provides the Simulation view."
  4823. msgstr "提供仿真视图。"
  4824. #: SimulationView/plugin.json
  4825. msgctxt "name"
  4826. msgid "Simulation View"
  4827. msgstr "仿真视图"
  4828. #: SliceInfoPlugin/plugin.json
  4829. msgctxt "description"
  4830. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4831. msgstr "提交匿名切片信息。 可以通过偏好设置禁用。"
  4832. #: SliceInfoPlugin/plugin.json
  4833. msgctxt "name"
  4834. msgid "Slice info"
  4835. msgstr "切片信息"
  4836. #: SolidView/plugin.json
  4837. msgctxt "description"
  4838. msgid "Provides a normal solid mesh view."
  4839. msgstr "提供一个基本的实体网格视图。"
  4840. #: SolidView/plugin.json
  4841. msgctxt "name"
  4842. msgid "Solid View"
  4843. msgstr "实体视图"
  4844. #: SupportEraser/plugin.json
  4845. msgctxt "description"
  4846. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4847. msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑"
  4848. #: SupportEraser/plugin.json
  4849. msgctxt "name"
  4850. msgid "Support Eraser"
  4851. msgstr "支持橡皮擦"
  4852. #: Toolbox/plugin.json
  4853. msgctxt "description"
  4854. msgid "Find, manage and install new Cura packages."
  4855. msgstr "查找、管理和安装新的Cura包。"
  4856. #: Toolbox/plugin.json
  4857. msgctxt "name"
  4858. msgid "Toolbox"
  4859. msgstr "工具箱"
  4860. #: TrimeshReader/plugin.json
  4861. msgctxt "description"
  4862. msgid "Provides support for reading model files."
  4863. msgstr "提供对读取模型文件的支持。"
  4864. #: TrimeshReader/plugin.json
  4865. msgctxt "name"
  4866. msgid "Trimesh Reader"
  4867. msgstr "Trimesh 阅读器"
  4868. #: UFPReader/plugin.json
  4869. msgctxt "description"
  4870. msgid "Provides support for reading Ultimaker Format Packages."
  4871. msgstr "支持读取 Ultimaker 格式包。"
  4872. #: UFPReader/plugin.json
  4873. msgctxt "name"
  4874. msgid "UFP Reader"
  4875. msgstr "UFP 读取器"
  4876. #: UFPWriter/plugin.json
  4877. msgctxt "description"
  4878. msgid "Provides support for writing Ultimaker Format Packages."
  4879. msgstr "支持写入 Ultimaker 格式包。"
  4880. #: UFPWriter/plugin.json
  4881. msgctxt "name"
  4882. msgid "UFP Writer"
  4883. msgstr "UFP 写入器"
  4884. #: UltimakerMachineActions/plugin.json
  4885. msgctxt "description"
  4886. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4887. msgstr "为最后的机器提供机器操作(例如,热床调平向导,选择升级等)。"
  4888. #: UltimakerMachineActions/plugin.json
  4889. msgctxt "name"
  4890. msgid "Ultimaker machine actions"
  4891. msgstr "Ultimaker 打印机操作"
  4892. #: UM3NetworkPrinting/plugin.json
  4893. msgctxt "description"
  4894. msgid "Manages network connections to Ultimaker networked printers."
  4895. msgstr "管理与 Ultimaker 网络打印机的网络连接。"
  4896. #: UM3NetworkPrinting/plugin.json
  4897. msgctxt "name"
  4898. msgid "Ultimaker Network Connection"
  4899. msgstr "Ultimaker 网络连接"
  4900. #: USBPrinting/plugin.json
  4901. msgctxt "description"
  4902. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4903. msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。"
  4904. #: USBPrinting/plugin.json
  4905. msgctxt "name"
  4906. msgid "USB printing"
  4907. msgstr "USB 联机打印"
  4908. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4909. msgctxt "description"
  4910. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4911. msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。"
  4912. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4913. msgctxt "name"
  4914. msgid "Version Upgrade 2.1 to 2.2"
  4915. msgstr "版本自 2.1 升级到 2.2"
  4916. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4917. msgctxt "description"
  4918. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4919. msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。"
  4920. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4921. msgctxt "name"
  4922. msgid "Version Upgrade 2.2 to 2.4"
  4923. msgstr "版本自 2.2 升级到 2.4"
  4924. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4925. msgctxt "description"
  4926. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4927. msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。"
  4928. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4929. msgctxt "name"
  4930. msgid "Version Upgrade 2.5 to 2.6"
  4931. msgstr "版本自 2.5 升级到 2.6"
  4932. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4933. msgctxt "description"
  4934. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4935. msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。"
  4936. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4937. msgctxt "name"
  4938. msgid "Version Upgrade 2.6 to 2.7"
  4939. msgstr "版本自 2.6 升级到 2.7"
  4940. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4941. msgctxt "description"
  4942. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4943. msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。"
  4944. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4945. msgctxt "name"
  4946. msgid "Version Upgrade 2.7 to 3.0"
  4947. msgstr "版本自 2.7 升级到 3.0"
  4948. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4949. msgctxt "description"
  4950. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4951. msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。"
  4952. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4953. msgctxt "name"
  4954. msgid "Version Upgrade 3.0 to 3.1"
  4955. msgstr "版本自 3.0 升级到 3.1"
  4956. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4957. msgctxt "description"
  4958. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4959. msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。"
  4960. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4961. msgctxt "name"
  4962. msgid "Version Upgrade 3.2 to 3.3"
  4963. msgstr "版本自 3.2 升级到 3.3"
  4964. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4965. msgctxt "description"
  4966. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4967. msgstr "从Cura 3.3升级到Cura 3.4。"
  4968. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4969. msgctxt "name"
  4970. msgid "Version Upgrade 3.3 to 3.4"
  4971. msgstr "版本升级3.3到3.4"
  4972. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4973. msgctxt "description"
  4974. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4975. msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。"
  4976. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4977. msgctxt "name"
  4978. msgid "Version Upgrade 3.4 to 3.5"
  4979. msgstr "版本自 3.4 升级到 3.5"
  4980. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4981. msgctxt "description"
  4982. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4983. msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。"
  4984. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4985. msgctxt "name"
  4986. msgid "Version Upgrade 3.5 to 4.0"
  4987. msgstr "版本自 3.5 升级到 4.0"
  4988. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4989. msgctxt "description"
  4990. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4991. msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。"
  4992. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4993. msgctxt "name"
  4994. msgid "Version Upgrade 4.0 to 4.1"
  4995. msgstr "版本自 4.0 升级到 4.1"
  4996. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  4997. msgctxt "description"
  4998. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  4999. msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。"
  5000. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5001. msgctxt "name"
  5002. msgid "Version Upgrade 4.11 to 4.12"
  5003. msgstr "版本从 4.11 升级到 4.12"
  5004. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5005. msgctxt "description"
  5006. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  5007. msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。"
  5008. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5009. msgctxt "name"
  5010. msgid "Version Upgrade 4.1 to 4.2"
  5011. msgstr "版本自 4.1 升级到 4.2"
  5012. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5013. msgctxt "description"
  5014. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  5015. msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。"
  5016. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5017. msgctxt "name"
  5018. msgid "Version Upgrade 4.2 to 4.3"
  5019. msgstr "版本自 4.2 升级至 4.3"
  5020. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5021. msgctxt "description"
  5022. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  5023. msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。"
  5024. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5025. msgctxt "name"
  5026. msgid "Version Upgrade 4.3 to 4.4"
  5027. msgstr "版本自 4.3 升级至 4.4"
  5028. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5029. msgctxt "description"
  5030. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5031. msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。"
  5032. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5033. msgctxt "name"
  5034. msgid "Version Upgrade 4.4 to 4.5"
  5035. msgstr "版本从 4.4 升级至 4.5"
  5036. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5037. msgctxt "description"
  5038. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  5039. msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。"
  5040. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5041. msgctxt "name"
  5042. msgid "Version Upgrade 4.5 to 4.6"
  5043. msgstr "版本从 4.5 升级至 4.6"
  5044. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5045. msgctxt "description"
  5046. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  5047. msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。"
  5048. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5049. msgctxt "name"
  5050. msgid "Version Upgrade 4.6.0 to 4.6.2"
  5051. msgstr "版本从 4.6.0 升级到 4.6.2"
  5052. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5053. msgctxt "description"
  5054. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  5055. msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。"
  5056. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5057. msgctxt "name"
  5058. msgid "Version Upgrade 4.6.2 to 4.7"
  5059. msgstr "版本从 4.6.2 升级到 4.7"
  5060. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5061. msgctxt "description"
  5062. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5063. msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。"
  5064. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5065. msgctxt "name"
  5066. msgid "Version Upgrade 4.7 to 4.8"
  5067. msgstr "将版本从 4.7 升级到 4.8"
  5068. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5069. msgctxt "description"
  5070. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  5071. msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。"
  5072. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5073. msgctxt "name"
  5074. msgid "Version Upgrade 4.8 to 4.9"
  5075. msgstr "版本从 4.8 升级到 4.9"
  5076. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5077. msgctxt "description"
  5078. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  5079. msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。"
  5080. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5081. msgctxt "name"
  5082. msgid "Version Upgrade 4.9 to 4.10"
  5083. msgstr "版本从 4.9 升级到 4.10"
  5084. #: X3DReader/plugin.json
  5085. msgctxt "description"
  5086. msgid "Provides support for reading X3D files."
  5087. msgstr "支持读取 X3D 文件。"
  5088. #: X3DReader/plugin.json
  5089. msgctxt "name"
  5090. msgid "X3D Reader"
  5091. msgstr "X3D 读取器"
  5092. #: XmlMaterialProfile/plugin.json
  5093. msgctxt "description"
  5094. msgid "Provides capabilities to read and write XML-based material profiles."
  5095. msgstr "提供读取和写入基于 XML 的材料配置文件的功能。"
  5096. #: XmlMaterialProfile/plugin.json
  5097. msgctxt "name"
  5098. msgid "Material Profiles"
  5099. msgstr "材料配置文件"
  5100. #: XRayView/plugin.json
  5101. msgctxt "description"
  5102. msgid "Provides the X-Ray view."
  5103. msgstr "提供透视视图。"
  5104. #: XRayView/plugin.json
  5105. msgctxt "name"
  5106. msgid "X-Ray View"
  5107. msgstr "透视视图"
  5108. #~ msgctxt "@info:status"
  5109. #~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  5110. #~ msgstr "使用您的 Ultimaker account 帐户从任何地方发送和监控打印作业。"
  5111. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5112. #~ msgid "Connect to Ultimaker Digital Factory"
  5113. #~ msgstr "连接到 Ultimaker Digital Factory"
  5114. #~ msgctxt "@info"
  5115. #~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura."
  5116. #~ msgstr "无法从 Ultimaker Cura 中查看云打印机的网络摄像头馈送。"
  5117. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5118. #~ 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}."
  5119. #~ msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将它更新为 {latest_version} 版。"
  5120. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5121. #~ msgid "New %s firmware available"
  5122. #~ msgstr "新 %s 固件可用"
  5123. #~ msgctxt "@info:status"
  5124. #~ msgid "Global stack is missing."
  5125. #~ msgstr "缺少全局堆栈。"
  5126. #~ msgctxt "@info:status"
  5127. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  5128. #~ msgstr "您的模型不是流形。突出显示的区域指示缺少或多余的表面。"
  5129. #~ msgctxt "@info:title"
  5130. #~ msgid "Model errors"
  5131. #~ msgstr "模型错误"
  5132. #~ msgctxt "@label:listbox"
  5133. #~ msgid "Layer thickness"
  5134. #~ msgstr "层厚度"
  5135. #~ msgctxt "@label"
  5136. #~ msgid "Your key to connected 3D printing"
  5137. #~ msgstr "互连 3D 打印的特点"
  5138. #~ msgctxt "@text"
  5139. #~ msgid ""
  5140. #~ "- Customize your experience with more print profiles and plugins\n"
  5141. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5142. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5143. #~ msgstr ""
  5144. #~ "- 借助更多的打印配置文件和插件定制您的体验\n"
  5145. #~ "- 通过同步设置并将其加载到任何位置保持灵活性\n"
  5146. #~ "- 使用 Ultimaker 打印机上的远程工作流提高效率"
  5147. #~ msgctxt "@button"
  5148. #~ msgid "Create account"
  5149. #~ msgstr "创建账户"
  5150. #~ msgctxt "@action:inmenu menubar:edit"
  5151. #~ msgid "Delete Selected Model"
  5152. #~ msgid_plural "Delete Selected Models"
  5153. #~ msgstr[0] "删除所选模型"
  5154. #~ msgctxt "@action:inmenu menubar:edit"
  5155. #~ msgid "Center Selected Model"
  5156. #~ msgid_plural "Center Selected Models"
  5157. #~ msgstr[0] "居中所选模型"
  5158. #~ msgctxt "@action:inmenu menubar:edit"
  5159. #~ msgid "Multiply Selected Model"
  5160. #~ msgid_plural "Multiply Selected Models"
  5161. #~ msgstr[0] "复制所选模型"
  5162. #~ msgctxt "@button"
  5163. #~ msgid "Finish"
  5164. #~ msgstr "完成"
  5165. #~ msgctxt "@label"
  5166. #~ msgid "Ultimaker Account"
  5167. #~ msgstr "Ultimaker 帐户"
  5168. #~ msgctxt "@text"
  5169. #~ msgid "Your key to connected 3D printing"
  5170. #~ msgstr "互连 3D 打印的特点"
  5171. #~ msgctxt "@text"
  5172. #~ msgid "- Customize your experience with more print profiles and plugins"
  5173. #~ msgstr "- 借助更多的打印配置文件和插件定制您的体验"
  5174. #~ msgctxt "@text"
  5175. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5176. #~ msgstr "- 通过同步设置并将其加载到任何位置保持灵活性"
  5177. #~ msgctxt "@text"
  5178. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  5179. #~ msgstr "- 使用 Ultimaker 打印机上的远程工作流提高效率"
  5180. #~ msgctxt "@text"
  5181. #~ msgid ""
  5182. #~ "Please follow these steps to set up\n"
  5183. #~ "Ultimaker Cura. This will only take a few moments."
  5184. #~ msgstr ""
  5185. #~ "请按照以下步骤设置\n"
  5186. #~ "Ultimaker Cura。此操作只需要几分钟时间。"
  5187. #~ msgctxt "@label"
  5188. #~ msgid "What's new in Ultimaker Cura"
  5189. #~ msgstr "Ultimaker Cura 新增功能"
  5190. #~ msgctxt "@label ({} is object name)"
  5191. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5192. #~ msgstr "是否确实要删除 {}?此操作无法撤消!"
  5193. #~ msgctxt "@info:status"
  5194. #~ msgid "The selected model was too small to load."
  5195. #~ msgstr "所选模型过小,无法加载。"
  5196. #~ msgctxt "@info:status"
  5197. #~ msgid "Successfully imported profile {0}"
  5198. #~ msgstr "已成功导入配置文件 {0}"
  5199. #~ msgctxt "@info:status"
  5200. #~ msgid "Could not find a quality type {0} for the current configuration."
  5201. #~ msgstr "无法为当前配置找到质量类型 {0}。"
  5202. #~ msgctxt "info:status"
  5203. #~ msgid "Adding printer {} ({}) from your account"
  5204. #~ msgstr "正在从您的帐户添加打印机 {} ({})"
  5205. #~ msgctxt "info:hidden list items"
  5206. #~ msgid "<li>... and {} others</li>"
  5207. #~ msgstr "<li>... 和另外 {} 台</li>"
  5208. #~ msgctxt "info:status"
  5209. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5210. #~ msgstr "从 Digital Factory 添加的打印机:<ul>{}</ul>"
  5211. #~ msgctxt "info:status"
  5212. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5213. #~ msgstr "<ul>{}</ul>要建立连接,请访问 <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>。"
  5214. #~ msgctxt "@label ({} is printer name)"
  5215. #~ 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?"
  5216. #~ msgstr "{} 将被删除,直至下次帐户同步为止。<br>要永久删除 {},请访问 <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>。<br><br>是否确实要暂时删除 {}?"
  5217. #~ msgctxt "@label"
  5218. #~ msgid ""
  5219. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5220. #~ "Are you sure you want to continue?"
  5221. #~ msgstr ""
  5222. #~ "您即将从 Cura 中删除 {} 台打印机。此操作无法撤消。\n"
  5223. #~ "是否确实要继续?"
  5224. #~ msgctxt "@label"
  5225. #~ msgid ""
  5226. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5227. #~ "Are you sure you want to continue?"
  5228. #~ msgstr ""
  5229. #~ "您即将从 Cura 中删除所有打印机。此操作无法撤消。\n"
  5230. #~ "是否确实要继续?"
  5231. #~ msgctxt "@action:ComboBox option"
  5232. #~ msgid "Update"
  5233. #~ msgstr "更新"
  5234. #~ msgctxt "@action:ComboBox option"
  5235. #~ msgid "Create new"
  5236. #~ msgstr "新建"
  5237. #~ msgctxt "@label"
  5238. #~ msgid "Shared Heater"
  5239. #~ msgstr "共用加热器"
  5240. #~ msgctxt "@info"
  5241. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5242. #~ msgstr "网络摄像头不可用,因为您正在监控云打印机。"
  5243. #~ msgctxt "@button"
  5244. #~ msgid "Ultimaker Digital Factory"
  5245. #~ msgstr "Ultimaker Digital Factory"
  5246. #~ msgctxt "@text:window, %1 is a profile name"
  5247. #~ msgid ""
  5248. #~ "You have customized some profile settings.\n"
  5249. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5250. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5251. #~ msgstr ""
  5252. #~ "您已经自定义了一些配置文件设置。\n"
  5253. #~ "是否要在切换配置文件后保留这些更改的设置?\n"
  5254. #~ "或者,也可舍弃更改以从“%1”加载默认值。"
  5255. #~ msgctxt "@label"
  5256. #~ msgid "Overrides %1 setting."
  5257. #~ msgid_plural "Overrides %1 settings."
  5258. #~ msgstr[0] "覆盖 %1 设置。"
  5259. #~ msgctxt "@text"
  5260. #~ msgid "Please give your printer a name"
  5261. #~ msgstr "请指定打印机名称"
  5262. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5263. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5264. #~ msgstr "您的 {machine_name} 有新功能可用! 建议您更新打印机上的固件。"
  5265. #~ msgctxt "@action:button"
  5266. #~ msgid "Print via Cloud"
  5267. #~ msgstr "通过云打印"
  5268. #~ msgctxt "@properties:tooltip"
  5269. #~ msgid "Print via Cloud"
  5270. #~ msgstr "通过云打印"
  5271. #~ msgctxt "@info:status"
  5272. #~ msgid "Connected via Cloud"
  5273. #~ msgstr "通过云连接"
  5274. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5275. #~ msgid "Connect to Ultimaker Cloud"
  5276. #~ msgstr "连接到 Ultimaker Cloud"
  5277. #~ msgctxt "@label"
  5278. #~ msgid "You need to login first before you can rate"
  5279. #~ msgstr "您需要登录才能评分"
  5280. #~ msgctxt "@label"
  5281. #~ msgid "You need to install the package before you can rate"
  5282. #~ msgstr "您需要安装程序包才能评分"
  5283. #~ msgctxt "@label"
  5284. #~ msgid "ratings"
  5285. #~ msgstr "评分"
  5286. #~ msgctxt "@label"
  5287. #~ msgid "Featured"
  5288. #~ msgstr "精选"
  5289. #~ msgctxt "@label"
  5290. #~ msgid "Your rating"
  5291. #~ msgstr "您的评分"
  5292. #~ msgctxt "@label"
  5293. #~ msgid "Author"
  5294. #~ msgstr "作者"
  5295. #~ msgctxt "@description"
  5296. #~ msgid "Get plugins and materials verified by Ultimaker"
  5297. #~ msgstr "获取经过 Ultimaker 验证的插件和材料"
  5298. #~ msgctxt "@label The argument is a username."
  5299. #~ msgid "Hi %1"
  5300. #~ msgstr "%1,您好"
  5301. #~ msgctxt "@button"
  5302. #~ msgid "Ultimaker account"
  5303. #~ msgstr "Ultimaker 帐户"
  5304. #~ msgctxt "@button"
  5305. #~ msgid "Sign out"
  5306. #~ msgstr "注销"
  5307. #~ msgctxt "@label"
  5308. #~ msgid "Support library for analysis of complex networks"
  5309. #~ msgstr "用于分析复杂网络的支持库"
  5310. #~ msgctxt "@Label"
  5311. #~ msgid "Python HTTP library"
  5312. #~ msgstr "Python HTTP 库"
  5313. #~ msgctxt "@text:window"
  5314. #~ msgid ""
  5315. #~ "You have customized some profile settings.\n"
  5316. #~ "Would you like to keep or discard those settings?"
  5317. #~ msgstr ""
  5318. #~ "您已自定义某些配置文件设置。\n"
  5319. #~ "您想保留或舍弃这些设置吗?"
  5320. #~ msgctxt "@title:column"
  5321. #~ msgid "Default"
  5322. #~ msgstr "默认"
  5323. #~ msgctxt "@title:column"
  5324. #~ msgid "Customized"
  5325. #~ msgstr "自定义"
  5326. #~ msgctxt "@action:button"
  5327. #~ msgid "Discard"
  5328. #~ msgstr "舍弃"
  5329. #~ msgctxt "@action:button"
  5330. #~ msgid "Keep"
  5331. #~ msgstr "保留"
  5332. #~ msgctxt "@action:button"
  5333. #~ msgid "Create New Profile"
  5334. #~ msgstr "创建新配置文件"
  5335. #~ msgctxt "@title:menu menubar:file"
  5336. #~ msgid "&Save..."
  5337. #~ msgstr "保存(&S)..."
  5338. #~ msgctxt "@text"
  5339. #~ msgid "Place enter your printer's IP address."
  5340. #~ msgstr "打印机 IP 地址输入栏。"
  5341. #~ msgctxt "@button"
  5342. #~ msgid "Create an account"
  5343. #~ msgstr "创建帐户"
  5344. #~ msgctxt "@info:generic"
  5345. #~ msgid ""
  5346. #~ "\n"
  5347. #~ "Do you want to sync material and software packages with your account?"
  5348. #~ msgstr ""
  5349. #~ "\n"
  5350. #~ "是否要与您的帐户同步材料和软件包?"
  5351. #~ msgctxt "@info:generic"
  5352. #~ msgid ""
  5353. #~ "\n"
  5354. #~ "Syncing..."
  5355. #~ msgstr ""
  5356. #~ "\n"
  5357. #~ "正在同步..."
  5358. #~ msgctxt "@info:status"
  5359. #~ 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."
  5360. #~ msgstr "无法切片,因为没有一个模型适合成形空间体积或被分配至已禁用的挤出机。请缩放或旋转模型以匹配,或启用挤出机。"
  5361. #~ msgctxt "@info:backup_status"
  5362. #~ msgid "There was an error listing your backups."
  5363. #~ msgstr "列出您的备份时出错。"
  5364. #~ msgctxt "@title:groupbox"
  5365. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5366. #~ msgstr "用户说明(注意:为避免开发人员可能不熟悉您的语言,请尽量使用英语)"
  5367. #~ msgctxt "@title:window"
  5368. #~ msgid "Closing Cura"
  5369. #~ msgstr "关闭 Cura"
  5370. #~ msgctxt "@label"
  5371. #~ msgid "Are you sure you want to exit Cura?"
  5372. #~ msgstr "您确定要退出 Cura 吗?"
  5373. #~ msgctxt "@label"
  5374. #~ msgid "Language:"
  5375. #~ msgstr "语言:"
  5376. #~ msgctxt "@label"
  5377. #~ msgid "Ultimaker Cloud"
  5378. #~ msgstr "Ultimaker Cloud"
  5379. #~ msgctxt "@text"
  5380. #~ msgid "The next generation 3D printing workflow"
  5381. #~ msgstr "下一代 3D 打印工作流程"
  5382. #~ msgctxt "@text"
  5383. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5384. #~ msgstr "- 将打印作业发送到局域网外的 Ultimaker 打印机"
  5385. #~ msgctxt "@text"
  5386. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5387. #~ msgstr "- 将 Ultimaker Cura 设置存储到云以便在任何地方使用"
  5388. #~ msgctxt "@text"
  5389. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5390. #~ msgstr "- 获得来自领先品牌的打印配置文件的独家访问权限"
  5391. #~ msgctxt "@label"
  5392. #~ msgid "The value is resolved from per-extruder values "
  5393. #~ msgstr "该值将会根据每一个挤出机的设置而确定 "
  5394. #~ msgctxt "@label"
  5395. #~ msgid "The next generation 3D printing workflow"
  5396. #~ msgstr "下一代 3D 打印工作流程"
  5397. #~ msgctxt "@text"
  5398. #~ msgid ""
  5399. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5400. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5401. #~ "- Get exclusive access to print profiles from leading brands"
  5402. #~ msgstr ""
  5403. #~ "- 将打印作业发送到局域网外的 Ultimaker 打印机\n"
  5404. #~ "- 将 Ultimaker Cura 设置存储到云以便在任何地方使用\n"
  5405. #~ "- 获得来自领先品牌的打印配置文件的独家访问权限"
  5406. #~ msgctxt "@title:window"
  5407. #~ msgid "About "
  5408. #~ msgstr "关于 "
  5409. #~ msgctxt "@info:button"
  5410. #~ msgid "Quit Cura"
  5411. #~ msgstr "退出 Cura"
  5412. #~ msgctxt "@action:checkbox"
  5413. #~ msgid "Infill only"
  5414. #~ msgstr "仅填充"
  5415. #~ msgctxt "@info:tooltip"
  5416. #~ msgid "Change active post-processing scripts"
  5417. #~ msgstr "更改目前启用的后期处理脚本"
  5418. #~ msgctxt "@label:listbox"
  5419. #~ msgid "Feedrate"
  5420. #~ msgstr "进给速度"
  5421. #~ msgctxt "name"
  5422. #~ msgid "Machine Settings action"
  5423. #~ msgstr "打印机设置操作"
  5424. #~ msgctxt "@info:title"
  5425. #~ msgid "New cloud printers found"
  5426. #~ msgstr "发现新的云打印机"
  5427. #~ msgctxt "@info:message"
  5428. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5429. #~ msgstr "发现有新打印机连接到您的帐户。您可以在已发现的打印机列表中查找新连接的打印机。"
  5430. #~ msgctxt "@info:status"
  5431. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5432. #~ msgstr "当单线打印(Wire Printing)功能开启时,Cura 将无法准确地显示打印层(Layers)"
  5433. #~ msgctxt "@label"
  5434. #~ msgid "Pre-sliced file {0}"
  5435. #~ msgstr "预切片文件 {0}"
  5436. #~ msgctxt "@label"
  5437. #~ msgid ""
  5438. #~ "This plugin contains a license.\n"
  5439. #~ "You need to accept this license to install this plugin.\n"
  5440. #~ "Do you agree with the terms below?"
  5441. #~ msgstr ""
  5442. #~ "该插件包含一个许可。\n"
  5443. #~ "您需要接受此许可才能安装此插件。\n"
  5444. #~ "是否同意下列条款?"
  5445. #~ msgctxt "@action:button"
  5446. #~ msgid "Accept"
  5447. #~ msgstr "接受"
  5448. #~ msgctxt "@action:button"
  5449. #~ msgid "Decline"
  5450. #~ msgstr "拒绝"
  5451. #~ msgctxt "@action:inmenu"
  5452. #~ msgid "Show All Settings"
  5453. #~ msgstr "显示所有设置"
  5454. #~ msgctxt "@title:window"
  5455. #~ msgid "Ultimaker Cura"
  5456. #~ msgstr "Ultimaker Cura"
  5457. #~ msgctxt "@title:window"
  5458. #~ msgid "About Cura"
  5459. #~ msgstr "关于 Cura"
  5460. #~ msgctxt "@item:inmenu"
  5461. #~ msgid "Flatten active settings"
  5462. #~ msgstr "合并有效设置"
  5463. #~ msgctxt "@info:status"
  5464. #~ msgid "Profile has been flattened & activated."
  5465. #~ msgstr "配置文件已被合并并激活。"
  5466. #~ msgctxt "X3g Writer Plugin Description"
  5467. #~ msgid "Writes X3g to files"
  5468. #~ msgstr "写入 X3g 到文件"
  5469. #~ msgctxt "X3g Writer File Description"
  5470. #~ msgid "X3g File"
  5471. #~ msgstr "X3g 文件"
  5472. #~ msgctxt "X3G Writer File Description"
  5473. #~ msgid "X3G File"
  5474. #~ msgstr "X3G 文件"
  5475. #~ msgctxt "@item:inlistbox"
  5476. #~ msgid "Open Compressed Triangle Mesh"
  5477. #~ msgstr "打开压缩三角网格"
  5478. #~ msgctxt "@item:inmenu"
  5479. #~ msgid "Profile Assistant"
  5480. #~ msgstr "配置文件助手"
  5481. #~ msgctxt "@item:inlistbox"
  5482. #~ msgid "Profile Assistant"
  5483. #~ msgstr "配置文件助手"
  5484. #~ msgctxt "@action:button"
  5485. #~ msgid "Retry"
  5486. #~ msgstr "重试"
  5487. #~ msgctxt "@label:table_header"
  5488. #~ msgid "Print Core"
  5489. #~ msgstr "打印芯"
  5490. #~ msgctxt "@label"
  5491. #~ msgid "Don't support overlap with other models"
  5492. #~ msgstr "不支持与其他模型重叠"
  5493. #~ msgctxt "@label"
  5494. #~ msgid "Modify settings for overlap with other models"
  5495. #~ msgstr "修改与其他模型重叠的设置"
  5496. #~ msgctxt "@label"
  5497. #~ msgid "Modify settings for infill of other models"
  5498. #~ msgstr "修改其他模型填充物的设置"
  5499. #~ msgctxt "@action:ComboBox option"
  5500. #~ msgid "Update existing"
  5501. #~ msgstr "更新已有配置"
  5502. #~ msgctxt "@label"
  5503. #~ msgid "Not supported"
  5504. #~ msgstr "不支持"
  5505. #~ msgctxt "@action:button"
  5506. #~ msgid "Previous"
  5507. #~ msgstr "上一步"
  5508. #~ msgctxt "@label"
  5509. #~ msgid "Tip"
  5510. #~ msgstr "提示"
  5511. #~ msgctxt "@label"
  5512. #~ msgid "Print experiment"
  5513. #~ msgstr "打印试验"
  5514. #~ msgctxt "@label"
  5515. #~ msgid "Checklist"
  5516. #~ msgstr "检查表"
  5517. #~ msgctxt "@label"
  5518. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5519. #~ msgstr "请选择适用于 Ultimaker 2 的升级文件。"
  5520. #~ msgctxt "@label"
  5521. #~ msgid "Olsson Block"
  5522. #~ msgstr "Olsson Block"
  5523. #~ msgctxt "@window:text"
  5524. #~ msgid "Camera rendering: "
  5525. #~ msgstr "摄像头渲染: "
  5526. #~ msgctxt "@info:tooltip"
  5527. #~ msgid "Use multi build plate functionality"
  5528. #~ msgstr "使用多打印平台功能"
  5529. #~ msgctxt "@option:check"
  5530. #~ msgid "Use multi build plate functionality (restart required)"
  5531. #~ msgstr "使用多打印平台功能(需要重启)"
  5532. #~ msgctxt "@label"
  5533. #~ msgid "Default profiles"
  5534. #~ msgstr "默认配置文件"
  5535. #~ msgctxt "@label:textbox"
  5536. #~ msgid "search settings"
  5537. #~ msgstr "搜索设置"
  5538. #~ msgctxt "@label"
  5539. #~ msgid "Layer Height"
  5540. #~ msgstr "层高"
  5541. #~ msgctxt "@tooltip"
  5542. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5543. #~ msgstr "此质量配置文件不适用于当前材料和喷嘴配置。请进行更改以便启用此质量配置文件。"
  5544. #~ msgctxt "@tooltip"
  5545. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5546. #~ msgstr "自定义配置文件目前处于活动状态。 如要启用质量滑块,请在“自定义”选项卡中选择一个默认质量配置文件"
  5547. #~ msgctxt "@title:menu"
  5548. #~ msgid "&Build plate"
  5549. #~ msgstr "打印平台(&B)"
  5550. #~ msgctxt "@title:settings"
  5551. #~ msgid "&Profile"
  5552. #~ msgstr "配置文件(&P)"
  5553. #~ msgctxt "@action:label"
  5554. #~ msgid "Build plate"
  5555. #~ msgstr "打印平台"
  5556. #~ msgctxt "description"
  5557. #~ msgid "Dump the contents of all settings to a HTML file."
  5558. #~ msgstr "将所有设置内容转储至 HTML 文件。"
  5559. #~ msgctxt "name"
  5560. #~ msgid "God Mode"
  5561. #~ msgstr "God 模式"
  5562. #~ msgctxt "description"
  5563. #~ msgid "Create a flattened quality changes profile."
  5564. #~ msgstr "创建一份合并质量变化配置文件。"
  5565. #~ msgctxt "name"
  5566. #~ msgid "Profile Flattener"
  5567. #~ msgstr "配置文件合并器"
  5568. #~ msgctxt "description"
  5569. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5570. #~ msgstr "允许材料制造商使用下拉式 UI 创建新的材料和质量配置文件。"
  5571. #~ msgctxt "name"
  5572. #~ msgid "Print Profile Assistant"
  5573. #~ msgstr "打印配置文件助手"
  5574. #~ msgctxt "@info:status"
  5575. #~ msgid "Connected over the network."
  5576. #~ msgstr "已通过网络连接。"
  5577. #~ msgctxt "@info:status"
  5578. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5579. #~ msgstr "已通过网络连接。请在打印机上接受访问请求。"
  5580. #~ msgctxt "@info:status"
  5581. #~ msgid "Connected over the network. No access to control the printer."
  5582. #~ msgstr "已通过网络连接,但没有打印机的控制权限。"
  5583. #~ msgctxt "@info:status"
  5584. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5585. #~ msgstr "已发送打印机访问请求,请在打印机上批准该请求"
  5586. #~ msgctxt "@info:title"
  5587. #~ msgid "Authentication status"
  5588. #~ msgstr "身份验证状态"
  5589. #~ msgctxt "@info:title"
  5590. #~ msgid "Authentication Status"
  5591. #~ msgstr "身份验证状态"
  5592. #~ msgctxt "@info:tooltip"
  5593. #~ msgid "Re-send the access request"
  5594. #~ msgstr "重新发送访问请求"
  5595. #~ msgctxt "@info:status"
  5596. #~ msgid "Access to the printer accepted"
  5597. #~ msgstr "打印机接受了访问请求"
  5598. #~ msgctxt "@info:status"
  5599. #~ msgid "No access to print with this printer. Unable to send print job."
  5600. #~ msgstr "无法使用本打印机进行打印,无法发送打印作业。"
  5601. #~ msgctxt "@action:button"
  5602. #~ msgid "Request Access"
  5603. #~ msgstr "请求访问"
  5604. #~ msgctxt "@info:tooltip"
  5605. #~ msgid "Send access request to the printer"
  5606. #~ msgstr "向打印机发送访问请求"
  5607. #~ msgctxt "@label"
  5608. #~ msgid "Unable to start a new print job."
  5609. #~ msgstr "无法启动新的打印作业。"
  5610. #~ msgctxt "@label"
  5611. #~ 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."
  5612. #~ msgstr "Ultimaker 配置存在问题,导致无法开始打印。请解决此问题,然后再继续。"
  5613. #~ msgctxt "@window:title"
  5614. #~ msgid "Mismatched configuration"
  5615. #~ msgstr "配置不匹配"
  5616. #~ msgctxt "@label"
  5617. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5618. #~ msgstr "您确定要使用所选配置进行打印吗?"
  5619. #~ msgctxt "@label"
  5620. #~ 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."
  5621. #~ msgstr "打印机的配置或校准与 Cura 之间不匹配。为了获得最佳打印效果,请务必切换打印头和打印机中插入的材料。"
  5622. #~ msgctxt "@info:status"
  5623. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5624. #~ msgstr "发送新作业(暂时)受阻,仍在发送前一份打印作业。"
  5625. #~ msgctxt "@info:status"
  5626. #~ msgid "Sending data to printer"
  5627. #~ msgstr "向打印机发送数据"
  5628. #~ msgctxt "@info:title"
  5629. #~ msgid "Sending Data"
  5630. #~ msgstr "正在发送数据"
  5631. #~ msgctxt "@info:status"
  5632. #~ msgid "No Printcore loaded in slot {slot_number}"
  5633. #~ msgstr "插槽 {slot_number} 中未加载 Printcore"
  5634. #~ msgctxt "@info:status"
  5635. #~ msgid "No material loaded in slot {slot_number}"
  5636. #~ msgstr "插槽 {slot_number} 中未加载材料"
  5637. #~ msgctxt "@label"
  5638. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5639. #~ msgstr "为挤出机 {extruder_id} 选择了不同的 PrintCore(Cura: {cura_printcore_name},打印机:{remote_printcore_name})"
  5640. #~ msgctxt "@label"
  5641. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5642. #~ msgstr "您为挤出机 {2} 选择了不同的材料(Cura:{0},打印机:{1})"
  5643. #~ msgctxt "@window:title"
  5644. #~ msgid "Sync with your printer"
  5645. #~ msgstr "与您的打印机同步"
  5646. #~ msgctxt "@label"
  5647. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5648. #~ msgstr "您想在 Cura 中使用当前的打印机配置吗?"
  5649. #~ msgctxt "@label"
  5650. #~ 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."
  5651. #~ msgstr "打印机上的打印头和/或材料与当前项目中的不同。 为获得最佳打印效果,请始终使用已插入打印机的打印头和材料进行切片。"
  5652. #~ msgctxt "@action:button"
  5653. #~ msgid "View in Monitor"
  5654. #~ msgstr "在监控器中查看"
  5655. #~ msgctxt "@info:status"
  5656. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5657. #~ msgstr "打印机 '{printer_name}' 完成了打印任务 '{job_name}'。"
  5658. #~ msgctxt "@info:status"
  5659. #~ msgid "The print job '{job_name}' was finished."
  5660. #~ msgstr "打印作业 '{job_name}' 已完成。"
  5661. #~ msgctxt "@info:status"
  5662. #~ msgid "Print finished"
  5663. #~ msgstr "打印完成"
  5664. #~ msgctxt "@label:material"
  5665. #~ msgid "Empty"
  5666. #~ msgstr "空"
  5667. #~ msgctxt "@label:material"
  5668. #~ msgid "Unknown"
  5669. #~ msgstr "未知"
  5670. #~ msgctxt "@info:title"
  5671. #~ msgid "Cloud error"
  5672. #~ msgstr "云错误"
  5673. #~ msgctxt "@info:status"
  5674. #~ msgid "Could not export print job."
  5675. #~ msgstr "无法导出打印作业。"
  5676. #~ msgctxt "@info:description"
  5677. #~ msgid "There was an error connecting to the cloud."
  5678. #~ msgstr "连接到云时出错。"
  5679. #~ msgctxt "@info:status"
  5680. #~ msgid "Uploading via Ultimaker Cloud"
  5681. #~ msgstr "通过 Ultimaker Cloud 上传"
  5682. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5683. #~ msgid "Connect to Ultimaker Cloud"
  5684. #~ msgstr "连接到 Ultimaker Cloud"
  5685. #~ msgctxt "@action"
  5686. #~ msgid "Don't ask me again for this printer."
  5687. #~ msgstr "对此打印机不再询问。"
  5688. #~ msgctxt "@info:status"
  5689. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5690. #~ msgstr "您现在可以使用您的 Ultimaker account 帐户从任何地方发送和监控打印作业。"
  5691. #~ msgctxt "@info:status"
  5692. #~ msgid "Connected!"
  5693. #~ msgstr "已连接!"
  5694. #~ msgctxt "@action"
  5695. #~ msgid "Review your connection"
  5696. #~ msgstr "查看您的连接"
  5697. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5698. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5699. #~ msgstr "配置文件 <filename>{0}</filename> ({1}) 中定义的机器与当前机器 ({2}) 不匹配,无法导入。"
  5700. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5701. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5702. #~ msgstr "无法从 <filename>{0}</filename> 导入配置文件:"
  5703. #~ msgctxt "@window:title"
  5704. #~ msgid "Existing Connection"
  5705. #~ msgstr "现有连接"
  5706. #~ msgctxt "@message:text"
  5707. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5708. #~ msgstr "此打印机/打印机组已添加到 Cura。请选择其他打印机/打印机组。"
  5709. #~ msgctxt "@label"
  5710. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5711. #~ msgstr "输入打印机在网络上的 IP 地址或主机名。"
  5712. #~ msgctxt "@info:tooltip"
  5713. #~ msgid "Connect to a printer"
  5714. #~ msgstr "连接到打印机"
  5715. #~ msgctxt "@title"
  5716. #~ msgid "Cura Settings Guide"
  5717. #~ msgstr "Cura 设置向导"
  5718. #~ msgctxt "@info:tooltip"
  5719. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  5720. #~ msgstr "正交透视中不支持通过鼠标缩放。"
  5721. #~ msgid "Orthogonal"
  5722. #~ msgstr "正交"
  5723. #~ msgctxt "description"
  5724. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5725. #~ msgstr "管理与最后的3个打印机的网络连接。"
  5726. #~ msgctxt "name"
  5727. #~ msgid "UM3 Network Connection"
  5728. #~ msgstr "UM3 网络连接"
  5729. #~ msgctxt "description"
  5730. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5731. #~ msgstr "提供关于 Cura 设置的额外信息和说明,并附上图片及动画。"
  5732. #~ msgctxt "name"
  5733. #~ msgid "Settings Guide"
  5734. #~ msgstr "设置向导"
  5735. #~ msgctxt "@item:inmenu"
  5736. #~ msgid "Cura Settings Guide"
  5737. #~ msgstr "Cura 设置向导"
  5738. #~ msgctxt "@info:generic"
  5739. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5740. #~ msgstr "已根据挤出机的当前可用性更改设置:[%s]"
  5741. #~ msgctxt "@title:groupbox"
  5742. #~ msgid "User description"
  5743. #~ msgstr "用户说明"
  5744. #~ msgctxt "@info"
  5745. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5746. #~ msgstr "这些选项不可用,因为您正在监控云打印机。"
  5747. #~ msgctxt "@label link to connect manager"
  5748. #~ msgid "Go to Cura Connect"
  5749. #~ msgstr "转到 Cura Connect"
  5750. #~ msgctxt "@info"
  5751. #~ msgid "All jobs are printed."
  5752. #~ msgstr "已完成所有打印工作。"
  5753. #~ msgctxt "@label link to connect manager"
  5754. #~ msgid "View print history"
  5755. #~ msgstr "查看打印历史"
  5756. #~ msgctxt "@label"
  5757. #~ msgid ""
  5758. #~ "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"
  5759. #~ "\n"
  5760. #~ "Select your printer from the list below:"
  5761. #~ msgstr ""
  5762. #~ "要通过网络向打印机发送打印请求,请确保您的打印机已通过网线或 WIFI 连接到网络。若您不能连接 Cura 与打印机,您仍然可以使用 USB 设备将 G-code 文件传输到打印机。\n"
  5763. #~ "\n"
  5764. #~ "从以下列表中选择您的打印机:"
  5765. #~ msgctxt "@info"
  5766. #~ msgid ""
  5767. #~ "Please make sure your printer has a connection:\n"
  5768. #~ "- Check if the printer is turned on.\n"
  5769. #~ "- Check if the printer is connected to the network."
  5770. #~ msgstr ""
  5771. #~ "请确保您的打印机已连接:\n"
  5772. #~ "- 检查打印机是否已启动。\n"
  5773. #~ "- 检查打印机是否连接到网络。"
  5774. #~ msgctxt "@option:check"
  5775. #~ msgid "See only current build plate"
  5776. #~ msgstr "只能看到当前的打印平台"
  5777. #~ msgctxt "@action:button"
  5778. #~ msgid "Arrange to all build plates"
  5779. #~ msgstr "编位到所有打印平台"
  5780. #~ msgctxt "@action:button"
  5781. #~ msgid "Arrange current build plate"
  5782. #~ msgstr "编位当前打印平台"
  5783. #~ msgctxt "description"
  5784. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5785. #~ msgstr "允许将产生的切片保存为X3G文件,以支持读取此格式的打印机(Malyan、Makerbot和其他基于sailfish打印机的打印机)。"
  5786. #~ msgctxt "name"
  5787. #~ msgid "X3GWriter"
  5788. #~ msgstr "X3G写"
  5789. #~ msgctxt "description"
  5790. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5791. #~ msgstr "读取 SVG 文件的刀具路径,调试打印机活动。"
  5792. #~ msgctxt "name"
  5793. #~ msgid "SVG Toolpath Reader"
  5794. #~ msgstr "SVG 刀具路径读取器"
  5795. #~ msgctxt "@item:inmenu"
  5796. #~ msgid "Changelog"
  5797. #~ msgstr "更新日志"
  5798. #~ msgctxt "@item:inmenu"
  5799. #~ msgid "Show Changelog"
  5800. #~ msgstr "显示更新日志"
  5801. #~ msgctxt "@info:status"
  5802. #~ msgid "Sending data to remote cluster"
  5803. #~ msgstr "发送数据至远程群集"
  5804. #~ msgctxt "@info:status"
  5805. #~ msgid "Connect to Ultimaker Cloud"
  5806. #~ msgstr "连接到 Ultimaker Cloud"
  5807. #~ msgctxt "@info"
  5808. #~ msgid "Cura collects anonymized usage statistics."
  5809. #~ msgstr "Cura 将收集匿名的使用统计数据。"
  5810. #~ msgctxt "@info:title"
  5811. #~ msgid "Collecting Data"
  5812. #~ msgstr "正在收集数据"
  5813. #~ msgctxt "@action:button"
  5814. #~ msgid "More info"
  5815. #~ msgstr "详细信息"
  5816. #~ msgctxt "@action:tooltip"
  5817. #~ msgid "See more information on what data Cura sends."
  5818. #~ msgstr "请参阅更多关于Cura发送的数据的信息。"
  5819. #~ msgctxt "@action:button"
  5820. #~ msgid "Allow"
  5821. #~ msgstr "允许"
  5822. #~ msgctxt "@action:tooltip"
  5823. #~ 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."
  5824. #~ msgstr "允许 Cura 发送匿名的使用统计数据,以帮助确定将来 Cura 的改进优先顺序。已发送您的一些偏好和设置,Cura 版本和您正在切片的模型的散列值。"
  5825. #~ msgctxt "@item:inmenu"
  5826. #~ msgid "Evaluation"
  5827. #~ msgstr "评估"
  5828. #~ msgctxt "@info:title"
  5829. #~ msgid "Network enabled printers"
  5830. #~ msgstr "网络打印机"
  5831. #~ msgctxt "@info:title"
  5832. #~ msgid "Local printers"
  5833. #~ msgstr "本地打印机"
  5834. #~ msgctxt "@info:backup_failed"
  5835. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  5836. #~ msgstr "试图恢复与您当前版本不匹配的Cura备份。"
  5837. #~ msgctxt "@title"
  5838. #~ msgid "Machine Settings"
  5839. #~ msgstr "打印机设置"
  5840. #~ msgctxt "@label"
  5841. #~ msgid "Printer Settings"
  5842. #~ msgstr "打印机设置"
  5843. #~ msgctxt "@option:check"
  5844. #~ msgid "Origin at center"
  5845. #~ msgstr "置中"
  5846. #~ msgctxt "@option:check"
  5847. #~ msgid "Heated bed"
  5848. #~ msgstr "加热床"
  5849. #~ msgctxt "@label"
  5850. #~ msgid "Printhead Settings"
  5851. #~ msgstr "打印头设置"
  5852. #~ msgctxt "@tooltip"
  5853. #~ 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\"."
  5854. #~ msgstr "打印头左侧至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。"
  5855. #~ msgctxt "@tooltip"
  5856. #~ 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\"."
  5857. #~ msgstr "打印头前端至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。"
  5858. #~ msgctxt "@tooltip"
  5859. #~ 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\"."
  5860. #~ msgstr "打印头右侧至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。"
  5861. #~ msgctxt "@tooltip"
  5862. #~ 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\"."
  5863. #~ msgstr "打印头后部至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。"
  5864. #~ msgctxt "@label"
  5865. #~ msgid "Gantry height"
  5866. #~ msgstr "十字轴高度"
  5867. #~ msgctxt "@tooltip"
  5868. #~ 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\"."
  5869. #~ msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。 用于防止“排队”打印时之前的打印品与十字轴发生碰撞。"
  5870. #~ msgctxt "@label"
  5871. #~ msgid "Start G-code"
  5872. #~ msgstr "开始 G-code"
  5873. #~ msgctxt "@tooltip"
  5874. #~ msgid "G-code commands to be executed at the very start."
  5875. #~ msgstr "将在开始时执行的 G-code 命令。"
  5876. #~ msgctxt "@label"
  5877. #~ msgid "End G-code"
  5878. #~ msgstr "结束 G-code"
  5879. #~ msgctxt "@tooltip"
  5880. #~ msgid "G-code commands to be executed at the very end."
  5881. #~ msgstr "将在结束时执行的 G-code 命令。"
  5882. #~ msgctxt "@label"
  5883. #~ msgid "Nozzle Settings"
  5884. #~ msgstr "喷嘴设置"
  5885. #~ msgctxt "@tooltip"
  5886. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5887. #~ msgstr "打印机所支持耗材的公称直径。 材料和/或配置文件将覆盖精确直径。"
  5888. #~ msgctxt "@label"
  5889. #~ msgid "Extruder Start G-code"
  5890. #~ msgstr "挤出机的开始 G-code"
  5891. #~ msgctxt "@label"
  5892. #~ msgid "Extruder End G-code"
  5893. #~ msgstr "挤出机的结束 G-code"
  5894. #~ msgctxt "@label"
  5895. #~ msgid "Changelog"
  5896. #~ msgstr "更新日志"
  5897. #~ msgctxt "@title:window"
  5898. #~ msgid "User Agreement"
  5899. #~ msgstr "用户协议"
  5900. #~ msgctxt "@alabel"
  5901. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5902. #~ msgstr "输入打印机在网络上的 IP 地址或主机名。"
  5903. #~ msgctxt "@info"
  5904. #~ msgid "Please select a network connected printer to monitor."
  5905. #~ msgstr "请选择已连接网络的打印机进行监控。"
  5906. #~ msgctxt "@info"
  5907. #~ msgid "Please connect your Ultimaker printer to your local network."
  5908. #~ msgstr "请将 Ultimaker 打印机连接到您的局域网。"
  5909. #~ msgctxt "@text:window"
  5910. #~ 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."
  5911. #~ msgstr "Cura向最终用户发送匿名数据,以提高打印质量和用户体验。下面是发送的所有数据的一个示例。"
  5912. #~ msgctxt "@text:window"
  5913. #~ msgid "I don't want to send this data"
  5914. #~ msgstr "我不想发送此数据"
  5915. #~ msgctxt "@text:window"
  5916. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5917. #~ msgstr "允许向 Ultimaker 发送此数据并帮助我们改善 Cura"
  5918. #~ msgctxt "@label"
  5919. #~ msgid "No print selected"
  5920. #~ msgstr "未选择打印"
  5921. #~ msgctxt "@info:tooltip"
  5922. #~ 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."
  5923. #~ msgstr "默认情况下,白色像素表示网格上的高点,黑色像素表示网格上的低点。若更改此选项将反其道而行之,相当于图像编辑软件中的「反相」操作。"
  5924. #~ msgctxt "@title"
  5925. #~ msgid "Select Printer Upgrades"
  5926. #~ msgstr "选择打印机升级"
  5927. #~ msgctxt "@label"
  5928. #~ 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."
  5929. #~ msgstr "选择用于支撑的挤出机。该挤出机将在模型之下建立支撑结构,以防止模型下垂或在空中打印。"
  5930. #~ msgctxt "@tooltip"
  5931. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5932. #~ msgstr "此质量配置文件不适用于当前材料和喷嘴配置。请更改配置以便启用此配置文件"
  5933. #~ msgctxt "@label shown when we load a Gcode file"
  5934. #~ msgid "Print setup disabled. G code file can not be modified."
  5935. #~ msgstr "打印设置已禁用。无法修改 G code 文件。"
  5936. #~ msgctxt "@label"
  5937. #~ msgid "See the material compatibility chart"
  5938. #~ msgstr "查看材料兼容性图表"
  5939. #~ msgctxt "@label"
  5940. #~ msgid "View types"
  5941. #~ msgstr "查看类型"
  5942. #~ msgctxt "@label"
  5943. #~ msgid "Hi "
  5944. #~ msgstr "您好 "
  5945. #~ msgctxt "@text"
  5946. #~ msgid ""
  5947. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5948. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5949. #~ "- Get exclusive access to material profiles from leading brands"
  5950. #~ msgstr ""
  5951. #~ "- 发送打印作业到局域网外的 Ultimaker 打印机\n"
  5952. #~ "- 将 Ultimaker Cura 设置存储到云以便在任何地方使用\n"
  5953. #~ "- 获得来自领先品牌的材料配置文件的独家访问权限"
  5954. #~ msgctxt "@label:PrintjobStatus"
  5955. #~ msgid "Unable to Slice"
  5956. #~ msgstr "无法切片"
  5957. #~ msgctxt "@label"
  5958. #~ msgid "Time specification"
  5959. #~ msgstr "时间规格"
  5960. #~ msgctxt "@label"
  5961. #~ msgid "Material specification"
  5962. #~ msgstr "材料规格"
  5963. #~ msgctxt "@title:tab"
  5964. #~ msgid "Add a printer to Cura"
  5965. #~ msgstr "添加打印机到 Cura"
  5966. #~ msgctxt "@title:tab"
  5967. #~ msgid ""
  5968. #~ "Select the printer you want to use from the list below.\n"
  5969. #~ "\n"
  5970. #~ "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."
  5971. #~ msgstr ""
  5972. #~ "从以下列表中选择您要使用的打印机。\n"
  5973. #~ "\n"
  5974. #~ "如果您的打印机不在列表中,使用“自定义”类别中的“自定义 FFF 打印机”,并在下一个对话框中调整设置以匹配您的打印机。"
  5975. #~ msgctxt "@label"
  5976. #~ msgid "Printer Name"
  5977. #~ msgstr "打印机名称"
  5978. #~ msgctxt "@action:button"
  5979. #~ msgid "Add Printer"
  5980. #~ msgstr "新增打印机"
  5981. #~ msgid "Modify G-Code"
  5982. #~ msgstr "修改 G-Code 文件"
  5983. #~ msgctxt "@info:status"
  5984. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5985. #~ msgstr "无法执行,因为没有一个模型符合成形空间体积。请缩放或旋转模型以适应打印平台。"
  5986. #~ msgctxt "@info:status"
  5987. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5988. #~ msgstr "所选材料与所选机器或配置不兼容。"
  5989. #~ msgctxt "@info:title"
  5990. #~ msgid "Incompatible Material"
  5991. #~ msgstr "不兼容材料"
  5992. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5993. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5994. #~ msgstr "无法从 <filename> {0} </filename> 导入配置文件: <message>{1}</message>"
  5995. #~ msgctxt "@title"
  5996. #~ msgid "Toolbox"
  5997. #~ msgstr "工具箱"
  5998. #~ msgctxt "@label"
  5999. #~ msgid "Not available"
  6000. #~ msgstr "不可用"
  6001. #~ msgctxt "@label"
  6002. #~ msgid "Unreachable"
  6003. #~ msgstr "无法连接"
  6004. #~ msgctxt "@label"
  6005. #~ msgid "Available"
  6006. #~ msgstr "可用"
  6007. #~ msgctxt "@label:status"
  6008. #~ msgid "Preparing"
  6009. #~ msgstr "准备"
  6010. #~ msgctxt "@label:status"
  6011. #~ msgid "Pausing"
  6012. #~ msgstr "暂停"
  6013. #~ msgctxt "@label:status"
  6014. #~ msgid "Resuming"
  6015. #~ msgstr "恢复"
  6016. #~ msgctxt "@label"
  6017. #~ msgid "Waiting for: Unavailable printer"
  6018. #~ msgstr "等待:不可用的打印机"
  6019. #~ msgctxt "@label"
  6020. #~ msgid "Waiting for: First available"
  6021. #~ msgstr "等待:第一个可用的"
  6022. #~ msgctxt "@label"
  6023. #~ msgid "Waiting for: "
  6024. #~ msgstr "等待: "
  6025. #~ msgctxt "@label"
  6026. #~ msgid "Configuration change"
  6027. #~ msgstr "配置更改"
  6028. #~ msgctxt "@label"
  6029. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6030. #~ msgstr "分配的打印机 %1 需要以下配置更改:"
  6031. #~ msgctxt "@label"
  6032. #~ msgid "Override"
  6033. #~ msgstr "覆盖"
  6034. #~ msgctxt "@label"
  6035. #~ 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?"
  6036. #~ msgstr "使用不兼容的配置启动打印作业可能会损坏 3D 打印机。您确定要覆盖配置并打印 %1 吗?"
  6037. #~ msgctxt "@window:title"
  6038. #~ msgid "Override configuration configuration and start print"
  6039. #~ msgstr "覆盖配置并开始打印"
  6040. #~ msgctxt "@label link to connect manager"
  6041. #~ msgid "Manage queue"
  6042. #~ msgstr "管理队列"
  6043. #~ msgctxt "@label"
  6044. #~ msgid "Printing"
  6045. #~ msgstr "打印"
  6046. #~ msgctxt "@label link to connect manager"
  6047. #~ msgid "Manage printers"
  6048. #~ msgstr "管理打印机"
  6049. #~ msgctxt "@action:button"
  6050. #~ msgid "Activate Configuration"
  6051. #~ msgstr "应用配置"
  6052. #~ msgctxt "@info:tooltip"
  6053. #~ msgid "Load the configuration of the printer into Cura"
  6054. #~ msgstr "将打印机配置导入 Cura"
  6055. #~ msgctxt "@label"
  6056. #~ msgid "Show Travels"
  6057. #~ msgstr "显示移动轨迹"
  6058. #~ msgctxt "@label"
  6059. #~ msgid "Show Helpers"
  6060. #~ msgstr "显示打印辅助结构"
  6061. #~ msgctxt "@label"
  6062. #~ msgid "Show Shell"
  6063. #~ msgstr "显示外壳"
  6064. #~ msgctxt "@label"
  6065. #~ msgid "Show Infill"
  6066. #~ msgstr "显示填充"
  6067. #~ msgctxt "@text:window"
  6068. #~ msgid "I don't want to send these data"
  6069. #~ msgstr "我不想发送这些数据"
  6070. #~ msgctxt "@text:window"
  6071. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  6072. #~ msgstr "允许将这些数据发送到最后一个,帮助我们改进Cura"
  6073. #~ msgctxt "@label"
  6074. #~ msgid "Printer type:"
  6075. #~ msgstr "打印机类型:"
  6076. #~ msgctxt "@label"
  6077. #~ msgid "Connection:"
  6078. #~ msgstr "连接:"
  6079. #~ msgctxt "@label"
  6080. #~ msgid "State:"
  6081. #~ msgstr "状态:"
  6082. #~ msgctxt "@label:MonitorStatus"
  6083. #~ msgid "Waiting for a printjob"
  6084. #~ msgstr "等待打印作业"
  6085. #~ msgctxt "@label:MonitorStatus"
  6086. #~ msgid "Waiting for someone to clear the build plate"
  6087. #~ msgstr "等待清理打印平台"
  6088. #~ msgctxt "@label:MonitorStatus"
  6089. #~ msgid "Aborting print..."
  6090. #~ msgstr "中止打印..."
  6091. #~ msgctxt "@label"
  6092. #~ msgid "Protected profiles"
  6093. #~ msgstr "受保护的配置文件"
  6094. #~ msgctxt "@label"
  6095. #~ msgid "Printer Name:"
  6096. #~ msgstr "打印机名称:"
  6097. #~ msgctxt "@label"
  6098. #~ msgid "Profile:"
  6099. #~ msgstr "配置文件:"
  6100. #~ msgctxt "@label:textbox"
  6101. #~ msgid "Search..."
  6102. #~ msgstr "搜索..."
  6103. #~ msgctxt "@action:inmenu"
  6104. #~ msgid "Collapse All"
  6105. #~ msgstr "全部折叠"
  6106. #~ msgctxt "@action:inmenu"
  6107. #~ msgid "Expand All"
  6108. #~ msgstr "全部展开"
  6109. #~ msgctxt "@label:header configurations"
  6110. #~ msgid "Available configurations"
  6111. #~ msgstr "可用配置"
  6112. #~ msgctxt "@label:extruder label"
  6113. #~ msgid "Extruder"
  6114. #~ msgstr "挤出机"
  6115. #~ msgctxt "@label:extruder label"
  6116. #~ msgid "Yes"
  6117. #~ msgstr "是"
  6118. #~ msgctxt "@label:extruder label"
  6119. #~ msgid "No"
  6120. #~ msgstr "不是"
  6121. #~ msgctxt "@label:listbox"
  6122. #~ msgid "Print Setup"
  6123. #~ msgstr "打印设置"
  6124. #~ msgctxt "@label:listbox"
  6125. #~ msgid ""
  6126. #~ "Print Setup disabled\n"
  6127. #~ "G-code files cannot be modified"
  6128. #~ msgstr ""
  6129. #~ "打印设置已禁用\n"
  6130. #~ "G-code 文件无法被修改"
  6131. #~ msgctxt "@label Hours and minutes"
  6132. #~ msgid "00h 00min"
  6133. #~ msgstr "00 小时 00 分"
  6134. #~ msgctxt "@tooltip"
  6135. #~ msgid "Time specification"
  6136. #~ msgstr "时间规格"
  6137. #~ msgctxt "@label"
  6138. #~ msgid "Cost specification"
  6139. #~ msgstr "成本规定"
  6140. #~ msgctxt "@label"
  6141. #~ msgid "Total:"
  6142. #~ msgstr "总计:"
  6143. #~ msgctxt "@tooltip"
  6144. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  6145. #~ msgstr "<b>推荐的打印设置</b> <br/> <br/>使用针对所选打印机、材料和质量的推荐设置进行打印。"
  6146. #~ msgctxt "@tooltip"
  6147. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  6148. #~ msgstr "<b>自定义打印设置</b><br/><br/>对切片过程中的每一个细节进行精细控制。"
  6149. #~ msgctxt "@action:inmenu menubar:help"
  6150. #~ msgid "Show Engine &Log..."
  6151. #~ msgstr "显示引擎日志(&L)..."
  6152. #~ msgctxt "@action:menu"
  6153. #~ msgid "Browse packages..."
  6154. #~ msgstr "浏览包……"
  6155. #~ msgctxt "@action:inmenu menubar:view"
  6156. #~ msgid "Expand/Collapse Sidebar"
  6157. #~ msgstr "展开/折叠侧边栏"
  6158. #~ msgctxt "@label:PrintjobStatus"
  6159. #~ msgid "Please load a 3D model"
  6160. #~ msgstr "请载入一个 3D 模型"
  6161. #~ msgctxt "@label:PrintjobStatus"
  6162. #~ msgid "Ready to slice"
  6163. #~ msgstr "切片已准备就绪"
  6164. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  6165. #~ msgid "Ready to %1"
  6166. #~ msgstr "%1 已准备就绪"
  6167. #~ msgctxt "@label:PrintjobStatus"
  6168. #~ msgid "Slicing unavailable"
  6169. #~ msgstr "切片不可用"
  6170. #~ msgctxt "@info:tooltip"
  6171. #~ msgid "Slice current printjob"
  6172. #~ msgstr "分割当前打印作业"
  6173. #~ msgctxt "@info:tooltip"
  6174. #~ msgid "Cancel slicing process"
  6175. #~ msgstr "取消切片流程"
  6176. #~ msgctxt "@label:Printjob"
  6177. #~ msgid "Prepare"
  6178. #~ msgstr "准备"
  6179. #~ msgctxt "@label:Printjob"
  6180. #~ msgid "Cancel"
  6181. #~ msgstr "取消"
  6182. #~ msgctxt "@info:tooltip"
  6183. #~ msgid "Select the active output device"
  6184. #~ msgstr "选择活动的输出装置"
  6185. #~ msgctxt "@title:menu"
  6186. #~ msgid "&View"
  6187. #~ msgstr "视图(&V)"
  6188. #~ msgctxt "@title:menu"
  6189. #~ msgid "&Settings"
  6190. #~ msgstr "设置(&S)"
  6191. #~ msgctxt "@title:menu menubar:toplevel"
  6192. #~ msgid "&Toolbox"
  6193. #~ msgstr "&工具箱"
  6194. #~ msgctxt "@action:button"
  6195. #~ msgid "Open File"
  6196. #~ msgstr "打开文件"
  6197. #~ msgctxt "@tooltip"
  6198. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6199. #~ msgstr "此质量配置文件不适用于当前材料和喷嘴配置。请更改配置以便启用此配置文件"
  6200. #~ msgctxt "@label"
  6201. #~ msgid "Print Speed"
  6202. #~ msgstr "打印速度"
  6203. #~ msgctxt "@label"
  6204. #~ msgid "Slower"
  6205. #~ msgstr "更慢"
  6206. #~ msgctxt "@label"
  6207. #~ msgid "Faster"
  6208. #~ msgstr "更快"
  6209. #~ msgctxt "@label"
  6210. #~ msgid "Enable gradual"
  6211. #~ msgstr "启用渐层"
  6212. #~ msgctxt "@label"
  6213. #~ msgid "Generate Support"
  6214. #~ msgstr "生成支撑"
  6215. #~ msgctxt "@label"
  6216. #~ msgid "Build Plate Adhesion"
  6217. #~ msgstr "打印平台附着"
  6218. #~ msgctxt "@label"
  6219. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6220. #~ msgstr "需要帮助改善您的打印?<br>阅读 <a href=‘%1’>Ultimaker 故障排除指南</a>"
  6221. #~ msgctxt "@title:window"
  6222. #~ msgid "Engine Log"
  6223. #~ msgstr "引擎日志"
  6224. #~ msgctxt "@label"
  6225. #~ msgid "Printer type"
  6226. #~ msgstr "打印机类型"
  6227. #~ msgctxt "@label"
  6228. #~ msgid "Use glue with this material combination"
  6229. #~ msgstr "用胶粘和此材料组合"
  6230. #~ msgctxt "@label"
  6231. #~ msgid "Check compatibility"
  6232. #~ msgstr "检查兼容性"
  6233. #~ msgctxt "@tooltip"
  6234. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6235. #~ msgstr "点击查看 Ultimaker.com 上的材料兼容情况。"
  6236. #~ msgctxt "description"
  6237. #~ msgid "Shows changes since latest checked version."
  6238. #~ msgstr "显示最新版本改动。"
  6239. #~ msgctxt "name"
  6240. #~ msgid "Changelog"
  6241. #~ msgstr "更新日志"
  6242. #~ msgctxt "description"
  6243. #~ msgid "Create a flattend quality changes profile."
  6244. #~ msgstr "创建一份合并质量变化配置文件。"
  6245. #~ msgctxt "name"
  6246. #~ msgid "Profile flatener"
  6247. #~ msgstr "配置文件合并器"
  6248. #~ msgctxt "description"
  6249. #~ msgid "Ask the user once if he/she agrees with our license."
  6250. #~ msgstr "询问用户是否同意我们的许可证。"
  6251. #~ msgctxt "name"
  6252. #~ msgid "UserAgreement"
  6253. #~ msgstr "用户协议"
  6254. #~ msgctxt "@warning:status"
  6255. #~ msgid "Please generate G-code before saving."
  6256. #~ msgstr "保存之前,请生成 G-code。"
  6257. #~ msgctxt "@action"
  6258. #~ msgid "Upgrade Firmware"
  6259. #~ msgstr "升级固件"
  6260. #~ msgctxt "@label unknown material"
  6261. #~ msgid "Unknown"
  6262. #~ msgstr "未知"
  6263. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6264. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6265. #~ msgstr "没有可供导入文件 <filename>{0}</filename> 的自定义配置文件"
  6266. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6267. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6268. #~ msgstr "此配置文件<filename> {0} </filename>包含错误数据,无法导入。"
  6269. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6270. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6271. #~ msgstr "配置文件 <filename>{0}</filename> ({1}) 中定义的机器与当前机器 ({2}) 不匹配,无法导入。"
  6272. #~ msgctxt "@title:window"
  6273. #~ msgid "Confirm uninstall "
  6274. #~ msgstr "确认卸载 "
  6275. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  6276. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6277. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6278. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  6279. #~ msgid "%1m / ~ %2g"
  6280. #~ msgstr "%1m / ~ %2g"
  6281. #~ msgctxt "@title"
  6282. #~ msgid "Upgrade Firmware"
  6283. #~ msgstr "升级固件"
  6284. #~ msgctxt "@action:button"
  6285. #~ msgid "Print with Doodle3D WiFi-Box"
  6286. #~ msgstr "使用 Doodle3D WiFi-Box 打印"
  6287. #~ msgctxt "@properties:tooltip"
  6288. #~ msgid "Print with Doodle3D WiFi-Box"
  6289. #~ msgstr "使用 Doodle3D WiFi-Box 打印"
  6290. #~ msgctxt "@info:status"
  6291. #~ msgid "Connecting to Doodle3D Connect"
  6292. #~ msgstr "连接至 Doodle3D Connect"
  6293. #~ msgctxt "@info:status"
  6294. #~ msgid "Sending data to Doodle3D Connect"
  6295. #~ msgstr "发送数据至 Doodle3D Connect"
  6296. #~ msgctxt "@info:status"
  6297. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6298. #~ msgstr "无法发送数据至 Doodle3D Connect。 是否有另一项作业仍在进行?"
  6299. #~ msgctxt "@info:status"
  6300. #~ msgid "Storing data on Doodle3D Connect"
  6301. #~ msgstr "在 Doodle3D Connect 中存储数据"
  6302. #~ msgctxt "@info:status"
  6303. #~ msgid "File sent to Doodle3D Connect"
  6304. #~ msgstr "已发送至 Doodle3D Connect 的文件"
  6305. #~ msgctxt "@action:button"
  6306. #~ msgid "Open Connect..."
  6307. #~ msgstr "打开 链接..."
  6308. #~ msgctxt "@info:tooltip"
  6309. #~ msgid "Open the Doodle3D Connect web interface"
  6310. #~ msgstr "打开 Doodle3D Connect Web 界面"
  6311. #~ msgctxt "@item:inlistbox"
  6312. #~ msgid "Blender file"
  6313. #~ msgstr "Blender 文件"
  6314. #~ msgctxt "@info:status"
  6315. #~ msgid ""
  6316. #~ "Could not export using \"{}\" quality!\n"
  6317. #~ "Felt back to \"{}\"."
  6318. #~ msgstr ""
  6319. #~ "无法使用 \"{}\" 导出质量!\n"
  6320. #~ "返回 \"{}\"。"
  6321. #~ msgctxt "@label"
  6322. #~ msgid "Contact"
  6323. #~ msgstr "联系方式"
  6324. #~ msgctxt "@label"
  6325. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  6326. #~ msgstr "这台打印机未设置为运行一组连接的 Ultimaker 3 打印机。"
  6327. #~ msgctxt "@label"
  6328. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  6329. #~ msgstr "这台打印机是一组共 %1 台已连接 Ultimaker 3 打印机的主机。"
  6330. #~ msgctxt "@label: arg 1 is group name"
  6331. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  6332. #~ msgstr "%1 未设置为运行一组连接的 Ultimaker 3 打印机"
  6333. #~ msgctxt "@label link to connect manager"
  6334. #~ msgid "Add/Remove printers"
  6335. #~ msgstr "添加/删除打印机"
  6336. #~ msgctxt "@info:tooltip"
  6337. #~ msgid "Opens the print jobs page with your default web browser."
  6338. #~ msgstr "使用默认 Web 浏览器打开打印作业页面。"
  6339. #~ msgctxt "@action:button"
  6340. #~ msgid "View print jobs"
  6341. #~ msgstr "查看打印作业"
  6342. #~ msgctxt "@label:status"
  6343. #~ msgid "Preparing to print"
  6344. #~ msgstr "正在准备打印"
  6345. #~ msgctxt "@label:status"
  6346. #~ msgid "Available"
  6347. #~ msgstr "可用"
  6348. #~ msgctxt "@label:status"
  6349. #~ msgid "Lost connection with the printer"
  6350. #~ msgstr "与打印机的连接中断"
  6351. #~ msgctxt "@label:status"
  6352. #~ msgid "Unknown"
  6353. #~ msgstr "未知"
  6354. #~ msgctxt "@label:status"
  6355. #~ msgid "Disabled"
  6356. #~ msgstr "已禁用"
  6357. #~ msgctxt "@label:status"
  6358. #~ msgid "Reserved"
  6359. #~ msgstr "保留"
  6360. #~ msgctxt "@label"
  6361. #~ msgid "Preparing to print"
  6362. #~ msgstr "正在准备打印"
  6363. #~ msgctxt "@label:status"
  6364. #~ msgid "Print aborted"
  6365. #~ msgstr "打印已中止"
  6366. #~ msgctxt "@label"
  6367. #~ msgid "Not accepting print jobs"
  6368. #~ msgstr "不接受打印作业"
  6369. #~ msgctxt "@label"
  6370. #~ msgid "Finishes at: "
  6371. #~ msgstr "完成时间:"
  6372. #~ msgctxt "@label"
  6373. #~ msgid "Clear build plate"
  6374. #~ msgstr "清空打印平台"
  6375. #~ msgctxt "@label"
  6376. #~ msgid "Waiting for configuration change"
  6377. #~ msgstr "正在等待配置更改"
  6378. #~ msgctxt "@title"
  6379. #~ msgid "Print jobs"
  6380. #~ msgstr "打印作业"
  6381. #~ msgctxt "@label:title"
  6382. #~ msgid "Printers"
  6383. #~ msgstr "打印机"
  6384. #~ msgctxt "@action:button"
  6385. #~ msgid "View printers"
  6386. #~ msgstr "查看打印机"
  6387. #~ msgctxt "@label:"
  6388. #~ msgid "Pause"
  6389. #~ msgstr "暂停"
  6390. #~ msgctxt "@label:"
  6391. #~ msgid "Resume"
  6392. #~ msgstr "恢复"
  6393. #~ msgctxt "@label:"
  6394. #~ msgid "Abort Print"
  6395. #~ msgstr "中止打印"
  6396. #~ msgctxt "@option:openProject"
  6397. #~ msgid "Always ask"
  6398. #~ msgstr "总是询问"
  6399. #~ msgctxt "@label"
  6400. #~ msgid "Override Profile"
  6401. #~ msgstr "重写配置文件"
  6402. #~ msgctxt "@info:tooltip"
  6403. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6404. #~ msgstr "是否在打印平台上编位新加载的模型?与多打印平台结合使用(实验性)"
  6405. #~ msgctxt "@option:check"
  6406. #~ msgid "Do not arrange objects on load"
  6407. #~ msgstr "不要编位加载的对象"
  6408. #~ msgctxt "@action:inmenu menubar:file"
  6409. #~ msgid "&Save Selection to File"
  6410. #~ msgstr "保存到文件(&S)"
  6411. #~ msgctxt "@title:menu menubar:file"
  6412. #~ msgid "Save &As..."
  6413. #~ msgstr "另存为(&A)…"
  6414. #~ msgctxt "@title:menu menubar:file"
  6415. #~ msgid "Save &Project..."
  6416. #~ msgstr "保存项目(&P)..."
  6417. #~ msgctxt "@label"
  6418. #~ msgid "Use adhesion sheet or glue with this material combination"
  6419. #~ msgstr "在此材料组合的情况下,请使用附着垫片或者胶水"
  6420. #~ msgctxt "description"
  6421. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6422. #~ msgstr "接受 G-Code 并通过 WiFi 将其发送到 Doodle3D WiFi-Box。"
  6423. #~ msgctxt "name"
  6424. #~ msgid "Doodle3D WiFi-Box"
  6425. #~ msgstr "Doodle3D WiFi-Box"
  6426. #~ msgctxt "description"
  6427. #~ msgid "Provides an edit window for direct script editing."
  6428. #~ msgstr "提供直接脚本编辑的编辑窗口。"
  6429. #~ msgctxt "name"
  6430. #~ msgid "Live scripting tool"
  6431. #~ msgstr "实时脚本工具"
  6432. #~ msgctxt "description"
  6433. #~ msgid "Helps to open Blender files directly in Cura."
  6434. #~ msgstr "帮助直接在 Cura 中打开 Blender 文件。"
  6435. #~ msgctxt "name"
  6436. #~ msgid "Blender Integration (experimental)"
  6437. #~ msgstr "Blender 集成(实验性)"
  6438. #~ msgctxt "@info:title"
  6439. #~ msgid "Model Checker Warning"
  6440. #~ msgstr "模型检查器警告"
  6441. #~ msgctxt "@info:status"
  6442. #~ msgid ""
  6443. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6444. #~ "Tips that may be useful to improve the print quality:\n"
  6445. #~ "1) Use rounded corners.\n"
  6446. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6447. #~ "3) Use a different material."
  6448. #~ msgstr ""
  6449. #~ "由于模型的对象大小和所选材质,某些模型可能无法打印出最佳效果:{Model_names}。\n"
  6450. #~ "可以借鉴一些实用技巧来改善打印质量:\n"
  6451. #~ "1) 使用圆角。\n"
  6452. #~ "2) 关闭风扇(仅在模型没有微小细节时)。\n"
  6453. #~ "3) 使用其他材质。"
  6454. #~ msgctxt "@info:status"
  6455. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6456. #~ msgstr "打开文件时,SolidWorks 报错。我们建议在 SolidWorks 内部解决这些问题。"
  6457. #~ msgctxt "@info:status"
  6458. #~ msgid ""
  6459. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6460. #~ "\n"
  6461. #~ "Thanks!"
  6462. #~ msgstr ""
  6463. #~ "在图纸中找不到模型。请再次检查图纸内容,确保里面有一个零件或组件?\n"
  6464. #~ "\n"
  6465. #~ "谢谢!"
  6466. #~ msgctxt "@info:status"
  6467. #~ msgid ""
  6468. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6469. #~ "\n"
  6470. #~ "Sorry!"
  6471. #~ msgstr ""
  6472. #~ "在图纸中找到一个以上的零件或组件。我们目前只支持里面正好有一个零件或组件的图纸。\n"
  6473. #~ "\n"
  6474. #~ "很抱歉!"
  6475. #~ msgctxt "@item:inlistbox"
  6476. #~ msgid "SolidWorks part file"
  6477. #~ msgstr "SolidWorks 零件文件"
  6478. #~ msgctxt "@item:inlistbox"
  6479. #~ msgid "SolidWorks assembly file"
  6480. #~ msgstr "SolidWorks 组件文件"
  6481. #~ msgctxt "@item:inlistbox"
  6482. #~ msgid "SolidWorks drawing file"
  6483. #~ msgstr "SolidWorks 图纸文件"
  6484. #~ msgctxt "@info:status"
  6485. #~ msgid ""
  6486. #~ "Dear customer,\n"
  6487. #~ "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"
  6488. #~ "\n"
  6489. #~ "With kind regards\n"
  6490. #~ " - Thomas Karl Pietrowski"
  6491. #~ msgstr ""
  6492. #~ "尊敬的客户:\n"
  6493. #~ "我们无法在您的系统中找到有效的 SolidWorks 软件。这意味着您的系统中没有安装 SolidWorks,或者您没有获得有效的许可。请确保 SolidWorks 的运行没有任何问题并/或联系您的 ICT。\n"
  6494. #~ "\n"
  6495. #~ "此致\n"
  6496. #~ " - Thomas Karl Pietrowski"
  6497. #~ msgctxt "@info:status"
  6498. #~ msgid ""
  6499. #~ "Dear customer,\n"
  6500. #~ "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"
  6501. #~ "\n"
  6502. #~ "With kind regards\n"
  6503. #~ " - Thomas Karl Pietrowski"
  6504. #~ msgstr ""
  6505. #~ "尊敬的客户:\n"
  6506. #~ "您当前正在非 Windows 操作系统上运行此插件。此插件只能在装有 SolidWorks 且拥有有效许可的 Windows 系统上运行。请在装有 SolidWorks 的 Windows 计算机上安装此插件。\n"
  6507. #~ "\n"
  6508. #~ "此致\n"
  6509. #~ " - Thomas Karl Pietrowski"
  6510. #~ msgid "Configure"
  6511. #~ msgstr "配置"
  6512. #~ msgid "Installation guide for SolidWorks macro"
  6513. #~ msgstr "SolidWorks 宏的安装指南"
  6514. #~ msgctxt "@action:button"
  6515. #~ msgid "Disable"
  6516. #~ msgstr "禁用"
  6517. #~ msgctxt "@action:tooltip"
  6518. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6519. #~ msgstr "不允许 Cura 发送匿名的使用统计数据。您可以在偏好中再次启用。"
  6520. #~ msgid "Install"
  6521. #~ msgstr "安装"
  6522. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6523. #~ msgstr "复制 Siemens NX 插件文件失败。 请检查您的 UGII_USER_DIR。 未将其设置到目录中。"
  6524. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6525. #~ msgstr "已成功安装 Siemens NX Cura 插件。"
  6526. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6527. #~ msgstr "复制 Siemens NX 插件文件失败。 请检查您的 UGII_USER_DIR。"
  6528. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6529. #~ msgstr "安装 Siemens NX 插件失败。 无法为 Siemens NX 设置环境变量 UGII_USER_DIR。"
  6530. #~ msgctxt "@info:status"
  6531. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6532. #~ msgstr "无法从 <filename>{0}</filename> 获取插件 ID"
  6533. #~ msgctxt "@info:tile"
  6534. #~ msgid "Warning"
  6535. #~ msgstr "警告"
  6536. #~ msgctxt "@window:title"
  6537. #~ msgid "Plugin browser"
  6538. #~ msgstr "插件浏览器"
  6539. #~ msgctxt "@label"
  6540. #~ msgid "Ultimaker 3"
  6541. #~ msgstr "Ultimaker 3"
  6542. #~ msgctxt "@label"
  6543. #~ msgid "Ultimaker 3 Extended"
  6544. #~ msgstr "Ultimaker 3 Extended"
  6545. #~ msgctxt "@title:window"
  6546. #~ msgid "SolidWorks: Export wizard"
  6547. #~ msgstr "SolidWorks:导出向导"
  6548. #~ msgctxt "@action:label"
  6549. #~ msgid "Quality:"
  6550. #~ msgstr "质量:"
  6551. #~ msgctxt "@option:curaSolidworksStlQuality"
  6552. #~ msgid "Fine (3D-printing)"
  6553. #~ msgstr "精细(3D 打印)"
  6554. #~ msgctxt "@option:curaSolidworksStlQuality"
  6555. #~ msgid "Coarse (3D-printing)"
  6556. #~ msgstr "粗糙(3D 打印)"
  6557. #~ msgctxt "@option:curaSolidworksStlQuality"
  6558. #~ msgid "Fine (SolidWorks)"
  6559. #~ msgstr "精细 (SolidWorks)"
  6560. #~ msgctxt "@option:curaSolidworksStlQuality"
  6561. #~ msgid "Coarse (SolidWorks)"
  6562. #~ msgstr "粗糙 (SolidWorks)"
  6563. #~ msgctxt "@text:window"
  6564. #~ msgid "Show this dialog again"
  6565. #~ msgstr "再次显示此对话框"
  6566. #~ msgctxt "@action:button"
  6567. #~ msgid "Continue"
  6568. #~ msgstr "继续"
  6569. #~ msgctxt "@action:button"
  6570. #~ msgid "Abort"
  6571. #~ msgstr "中止"
  6572. #~ msgctxt "@title:window"
  6573. #~ msgid "How to install Cura SolidWorks macro"
  6574. #~ msgstr "如何安装 Cura SolidWorks 宏"
  6575. #~ msgctxt "@description:label"
  6576. #~ msgid "Steps:"
  6577. #~ msgstr "步骤:"
  6578. #~ msgctxt "@action:button"
  6579. #~ msgid ""
  6580. #~ "Open the directory\n"
  6581. #~ "with macro and icon"
  6582. #~ msgstr ""
  6583. #~ "打开宏和图标\n"
  6584. #~ "所在的目录"
  6585. #~ msgctxt "@description:label"
  6586. #~ msgid "Instructions:"
  6587. #~ msgstr "说明:"
  6588. #~ msgctxt "@action:playpause"
  6589. #~ msgid "Play"
  6590. #~ msgstr "播放"
  6591. #~ msgctxt "@action:playpause"
  6592. #~ msgid "Pause"
  6593. #~ msgstr "暂停"
  6594. #~ msgctxt "@action:button"
  6595. #~ msgid "Previous Step"
  6596. #~ msgstr "上一步"
  6597. #~ msgctxt "@action:button"
  6598. #~ msgid "Done"
  6599. #~ msgstr "完成"
  6600. #~ msgctxt "@action:button"
  6601. #~ msgid "Next Step"
  6602. #~ msgstr "下一步"
  6603. #~ msgctxt "@title:window"
  6604. #~ msgid "SolidWorks plugin: Configuration"
  6605. #~ msgstr "SolidWorks 插件:配置"
  6606. #~ msgctxt "@title:tab"
  6607. #~ msgid "Conversion settings"
  6608. #~ msgstr "转换设置"
  6609. #~ msgctxt "@label"
  6610. #~ msgid "First choice:"
  6611. #~ msgstr "首选:"
  6612. #~ msgctxt "@text:menu"
  6613. #~ msgid "Latest installed version (Recommended)"
  6614. #~ msgstr "最新安装的版本(推荐)"
  6615. #~ msgctxt "@text:menu"
  6616. #~ msgid "Default version"
  6617. #~ msgstr "默认版本"
  6618. #~ msgctxt "@label"
  6619. #~ msgid "Show wizard before opening SolidWorks files"
  6620. #~ msgstr "在打开 SolidWorks 文件前显示向导"
  6621. #~ msgctxt "@label"
  6622. #~ msgid "Automatically rotate opened file into normed orientation"
  6623. #~ msgstr "自动将打开的文件旋转到标准方向"
  6624. #~ msgctxt "@title:tab"
  6625. #~ msgid "Installation(s)"
  6626. #~ msgstr "装置"
  6627. #~ msgctxt "@label"
  6628. #~ msgid "COM service found"
  6629. #~ msgstr "发现 COM 服务"
  6630. #~ msgctxt "@label"
  6631. #~ msgid "Executable found"
  6632. #~ msgstr "发现可执行文件"
  6633. #~ msgctxt "@label"
  6634. #~ msgid "COM starting"
  6635. #~ msgstr "COM 启动"
  6636. #~ msgctxt "@label"
  6637. #~ msgid "Revision number"
  6638. #~ msgstr "版本号"
  6639. #~ msgctxt "@label"
  6640. #~ msgid "Functions available"
  6641. #~ msgstr "可用功能"
  6642. #~ msgctxt "@label (%1 is object name)"
  6643. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6644. #~ msgstr "新的材料直径设置为 %1 mm,与当前机器不兼容。是否要继续?"
  6645. #~ msgctxt "@action:menu"
  6646. #~ msgid "Browse plugins..."
  6647. #~ msgstr "浏览插件..."
  6648. #~ msgctxt "@title:menu menubar:toplevel"
  6649. #~ msgid "P&lugins"
  6650. #~ msgstr "插件"
  6651. #~ msgctxt "@window:title"
  6652. #~ msgid "Install Plugin"
  6653. #~ msgstr "安装插件"
  6654. #~ msgctxt "description"
  6655. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6656. #~ msgstr "提供更改打印机设置(如成形空间体积、喷嘴口径等)的方法"
  6657. #~ msgctxt "description"
  6658. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6659. #~ msgstr "管理与 Ultimaker 3 打印机的网络连接"
  6660. #~ msgctxt "description"
  6661. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6662. #~ msgstr "允许您使用 SolidWorks 打开某些文件。转换通过此插件和其他优化完成。"
  6663. #~ msgctxt "name"
  6664. #~ msgid "SolidWorks Integration"
  6665. #~ msgstr "SolidWorks 集成"
  6666. #~ msgctxt "description"
  6667. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6668. #~ msgstr "更改后自动保存首选项、机器和配置文件。"
  6669. #~ msgctxt "name"
  6670. #~ msgid "Auto Save"
  6671. #~ msgstr "自动保存"
  6672. #~ msgctxt "description"
  6673. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6674. #~ msgstr "帮助您在 Siemens NX 中安装一个“导出至 Cura”按钮。"
  6675. #~ msgctxt "name"
  6676. #~ msgid "Siemens NX Integration"
  6677. #~ msgstr "Siemens NX 集成"
  6678. #~ msgctxt "description"
  6679. #~ msgid "Find, manage and install new plugins."
  6680. #~ msgstr "查找、管理和安装新插件。"
  6681. #~ msgctxt "name"
  6682. #~ msgid "Plugin Browser"
  6683. #~ msgstr "插件浏览器"
  6684. #~ msgctxt "description"
  6685. #~ msgid "Ask the user once if he/she agrees with our license"
  6686. #~ msgstr "询问用户一次是否同意我们的许可"
  6687. #~ msgctxt "description"
  6688. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6689. #~ msgstr "为 Ultimaker 打印机提供操作选项(如平台调平向导、选择升级等)"
  6690. #~ msgctxt "@item:inlistbox"
  6691. #~ msgid "GCode File"
  6692. #~ msgstr "GCode 文件"
  6693. #~ msgctxt "@info:status"
  6694. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6695. #~ msgstr "无法启动新作业,因为打印机处于忙碌状态或未连接。"
  6696. #~ msgctxt "@info:title"
  6697. #~ msgid "Printer Unavailable"
  6698. #~ msgstr "打印机不可用"
  6699. #~ msgctxt "@info:status"
  6700. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6701. #~ msgstr "此打印机不支持通过 USB 打印,因为其使用 UltiGCode 类型的 G-code 文件。"
  6702. #~ msgctxt "@info:title"
  6703. #~ msgid "USB Printing"
  6704. #~ msgstr "USB 打印"
  6705. #~ msgctxt "@info:status"
  6706. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6707. #~ msgstr "无法启动新作业,因为该打印机不支持通过 USB 打印。"
  6708. #~ msgctxt "@info"
  6709. #~ msgid "Unable to update firmware because there are no printers connected."
  6710. #~ msgstr "无法更新固件,因为没有连接打印机。"
  6711. #~ msgctxt "@info"
  6712. #~ msgid "Could not find firmware required for the printer at %s."
  6713. #~ msgstr "在 %s 无法找到打印机所需的固件。"
  6714. #~ msgctxt "@info:title"
  6715. #~ msgid "Printer Firmware"
  6716. #~ msgstr "打印机固件"
  6717. #~ msgctxt "@info:title"
  6718. #~ msgid "Connection status"
  6719. #~ msgstr "连接状态"
  6720. #~ msgctxt "@info:title"
  6721. #~ msgid "Connection Status"
  6722. #~ msgstr "连接状态"
  6723. #~ msgctxt "@info:status"
  6724. #~ msgid "Access request was denied on the printer."
  6725. #~ msgstr "访问请求在打印机上被拒绝。"
  6726. #~ msgctxt "@info:status"
  6727. #~ msgid "Access request failed due to a timeout."
  6728. #~ msgstr "访问请求失败(原因:超时)。"
  6729. #~ msgctxt "@info:status"
  6730. #~ msgid "The connection with the network was lost."
  6731. #~ msgstr "网络连接中断。"
  6732. #~ msgctxt "@info:status"
  6733. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6734. #~ msgstr "与打印机的连接中断,请检查打印机是否已连接。"
  6735. #~ msgctxt "@info:status"
  6736. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6737. #~ msgstr "打印机无法启动新的打印作业,当前的打印机状态为 %s。"
  6738. #~ msgctxt "@info:title"
  6739. #~ msgid "Printer Status"
  6740. #~ msgstr "打印机状态"
  6741. #~ msgctxt "@info:status"
  6742. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6743. #~ msgstr "无法启动新的打印作业。插槽 {0} 中未加载打印头。"
  6744. #~ msgctxt "@info:status"
  6745. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6746. #~ msgstr "无法启动新的打印作业。插槽 {0} 中未加载材料。"
  6747. #~ msgctxt "@label"
  6748. #~ msgid "Not enough material for spool {0}."
  6749. #~ msgstr "线轴 {0} 上没有足够的材料。"
  6750. #~ msgctxt "@label"
  6751. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6752. #~ msgstr "不同的打印头(Cura: {0},打印机: 为挤出机 {2} 选择了 {1})"
  6753. #~ msgctxt "@label"
  6754. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6755. #~ msgstr "打印头 {0} 未正确校准。 需要在打印机上执行 XY 校准。"
  6756. #~ msgctxt "@info:status"
  6757. #~ msgid "Unable to send data to printer. Is another job still active?"
  6758. #~ msgstr "无法向打印机发送数据。请确认是否有另一项打印任务仍在进行?"
  6759. #~ msgctxt "@label:MonitorStatus"
  6760. #~ msgid "Print aborted. Please check the printer"
  6761. #~ msgstr "打印已中止。请检查打印机"
  6762. #~ msgctxt "@label:MonitorStatus"
  6763. #~ msgid "Pausing print..."
  6764. #~ msgstr "暂停打印..."
  6765. #~ msgctxt "@label:MonitorStatus"
  6766. #~ msgid "Resuming print..."
  6767. #~ msgstr "恢复打印..."
  6768. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6769. #~ msgstr "这台打印机未设置为运行一组连接的 Ultimaker 3 打印机。"
  6770. #~ msgctxt "Count is number of printers."
  6771. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6772. #~ msgstr "这台打印机是一组共 {count} 台已连接 Ultimaker 3 打印机的主机。"
  6773. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6774. #~ msgstr "{printer_name} 已完成打印 '{job_name}'。 请收起打印品并确认清空打印平台。"
  6775. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6776. #~ msgstr "{printer_name} 已保留用于打印 '{job_name}'。 请更改打印机配置以匹配此项作业,以便开始打印。"
  6777. #~ msgctxt "@info:status"
  6778. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6779. #~ msgstr "无法发送新打印作业:此 3D 打印机(尚)未设置为运行一组连接的 Ultimaker 3 打印机。"
  6780. #~ msgctxt "@info:status"
  6781. #~ msgid "Unable to send print job to group {cluster_name}."
  6782. #~ msgstr "无法发送打印作业至组 {cluster_name}。"
  6783. #~ msgctxt "@info:status"
  6784. #~ msgid "Sent {file_name} to group {cluster_name}."
  6785. #~ msgstr "已发送 {file_name} 至组 {cluster_name}。"
  6786. #~ msgctxt "@action:button"
  6787. #~ msgid "Show print jobs"
  6788. #~ msgstr "显示打印作业"
  6789. #~ msgctxt "@info:tooltip"
  6790. #~ msgid "Opens the print jobs interface in your browser."
  6791. #~ msgstr "在您的浏览器中打开打印作业界面。"
  6792. #~ msgctxt "@label Printer name"
  6793. #~ msgid "Unknown"
  6794. #~ msgstr "未知"
  6795. #~ msgctxt "@info:progress"
  6796. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6797. #~ msgstr "发送 <filename>{file_name}</filename> 至组 {cluster_name}"
  6798. #~ msgctxt "@info:status"
  6799. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6800. #~ msgstr "打开文件时,SolidWorks 报错。我们建议在 SolidWorks 内部解决这些问题。"
  6801. #~ msgctxt "@info:status"
  6802. #~ msgid ""
  6803. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6804. #~ "\n"
  6805. #~ " Thanks!."
  6806. #~ msgstr ""
  6807. #~ "在您的图纸中找不到模型。请再次检查图纸内容,确保里面有一个零件或组件。\n"
  6808. #~ "\n"
  6809. #~ "谢谢!"
  6810. #~ msgctxt "@info:status"
  6811. #~ msgid ""
  6812. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6813. #~ "\n"
  6814. #~ "Sorry!"
  6815. #~ msgstr ""
  6816. #~ "在您的图纸中找到一个以上的零件或组件。我们目前只支持里面正好有一个零件或组件的图纸。\n"
  6817. #~ "\n"
  6818. #~ "很抱歉!"
  6819. #~ msgctxt "@item:material"
  6820. #~ msgid "No material loaded"
  6821. #~ msgstr "未加载材料"
  6822. #~ msgctxt "@item:material"
  6823. #~ msgid "Unknown material"
  6824. #~ msgstr "未知材料"
  6825. #~ msgctxt "@info:status Has a cancel button next to it."
  6826. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6827. #~ msgstr "所选材料直径导致材料与当前打印机不兼容。"
  6828. #~ msgctxt "@action:button"
  6829. #~ msgid "Undo"
  6830. #~ msgstr "撤销"
  6831. #~ msgctxt "@action"
  6832. #~ msgid "Undo changing the material diameter."
  6833. #~ msgstr "撤销更改材料直径。"
  6834. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6835. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6836. #~ msgstr "配置文件<filename> {0} </filename>中定义的机器与您当前的机器不匹配,无法导入。"
  6837. #~ msgctxt "@label crash message"
  6838. #~ msgid ""
  6839. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6840. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6841. #~ " "
  6842. #~ msgstr ""
  6843. #~ "<p><b>发生了致命错误。请将这份错误报告发送给我们以便修复问题</p></b>\n"
  6844. #~ " <p>请使用“发送报告”按钮将错误报告自动发布到我们的服务器</p>\n"
  6845. #~ " "
  6846. #~ msgctxt "@label"
  6847. #~ msgid "not yet initialised<br/>"
  6848. #~ msgstr "尚未初始化<br/>"
  6849. #~ msgctxt "@label"
  6850. #~ msgid "Gcode flavor"
  6851. #~ msgstr "GCode 类型"
  6852. #~ msgctxt "@label"
  6853. #~ msgid "Start Gcode"
  6854. #~ msgstr "GCode 开始部分"
  6855. #~ msgctxt "@tooltip"
  6856. #~ msgid "Gcode commands to be executed at the very start."
  6857. #~ msgstr "将在开始时执行的 Gcode 命令。"
  6858. #~ msgctxt "@label"
  6859. #~ msgid "End Gcode"
  6860. #~ msgstr "GCode 结束部分"
  6861. #~ msgctxt "@tooltip"
  6862. #~ msgid "Gcode commands to be executed at the very end."
  6863. #~ msgstr "将在结束时执行的 Gcode 命令。"
  6864. #~ msgctxt "@label"
  6865. #~ msgid "Extruder Start Gcode"
  6866. #~ msgstr "挤出机 Gcode 开始部分"
  6867. #~ msgctxt "@label"
  6868. #~ msgid "Extruder End Gcode"
  6869. #~ msgstr "挤出机 Gcode 结束部分"
  6870. #~ msgctxt "@label"
  6871. #~ msgid "Starting firmware update, this may take a while."
  6872. #~ msgstr "正在开始固件更新。可能需要花费一些时间,请耐心等待。"
  6873. #~ msgctxt "@label"
  6874. #~ msgid "Unknown error code: %1"
  6875. #~ msgstr "未知错误代码: %1"
  6876. #~ msgctxt "@label Printer name"
  6877. #~ msgid "Ultimaker 3"
  6878. #~ msgstr "Ultimaker 3"
  6879. #~ msgctxt "@label Printer name"
  6880. #~ msgid "Ultimaker 3 Extended"
  6881. #~ msgstr "Ultimaker 3 Extended"
  6882. #~ msgctxt "@label Printer status"
  6883. #~ msgid "Unknown"
  6884. #~ msgstr "未知"
  6885. #~ msgctxt "@title:window"
  6886. #~ msgid "Find & Update plugins"
  6887. #~ msgstr "查找与更新插件"
  6888. #~ msgctxt "@label"
  6889. #~ msgid "Here you can find a list of Third Party plugins."
  6890. #~ msgstr "您可以在这里找到第三方插件列表。"
  6891. #~ msgctxt "@action:button"
  6892. #~ msgid "Upgrade"
  6893. #~ msgstr "升级"
  6894. #~ msgctxt "@action:button"
  6895. #~ msgid "Download"
  6896. #~ msgstr "下载"
  6897. #~ msgctxt "@info:tooltip"
  6898. #~ msgid "Show caution message in gcode reader."
  6899. #~ msgstr "在 G-code 读取器中显示警告信息。"
  6900. #~ msgctxt "@option:check"
  6901. #~ msgid "Caution message in gcode reader"
  6902. #~ msgstr "G-code 读取器中的警告信息"
  6903. #~ msgctxt "@window:title"
  6904. #~ msgid "Import Profile"
  6905. #~ msgstr "导入配置文件"
  6906. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6907. #~ msgid "Printer: %1, %2: %3"
  6908. #~ msgstr "打印机:%1, %2: %3"
  6909. #~ msgctxt "@action:label %1 is printer name"
  6910. #~ msgid "Printer: %1"
  6911. #~ msgstr "打印机:%1"
  6912. #~ msgctxt "@label"
  6913. #~ msgid "GCode generator"
  6914. #~ msgstr "GCode 生成器"
  6915. #~ msgctxt "@action:menu"
  6916. #~ msgid "Configure setting visiblity..."
  6917. #~ msgstr "配置设置可见性..."
  6918. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6919. #~ msgid "Automatic: %1"
  6920. #~ msgstr "自动:%1"
  6921. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6922. #~ msgid "Automatic: %1"
  6923. #~ msgstr "自动:%1"
  6924. #~ msgctxt "@info:status"
  6925. #~ msgid "No printer connected"
  6926. #~ msgstr "没有连接打印机"
  6927. #~ msgctxt "@tooltip"
  6928. #~ msgid "The current temperature of this extruder."
  6929. #~ msgstr "该挤出机的当前温度。"
  6930. #~ msgctxt "@action:menu"
  6931. #~ msgid "Installed plugins..."
  6932. #~ msgstr "已安装插件..."
  6933. #~ msgctxt "@label"
  6934. #~ msgid "Support Extruder"
  6935. #~ msgstr "支撑用挤出机"
  6936. #~ msgctxt "description"
  6937. #~ msgid "Writes GCode to a file."
  6938. #~ msgstr "将 GCode 写入至文件。"
  6939. #~ msgctxt "name"
  6940. #~ msgid "GCode Writer"
  6941. #~ msgstr "GCode 写入器"
  6942. #~ msgctxt "name"
  6943. #~ msgid "GCode Profile Reader"
  6944. #~ msgstr "GCode 配置文件读取器"
  6945. #~ msgctxt "@info:status"
  6946. #~ 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!"
  6947. #~ msgstr "打开 SolidWorks 文件时发生错误! 请检查能否在 SolidWorks 中正常打开文件而不出现任何问题!"
  6948. #~ msgctxt "@info:status"
  6949. #~ msgid "Error while starting %s!"
  6950. #~ msgstr "启动 %s 时发生错误!"
  6951. #~ msgctxt "@item:inlistbox"
  6952. #~ msgid "Simulation view"
  6953. #~ msgstr "仿真视图"
  6954. #~ msgctxt "@info"
  6955. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6956. #~ msgstr "Cura 收集匿名切片统计资料。 您可以在偏好设置中禁用此选项。"
  6957. #~ msgctxt "@action:button"
  6958. #~ msgid "Dismiss"
  6959. #~ msgstr "关闭此通知"
  6960. #~ msgctxt "@menuitem"
  6961. #~ msgid "Global"
  6962. #~ msgstr "全局"
  6963. #~ msgctxt "@label crash message"
  6964. #~ msgid ""
  6965. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6966. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6967. #~ " "
  6968. #~ msgstr ""
  6969. #~ "<p><b>发生了致命错误。 请将这份错误报告发送给我们以便修复问题</p></b>\n"
  6970. #~ " <p>请使用“发送报告”按钮将错误报告自动发布到我们的服务器</p>\n"
  6971. #~ " "
  6972. #~ msgctxt "@label Cura version"
  6973. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6974. #~ msgstr "<b>Cura 版本:</b> {version}<br/>"
  6975. #~ msgctxt "@label Platform"
  6976. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6977. #~ msgstr "<b>平台:</b> {platform}<br/>"
  6978. #~ msgctxt "@label Qt version"
  6979. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6980. #~ msgstr "<b>Qt 版本:</b> {qt}<br/>"
  6981. #~ msgctxt "@label PyQt version"
  6982. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  6983. #~ msgstr "<b>PyQt 版本:</b> {pyqt}<br/>"
  6984. #~ msgctxt "@label OpenGL"
  6985. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  6986. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  6987. #~ msgctxt "@title:groupbox"
  6988. #~ msgid "Exception traceback"
  6989. #~ msgstr "异常追溯"
  6990. #~ msgctxt "@label"
  6991. #~ msgid "Material diameter"
  6992. #~ msgstr "材料直径"
  6993. #~ msgctxt "@title:window"
  6994. #~ msgid "Cura SolidWorks Plugin Configuration"
  6995. #~ msgstr "Cura SolidWorks 插件配置"
  6996. #~ msgctxt "@action:label"
  6997. #~ msgid "Default quality of the exported STL:"
  6998. #~ msgstr "导出 STL 的默认质量:"
  6999. #~ msgctxt "@option:curaSolidworksStlQuality"
  7000. #~ msgid "Always ask"
  7001. #~ msgstr "总是询问"
  7002. #~ msgctxt "@option:curaSolidworksStlQuality"
  7003. #~ msgid "Always use Fine quality"
  7004. #~ msgstr "总是使用精细品质"
  7005. #~ msgctxt "@option:curaSolidworksStlQuality"
  7006. #~ msgid "Always use Coarse quality"
  7007. #~ msgstr "总是使用粗糙品质"
  7008. #~ msgctxt "@title:window"
  7009. #~ msgid "Import SolidWorks File as STL..."
  7010. #~ msgstr "导入 SolidWorks 文件为 STL..."
  7011. #~ msgctxt "@info:tooltip"
  7012. #~ msgid "Quality of the Exported STL"
  7013. #~ msgstr "导出 STL 的质量"
  7014. #~ msgctxt "@action:label"
  7015. #~ msgid "Quality"
  7016. #~ msgstr "质量"
  7017. #~ msgctxt "@option:curaSolidworksStlQuality"
  7018. #~ msgid "Coarse"
  7019. #~ msgstr "粗糙"
  7020. #~ msgctxt "@option:curaSolidworksStlQuality"
  7021. #~ msgid "Fine"
  7022. #~ msgstr "精细"
  7023. #~ msgctxt "@"
  7024. #~ msgid "No Profile Available"
  7025. #~ msgstr "没有配置文件可用"
  7026. #~ msgctxt "@label"
  7027. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  7028. #~ msgstr "此设置始终对所有挤出机有效。在此进行更改将影响所有挤出机。"
  7029. #~ msgctxt "@tooltip"
  7030. #~ msgid "<b>Time specification</b><br/><table>"
  7031. #~ msgstr "<b>时间规范</b><br/><table>"
  7032. #~ msgctxt "@action:inmenu menubar:view"
  7033. #~ msgid "&Reset camera position"
  7034. #~ msgstr "重置摄像头位置(&R)"
  7035. #~ msgctxt "@title:menu menubar:file"
  7036. #~ msgid "Save project"
  7037. #~ msgstr "保存项目"
  7038. #~ msgctxt "@title:tab"
  7039. #~ msgid "Prepare"
  7040. #~ msgstr "准备"
  7041. #~ msgctxt "@title:tab"
  7042. #~ msgid "Monitor"
  7043. #~ msgstr "监控"
  7044. #~ msgctxt "@label"
  7045. #~ msgid "<a href='%1'>Check compatibility</a>"
  7046. #~ msgstr "<a href='%1'>检查兼容性</a>"
  7047. #~ msgctxt "description"
  7048. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  7049. #~ msgstr "让您可以通过 SolidWorks 自身打开特定文件。 随后会将这些文件进行转换并载入 Cura"
  7050. #~ msgctxt "@label:status"
  7051. #~ msgid "Blocked"
  7052. #~ msgstr "冻结操作"
  7053. #~ msgctxt "@label:status"
  7054. #~ msgid "Can't start print"
  7055. #~ msgstr "不能开始打印"
  7056. #~ msgctxt "@action:button"
  7057. #~ msgid "Open Connect.."
  7058. #~ msgstr "打开 Connect"
  7059. #~ msgctxt "@info:title"
  7060. #~ msgid "Print Details"
  7061. #~ msgstr "打印品详细信息"
  7062. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  7063. #~ 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."
  7064. #~ msgstr "为确保您的 {machine_name} 具备最新功能,建议定期更新固件。 更新可在 {machine_name} 上(连接至网络时)或通过 USB 进行。"
  7065. #~ msgctxt "@info:title"
  7066. #~ msgid "Layer View"
  7067. #~ msgstr "分层视图"
  7068. #~ msgctxt "@menuitem"
  7069. #~ msgid "Browse plugins"
  7070. #~ msgstr "浏览插件"
  7071. #~ msgctxt "@info:title"
  7072. #~ msgid "Export Details"
  7073. #~ msgstr "导出详细信息"
  7074. #~ msgctxt "@label"
  7075. #~ msgid ""
  7076. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7077. #~ " <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"
  7078. #~ " "
  7079. #~ msgstr ""
  7080. #~ "<p>发生了致命错误,我们无法恢复!</p>\n"
  7081. #~ " <p>请在以下网址中使用下方的信息提交错误报告:<a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>"
  7082. #~ msgctxt "@action:button"
  7083. #~ msgid "Open Web Page"
  7084. #~ msgstr "打开网页"
  7085. #~ msgctxt "@action:button"
  7086. #~ msgid "Ok"
  7087. #~ msgstr "确定"
  7088. #~ msgctxt "@label"
  7089. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  7090. #~ msgstr "这台打印机未设置为运行一组连接的 Ultimaker 3 打印机"
  7091. #~ msgctxt "@label"
  7092. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  7093. #~ msgstr "这台打印机是一组 %1 台已连接 Ultimaker 3 打印机的主机"
  7094. #~ msgctxt "@label"
  7095. #~ msgid "Completed on: "
  7096. #~ msgstr "完成时间: "
  7097. #~ msgctxt "@info:tooltip"
  7098. #~ msgid "Opens the print jobs page with your default web browser."
  7099. #~ msgstr "使用默认 Web 浏览器打开打印作业页面。"
  7100. #~ msgctxt "@label"
  7101. #~ msgid "PRINTER GROUP"
  7102. #~ msgstr "打印机组"
  7103. #~ msgctxt "@action:warning"
  7104. #~ msgid "Loading a project will clear all models on the buildplate"
  7105. #~ msgstr "加载项目将清除打印平台上的所有模型"
  7106. #~ msgctxt "@label"
  7107. #~ msgid ""
  7108. #~ " plugin contains a license.\n"
  7109. #~ "You need to accept this license to install this plugin.\n"
  7110. #~ "Do you agree with the terms below?"
  7111. #~ msgstr ""
  7112. #~ " 插件包含一个许可。\n"
  7113. #~ "您需要接受此许可才能安装此插件。\n"
  7114. #~ "是否同意下列条款?"
  7115. #~ msgctxt "@label"
  7116. #~ msgid "00h 00min"
  7117. #~ msgstr "00 小时 00 分"
  7118. #~ msgctxt "@tooltip"
  7119. #~ msgid "<b>Time information</b>"
  7120. #~ msgstr "<b>时间信息</b>"
  7121. #~ msgctxt "@description"
  7122. #~ msgid "Print time"
  7123. #~ msgstr "打印时间"
  7124. #~ msgctxt "@label"
  7125. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7126. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  7127. #~ msgctxt "@label"
  7128. #~ msgid "%1m / ~ %2g"
  7129. #~ msgstr "%1m / ~ %2g"
  7130. #~ msgctxt "@title:window"
  7131. #~ msgid "Cura"
  7132. #~ msgstr "Cura"
  7133. #~ msgctxt "@label"
  7134. #~ msgid "<a href='%1'>Check material compatibility</a>"
  7135. #~ msgstr "<a href='%1'>检查材料兼容性</a>"
  7136. #~ msgctxt "name"
  7137. #~ msgid "UM3 Network Connection (Cluster)"
  7138. #~ msgstr "UM3 网络连接(群集)"
  7139. #~ msgctxt "description"
  7140. #~ msgid "Provides the Layer view."
  7141. #~ msgstr "提供分层视图。"
  7142. #~ msgctxt "name"
  7143. #~ msgid "Layer View"
  7144. #~ msgstr "分层视图"
  7145. #~ msgctxt "@item:inlistbox"
  7146. #~ msgid "X-Ray"
  7147. #~ msgstr "透视"
  7148. #~ msgctxt "@label"
  7149. #~ msgid "Doodle3D"
  7150. #~ msgstr "Doodle3D"
  7151. #~ msgctxt "@info:whatsthis"
  7152. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7153. #~ msgstr "接受 G-Code 并通过 WiFi 将其发送到 Doodle3D WiFi-Box。"
  7154. #~ msgctxt "@item:inmenu"
  7155. #~ msgid "Doodle3D printing"
  7156. #~ msgstr "Doodle3D 打印"
  7157. #~ msgctxt "@action:button"
  7158. #~ msgid "Print with Doodle3D"
  7159. #~ msgstr "使用 Doodle3D 打印"
  7160. #~ msgctxt "@info:tooltip"
  7161. #~ msgid "Print with "
  7162. #~ msgstr "使用 "
  7163. #~ msgctxt "@title:menu"
  7164. #~ msgid "Doodle3D"
  7165. #~ msgstr "Doodle3D 打印"
  7166. #~ msgctxt "@item:inlistbox"
  7167. #~ msgid "Enable Scan devices..."
  7168. #~ msgstr "启用扫描设备..."
  7169. #~ msgctxt "@info:progress"
  7170. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  7171. #~ msgstr "保存到可移动磁盘 <filename> {0} </filename>"
  7172. #~ msgctxt "@info:status"
  7173. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  7174. #~ msgstr "无法保存到 <filename>{0}</filename>:<message>{1}</message>"
  7175. #~ msgctxt "@info:status"
  7176. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  7177. #~ msgstr "请记住,您必须手动重新打开 SolidWorks 文件! 重新加载模型将无法正常工作!"
  7178. #~ msgctxt "@item:inlistbox"
  7179. #~ msgid "Layers"
  7180. #~ msgstr "层"
  7181. #~ msgid "Browse plugins"
  7182. #~ msgstr "浏览插件"
  7183. #~ msgctxt "@item:inmenu"
  7184. #~ msgid "Solid"
  7185. #~ msgstr "实体"
  7186. #~ msgctxt "@label"
  7187. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  7188. #~ msgstr "文件 <filename>{0}</filename> 已存在。你确定要替换它吗?"
  7189. #~ msgctxt "@info:status"
  7190. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  7191. #~ msgstr "无法将配置文件导出至<filename> {0} </filename>:<message> {1} </ message>"
  7192. #~ msgctxt "@info:status"
  7193. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  7194. #~ msgstr "无法将配置文件导出至<filename> {0} </filename>:写入器插件报告故障。"
  7195. #~ msgctxt "@info:status"
  7196. #~ msgid "Exported profile to <filename>{0}</filename>"
  7197. #~ msgstr "配置文件已导出至:<filename> {0} </filename>"
  7198. #~ msgctxt "@info:status"
  7199. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  7200. #~ msgstr "无法从 <filename> {0} </filename> 导入配置文件:<message> {1} </message>"
  7201. #~ msgctxt "@title:window"
  7202. #~ msgid "Doodle3D Settings"
  7203. #~ msgstr "Doodle3D 设置"
  7204. #~ msgctxt "@title:window"
  7205. #~ msgid "Print to: %1"
  7206. #~ msgstr "打印至:%1"
  7207. #~ msgctxt "@label"
  7208. #~ msgid "Extruder Temperature: %1/%2°C"
  7209. #~ msgstr "打印头温度:%1/%2 °C"
  7210. #~ msgctxt "@label"
  7211. #~ msgid "Bed Temperature: %1/%2°C"
  7212. #~ msgstr "热床温度:%1/%2°C"
  7213. #~ msgctxt "@label"
  7214. #~ msgid "%1"
  7215. #~ msgstr "%1"
  7216. #~ msgctxt "@label"
  7217. #~ msgid "View Mode: Layers"
  7218. #~ msgstr "视图模式:分层"
  7219. #~ msgctxt "@info:status"
  7220. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7221. #~ msgstr "无法导入材料 <filename>%1</filename>:<message>%2</message>"
  7222. #~ msgctxt "@info:status"
  7223. #~ msgid "Successfully imported material <filename>%1</filename>"
  7224. #~ msgstr "成功导入材料 <filename>%1</filename>"
  7225. #~ msgctxt "@info:status"
  7226. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7227. #~ msgstr "无法导出材料至 <filename>%1</filename>:<message>%2</message>"
  7228. #~ msgctxt "@info:status"
  7229. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7230. #~ msgstr "成功导出材料至: <filename>%1</filename>"
  7231. #~ msgctxt "@label"
  7232. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7233. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7234. #~ msgctxt "@label"
  7235. #~ msgid "%1 m / ~ %2 g"
  7236. #~ msgstr "%1 m / ~ %2 g"
  7237. #~ msgctxt "@label"
  7238. #~ msgid "Hotend"
  7239. #~ msgstr "热端"
  7240. #~ msgctxt "@action:button"
  7241. #~ msgid "View Mode"
  7242. #~ msgstr "视图模式"
  7243. #~ msgctxt "@title:tab"
  7244. #~ msgid "Print"
  7245. #~ msgstr "打印"
  7246. #~ msgctxt "@label"
  7247. #~ msgid "0%"
  7248. #~ msgstr "0%"
  7249. #~ msgctxt "@label"
  7250. #~ msgid "Empty infill will leave your model hollow with low strength."
  7251. #~ msgstr "无填充将使模型处于低强度且保持空心状态。"
  7252. #~ msgctxt "@label"
  7253. #~ msgid "20%"
  7254. #~ msgstr "20%"
  7255. #~ msgctxt "@label"
  7256. #~ msgid "Light (20%) infill will give your model an average strength."
  7257. #~ msgstr "轻度(20%)填充将使打印模型处于中等强度。"
  7258. #~ msgctxt "@label"
  7259. #~ msgid "50%"
  7260. #~ msgstr "50%"
  7261. #~ msgctxt "@label"
  7262. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7263. #~ msgstr "密集(50%)填充将使打印模型高于平均的强度。"
  7264. #~ msgctxt "@label"
  7265. #~ msgid "100%"
  7266. #~ msgstr "100%"
  7267. #~ msgctxt "@label"
  7268. #~ msgid "Solid (100%) infill will make your model completely solid."
  7269. #~ msgstr "完全(100%)填充将使您的模型处于完全实心状态。"
  7270. #~ msgctxt "@label"
  7271. #~ msgid "Gradual"
  7272. #~ msgstr "渐层填充"
  7273. #~ msgctxt "description"
  7274. #~ msgid "Provides support for writing X3G files"
  7275. #~ msgstr "提供对写入 X3G 文件的支持"
  7276. #~ msgctxt "name"
  7277. #~ msgid "X3G Writer"
  7278. #~ msgstr "X3G 写入器"
  7279. #~ msgctxt "@label"
  7280. #~ msgid "Machine Settings action"
  7281. #~ msgstr "打印机设置操作"
  7282. #~ msgctxt "@info:whatsthis"
  7283. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7284. #~ msgstr "提供更改打印机设置(如成形空间体积、喷嘴口径等)的方法"
  7285. #~ msgctxt "@label"
  7286. #~ msgid "X-Ray View"
  7287. #~ msgstr "透视视图"
  7288. #~ msgctxt "@info:whatsthis"
  7289. #~ msgid "Provides the X-Ray view."
  7290. #~ msgstr "提供透视视图。"
  7291. #~ msgctxt "@label"
  7292. #~ msgid "X3D Reader"
  7293. #~ msgstr "X3D 读取器"
  7294. #~ msgctxt "@info:whatsthis"
  7295. #~ msgid "Provides support for reading X3D files."
  7296. #~ msgstr "支持读取 X3D 文件。"
  7297. #~ msgctxt "@label"
  7298. #~ msgid "GCode Writer"
  7299. #~ msgstr "GCode 写入器"
  7300. #~ msgctxt "@info:whatsthis"
  7301. #~ msgid "Writes GCode to a file."
  7302. #~ msgstr "将 GCode 写入至文件。"
  7303. #~ msgctxt "@action:button Preceded by 'Ready to'."
  7304. #~ msgid "Print with Doodle3D"
  7305. #~ msgstr "使用 Doodle3D 打印"
  7306. #~ msgctxt "@info:whatsthis"
  7307. #~ msgid "Shows changes since latest checked version."
  7308. #~ msgstr "显示最新版本改动。"
  7309. #~ msgctxt "@label"
  7310. #~ msgid "Profile flatener"
  7311. #~ msgstr "配置文件合并器"
  7312. #~ msgctxt "@info:whatsthis"
  7313. #~ msgid "Create a flattend quality changes profile."
  7314. #~ msgstr "创建一份合并质量变化配置文件。"
  7315. #~ msgctxt "@label"
  7316. #~ msgid "USB printing"
  7317. #~ msgstr "USB 联机打印"
  7318. #~ msgctxt "@info:whatsthis"
  7319. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  7320. #~ msgstr "接受 GCode 并将其发送到打印机。此插件还可以更新固件。"
  7321. #~ msgctxt "X3G Writer Plugin Description"
  7322. #~ msgid "Writes X3G to a file"
  7323. #~ msgstr "将 X3G 写入文件"
  7324. #~ msgctxt "@label"
  7325. #~ msgid "Removable Drive Output Device Plugin"
  7326. #~ msgstr "可移动磁盘输出设备插件"
  7327. #~ msgctxt "@info:whatsthis"
  7328. #~ msgid "Provides removable drive hotplugging and writing support."
  7329. #~ msgstr "提供可移动磁盘热插拔和写入文件的支持。"
  7330. #~ msgctxt "@info:whatsthis"
  7331. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7332. #~ msgstr "管理与 Ultimaker 3 打印机的网络连接"
  7333. #~ msgctxt "@label"
  7334. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7335. #~ msgstr "您为挤出机 {2} 选择了不同的打印头(Cura:{0},打印机:{1})"
  7336. #~ msgctxt "@label"
  7337. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7338. #~ msgstr "打印头 {0} 未正确校准,您需要在打印机上执行 XY 校准。"
  7339. #~ msgctxt "@label"
  7340. #~ 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."
  7341. #~ msgstr "打印机上的打印头和/或材料与当前项目中的不同。为获得最佳打印效果,请始终使用已插入的打印头和材料配置进行切片。"
  7342. #~ msgctxt "@label"
  7343. #~ msgid "Post Processing"
  7344. #~ msgstr "后期处理"
  7345. #~ msgctxt "Description of plugin"
  7346. #~ msgid "Extension that allows for user created scripts for post processing"
  7347. #~ msgstr "扩展程序(允许用户创建脚本进行后期处理)"
  7348. #~ msgctxt "@label"
  7349. #~ msgid "Auto Save"
  7350. #~ msgstr "自动保存"
  7351. #~ msgctxt "@info:whatsthis"
  7352. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7353. #~ msgstr "更改后自动保存首选项、机器和配置文件。"
  7354. #~ msgctxt "@label"
  7355. #~ msgid "Slice info"
  7356. #~ msgstr "切片信息"
  7357. #~ msgctxt "@info:whatsthis"
  7358. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  7359. #~ msgstr "提交匿名切片信息。此特性可在偏好设置中禁用。"
  7360. #~ msgctxt "@info"
  7361. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  7362. #~ msgstr "Cura 将自动收集匿名的切片统计数据,您可以在偏好设置中禁用此选项。"
  7363. #~ msgctxt "@label"
  7364. #~ msgid "Material Profiles"
  7365. #~ msgstr "材料配置文件"
  7366. #~ msgctxt "@info:whatsthis"
  7367. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  7368. #~ msgstr "提供读取和写入基于 XML 的材料配置文件的功能。"
  7369. #~ msgctxt "@label"
  7370. #~ msgid "Legacy Cura Profile Reader"
  7371. #~ msgstr "旧版 Cura 配置文件读取器"
  7372. #~ msgctxt "@info:whatsthis"
  7373. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  7374. #~ msgstr "支持从 Cura 旧版本导入配置文件。"
  7375. #~ msgctxt "@label"
  7376. #~ msgid "GCode Profile Reader"
  7377. #~ msgstr "GCode 配置读取器"
  7378. #~ msgctxt "@info:whatsthis"
  7379. #~ msgid "Provides support for importing profiles from g-code files."
  7380. #~ msgstr "提供了从 GCode 文件中导入配置文件的支持。"
  7381. #~ msgctxt "@label"
  7382. #~ msgid "Layer View"
  7383. #~ msgstr "分层视图"
  7384. #~ msgctxt "@info:whatsthis"
  7385. #~ msgid "Provides the Layer view."
  7386. #~ msgstr "提供分层视图。"
  7387. #~ msgctxt "@label"
  7388. #~ msgid "Version Upgrade 2.5 to 2.6"
  7389. #~ msgstr "版本自 2.5 升级到 2.6"
  7390. #~ msgctxt "@info:whatsthis"
  7391. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  7392. #~ msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。"
  7393. #~ msgctxt "@label"
  7394. #~ msgid "Version Upgrade 2.1 to 2.2"
  7395. #~ msgstr "版本自 2.1 升级至 2.2"
  7396. #~ msgctxt "@info:whatsthis"
  7397. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  7398. #~ msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。"
  7399. #~ msgctxt "@label"
  7400. #~ msgid "Version Upgrade 2.2 to 2.4"
  7401. #~ msgstr "版本自 2.2 升级到 2.4"
  7402. #~ msgctxt "@info:whatsthis"
  7403. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  7404. #~ msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。"
  7405. #~ msgctxt "@label"
  7406. #~ msgid "Image Reader"
  7407. #~ msgstr "图像读取器"
  7408. #~ msgctxt "@info:whatsthis"
  7409. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  7410. #~ msgstr "支持从 2D 图像文件生成可打印几何模型。"
  7411. #~ msgctxt "@label"
  7412. #~ msgid "CuraEngine Backend"
  7413. #~ msgstr "CuraEngine 后端"
  7414. #~ msgctxt "@info:whatsthis"
  7415. #~ msgid "Provides the link to the CuraEngine slicing backend."
  7416. #~ msgstr "提供 CuraEngine 切片后端的路径"
  7417. #~ msgctxt "@label"
  7418. #~ msgid "Per Model Settings Tool"
  7419. #~ msgstr "单一模型设置工具"
  7420. #~ msgctxt "@info:whatsthis"
  7421. #~ msgid "Provides the Per Model Settings."
  7422. #~ msgstr "提供对每个模型的单独设置。"
  7423. #~ msgctxt "@label"
  7424. #~ msgid "3MF Reader"
  7425. #~ msgstr "3MF 读取器"
  7426. #~ msgctxt "@info:whatsthis"
  7427. #~ msgid "Provides support for reading 3MF files."
  7428. #~ msgstr "提供对读取 3MF 格式文件的支持。"
  7429. #~ msgctxt "@label"
  7430. #~ msgid "Solid View"
  7431. #~ msgstr "实体视图"
  7432. #~ msgctxt "@info:whatsthis"
  7433. #~ msgid "Provides a normal solid mesh view."
  7434. #~ msgstr "提供一个基本的实体网格视图。"
  7435. #~ msgctxt "@label"
  7436. #~ msgid "G-code Reader"
  7437. #~ msgstr "G-code 读取器"
  7438. #~ msgctxt "@info:whatsthis"
  7439. #~ msgid "Allows loading and displaying G-code files."
  7440. #~ msgstr "允许加载和显示 G-code 文件。"
  7441. #~ msgctxt "@label"
  7442. #~ msgid "Cura Profile Writer"
  7443. #~ msgstr "Cura 配置写入器"
  7444. #~ msgctxt "@info:whatsthis"
  7445. #~ msgid "Provides support for exporting Cura profiles."
  7446. #~ msgstr "提供了对导出 Cura 配置文件的支持。"
  7447. #~ msgctxt "@label"
  7448. #~ msgid "3MF Writer"
  7449. #~ msgstr "3MF 写入器"
  7450. #~ msgctxt "@info:whatsthis"
  7451. #~ msgid "Provides support for writing 3MF files."
  7452. #~ msgstr "提供对写入 3MF 文件的支持。"
  7453. #~ msgctxt "@label"
  7454. #~ msgid "Ultimaker machine actions"
  7455. #~ msgstr "Ultimaker 打印机操作"
  7456. #~ msgctxt "@info:whatsthis"
  7457. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7458. #~ msgstr "为 Ultimaker 打印机提供操作选项 (如平台调平向导、选择升级等)"
  7459. #~ msgctxt "@label"
  7460. #~ msgid "Cura Profile Reader"
  7461. #~ msgstr "Cura 配置文件导出"
  7462. #~ msgctxt "@info:whatsthis"
  7463. #~ msgid "Provides support for importing Cura profiles."
  7464. #~ msgstr "提供了对导入 Cura 配置文件的支持。"
  7465. #~ msgctxt "@info"
  7466. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7467. #~ msgstr "%(宽).1f x %(深).1f x %(高).1f mm"
  7468. #~ msgctxt "@label"
  7469. #~ msgid "Build Plate Shape"
  7470. #~ msgstr "打印平台形状"
  7471. #~ msgctxt "@option:check"
  7472. #~ msgid "Machine Center is Zero"
  7473. #~ msgstr "机器中心为零点"
  7474. #~ msgctxt "@option:check"
  7475. #~ msgid "Heated Bed"
  7476. #~ msgstr "加热床"
  7477. #~ msgctxt "@label"
  7478. #~ msgid "GCode Flavor"
  7479. #~ msgstr "GCode 类型"
  7480. #~ msgctxt "@label"
  7481. #~ msgid "Material Diameter"
  7482. #~ msgstr "材料直径"
  7483. #~ msgctxt "@label"
  7484. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7485. #~ msgstr "如果您的打印机未列出,请阅读<a href='%1'>网络打印故障排除指南</a>"
  7486. #~ msgctxt "@item:inlistbox"
  7487. #~ msgid "Ultimaker"
  7488. #~ msgstr "Ultimaker"
  7489. #~ msgctxt "@label"
  7490. #~ msgid "Support library for scientific computing "
  7491. #~ msgstr "科学计算支持库"
  7492. #~ msgctxt "@tooltip"
  7493. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  7494. #~ msgstr "<b>打印设置</b> <br/> <br/>编辑或查看活动打印作业的设置。"
  7495. #~ msgctxt "@tooltip"
  7496. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  7497. #~ msgstr "<b>打印监视</b> <br/> <br/>可以监视所连接的打印机和正在进行的打印作业的状态。"
  7498. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  7499. #~ msgid "Automatic: %1"
  7500. #~ msgstr "自动:%1"
  7501. #~ msgctxt "@label:PrintjobStatus"
  7502. #~ msgid "Please load a 3d model"
  7503. #~ msgstr "请载入一个 3D 模型"
  7504. #~ msgctxt "@label"
  7505. #~ msgid "Print Selected Model with %1"
  7506. #~ msgid_plural "Print Selected Models With %1"
  7507. #~ msgstr[0] "用 %1 打印所选模型"