cura.po 309 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070
  1. # Cura
  2. # Copyright (C) 2022 UltiMaker.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 5.1\n"
  9. "Report-Msgid-Bugs-To: \n"
  10. "POT-Creation-Date: 2023-01-31 17:37+0100\n"
  11. "PO-Revision-Date: 2022-01-02 19:59+0800\n"
  12. "Last-Translator: Valen Chang <carf17771@gmail.com>\n"
  13. "Language-Team: Valen Chang <carf17771@gmail.com>\n"
  14. "Language: zh_TW\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=1; plural=0;\n"
  19. "X-Generator: Poedit 3.0\n"
  20. #: cura/API/Account.py:199
  21. msgctxt "@info:title"
  22. msgid "Login failed"
  23. msgstr "登入失敗"
  24. #: cura/Arranging/ArrangeObjectsJob.py:25
  25. msgctxt "@info:status"
  26. msgid "Finding new location for objects"
  27. msgstr "正在為物件尋找新位置"
  28. #: cura/Arranging/ArrangeObjectsJob.py:29
  29. msgctxt "@info:title"
  30. msgid "Finding Location"
  31. msgstr "尋找位置中"
  32. #: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99
  33. msgctxt "@info:status"
  34. msgid "Unable to find a location within the build volume for all objects"
  35. msgstr "無法在列印範圍內放下全部物件"
  36. #: cura/Arranging/ArrangeObjectsJob.py:43
  37. msgctxt "@info:title"
  38. msgid "Can't Find Location"
  39. msgstr "無法找到位置"
  40. #: cura/Backups/Backup.py:115
  41. msgctxt "@info:backup_failed"
  42. msgid "Could not create archive from user data directory: {}"
  43. msgstr "無法從使用者資料目錄建立備份檔:{}"
  44. #: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159
  45. #: plugins/CuraDrive/src/DrivePluginExtension.py:118
  46. #: plugins/CuraDrive/src/DrivePluginExtension.py:126
  47. msgctxt "@info:title"
  48. msgid "Backup"
  49. msgstr "備份"
  50. #: cura/Backups/Backup.py:134
  51. msgctxt "@info:backup_failed"
  52. msgid "Tried to restore a Cura backup without having proper data or meta data."
  53. msgstr "嘗試復原Cura 備份(若無proper data或meta data)。"
  54. #: cura/Backups/Backup.py:145
  55. msgctxt "@info:backup_failed"
  56. msgid "Tried to restore a Cura backup that is higher than the current version."
  57. msgstr "嘗試復原新版本的Cura備份。"
  58. #: cura/Backups/Backup.py:158
  59. msgctxt "@info:backup_failed"
  60. msgid "The following error occurred while trying to restore a Cura backup:"
  61. msgstr "恢復Cura備份時,出現下列錯誤:"
  62. #: cura/BuildVolume.py:100
  63. msgctxt "@info:status"
  64. 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."
  65. msgstr "由於「列印序列」設定的值,成形列印範圍高度已被減少,以防止龍門與列印模型相衝突。"
  66. #: cura/BuildVolume.py:103
  67. msgctxt "@info:title"
  68. msgid "Build Volume"
  69. msgstr "列印範圍"
  70. #: cura/CrashHandler.py:107
  71. msgctxt "@title:window"
  72. msgid "Cura can't start"
  73. msgstr "Cura 無法啟動"
  74. #: cura/CrashHandler.py:113
  75. #, fuzzy
  76. msgctxt "@label crash message"
  77. msgid ""
  78. "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n"
  79. " <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"
  80. " <p>Backups can be found in the configuration folder.</p>\n"
  81. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  82. " "
  83. msgstr ""
  84. "<p><b>糟糕,Ultimaker Cura 遇到了一些似乎不正常的事情。</p></b>\n"
  85. " <p>我們在啟動過程中遇到了無法修正的錯誤。這可能是由一些不正確的設定檔造成的。我們建議備份並重置您的設定。</p>\n"
  86. " <p>備份檔案可在設定資料夾中找到。</p>\n"
  87. " <p>請將錯誤報告傳送給我們以修正此問題。</p>\n"
  88. " "
  89. #: cura/CrashHandler.py:122
  90. msgctxt "@action:button"
  91. msgid "Send crash report to UltiMaker"
  92. msgstr "傳送錯誤報告給 UltiMaker"
  93. #: cura/CrashHandler.py:125
  94. msgctxt "@action:button"
  95. msgid "Show detailed crash report"
  96. msgstr "顯示詳細的錯誤報告"
  97. #: cura/CrashHandler.py:129
  98. msgctxt "@action:button"
  99. msgid "Show configuration folder"
  100. msgstr "顯示設定資料夾"
  101. #: cura/CrashHandler.py:140
  102. msgctxt "@action:button"
  103. msgid "Backup and Reset Configuration"
  104. msgstr "備份和重置設定"
  105. #: cura/CrashHandler.py:171
  106. msgctxt "@title:window"
  107. msgid "Crash Report"
  108. msgstr "錯誤報告"
  109. #: cura/CrashHandler.py:190
  110. msgctxt "@label crash message"
  111. msgid ""
  112. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  113. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  114. " "
  115. msgstr ""
  116. "<p><b>Cura 發生了一個嚴重的錯誤。請將錯誤報告傳送給我們以修正此問題</p></b>\n"
  117. " <p>請用\"送出報告\"按鈕自動發出一份錯誤報告到我們的伺服器</p>\n"
  118. " "
  119. #: cura/CrashHandler.py:198
  120. msgctxt "@title:groupbox"
  121. msgid "System information"
  122. msgstr "系統資訊"
  123. #: cura/CrashHandler.py:207
  124. msgctxt "@label unknown version of Cura"
  125. msgid "Unknown"
  126. msgstr "未知"
  127. #: cura/CrashHandler.py:228
  128. msgctxt "@label Cura version number"
  129. msgid "Cura version"
  130. msgstr "Cura 版本"
  131. #: cura/CrashHandler.py:229
  132. msgctxt "@label"
  133. msgid "Cura language"
  134. msgstr "Cura 語言"
  135. #: cura/CrashHandler.py:230
  136. msgctxt "@label"
  137. msgid "OS language"
  138. msgstr "作業系統語言"
  139. #: cura/CrashHandler.py:231
  140. msgctxt "@label Type of platform"
  141. msgid "Platform"
  142. msgstr "平台"
  143. #: cura/CrashHandler.py:232
  144. msgctxt "@label"
  145. msgid "Qt version"
  146. msgstr "Qt 版本"
  147. #: cura/CrashHandler.py:233
  148. msgctxt "@label"
  149. msgid "PyQt version"
  150. msgstr "PyQt 版本"
  151. #: cura/CrashHandler.py:234
  152. msgctxt "@label OpenGL version"
  153. msgid "OpenGL"
  154. msgstr "OpenGL"
  155. #: cura/CrashHandler.py:264
  156. msgctxt "@label"
  157. msgid "Not yet initialized"
  158. msgstr ""
  159. #: cura/CrashHandler.py:267
  160. #, python-brace-format
  161. msgctxt "@label OpenGL version"
  162. msgid "<li>OpenGL Version: {version}</li>"
  163. msgstr "<li>OpenGL 版本:{version}</li>"
  164. #: cura/CrashHandler.py:268
  165. #, python-brace-format
  166. msgctxt "@label OpenGL vendor"
  167. msgid "<li>OpenGL Vendor: {vendor}</li>"
  168. msgstr "<li>OpenGL 供應商:{vendor}</li>"
  169. #: cura/CrashHandler.py:269
  170. #, python-brace-format
  171. msgctxt "@label OpenGL renderer"
  172. msgid "<li>OpenGL Renderer: {renderer}</li>"
  173. msgstr "<li>OpenGL 渲染器:{renderer}</li>"
  174. #: cura/CrashHandler.py:304
  175. msgctxt "@title:groupbox"
  176. msgid "Error traceback"
  177. msgstr "錯誤追溯"
  178. #: cura/CrashHandler.py:390
  179. msgctxt "@title:groupbox"
  180. msgid "Logs"
  181. msgstr "日誌"
  182. #: cura/CrashHandler.py:418
  183. msgctxt "@action:button"
  184. msgid "Send report"
  185. msgstr "送出報告"
  186. #: cura/CuraApplication.py:540
  187. msgctxt "@info:progress"
  188. msgid "Loading machines..."
  189. msgstr "正在載入印表機..."
  190. #: cura/CuraApplication.py:547
  191. msgctxt "@info:progress"
  192. msgid "Setting up preferences..."
  193. msgstr "正在設定偏好設定..."
  194. #: cura/CuraApplication.py:692
  195. msgctxt "@info:progress"
  196. msgid "Initializing Active Machine..."
  197. msgstr "正在初始化啟用的機器..."
  198. #: cura/CuraApplication.py:839
  199. msgctxt "@info:progress"
  200. msgid "Initializing machine manager..."
  201. msgstr "正在初始化機器管理員..."
  202. #: cura/CuraApplication.py:853
  203. msgctxt "@info:progress"
  204. msgid "Initializing build volume..."
  205. msgstr "正在初始化列印範圍..."
  206. #: cura/CuraApplication.py:921
  207. msgctxt "@info:progress"
  208. msgid "Setting up scene..."
  209. msgstr "正在設定場景..."
  210. #: cura/CuraApplication.py:957
  211. msgctxt "@info:progress"
  212. msgid "Loading interface..."
  213. msgstr "正在載入介面..."
  214. #: cura/CuraApplication.py:962
  215. msgctxt "@info:progress"
  216. msgid "Initializing engine..."
  217. msgstr "正在初始化引擎..."
  218. #: cura/CuraApplication.py:1290
  219. #, python-format
  220. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  221. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  222. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  223. #: cura/CuraApplication.py:1816
  224. #, python-brace-format
  225. msgctxt "@info:status"
  226. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  227. msgstr "一次只能載入一個 G-code 檔案。{0} 已跳過匯入"
  228. #: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217
  229. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189
  230. msgctxt "@info:title"
  231. msgid "Warning"
  232. msgstr "警告"
  233. #: cura/CuraApplication.py:1828
  234. #, python-brace-format
  235. msgctxt "@info:status"
  236. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  237. msgstr "如果載入 G-code,則無法開啟其他任何檔案。{0} 已跳過匯入"
  238. #: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156
  239. #: cura/Settings/CuraContainerRegistry.py:166
  240. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  241. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  242. msgctxt "@info:title"
  243. msgid "Error"
  244. msgstr "錯誤"
  245. #: cura/Machines/Models/DiscoveredPrintersModel.py:83
  246. msgctxt "@label"
  247. msgid "Unknown"
  248. msgstr "未知"
  249. #: cura/Machines/Models/DiscoveredPrintersModel.py:113
  250. msgctxt "@label"
  251. msgid "The printer(s) below cannot be connected because they are part of a group"
  252. msgstr "下列印表機因為是群組的一部份導致無法連接"
  253. #: cura/Machines/Models/DiscoveredPrintersModel.py:115
  254. msgctxt "@label"
  255. msgid "Available networked printers"
  256. msgstr "可用的網路印表機"
  257. #: cura/Machines/Models/ExtrudersModel.py:219
  258. msgctxt "@menuitem"
  259. msgid "Not overridden"
  260. msgstr "不覆寫"
  261. #: cura/Machines/Models/GlobalStacksModel.py:160
  262. #: resources/qml/PrinterSelector/MachineSelectorList.qml:28
  263. msgctxt "@label"
  264. msgid "Connected printers"
  265. msgstr "已連線印表機"
  266. #: cura/Machines/Models/GlobalStacksModel.py:160
  267. msgctxt "@label"
  268. msgid "Preset printers"
  269. msgstr "預設印表機"
  270. #: cura/Machines/Models/GlobalStacksModel.py:165
  271. #, python-brace-format
  272. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  273. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  274. msgstr "你確定要移除 {0} 嗎?這動作無法復原!"
  275. #: cura/Machines/Models/IntentCategoryModel.py:42
  276. #: cura/Machines/Models/IntentSelectionModel.py:61
  277. #: cura/Machines/Models/IntentTranslations.py:11
  278. #: cura/Machines/Models/QualityManagementModel.py:347
  279. msgctxt "@label"
  280. msgid "Default"
  281. msgstr "預設值"
  282. #: cura/Machines/Models/IntentCategoryModel.py:45
  283. #: cura/Machines/Models/IntentSelectionModel.py:65
  284. #: cura/Machines/Models/IntentTranslations.py:14
  285. msgctxt "@label"
  286. msgid "Visual"
  287. msgstr "外觀"
  288. #: cura/Machines/Models/IntentCategoryModel.py:46
  289. #: cura/Machines/Models/IntentSelectionModel.py:66
  290. #: cura/Machines/Models/IntentTranslations.py:15
  291. msgctxt "@text"
  292. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  293. msgstr "外觀參數是設計來列印較高品質形狀和表面的視覺性原型和模型。"
  294. #: cura/Machines/Models/IntentCategoryModel.py:49
  295. #: cura/Machines/Models/IntentSelectionModel.py:70
  296. #: cura/Machines/Models/IntentTranslations.py:18
  297. msgctxt "@label"
  298. msgid "Engineering"
  299. msgstr "工程"
  300. #: cura/Machines/Models/IntentCategoryModel.py:50
  301. #: cura/Machines/Models/IntentSelectionModel.py:71
  302. #: cura/Machines/Models/IntentTranslations.py:19
  303. msgctxt "@text"
  304. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  305. msgstr "工程參數是設計來列印較高精度和較小公差的功能性原型和實際使用零件。"
  306. #: cura/Machines/Models/IntentCategoryModel.py:53
  307. #: cura/Machines/Models/IntentSelectionModel.py:75
  308. #: cura/Machines/Models/IntentTranslations.py:22
  309. msgctxt "@label"
  310. msgid "Draft"
  311. msgstr "草稿"
  312. #: cura/Machines/Models/IntentCategoryModel.py:54
  313. #: cura/Machines/Models/IntentSelectionModel.py:76
  314. #: cura/Machines/Models/IntentTranslations.py:23
  315. msgctxt "@text"
  316. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  317. msgstr "草稿參數是設計來縮短時間,快速列印初始原型和概念驗證。"
  318. #: cura/Machines/Models/MaterialManagementModel.py:232
  319. msgctxt "@label"
  320. msgid "Custom Material"
  321. msgstr "自訂線材資料"
  322. #: cura/Machines/Models/MaterialManagementModel.py:233
  323. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340
  324. msgctxt "@label"
  325. msgid "Custom"
  326. msgstr "自訂"
  327. #: cura/Machines/Models/QualityManagementModel.py:400
  328. msgctxt "@label"
  329. msgid "Custom profiles"
  330. msgstr "自訂列印參數"
  331. #: cura/Machines/Models/QualityManagementModel.py:435
  332. #, python-brace-format
  333. msgctxt "@item:inlistbox"
  334. msgid "All Supported Types ({0})"
  335. msgstr "所有支援的類型 ({0})"
  336. #: cura/Machines/Models/QualityManagementModel.py:436
  337. msgctxt "@item:inlistbox"
  338. msgid "All Files (*)"
  339. msgstr "所有檔案 (*)"
  340. #: cura/Machines/Models/QualitySettingsModel.py:182
  341. msgctxt "@info:status"
  342. msgid "Calculated"
  343. msgstr "已計算"
  344. #: cura/MultiplyObjectsJob.py:30
  345. msgctxt "@info:status"
  346. msgid "Multiplying and placing objects"
  347. msgstr "正在複製並放置模型"
  348. #: cura/MultiplyObjectsJob.py:32
  349. msgctxt "@info:title"
  350. msgid "Placing Objects"
  351. msgstr "正在放置模型"
  352. #: cura/MultiplyObjectsJob.py:100
  353. msgctxt "@info:title"
  354. msgid "Placing Object"
  355. msgstr "擺放物件中"
  356. #: cura/OAuth2/AuthorizationHelpers.py:89
  357. msgctxt "@message"
  358. msgid "Could not read response."
  359. msgstr "雲端沒有讀取回應。"
  360. #: cura/OAuth2/AuthorizationRequestHandler.py:75
  361. msgctxt "@message"
  362. msgid "The provided state is not correct."
  363. msgstr "提供的狀態不正確。"
  364. #: cura/OAuth2/AuthorizationRequestHandler.py:80
  365. msgctxt "@message"
  366. msgid "Timeout when authenticating with the account server."
  367. msgstr "在向帳戶伺服器進行身分驗證時逾時."
  368. #: cura/OAuth2/AuthorizationRequestHandler.py:97
  369. msgctxt "@message"
  370. msgid "Please give the required permissions when authorizing this application."
  371. msgstr "核准此應用程式時,請給予所需的權限。"
  372. #: cura/OAuth2/AuthorizationRequestHandler.py:104
  373. msgctxt "@message"
  374. msgid "Something unexpected happened when trying to log in, please try again."
  375. msgstr "嘗試登入時出現意外狀況,請再試一次。"
  376. #: cura/OAuth2/AuthorizationService.py:216
  377. msgctxt "@info"
  378. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  379. msgstr "無法開始新的登入程序。檢查是否有其他登入仍在進行中。"
  380. #: cura/OAuth2/AuthorizationService.py:277
  381. msgctxt "@info"
  382. msgid "Unable to reach the UltiMaker account server."
  383. msgstr "無法連上 UltiMaker 帳號伺服器。"
  384. #: cura/OAuth2/AuthorizationService.py:278
  385. msgctxt "@info:title"
  386. msgid "Log-in failed"
  387. msgstr "登入失敗"
  388. #: cura/PrinterOutput/UploadMaterialsJob.py:104
  389. msgctxt "@text:error"
  390. msgid "Failed to create archive of materials to sync with printers."
  391. msgstr "無法建立與印表機同步的材料檔案."
  392. #: cura/PrinterOutput/UploadMaterialsJob.py:111
  393. #: cura/PrinterOutput/UploadMaterialsJob.py:165
  394. msgctxt "@text:error"
  395. msgid "Failed to load the archive of materials to sync it with printers."
  396. msgstr "無法載入與印表機同步的材料檔案."
  397. #: cura/PrinterOutput/UploadMaterialsJob.py:143
  398. msgctxt "@text:error"
  399. msgid "The response from Digital Factory appears to be corrupted."
  400. msgstr "從Digital Factory的回應似乎已損壞."
  401. #: cura/PrinterOutput/UploadMaterialsJob.py:147
  402. #: cura/PrinterOutput/UploadMaterialsJob.py:151
  403. #: cura/PrinterOutput/UploadMaterialsJob.py:155
  404. msgctxt "@text:error"
  405. msgid "The response from Digital Factory is missing important information."
  406. msgstr "從Digital Factory的回應似乎遺漏重要資訊."
  407. #: cura/PrinterOutput/UploadMaterialsJob.py:218
  408. msgctxt "@text:error"
  409. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  410. msgstr "在連接至Digital Factory去同步材料的過程中失敗."
  411. #: cura/PrinterOutput/UploadMaterialsJob.py:232
  412. msgctxt "@text:error"
  413. msgid "Failed to connect to Digital Factory."
  414. msgstr "在連接至Digital Factory的過程中失敗."
  415. #: cura/Settings/ActiveQuality.py:43
  416. msgctxt "@label"
  417. msgid "Experimental"
  418. msgstr "實驗功能"
  419. #: cura/Settings/ContainerManager.py:207
  420. #: cura/Settings/CuraContainerRegistry.py:140
  421. msgctxt "@title:window"
  422. msgid "File Already Exists"
  423. msgstr "檔案已經存在"
  424. #: cura/Settings/ContainerManager.py:208
  425. #: cura/Settings/CuraContainerRegistry.py:141
  426. #, python-brace-format
  427. msgctxt "@label Don't translate the XML tag <filename>!"
  428. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  429. msgstr "檔案 <filename>{0}</filename> 已存在。你確定要覆蓋掉它嗎?"
  430. #: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462
  431. msgctxt "@info:status"
  432. msgid "Invalid file URL:"
  433. msgstr "無效的檔案網址:"
  434. #: cura/Settings/CuraContainerRegistry.py:153
  435. #, python-brace-format
  436. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  437. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  438. msgstr "無法將列印參數匯出至 <filename>{0}</filename>:<message>{1}</message>"
  439. #: cura/Settings/CuraContainerRegistry.py:163
  440. #, python-brace-format
  441. msgctxt "@info:status Don't translate the XML tag <filename>!"
  442. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  443. msgstr "無法將列印參數匯出至 <filename>{0}</filename>:寫入器外掛報告故障。"
  444. #: cura/Settings/CuraContainerRegistry.py:171
  445. #, python-brace-format
  446. msgctxt "@info:status Don't translate the XML tag <filename>!"
  447. msgid "Exported profile to <filename>{0}</filename>"
  448. msgstr "列印參數已匯出至:<filename>{0}</filename>"
  449. #: cura/Settings/CuraContainerRegistry.py:173
  450. msgctxt "@info:title"
  451. msgid "Export succeeded"
  452. msgstr "匯出成功"
  453. #: cura/Settings/CuraContainerRegistry.py:205
  454. #, python-brace-format
  455. msgctxt "@info:status Don't translate the XML tags <filename>!"
  456. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  457. msgstr "無法從 <filename>{0}</filename> 匯入列印參數:{1}"
  458. #: cura/Settings/CuraContainerRegistry.py:209
  459. #, python-brace-format
  460. msgctxt "@info:status Don't translate the XML tags <filename>!"
  461. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  462. msgstr "在加入印表機前,無法從 <filename>{0}</filename> 匯入列印參數。"
  463. #: cura/Settings/CuraContainerRegistry.py:224
  464. #, python-brace-format
  465. msgctxt "@info:status Don't translate the XML tags <filename>!"
  466. msgid "No custom profile to import in file <filename>{0}</filename>"
  467. msgstr "檔案 <filename>{0}</filename> 內沒有自訂列印參數可匯入"
  468. #: cura/Settings/CuraContainerRegistry.py:228
  469. #, python-brace-format
  470. msgctxt "@info:status Don't translate the XML tags <filename>!"
  471. msgid "Failed to import profile from <filename>{0}</filename>:"
  472. msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  473. #: cura/Settings/CuraContainerRegistry.py:252
  474. #: cura/Settings/CuraContainerRegistry.py:262
  475. #, python-brace-format
  476. msgctxt "@info:status Don't translate the XML tags <filename>!"
  477. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  478. msgstr "列印參數 <filename>{0}</filename> 含有不正確的資料,無法匯入。"
  479. #: cura/Settings/CuraContainerRegistry.py:355
  480. #, python-brace-format
  481. msgctxt "@info:status Don't translate the XML tag <filename>!"
  482. msgid "Failed to import profile from <filename>{0}</filename>:"
  483. msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  484. #: cura/Settings/CuraContainerRegistry.py:359
  485. #, python-brace-format
  486. msgctxt "@info:status"
  487. msgid "Successfully imported profile {0}."
  488. msgstr "已成功匯入列印參數 {0}。"
  489. #: cura/Settings/CuraContainerRegistry.py:366
  490. #, python-brace-format
  491. msgctxt "@info:status"
  492. msgid "File {0} does not contain any valid profile."
  493. msgstr "檔案 {0} 內未含有效的列印參數。"
  494. #: cura/Settings/CuraContainerRegistry.py:369
  495. #, python-brace-format
  496. msgctxt "@info:status"
  497. msgid "Profile {0} has an unknown file type or is corrupted."
  498. msgstr "列印參數 {0} 檔案類型未知或已損壞。"
  499. #: cura/Settings/CuraContainerRegistry.py:443
  500. msgctxt "@label"
  501. msgid "Custom profile"
  502. msgstr "自訂列印參數"
  503. #: cura/Settings/CuraContainerRegistry.py:459
  504. msgctxt "@info:status"
  505. msgid "Profile is missing a quality type."
  506. msgstr "列印參數缺少列印品質類型定義。"
  507. #: cura/Settings/CuraContainerRegistry.py:463
  508. msgctxt "@info:status"
  509. msgid "There is no active printer yet."
  510. msgstr "尚未啟動列印機."
  511. #: cura/Settings/CuraContainerRegistry.py:469
  512. msgctxt "@info:status"
  513. msgid "Unable to add the profile."
  514. msgstr "無法新增列印參數。"
  515. #: cura/Settings/CuraContainerRegistry.py:483
  516. #, python-brace-format
  517. msgctxt "@info:status"
  518. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  519. msgstr "品質類型 '{0}' 與目前的啟用的機器設定 '{1} '不相容。"
  520. #: cura/Settings/CuraContainerRegistry.py:488
  521. #, python-brace-format
  522. msgctxt "@info:status"
  523. 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."
  524. msgstr "警告:列印參數無法顯示,因為它的品質類型 '{0}' 無法在目前設定使用。切換到可使用此品質類型的線材/噴頭組合。"
  525. #: cura/Settings/MachineManager.py:746
  526. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:221
  527. msgctxt "@label"
  528. msgid "Nozzle"
  529. msgstr "噴頭"
  530. #: cura/Settings/MachineManager.py:890
  531. msgctxt "@info:message Followed by a list of settings."
  532. msgid "Settings have been changed to match the current availability of extruders:"
  533. msgstr "設定已被更改為符合目前擠出機:"
  534. #: cura/Settings/MachineManager.py:891
  535. msgctxt "@info:title"
  536. msgid "Settings updated"
  537. msgstr "設定更新"
  538. #: cura/Settings/MachineManager.py:1514
  539. msgctxt "@info:title"
  540. msgid "Extruder(s) Disabled"
  541. msgstr "擠出機已停用"
  542. #: cura/Settings/cura_empty_instance_containers.py:36
  543. msgctxt "@info:not supported profile"
  544. msgid "Not supported"
  545. msgstr "不支援"
  546. #: cura/Settings/cura_empty_instance_containers.py:55
  547. msgctxt "@info:No intent profile selected"
  548. msgid "Default"
  549. msgstr "預設值"
  550. #: cura/UI/AddPrinterPagesModel.py:17
  551. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  552. msgctxt "@action:button"
  553. msgid "Add"
  554. msgstr "增加"
  555. #: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290
  556. msgctxt "@action:button"
  557. msgid "Finish"
  558. msgstr "完成"
  559. #: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386
  560. #: plugins/ImageReader/ConfigUI.qml:323
  561. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147
  562. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  563. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  564. #: resources/qml/ColorDialog.qml:143
  565. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  566. #: resources/qml/Dialogs/RenameDialog.qml:103
  567. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  568. msgctxt "@action:button"
  569. msgid "Cancel"
  570. msgstr "取消"
  571. #: cura/UI/ObjectsModel.py:69
  572. #, python-brace-format
  573. msgctxt "@label"
  574. msgid "Group #{group_nr}"
  575. msgstr "群組 #{group_nr}"
  576. #: cura/UI/PrintInformation.py:87
  577. msgctxt "@tooltip"
  578. msgid "Outer Wall"
  579. msgstr "外壁"
  580. #: cura/UI/PrintInformation.py:88
  581. msgctxt "@tooltip"
  582. msgid "Inner Walls"
  583. msgstr "內壁"
  584. #: cura/UI/PrintInformation.py:89
  585. msgctxt "@tooltip"
  586. msgid "Skin"
  587. msgstr "表層"
  588. #: cura/UI/PrintInformation.py:90
  589. msgctxt "@tooltip"
  590. msgid "Infill"
  591. msgstr "填充"
  592. #: cura/UI/PrintInformation.py:91
  593. msgctxt "@tooltip"
  594. msgid "Support Infill"
  595. msgstr "支撐填充"
  596. #: cura/UI/PrintInformation.py:92
  597. msgctxt "@tooltip"
  598. msgid "Support Interface"
  599. msgstr "支撐介面"
  600. #: cura/UI/PrintInformation.py:93
  601. msgctxt "@tooltip"
  602. msgid "Support"
  603. msgstr "支撐"
  604. #: cura/UI/PrintInformation.py:94
  605. msgctxt "@tooltip"
  606. msgid "Skirt"
  607. msgstr "裙邊"
  608. #: cura/UI/PrintInformation.py:95
  609. msgctxt "@tooltip"
  610. msgid "Prime Tower"
  611. msgstr "裝填塔"
  612. #: cura/UI/PrintInformation.py:96
  613. msgctxt "@tooltip"
  614. msgid "Travel"
  615. msgstr "移動"
  616. #: cura/UI/PrintInformation.py:97
  617. msgctxt "@tooltip"
  618. msgid "Retractions"
  619. msgstr "回抽"
  620. #: cura/UI/PrintInformation.py:98
  621. msgctxt "@tooltip"
  622. msgid "Other"
  623. msgstr "其它"
  624. #: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63
  625. msgctxt "@text:window"
  626. msgid "The release notes could not be opened."
  627. msgstr "發佈通知無法開啟."
  628. #: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277
  629. msgctxt "@action:button"
  630. msgid "Next"
  631. msgstr "下一步"
  632. #: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68
  633. msgctxt "@action:button"
  634. msgid "Skip"
  635. msgstr "略過"
  636. #: cura/UI/WhatsNewPagesModel.py:76
  637. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175
  638. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  639. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444
  640. #: resources/qml/Dialogs/AboutDialog.qml:188
  641. msgctxt "@action:button"
  642. msgid "Close"
  643. msgstr "關閉"
  644. #: cura/UltimakerCloud/CloudMaterialSync.py:66
  645. msgctxt "@action:button"
  646. msgid "Please sync the material profiles with your printers before starting to print."
  647. msgstr "再列印前請先同步線材資料."
  648. #: cura/UltimakerCloud/CloudMaterialSync.py:67
  649. msgctxt "@action:button"
  650. msgid "New materials installed"
  651. msgstr "新線材資料安裝"
  652. #: cura/UltimakerCloud/CloudMaterialSync.py:74
  653. msgctxt "@action:button"
  654. msgid "Sync materials"
  655. msgstr ""
  656. #: cura/UltimakerCloud/CloudMaterialSync.py:82
  657. #: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80
  658. msgctxt "@action:button"
  659. msgid "Learn more"
  660. msgstr "學習更多"
  661. #: cura/UltimakerCloud/CloudMaterialSync.py:135
  662. msgctxt "@message:text"
  663. msgid "Could not save material archive to {}:"
  664. msgstr "無法儲存線材資料至{}:"
  665. #: cura/UltimakerCloud/CloudMaterialSync.py:136
  666. msgctxt "@message:title"
  667. msgid "Failed to save material archive"
  668. msgstr "線材資料儲存失敗"
  669. #: cura/UltimakerCloud/CloudMaterialSync.py:188
  670. msgctxt "@text"
  671. msgid "Unknown error."
  672. msgstr "未知的錯誤."
  673. #: plugin.json
  674. msgctxt "name"
  675. msgid "3MF Reader"
  676. msgstr "3MF 讀取器"
  677. #: plugin.json
  678. msgctxt "name"
  679. msgid "3MF Writer"
  680. msgstr "3MF 寫入器"
  681. #: plugin.json
  682. msgctxt "name"
  683. msgid "AMF Reader"
  684. msgstr "AMF 讀取器"
  685. #: plugin.json
  686. msgctxt "description"
  687. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  688. msgstr "接受 G-Code 並且傳送到印表機。此外掛也可以更新韌體。"
  689. #: plugin.json
  690. msgctxt "description"
  691. msgid "Allows loading and displaying G-code files."
  692. msgstr "允許載入和顯示 G-code 檔案。"
  693. #: plugin.json
  694. msgctxt "description"
  695. msgid "Backup and restore your configuration."
  696. msgstr "備份和復原你的設定。"
  697. #: plugin.json
  698. msgctxt "description"
  699. msgid "Checks for firmware updates."
  700. msgstr "檢查是否有韌體更新。"
  701. #: plugin.json
  702. msgctxt "description"
  703. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  704. msgstr "檢查模型和列印設定以了解可能發生的問題並給出建議。"
  705. #: plugin.json
  706. msgctxt "name"
  707. msgid "Compressed G-code Reader"
  708. msgstr "壓縮檔案 G-code 讀取器"
  709. #: plugin.json
  710. msgctxt "name"
  711. msgid "Compressed G-code Writer"
  712. msgstr "壓縮檔案 G-code 寫入器"
  713. #: plugin.json
  714. msgctxt "description"
  715. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  716. msgstr "連結至\"數位博物館\",允許Cura從\"數位博物館\"打開或保存文件."
  717. #: plugin.json
  718. msgctxt "description"
  719. msgid "Creates an eraser mesh to block the printing of support in certain places"
  720. msgstr "建立一個抹除器網格放在某些地方用來防止列印支撐"
  721. #: plugin.json
  722. msgctxt "name"
  723. msgid "Cura Backups"
  724. msgstr "Cura 備份"
  725. #: plugin.json
  726. msgctxt "name"
  727. msgid "Cura Profile Reader"
  728. msgstr "Cura 列印參數讀取器"
  729. #: plugin.json
  730. msgctxt "name"
  731. msgid "Cura Profile Writer"
  732. msgstr "Cura 列印參數寫入器"
  733. #: plugin.json
  734. msgctxt "name"
  735. msgid "CuraEngine Backend"
  736. msgstr "Cura 引擎後台"
  737. #: plugin.json
  738. msgctxt "description"
  739. msgid "Enables ability to generate printable geometry from 2D image files."
  740. msgstr "支援從 2D 圖片檔案產生可列印 3D 模型的能力。"
  741. #: plugin.json
  742. msgctxt "description"
  743. msgid "Extension that allows for user created scripts for post processing"
  744. msgstr "擴充程式(允許用戶建立腳本進行後處理)"
  745. #: plugin.json
  746. msgctxt "name"
  747. msgid "Firmware Update Checker"
  748. msgstr "韌體更新檢查"
  749. #: plugin.json
  750. msgctxt "name"
  751. msgid "Firmware Updater"
  752. msgstr "韌體更新器"
  753. #: plugin.json
  754. msgctxt "name"
  755. msgid "G-code Profile Reader"
  756. msgstr "G-code 列印參數讀取器"
  757. #: plugin.json
  758. msgctxt "name"
  759. msgid "G-code Reader"
  760. msgstr "G-code 讀取器"
  761. #: plugin.json
  762. msgctxt "name"
  763. msgid "G-code Writer"
  764. msgstr "G-code 寫入器"
  765. #: plugin.json
  766. msgctxt "name"
  767. msgid "Image Reader"
  768. msgstr "圖片讀取器"
  769. #: plugin.json
  770. msgctxt "name"
  771. msgid "Legacy Cura Profile Reader"
  772. msgstr "舊版 Cura 列印參數讀取器"
  773. #: plugin.json
  774. msgctxt "description"
  775. msgid "Logs certain events so that they can be used by the crash reporter"
  776. msgstr "記錄某些事件以便在錯誤報告中使用"
  777. #: plugin.json
  778. msgctxt "name"
  779. msgid "Machine Settings Action"
  780. msgstr "印表機設定操作"
  781. #: plugin.json
  782. msgctxt "description"
  783. msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website."
  784. msgstr ""
  785. #: plugin.json
  786. #, fuzzy
  787. msgctxt "description"
  788. msgid "Manages network connections to Ultimaker networked printers."
  789. msgstr "管理與 UltiMaker 網絡印表機的網絡連線。"
  790. #: plugin.json
  791. msgctxt "name"
  792. msgid "Marketplace"
  793. msgstr ""
  794. #: plugin.json
  795. msgctxt "name"
  796. msgid "Material Profiles"
  797. msgstr "線材參數"
  798. #: plugin.json
  799. msgctxt "name"
  800. msgid "Model Checker"
  801. msgstr "模器檢查器"
  802. #: plugin.json
  803. msgctxt "name"
  804. msgid "Monitor Stage"
  805. msgstr "監控介面"
  806. #: plugin.json
  807. msgctxt "name"
  808. msgid "Per Model Settings Tool"
  809. msgstr "單一模型設定工具"
  810. #: plugin.json
  811. msgctxt "name"
  812. msgid "Post Processing"
  813. msgstr "後處理"
  814. #: plugin.json
  815. msgctxt "name"
  816. msgid "Prepare Stage"
  817. msgstr "準備介面"
  818. #: plugin.json
  819. msgctxt "name"
  820. msgid "Preview Stage"
  821. msgstr "預覽介面"
  822. #: plugin.json
  823. msgctxt "description"
  824. msgid "Provides a machine actions for updating firmware."
  825. msgstr "提供升級韌體用的機器操作。"
  826. #: plugin.json
  827. msgctxt "description"
  828. msgid "Provides a monitor stage in Cura."
  829. msgstr "在 cura 提供一個監控介面。"
  830. #: plugin.json
  831. msgctxt "description"
  832. msgid "Provides a normal solid mesh view."
  833. msgstr "提供一個基本的實體網格檢視。"
  834. #: plugin.json
  835. msgctxt "description"
  836. msgid "Provides a prepare stage in Cura."
  837. msgstr "在 cura 提供一個準備介面。"
  838. #: plugin.json
  839. msgctxt "description"
  840. msgid "Provides a preview stage in Cura."
  841. msgstr "在 Cura 提供一個預覽介面。"
  842. #: plugin.json
  843. msgctxt "description"
  844. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  845. msgstr "提供更改機器設定的方法(如列印範圍,噴頭大小等)。"
  846. #: plugin.json
  847. msgctxt "description"
  848. msgid "Provides capabilities to read and write XML-based material profiles."
  849. msgstr "提供讀寫 XML 格式線材參數的功能。"
  850. #: plugin.json
  851. #, fuzzy
  852. msgctxt "description"
  853. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  854. msgstr "提供 UltiMaker 機器的操作(例如平台調平精靈,選擇升級等)。"
  855. #: plugin.json
  856. msgctxt "description"
  857. msgid "Provides removable drive hotplugging and writing support."
  858. msgstr "提供行動裝置熱插拔和寫入檔案的支援。"
  859. #: plugin.json
  860. msgctxt "description"
  861. msgid "Provides support for exporting Cura profiles."
  862. msgstr "提供匯出 Cura 列印參數的支援。"
  863. #: plugin.json
  864. msgctxt "description"
  865. msgid "Provides support for importing Cura profiles."
  866. msgstr "提供匯入 Cura 列印參數的支援。"
  867. #: plugin.json
  868. msgctxt "description"
  869. msgid "Provides support for importing profiles from g-code files."
  870. msgstr "提供匯入 G-code 檔案中列印參數的支援。"
  871. #: plugin.json
  872. msgctxt "description"
  873. msgid "Provides support for importing profiles from legacy Cura versions."
  874. msgstr "提供匯入 Cura 舊版本列印參數的支援。"
  875. #: plugin.json
  876. msgctxt "description"
  877. msgid "Provides support for reading 3MF files."
  878. msgstr "提供讀取 3MF 格式檔案的支援。"
  879. #: plugin.json
  880. msgctxt "description"
  881. msgid "Provides support for reading AMF files."
  882. msgstr "提供對讀取 AMF 格式檔案的支援。"
  883. #: plugin.json
  884. #, fuzzy
  885. msgctxt "description"
  886. msgid "Provides support for reading Ultimaker Format Packages."
  887. msgstr "提供讀取 UltiMaker 格式封包的支援。"
  888. #: plugin.json
  889. msgctxt "description"
  890. msgid "Provides support for reading X3D files."
  891. msgstr "提供讀取 X3D 檔案的支援。"
  892. #: plugin.json
  893. msgctxt "description"
  894. msgid "Provides support for reading model files."
  895. msgstr "提供讀取模型檔案的支援。"
  896. #: plugin.json
  897. msgctxt "description"
  898. msgid "Provides support for writing 3MF files."
  899. msgstr "提供寫入 3MF 檔案的支援。"
  900. #: plugin.json
  901. #, fuzzy
  902. msgctxt "description"
  903. msgid "Provides support for writing Ultimaker Format Packages."
  904. msgstr "提供寫入 UltiMaker 格式封包的支援。"
  905. #: plugin.json
  906. msgctxt "description"
  907. msgid "Provides the Per Model Settings."
  908. msgstr "提供對每個模型的單獨設定。"
  909. #: plugin.json
  910. msgctxt "description"
  911. msgid "Provides the X-Ray view."
  912. msgstr "提供透視檢視。"
  913. #: plugin.json
  914. msgctxt "description"
  915. msgid "Provides the link to the CuraEngine slicing backend."
  916. msgstr "提供連結到 Cura 切片引擎後台。"
  917. #: plugin.json
  918. msgctxt "description"
  919. msgid "Provides the preview of sliced layerdata."
  920. msgstr ""
  921. #: plugin.json
  922. msgctxt "description"
  923. msgid "Reads g-code from a compressed archive."
  924. msgstr "從一個壓縮檔案中讀取 G-code。"
  925. #: plugin.json
  926. msgctxt "name"
  927. msgid "Removable Drive Output Device Plugin"
  928. msgstr "行動裝置輸出設備外掛"
  929. #: plugin.json
  930. msgctxt "name"
  931. msgid "Sentry Logger"
  932. msgstr "哨兵記錄器"
  933. #: plugin.json
  934. msgctxt "name"
  935. msgid "Simulation View"
  936. msgstr "模擬檢視"
  937. #: plugin.json
  938. msgctxt "name"
  939. msgid "Slice info"
  940. msgstr "切片資訊"
  941. #: plugin.json
  942. msgctxt "name"
  943. msgid "Solid View"
  944. msgstr "實體檢視"
  945. #: plugin.json
  946. msgctxt "description"
  947. msgid "Submits anonymous slice info. Can be disabled through preferences."
  948. msgstr "提交匿名切片資訊。這項功能可以在偏好設定中關閉。"
  949. #: plugin.json
  950. msgctxt "name"
  951. msgid "Support Eraser"
  952. msgstr "支援抹除器"
  953. #: plugin.json
  954. msgctxt "name"
  955. msgid "Trimesh Reader"
  956. msgstr "Trimesh 讀取器"
  957. #: plugin.json
  958. msgctxt "name"
  959. msgid "UFP Reader"
  960. msgstr "UFP 讀取器"
  961. #: plugin.json
  962. msgctxt "name"
  963. msgid "UFP Writer"
  964. msgstr "UFP 寫入器"
  965. #: plugin.json
  966. msgctxt "name"
  967. msgid "USB printing"
  968. msgstr "USB 連線列印"
  969. #: plugin.json
  970. msgctxt "name"
  971. msgid "Ultimaker Digital Library"
  972. msgstr "UltiMaker 數位博物館"
  973. #: plugin.json
  974. #, fuzzy
  975. msgctxt "name"
  976. msgid "Ultimaker Network Connection"
  977. msgstr "UltiMaker 網絡連線"
  978. #: plugin.json
  979. #, fuzzy
  980. msgctxt "name"
  981. msgid "Ultimaker machine actions"
  982. msgstr "UltiMaker 印表機操作"
  983. #: plugin.json
  984. msgctxt "description"
  985. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  986. msgstr "將設定從 Cura 2.1 版本升級至 2.2 版本。"
  987. #: plugin.json
  988. msgctxt "description"
  989. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  990. msgstr "將設定從 Cura 2.2 版本升級至 2.4 版本。"
  991. #: plugin.json
  992. msgctxt "description"
  993. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  994. msgstr "將設定從 Cura 2.5 版本升級至 2.6 版本。"
  995. #: plugin.json
  996. msgctxt "description"
  997. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  998. msgstr "將設定從 Cura 2.6 版本升級至 2.7 版本。"
  999. #: plugin.json
  1000. msgctxt "description"
  1001. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  1002. msgstr "將設定從 Cura 2.7 版本升級至 3.0 版本。"
  1003. #: plugin.json
  1004. msgctxt "description"
  1005. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  1006. msgstr "將設定從 Cura 3.0 版本升級至 3.1 版本。"
  1007. #: plugin.json
  1008. msgctxt "description"
  1009. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  1010. msgstr "將設定從 Cura 3.2 版本升級至 3.3 版本。"
  1011. #: plugin.json
  1012. msgctxt "description"
  1013. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  1014. msgstr "將設定從 Cura 3.3 版本升級至 3.4 版本。"
  1015. #: plugin.json
  1016. msgctxt "description"
  1017. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  1018. msgstr "將設定從 Cura 3.4 版本升級至 3.5 版本。"
  1019. #: plugin.json
  1020. msgctxt "description"
  1021. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  1022. msgstr "將設定從 Cura 3.5 版本升級至 4.0 版本。"
  1023. #: plugin.json
  1024. msgctxt "description"
  1025. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  1026. msgstr "將設定從 Cura 4.0 版本升級至 4.1 版本。"
  1027. #: plugin.json
  1028. msgctxt "description"
  1029. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  1030. msgstr "將設定從 Cura 4.1 版本升級至 4.2 版本。"
  1031. #: plugin.json
  1032. msgctxt "description"
  1033. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  1034. msgstr "將設定從 Cura 4.11 版本升級至 4.12 版本。"
  1035. #: plugin.json
  1036. msgctxt "description"
  1037. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  1038. msgstr ""
  1039. #: plugin.json
  1040. msgctxt "description"
  1041. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  1042. msgstr "將設定從 Cura 4.2 版本升級至 4.3 版本。"
  1043. #: plugin.json
  1044. msgctxt "description"
  1045. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  1046. msgstr "將設定從 Cura 4.3 版本升級至 4.4 版本。"
  1047. #: plugin.json
  1048. msgctxt "description"
  1049. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  1050. msgstr "將設定從 Cura 4.4 版本升級至 4.5 版本。"
  1051. #: plugin.json
  1052. msgctxt "description"
  1053. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  1054. msgstr "將設定從 Cura 4.5 版本升級至 4.6 版本。"
  1055. #: plugin.json
  1056. msgctxt "description"
  1057. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  1058. msgstr "將設定從 Cura 4.6.0 版本升級至 4.6.2 版本。"
  1059. #: plugin.json
  1060. msgctxt "description"
  1061. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  1062. msgstr "將設定從 Cura 4.6.2 版本升級至 4.7 版本。"
  1063. #: plugin.json
  1064. msgctxt "description"
  1065. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  1066. msgstr "將設定從 Cura 4.7 版本升級至 4.8 版本。"
  1067. #: plugin.json
  1068. msgctxt "description"
  1069. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  1070. msgstr "將設定從 Cura 4.8 版本升級至 4.9 版本。"
  1071. #: plugin.json
  1072. msgctxt "description"
  1073. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  1074. msgstr "將設定從 Cura 4.9 版本升級至 4.10 版本。"
  1075. #: plugin.json
  1076. #, fuzzy
  1077. msgctxt "description"
  1078. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  1079. msgstr "將設定從 Cura 3.2 版本升級至 3.3 版本。"
  1080. #: plugin.json
  1081. msgctxt "name"
  1082. msgid "Version Upgrade 2.1 to 2.2"
  1083. msgstr "升級版本 2.1 到 2.2"
  1084. #: plugin.json
  1085. msgctxt "name"
  1086. msgid "Version Upgrade 2.2 to 2.4"
  1087. msgstr "升級版本 2.2 到 2.4"
  1088. #: plugin.json
  1089. msgctxt "name"
  1090. msgid "Version Upgrade 2.5 to 2.6"
  1091. msgstr "升級版本 2.5 到 2.6"
  1092. #: plugin.json
  1093. msgctxt "name"
  1094. msgid "Version Upgrade 2.6 to 2.7"
  1095. msgstr "升級版本 2.6 到 2.7"
  1096. #: plugin.json
  1097. msgctxt "name"
  1098. msgid "Version Upgrade 2.7 to 3.0"
  1099. msgstr "升級版本 2.7 到 3.0"
  1100. #: plugin.json
  1101. msgctxt "name"
  1102. msgid "Version Upgrade 3.0 to 3.1"
  1103. msgstr "升級版本 3.0 到 3.1"
  1104. #: plugin.json
  1105. msgctxt "name"
  1106. msgid "Version Upgrade 3.2 to 3.3"
  1107. msgstr "升級版本 3.2 到 3.3"
  1108. #: plugin.json
  1109. msgctxt "name"
  1110. msgid "Version Upgrade 3.3 to 3.4"
  1111. msgstr "升級版本 3.3 到 3.4"
  1112. #: plugin.json
  1113. msgctxt "name"
  1114. msgid "Version Upgrade 3.4 to 3.5"
  1115. msgstr "升級版本 3.4 到 3.5"
  1116. #: plugin.json
  1117. msgctxt "name"
  1118. msgid "Version Upgrade 3.5 to 4.0"
  1119. msgstr "升級版本 3.5 到 4.0"
  1120. #: plugin.json
  1121. msgctxt "name"
  1122. msgid "Version Upgrade 4.0 to 4.1"
  1123. msgstr "升級版本 4.0 到 4.1"
  1124. #: plugin.json
  1125. msgctxt "name"
  1126. msgid "Version Upgrade 4.1 to 4.2"
  1127. msgstr "升級版本 4.1 到 4.2"
  1128. #: plugin.json
  1129. msgctxt "name"
  1130. msgid "Version Upgrade 4.11 to 4.12"
  1131. msgstr "升級版本 4.11 到 4.12"
  1132. #: plugin.json
  1133. msgctxt "name"
  1134. msgid "Version Upgrade 4.13 to 5.0"
  1135. msgstr ""
  1136. #: plugin.json
  1137. msgctxt "name"
  1138. msgid "Version Upgrade 4.2 to 4.3"
  1139. msgstr "升級版本 4.2 到 4.3"
  1140. #: plugin.json
  1141. msgctxt "name"
  1142. msgid "Version Upgrade 4.3 to 4.4"
  1143. msgstr "升級版本 4.3 到 4.4"
  1144. #: plugin.json
  1145. msgctxt "name"
  1146. msgid "Version Upgrade 4.4 to 4.5"
  1147. msgstr "升級版本 4.4 到 4.5"
  1148. #: plugin.json
  1149. msgctxt "name"
  1150. msgid "Version Upgrade 4.5 to 4.6"
  1151. msgstr "升級版本 4.5 到 4.6"
  1152. #: plugin.json
  1153. msgctxt "name"
  1154. msgid "Version Upgrade 4.6.0 to 4.6.2"
  1155. msgstr "升級版本 4.6.0 到 4.6.2"
  1156. #: plugin.json
  1157. msgctxt "name"
  1158. msgid "Version Upgrade 4.6.2 to 4.7"
  1159. msgstr "升級版本 4.6.2 到 4.7"
  1160. #: plugin.json
  1161. msgctxt "name"
  1162. msgid "Version Upgrade 4.7 to 4.8"
  1163. msgstr "升級版本 4.7 到 4.8"
  1164. #: plugin.json
  1165. msgctxt "name"
  1166. msgid "Version Upgrade 4.8 to 4.9"
  1167. msgstr "升級版本 4.8 到 4.9"
  1168. #: plugin.json
  1169. msgctxt "name"
  1170. msgid "Version Upgrade 4.9 to 4.10"
  1171. msgstr "升級版本 4.9 到 4.10"
  1172. #: plugin.json
  1173. #, fuzzy
  1174. msgctxt "name"
  1175. msgid "Version Upgrade 5.2 to 5.3"
  1176. msgstr "升級版本 3.2 到 3.3"
  1177. #: plugin.json
  1178. msgctxt "description"
  1179. msgid "Writes g-code to a compressed archive."
  1180. msgstr "將 G-code 寫入壓縮檔案。"
  1181. #: plugin.json
  1182. msgctxt "description"
  1183. msgid "Writes g-code to a file."
  1184. msgstr "將 G-code 寫入檔案。"
  1185. #: plugin.json
  1186. msgctxt "name"
  1187. msgid "X-Ray View"
  1188. msgstr "透視檢視"
  1189. #: plugin.json
  1190. msgctxt "name"
  1191. msgid "X3D Reader"
  1192. msgstr "X3D 讀取器"
  1193. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
  1194. #, python-brace-format
  1195. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1196. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1197. msgstr "專案檔案 <filename>{0}</filename> 包含未知的機器類型 <message>{1}</message>。機器無法被匯入,但模型將被匯入。"
  1198. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
  1199. msgctxt "@info:title"
  1200. msgid "Open Project File"
  1201. msgstr "開啟專案檔案"
  1202. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
  1203. #: plugins/3MFReader/WorkspaceDialog.qml:99
  1204. #: plugins/3MFReader/WorkspaceDialog.qml:127
  1205. #: plugins/3MFReader/WorkspaceDialog.qml:134
  1206. #, fuzzy
  1207. msgctxt "@button"
  1208. msgid "Create new"
  1209. msgstr "新建設定"
  1210. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
  1211. #, python-brace-format
  1212. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1213. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1214. msgstr "專案檔案 <filename>{0}</filename> 無法存取:<message>{1}</message>。"
  1215. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
  1216. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
  1217. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
  1218. msgctxt "@info:title"
  1219. msgid "Can't Open Project File"
  1220. msgstr "無法開啟專案檔案"
  1221. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
  1222. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
  1223. #, python-brace-format
  1224. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1225. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1226. msgstr "專案檔案<filename>{0}</filename> 已毀損 : <message>{1}</message>."
  1227. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
  1228. #, fuzzy, python-brace-format
  1229. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1230. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  1231. msgstr "專案檔案 <filename>{0}</filename> 使用了此版本 UltiMaker Cura 未知的參數製作。"
  1232. #: plugins/3MFReader/WorkspaceDialog.py:233
  1233. msgctxt "@title:tab"
  1234. msgid "Recommended"
  1235. msgstr "推薦"
  1236. #: plugins/3MFReader/WorkspaceDialog.py:235
  1237. msgctxt "@title:tab"
  1238. msgid "Custom"
  1239. msgstr "自訂選項"
  1240. #: plugins/3MFReader/WorkspaceDialog.py:411
  1241. msgctxt "@info:status"
  1242. msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace."
  1243. msgstr ""
  1244. #: plugins/3MFReader/WorkspaceDialog.py:413
  1245. msgctxt "@info:title"
  1246. msgid "Material profiles not installed"
  1247. msgstr ""
  1248. #: plugins/3MFReader/WorkspaceDialog.py:426
  1249. msgctxt "@action:button"
  1250. msgid "Install Materials"
  1251. msgstr ""
  1252. #: plugins/3MFReader/WorkspaceDialog.qml:15
  1253. msgctxt "@title:window"
  1254. msgid "Open Project"
  1255. msgstr "開啟專案"
  1256. #: plugins/3MFReader/WorkspaceDialog.qml:31
  1257. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61
  1258. msgctxt "@action:title"
  1259. msgid "Summary - Cura Project"
  1260. msgstr "摘要 - Cura 專案"
  1261. #: plugins/3MFReader/WorkspaceDialog.qml:65
  1262. msgctxt "@action:ComboBox Update/override existing profile"
  1263. msgid "Update existing"
  1264. msgstr "更新已有設定"
  1265. #: plugins/3MFReader/WorkspaceDialog.qml:66
  1266. msgctxt "@action:ComboBox Save settings in a new profile"
  1267. msgid "Create new"
  1268. msgstr "新建設定"
  1269. #: plugins/3MFReader/WorkspaceDialog.qml:83
  1270. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  1271. msgctxt "@action:label"
  1272. msgid "Printer settings"
  1273. msgstr "印表機設定"
  1274. #: plugins/3MFReader/WorkspaceDialog.qml:92
  1275. #: plugins/3MFReader/WorkspaceRow.qml:23
  1276. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  1277. msgctxt "@action:label"
  1278. msgid "Type"
  1279. msgstr "類型"
  1280. #: plugins/3MFReader/WorkspaceDialog.qml:98
  1281. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  1282. msgctxt "@action:label"
  1283. msgid "Printer Group"
  1284. msgstr "印表機群組"
  1285. #: plugins/3MFReader/WorkspaceDialog.qml:103
  1286. #, fuzzy
  1287. msgctxt "@action:label"
  1288. msgid "Open With"
  1289. msgstr "開啟檔案"
  1290. #: plugins/3MFReader/WorkspaceDialog.qml:104
  1291. msgctxt "@info:tooltip"
  1292. msgid "Printer settings will be updated to match the settings saved with the project."
  1293. msgstr ""
  1294. #: plugins/3MFReader/WorkspaceDialog.qml:156
  1295. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  1296. msgctxt "@action:label"
  1297. msgid "Profile settings"
  1298. msgstr "列印參數設定"
  1299. #: plugins/3MFReader/WorkspaceDialog.qml:166
  1300. #: plugins/3MFReader/WorkspaceDialog.qml:238
  1301. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  1302. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  1303. msgctxt "@action:label"
  1304. msgid "Name"
  1305. msgstr "名稱"
  1306. #: plugins/3MFReader/WorkspaceDialog.qml:172
  1307. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  1308. msgctxt "@action:label"
  1309. msgid "Intent"
  1310. msgstr "意圖"
  1311. #: plugins/3MFReader/WorkspaceDialog.qml:178
  1312. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  1313. msgctxt "@action:label"
  1314. msgid "Not in profile"
  1315. msgstr "不在列印參數中"
  1316. #: plugins/3MFReader/WorkspaceDialog.qml:179
  1317. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  1318. msgctxt "@action:label"
  1319. msgid "%1 override"
  1320. msgid_plural "%1 overrides"
  1321. msgstr[0] "%1 覆寫"
  1322. #: plugins/3MFReader/WorkspaceDialog.qml:185
  1323. msgctxt "@action:label"
  1324. msgid "Derivative from"
  1325. msgstr "衍生自"
  1326. #: plugins/3MFReader/WorkspaceDialog.qml:186
  1327. msgctxt "@action:label"
  1328. msgid "%1, %2 override"
  1329. msgid_plural "%1, %2 overrides"
  1330. msgstr[0] "%1, %2 覆寫"
  1331. #: plugins/3MFReader/WorkspaceDialog.qml:226
  1332. msgctxt "@action:label"
  1333. msgid "Material settings"
  1334. msgstr "線材設定"
  1335. #: plugins/3MFReader/WorkspaceDialog.qml:280
  1336. msgctxt "@action:label"
  1337. msgid "Setting visibility"
  1338. msgstr "參數顯示設定"
  1339. #: plugins/3MFReader/WorkspaceDialog.qml:290
  1340. msgctxt "@action:label"
  1341. msgid "Mode"
  1342. msgstr "模式"
  1343. #: plugins/3MFReader/WorkspaceDialog.qml:296
  1344. msgctxt "@action:label"
  1345. msgid "%1 out of %2"
  1346. msgstr "%1 / %2"
  1347. #: plugins/3MFReader/WorkspaceDialog.qml:321
  1348. msgctxt "@action:warning"
  1349. msgid "Loading a project will clear all models on the build plate."
  1350. msgstr "載入專案時將清除列印平台上的所有模型。"
  1351. #: plugins/3MFReader/WorkspaceDialog.qml:367
  1352. msgctxt "@label"
  1353. msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  1354. msgstr ""
  1355. #: plugins/3MFReader/WorkspaceDialog.qml:392
  1356. msgctxt "@action:button"
  1357. msgid "Open"
  1358. msgstr "開啟"
  1359. #: plugins/3MFReader/WorkspaceDialog.qml:398
  1360. msgctxt "@action:button"
  1361. msgid "Open project anyway"
  1362. msgstr ""
  1363. #: plugins/3MFReader/WorkspaceDialog.qml:407
  1364. msgctxt "@action:button"
  1365. msgid "Install missing material"
  1366. msgstr ""
  1367. #: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33
  1368. msgctxt "@item:inlistbox"
  1369. msgid "3MF File"
  1370. msgstr "3MF 檔案"
  1371. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1372. msgctxt "@error:zip"
  1373. msgid "3MF Writer plug-in is corrupt."
  1374. msgstr "3MF 寫入器外掛已損壞。"
  1375. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  1376. msgctxt "@error"
  1377. msgid "There is no workspace yet to write. Please add a printer first."
  1378. msgstr "無工作區可寫入,請先添加一部印表機."
  1379. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  1380. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  1381. msgctxt "@error:zip"
  1382. msgid "No permission to write the workspace here."
  1383. msgstr "沒有寫入此處工作區的權限。"
  1384. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  1385. msgctxt "@error:zip"
  1386. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1387. msgstr "操作系統不允許將專案檔案儲存到此位置或儲存為此檔名。"
  1388. #: plugins/3MFWriter/ThreeMFWriter.py:240
  1389. msgctxt "@error:zip"
  1390. msgid "Error writing 3mf file."
  1391. msgstr "寫入 3mf 檔案發生錯誤。"
  1392. #: plugins/3MFWriter/__init__.py:28
  1393. msgctxt "@item:inlistbox"
  1394. msgid "3MF file"
  1395. msgstr "3MF 檔案"
  1396. #: plugins/3MFWriter/__init__.py:36
  1397. msgctxt "@item:inlistbox"
  1398. msgid "Cura Project 3MF file"
  1399. msgstr "Cura 專案 3MF 檔案"
  1400. #: plugins/AMFReader/__init__.py:15
  1401. msgctxt "@item:inlistbox"
  1402. msgid "AMF File"
  1403. msgstr "AMF 檔案"
  1404. #: plugins/CuraDrive/src/CreateBackupJob.py:25
  1405. msgctxt "@info:title"
  1406. msgid "Backups"
  1407. msgstr "備份"
  1408. #: plugins/CuraDrive/src/CreateBackupJob.py:26
  1409. msgctxt "@info:backup_status"
  1410. msgid "There was an error while uploading your backup."
  1411. msgstr "上傳你的備份時發生錯誤。"
  1412. #: plugins/CuraDrive/src/CreateBackupJob.py:46
  1413. msgctxt "@info:backup_status"
  1414. msgid "Creating your backup..."
  1415. msgstr "正在建立備份..."
  1416. #: plugins/CuraDrive/src/CreateBackupJob.py:55
  1417. msgctxt "@info:backup_status"
  1418. msgid "There was an error while creating your backup."
  1419. msgstr "建立備份時發生了錯誤。"
  1420. #: plugins/CuraDrive/src/CreateBackupJob.py:59
  1421. msgctxt "@info:backup_status"
  1422. msgid "Uploading your backup..."
  1423. msgstr "正在上傳你的備份..."
  1424. #: plugins/CuraDrive/src/CreateBackupJob.py:69
  1425. msgctxt "@info:backup_status"
  1426. msgid "Your backup has finished uploading."
  1427. msgstr "你的備份上傳完成。"
  1428. #: plugins/CuraDrive/src/CreateBackupJob.py:103
  1429. msgctxt "@error:file_size"
  1430. msgid "The backup exceeds the maximum file size."
  1431. msgstr "備份超過了最大檔案大小。"
  1432. #: plugins/CuraDrive/src/DriveApiService.py:86
  1433. #: plugins/CuraDrive/src/RestoreBackupJob.py:26
  1434. msgctxt "@info:backup_status"
  1435. msgid "There was an error trying to restore your backup."
  1436. msgstr "嘗試恢復備份時發生錯誤。"
  1437. #: plugins/CuraDrive/src/DrivePluginExtension.py:69
  1438. msgctxt "@item:inmenu"
  1439. msgid "Manage backups"
  1440. msgstr "管理備份"
  1441. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1442. msgctxt "@button"
  1443. msgid "Want more?"
  1444. msgstr "想要更多?"
  1445. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1446. msgctxt "@button"
  1447. msgid "Backup Now"
  1448. msgstr "立即備份"
  1449. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1450. msgctxt "@checkbox:description"
  1451. msgid "Auto Backup"
  1452. msgstr "自動備份"
  1453. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1454. msgctxt "@checkbox:description"
  1455. msgid "Automatically create a backup each day that Cura is started."
  1456. msgstr "每天啟動 Cura 時自動建立備份。"
  1457. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  1458. msgctxt "@button"
  1459. msgid "Restore"
  1460. msgstr "復原"
  1461. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  1462. msgctxt "@dialog:title"
  1463. msgid "Delete Backup"
  1464. msgstr "刪除備份"
  1465. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  1466. msgctxt "@dialog:info"
  1467. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1468. msgstr "你確定要刪除此備份嗎? 這動作無法復原。"
  1469. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  1470. msgctxt "@dialog:title"
  1471. msgid "Restore Backup"
  1472. msgstr "復原備份"
  1473. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  1474. msgctxt "@dialog:info"
  1475. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1476. msgstr "在復原備份之前,你需要重新啟動 Cura。 你想要現在關閉 Cura 嗎?"
  1477. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1478. msgctxt "@backuplist:label"
  1479. msgid "Cura Version"
  1480. msgstr "Cura 版本"
  1481. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1482. msgctxt "@backuplist:label"
  1483. msgid "Machines"
  1484. msgstr "印表機"
  1485. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1486. msgctxt "@backuplist:label"
  1487. msgid "Materials"
  1488. msgstr "線材"
  1489. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1490. msgctxt "@backuplist:label"
  1491. msgid "Profiles"
  1492. msgstr "參數"
  1493. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1494. msgctxt "@backuplist:label"
  1495. msgid "Plugins"
  1496. msgstr "外掛"
  1497. #: plugins/CuraDrive/src/qml/main.qml:25
  1498. msgctxt "@title:window"
  1499. msgid "Cura Backups"
  1500. msgstr "Cura 備份"
  1501. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1502. msgctxt "@title"
  1503. msgid "My Backups"
  1504. msgstr "我的備份"
  1505. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36
  1506. msgctxt "@empty_state"
  1507. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1508. msgstr "你目前沒有任何備份。 使用「立即備份」按鈕建立一個。"
  1509. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55
  1510. msgctxt "@backup_limit_info"
  1511. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1512. msgstr "在預覽階段限制只能顯示 5 個備份。 刪除備份以顯示較舊的備份。"
  1513. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1514. msgctxt "@description"
  1515. msgid "Backup and synchronize your Cura settings."
  1516. msgstr "備份並同步你的 Cura 設定。"
  1517. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  1518. #: resources/qml/Account/GeneralOperations.qml:49
  1519. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180
  1520. #: resources/qml/WelcomePages/CloudContent.qml:212
  1521. msgctxt "@button"
  1522. msgid "Sign in"
  1523. msgstr "登入"
  1524. #: plugins/CuraEngineBackend/CuraEngineBackend.py:162
  1525. msgctxt "@message"
  1526. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  1527. msgstr "未知問題使切片失敗. 請考慮在我們的問題追蹤器內回報問題."
  1528. #: plugins/CuraEngineBackend/CuraEngineBackend.py:163
  1529. msgctxt "@message:title"
  1530. msgid "Slicing failed"
  1531. msgstr "切片失敗"
  1532. #: plugins/CuraEngineBackend/CuraEngineBackend.py:168
  1533. msgctxt "@message:button"
  1534. msgid "Report a bug"
  1535. msgstr "回報問題"
  1536. #: plugins/CuraEngineBackend/CuraEngineBackend.py:169
  1537. msgctxt "@message:description"
  1538. msgid "Report a bug on UltiMaker Cura's issue tracker."
  1539. msgstr "於UltiMaker Cura問題追蹤器中回報問題."
  1540. #: plugins/CuraEngineBackend/CuraEngineBackend.py:401
  1541. msgctxt "@info:status"
  1542. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  1543. msgstr "無法使用目前線材切片,因為它與所選機器或設定不相容。"
  1544. #: plugins/CuraEngineBackend/CuraEngineBackend.py:402
  1545. #: plugins/CuraEngineBackend/CuraEngineBackend.py:435
  1546. #: plugins/CuraEngineBackend/CuraEngineBackend.py:462
  1547. #: plugins/CuraEngineBackend/CuraEngineBackend.py:474
  1548. #: plugins/CuraEngineBackend/CuraEngineBackend.py:486
  1549. #: plugins/CuraEngineBackend/CuraEngineBackend.py:499
  1550. msgctxt "@info:title"
  1551. msgid "Unable to slice"
  1552. msgstr "無法切片"
  1553. #: plugins/CuraEngineBackend/CuraEngineBackend.py:434
  1554. #, python-brace-format
  1555. msgctxt "@info:status"
  1556. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  1557. msgstr "無法使用目前設定進行切片。以下設定存在錯誤:{0}"
  1558. #: plugins/CuraEngineBackend/CuraEngineBackend.py:461
  1559. #, python-brace-format
  1560. msgctxt "@info:status"
  1561. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  1562. msgstr "因部份模型設定問題無法進行切片。部份模型的下列設定有錯誤:{error_labels}"
  1563. #: plugins/CuraEngineBackend/CuraEngineBackend.py:473
  1564. msgctxt "@info:status"
  1565. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  1566. msgstr "無法切片(原因:換料塔或主位置無效)。"
  1567. #: plugins/CuraEngineBackend/CuraEngineBackend.py:485
  1568. #, python-format
  1569. msgctxt "@info:status"
  1570. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  1571. msgstr "有物件使用了被停用的擠出機 %s ,因此無法進行切片。"
  1572. #: plugins/CuraEngineBackend/CuraEngineBackend.py:495
  1573. msgctxt "@info:status"
  1574. msgid ""
  1575. "Please review settings and check if your models:\n"
  1576. "- Fit within the build volume\n"
  1577. "- Are assigned to an enabled extruder\n"
  1578. "- Are not all set as modifier meshes"
  1579. msgstr ""
  1580. "請檢查設定並檢查你的模型是否:\n"
  1581. "- 適合列印範圍\n"
  1582. "- 分配了一個已啟用的擠出機\n"
  1583. "- 沒有全部設定成修改網格"
  1584. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  1585. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  1586. msgctxt "@info:status"
  1587. msgid "Processing Layers"
  1588. msgstr "正在處理層"
  1589. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  1590. msgctxt "@info:title"
  1591. msgid "Information"
  1592. msgstr "資訊"
  1593. #: plugins/CuraProfileReader/__init__.py:14
  1594. #: plugins/CuraProfileWriter/__init__.py:14
  1595. msgctxt "@item:inlistbox"
  1596. msgid "Cura Profile"
  1597. msgstr "Cura 列印參數"
  1598. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216
  1599. msgctxt "@option"
  1600. msgid "Save Cura project and print file"
  1601. msgstr ""
  1602. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217
  1603. msgctxt "@option"
  1604. msgid "Save Cura project"
  1605. msgstr ""
  1606. #: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19
  1607. msgctxt "@text Placeholder for the username if it has been deleted"
  1608. msgid "deleted user"
  1609. msgstr ""
  1610. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1611. msgctxt "@info"
  1612. msgid "Could not access update information."
  1613. msgstr "無法存取更新資訊。"
  1614. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1615. #, python-brace-format
  1616. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1617. 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}."
  1618. msgstr "新的問題修復功能適用於您的 {machine_name}! 如果你準備好了,推薦您將列印機的軟體升級至最新版本 {latest_version}."
  1619. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1620. #, python-format
  1621. msgctxt "@info:title The %s gets replaced with the printer name."
  1622. msgid "New %s stable firmware available"
  1623. msgstr "新的%s軟體已可使用"
  1624. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1625. msgctxt "@action:button"
  1626. msgid "How to update"
  1627. msgstr "如何更新"
  1628. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  1629. msgctxt "@action"
  1630. msgid "Update Firmware"
  1631. msgstr "更新韌體"
  1632. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1633. msgctxt "@title"
  1634. msgid "Update Firmware"
  1635. msgstr "更新韌體"
  1636. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1637. msgctxt "@label"
  1638. 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."
  1639. msgstr "韌體是直接在 3D 印表機上運行的一個軟體。此韌體控制步進馬達,調節溫度讓印表機正常運作。"
  1640. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1641. msgctxt "@label"
  1642. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1643. msgstr "新印表機出廠配備的韌體完全可以正常使用,但新版本往往具有更多的新功能和改進。"
  1644. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1645. msgctxt "@action:button"
  1646. msgid "Automatically upgrade Firmware"
  1647. msgstr "自動升級韌體"
  1648. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1649. msgctxt "@action:button"
  1650. msgid "Upload custom Firmware"
  1651. msgstr "上傳自訂韌體"
  1652. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1653. msgctxt "@label"
  1654. msgid "Firmware can not be updated because there is no connection with the printer."
  1655. msgstr "因為沒有與印表機連線,無法更新韌體。"
  1656. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1657. msgctxt "@label"
  1658. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1659. msgstr "因為連線的印表機不支援更新韌體,無法更新韌體。"
  1660. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1661. msgctxt "@title:window"
  1662. msgid "Select custom firmware"
  1663. msgstr "選擇自訂韌體"
  1664. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113
  1665. msgctxt "@title:window"
  1666. msgid "Firmware Update"
  1667. msgstr "韌體更新"
  1668. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137
  1669. msgctxt "@label"
  1670. msgid "Updating firmware."
  1671. msgstr "更新韌體中..."
  1672. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139
  1673. msgctxt "@label"
  1674. msgid "Firmware update completed."
  1675. msgstr "韌體更新已完成。"
  1676. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141
  1677. msgctxt "@label"
  1678. msgid "Firmware update failed due to an unknown error."
  1679. msgstr "由於未知錯誤,韌體更新失敗。"
  1680. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1681. msgctxt "@label"
  1682. msgid "Firmware update failed due to an communication error."
  1683. msgstr "由於通訊錯誤,導致韌體更新失敗。"
  1684. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1685. msgctxt "@label"
  1686. msgid "Firmware update failed due to an input/output error."
  1687. msgstr "由於輸入/輸出錯誤,導致韌體更新失敗。"
  1688. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1689. msgctxt "@label"
  1690. msgid "Firmware update failed due to missing firmware."
  1691. msgstr "由於韌體遺失,導致韌體更新失敗。"
  1692. #: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17
  1693. msgctxt "@item:inlistbox"
  1694. msgid "Compressed G-code File"
  1695. msgstr "壓縮 G-code 檔案"
  1696. #: plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1697. msgctxt "@error:not supported"
  1698. msgid "GCodeGzWriter does not support text mode."
  1699. msgstr "G-code GZ 寫入器不支援非文字模式。"
  1700. #: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14
  1701. #: plugins/GCodeWriter/__init__.py:16
  1702. msgctxt "@item:inlistbox"
  1703. msgid "G-code File"
  1704. msgstr "G-code 檔案"
  1705. #: plugins/GCodeReader/FlavorParser.py:350
  1706. msgctxt "@info:status"
  1707. msgid "Parsing G-code"
  1708. msgstr "正在解析 G-code"
  1709. #: plugins/GCodeReader/FlavorParser.py:352
  1710. #: plugins/GCodeReader/FlavorParser.py:506
  1711. msgctxt "@info:title"
  1712. msgid "G-code Details"
  1713. msgstr "G-code 細項設定"
  1714. #: plugins/GCodeReader/FlavorParser.py:504
  1715. msgctxt "@info:generic"
  1716. 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."
  1717. msgstr "發送檔案之前,請確保 G-code 適用於目前印表機和印表機設定。目前 G-code 檔案可能不準確。"
  1718. #: plugins/GCodeReader/__init__.py:18
  1719. msgctxt "@item:inlistbox"
  1720. msgid "G File"
  1721. msgstr "G 檔案"
  1722. #: plugins/GCodeWriter/GCodeWriter.py:75
  1723. msgctxt "@error:not supported"
  1724. msgid "GCodeWriter does not support non-text mode."
  1725. msgstr "G-code 寫入器不支援非文字模式。"
  1726. #: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97
  1727. msgctxt "@warning:status"
  1728. msgid "Please prepare G-code before exporting."
  1729. msgstr "匯出前請先將 G-code 準備好。"
  1730. #: plugins/ImageReader/ConfigUI.qml:14
  1731. msgctxt "@title:window"
  1732. msgid "Convert Image"
  1733. msgstr ""
  1734. #: plugins/ImageReader/ConfigUI.qml:33
  1735. msgctxt "@action:label"
  1736. msgid "Height (mm)"
  1737. msgstr "高度 (mm)"
  1738. #: plugins/ImageReader/ConfigUI.qml:56
  1739. msgctxt "@info:tooltip"
  1740. msgid "The maximum distance of each pixel from \"Base.\""
  1741. msgstr "每個像素與底板的最大距離。"
  1742. #: plugins/ImageReader/ConfigUI.qml:66
  1743. msgctxt "@action:label"
  1744. msgid "Base (mm)"
  1745. msgstr "底板 (mm)"
  1746. #: plugins/ImageReader/ConfigUI.qml:90
  1747. msgctxt "@info:tooltip"
  1748. msgid "The base height from the build plate in millimeters."
  1749. msgstr "距離列印平台的底板高度,以毫米為單位。"
  1750. #: plugins/ImageReader/ConfigUI.qml:100
  1751. msgctxt "@action:label"
  1752. msgid "Width (mm)"
  1753. msgstr "寬度 (mm)"
  1754. #: plugins/ImageReader/ConfigUI.qml:124
  1755. msgctxt "@info:tooltip"
  1756. msgid "The width in millimeters on the build plate"
  1757. msgstr ""
  1758. #: plugins/ImageReader/ConfigUI.qml:134
  1759. msgctxt "@action:label"
  1760. msgid "Depth (mm)"
  1761. msgstr "深度 (mm)"
  1762. #: plugins/ImageReader/ConfigUI.qml:158
  1763. msgctxt "@info:tooltip"
  1764. msgid "The depth in millimeters on the build plate"
  1765. msgstr "列印平台深度,以毫米為單位"
  1766. #: plugins/ImageReader/ConfigUI.qml:187
  1767. msgctxt "@item:inlistbox"
  1768. msgid "Darker is higher"
  1769. msgstr "顏色越深高度越高"
  1770. #: plugins/ImageReader/ConfigUI.qml:188
  1771. msgctxt "@item:inlistbox"
  1772. msgid "Lighter is higher"
  1773. msgstr "顏色越淺高度越高"
  1774. #: plugins/ImageReader/ConfigUI.qml:195
  1775. msgctxt "@info:tooltip"
  1776. 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."
  1777. msgstr "若要列印浮雕,深色像素應該對應到較厚的位置,以阻擋更多的光通過。若要列印高度圖,淺色像素表示較高的地形,因此淺色像素應對應於產生的 3D 模型中較厚的位置。"
  1778. #: plugins/ImageReader/ConfigUI.qml:205
  1779. msgctxt "@action:label"
  1780. msgid "Color Model"
  1781. msgstr ""
  1782. #: plugins/ImageReader/ConfigUI.qml:224
  1783. msgctxt "@item:inlistbox"
  1784. msgid "Linear"
  1785. msgstr "線性"
  1786. #: plugins/ImageReader/ConfigUI.qml:225
  1787. msgctxt "@item:inlistbox"
  1788. msgid "Translucency"
  1789. msgstr "半透明"
  1790. #: plugins/ImageReader/ConfigUI.qml:232
  1791. msgctxt "@info:tooltip"
  1792. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1793. msgstr "若要列印浮雕,使用一個簡易的對數模型計算半透明效果。若要列印高度圖,將像素值線性對應到高度。"
  1794. #: plugins/ImageReader/ConfigUI.qml:242
  1795. msgctxt "@action:label"
  1796. msgid "1mm Transmittance (%)"
  1797. msgstr "1mm 透明度"
  1798. #: plugins/ImageReader/ConfigUI.qml:263
  1799. msgctxt "@info:tooltip"
  1800. 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."
  1801. msgstr "光線穿透 1mm 厚度列印件的百分比。降低此值可增加暗部的對比度,並降低亮部的對比度。"
  1802. #: plugins/ImageReader/ConfigUI.qml:274
  1803. msgctxt "@action:label"
  1804. msgid "Smoothing"
  1805. msgstr "平滑"
  1806. #: plugins/ImageReader/ConfigUI.qml:298
  1807. msgctxt "@info:tooltip"
  1808. msgid "The amount of smoothing to apply to the image."
  1809. msgstr "影像平滑程度。"
  1810. #: plugins/ImageReader/ConfigUI.qml:329
  1811. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136
  1812. #: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25
  1813. msgctxt "@action:button"
  1814. msgid "OK"
  1815. msgstr "確定"
  1816. #: plugins/ImageReader/__init__.py:14
  1817. msgctxt "@item:inlistbox"
  1818. msgid "JPG Image"
  1819. msgstr "JPG 圖片"
  1820. #: plugins/ImageReader/__init__.py:18
  1821. msgctxt "@item:inlistbox"
  1822. msgid "JPEG Image"
  1823. msgstr "JPEG 圖片"
  1824. #: plugins/ImageReader/__init__.py:22
  1825. msgctxt "@item:inlistbox"
  1826. msgid "PNG Image"
  1827. msgstr "PNG 圖片"
  1828. #: plugins/ImageReader/__init__.py:26
  1829. msgctxt "@item:inlistbox"
  1830. msgid "BMP Image"
  1831. msgstr "BMP 圖片"
  1832. #: plugins/ImageReader/__init__.py:30
  1833. msgctxt "@item:inlistbox"
  1834. msgid "GIF Image"
  1835. msgstr "GIF 圖片"
  1836. #: plugins/LegacyProfileReader/__init__.py:14
  1837. msgctxt "@item:inlistbox"
  1838. msgid "Cura 15.04 profiles"
  1839. msgstr "Cura 15.04 列印參數"
  1840. #: plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1841. msgctxt "@action"
  1842. msgid "Machine Settings"
  1843. msgstr "印表機設定"
  1844. #: plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1845. msgctxt "@title:tab"
  1846. msgid "Printer"
  1847. msgstr "印表機"
  1848. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1849. msgctxt "@title:label"
  1850. msgid "Nozzle Settings"
  1851. msgstr "噴頭設定"
  1852. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74
  1853. msgctxt "@label"
  1854. msgid "Nozzle size"
  1855. msgstr "噴頭孔徑"
  1856. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78
  1857. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92
  1858. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108
  1859. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123
  1860. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72
  1861. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87
  1862. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  1863. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1864. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1865. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1866. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1867. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1868. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85
  1869. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99
  1870. msgctxt "@label"
  1871. msgid "mm"
  1872. msgstr "mm"
  1873. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88
  1874. msgctxt "@label"
  1875. msgid "Compatible material diameter"
  1876. msgstr "相容的線材直徑"
  1877. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104
  1878. msgctxt "@label"
  1879. msgid "Nozzle offset X"
  1880. msgstr "噴頭偏移 X"
  1881. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119
  1882. msgctxt "@label"
  1883. msgid "Nozzle offset Y"
  1884. msgstr "噴頭偏移 Y"
  1885. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134
  1886. msgctxt "@label"
  1887. msgid "Cooling Fan Number"
  1888. msgstr "冷卻風扇數量"
  1889. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1890. msgctxt "@title:label"
  1891. msgid "Extruder Start G-code"
  1892. msgstr "擠出機起始 G-code"
  1893. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1894. msgctxt "@title:label"
  1895. msgid "Extruder End G-code"
  1896. msgstr "擠出機結束 G-code"
  1897. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1898. msgctxt "@title:label"
  1899. msgid "Printer Settings"
  1900. msgstr "印表機設定"
  1901. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68
  1902. msgctxt "@label"
  1903. msgid "X (Width)"
  1904. msgstr "X (寬度)"
  1905. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83
  1906. msgctxt "@label"
  1907. msgid "Y (Depth)"
  1908. msgstr "Y (深度)"
  1909. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1910. msgctxt "@label"
  1911. msgid "Z (Height)"
  1912. msgstr "Z (高度)"
  1913. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1914. msgctxt "@label"
  1915. msgid "Build plate shape"
  1916. msgstr "列印平台形狀"
  1917. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1918. msgctxt "@label"
  1919. msgid "Origin at center"
  1920. msgstr "原點位於中心"
  1921. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1922. msgctxt "@label"
  1923. msgid "Heated bed"
  1924. msgstr "熱床"
  1925. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1926. msgctxt "@label"
  1927. msgid "Heated build volume"
  1928. msgstr "熱箱"
  1929. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1930. msgctxt "@label"
  1931. msgid "G-code flavor"
  1932. msgstr "G-code 類型"
  1933. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1934. msgctxt "@title:label"
  1935. msgid "Printhead Settings"
  1936. msgstr "列印頭設定"
  1937. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197
  1938. msgctxt "@label"
  1939. msgid "X min"
  1940. msgstr "X 最小值"
  1941. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217
  1942. msgctxt "@label"
  1943. msgid "Y min"
  1944. msgstr "Y 最小值"
  1945. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237
  1946. msgctxt "@label"
  1947. msgid "X max"
  1948. msgstr "X 最大值"
  1949. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257
  1950. msgctxt "@label"
  1951. msgid "Y max"
  1952. msgstr "Y 最大值"
  1953. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275
  1954. msgctxt "@label"
  1955. msgid "Gantry Height"
  1956. msgstr "吊車高度"
  1957. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289
  1958. msgctxt "@label"
  1959. msgid "Number of Extruders"
  1960. msgstr "擠出機數目"
  1961. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341
  1962. msgctxt "@label"
  1963. msgid "Apply Extruder offsets to GCode"
  1964. msgstr "將擠出機偏移設定至Gcode"
  1965. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389
  1966. msgctxt "@title:label"
  1967. msgid "Start G-code"
  1968. msgstr "起始 G-code"
  1969. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400
  1970. msgctxt "@title:label"
  1971. msgid "End G-code"
  1972. msgstr "結束 G-code"
  1973. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  1974. msgctxt "@info:generic"
  1975. msgid "Do you want to sync material and software packages with your account?"
  1976. msgstr "你要使用你的帳號同步線材資料和軟體套件嗎?"
  1977. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  1978. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  1979. msgctxt "@info:title"
  1980. msgid "Changes detected from your UltiMaker account"
  1981. msgstr "從你的 UltiMaker 帳號偵測到資料更動"
  1982. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147
  1983. msgctxt "@action:button"
  1984. msgid "Sync"
  1985. msgstr "同步"
  1986. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  1987. msgctxt "@info:generic"
  1988. msgid "Syncing..."
  1989. msgstr "同步中..."
  1990. #: plugins/Marketplace/CloudSync/LicenseModel.py:12
  1991. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:79
  1992. msgctxt "@button"
  1993. msgid "Decline"
  1994. msgstr "拒絕"
  1995. #: plugins/Marketplace/CloudSync/LicenseModel.py:13
  1996. #: resources/qml/WelcomePages/UserAgreementContent.qml:53
  1997. msgctxt "@button"
  1998. msgid "Agree"
  1999. msgstr "同意"
  2000. #: plugins/Marketplace/CloudSync/LicenseModel.py:77
  2001. msgctxt "@title:window"
  2002. msgid "Plugin License Agreement"
  2003. msgstr "外掛授權協議"
  2004. #: plugins/Marketplace/CloudSync/LicensePresenter.py:42
  2005. msgctxt "@button"
  2006. msgid "Decline and remove from account"
  2007. msgstr "拒絕並從帳號中刪除"
  2008. #: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  2009. msgctxt "@info:generic"
  2010. msgid "You need to quit and restart {} before changes have effect."
  2011. msgstr "你需要結束並重新啟動 {} ,更動才能生效。"
  2012. #: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  2013. msgctxt "@info:generic"
  2014. msgid "{} plugins failed to download"
  2015. msgstr "下載外掛 {} 失敗"
  2016. #: plugins/Marketplace/LocalPackageList.py:28
  2017. msgctxt "@label"
  2018. msgid "Installed Plugins"
  2019. msgstr ""
  2020. #: plugins/Marketplace/LocalPackageList.py:29
  2021. msgctxt "@label"
  2022. msgid "Installed Materials"
  2023. msgstr ""
  2024. #: plugins/Marketplace/LocalPackageList.py:33
  2025. msgctxt "@label"
  2026. msgid "Bundled Plugins"
  2027. msgstr ""
  2028. #: plugins/Marketplace/LocalPackageList.py:34
  2029. msgctxt "@label"
  2030. msgid "Bundled Materials"
  2031. msgstr ""
  2032. #: plugins/Marketplace/PackageModel.py:43
  2033. msgctxt "@label:property"
  2034. msgid "Unknown Package"
  2035. msgstr ""
  2036. #: plugins/Marketplace/PackageModel.py:66
  2037. msgctxt "@label:property"
  2038. msgid "Unknown Author"
  2039. msgstr ""
  2040. #: plugins/Marketplace/PackageModel.py:95
  2041. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  2042. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  2043. msgstr ""
  2044. #: plugins/Marketplace/RemotePackageList.py:117
  2045. msgctxt "@info:error"
  2046. msgid "Could not interpret the server's response."
  2047. msgstr ""
  2048. #: plugins/Marketplace/RemotePackageList.py:148
  2049. msgctxt "@info:error"
  2050. msgid "Could not reach Marketplace."
  2051. msgstr ""
  2052. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  2053. msgctxt "@title"
  2054. msgid "Changes from your account"
  2055. msgstr "你帳戶的更動"
  2056. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2057. msgctxt "@button"
  2058. msgid "Dismiss"
  2059. msgstr "捨棄"
  2060. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2061. #: resources/qml/WelcomePages/DataCollectionsContent.qml:118
  2062. #: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76
  2063. #: resources/qml/WelcomePages/WhatsNewContent.qml:175
  2064. msgctxt "@button"
  2065. msgid "Next"
  2066. msgstr "下一步"
  2067. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  2068. msgctxt "@label"
  2069. msgid "The following packages will be added:"
  2070. msgstr "將新增下列套件:"
  2071. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94
  2072. msgctxt "@label"
  2073. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2074. msgstr "下列套件因 Cura 版本不相容,無法安裝:"
  2075. #: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15
  2076. msgctxt "@title"
  2077. msgid "Install missing Materials"
  2078. msgstr ""
  2079. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:15
  2080. msgctxt "@button"
  2081. msgid "Plugin license agreement"
  2082. msgstr ""
  2083. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:47
  2084. msgctxt "@text"
  2085. msgid "Please read and agree with the plugin licence."
  2086. msgstr ""
  2087. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:70
  2088. msgctxt "@button"
  2089. msgid "Accept"
  2090. msgstr ""
  2091. #: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2092. msgctxt "@info:tooltip"
  2093. msgid "Manage packages"
  2094. msgstr ""
  2095. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:12
  2096. msgctxt "@header"
  2097. msgid "Manage packages"
  2098. msgstr ""
  2099. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:16
  2100. msgctxt "@text"
  2101. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  2102. msgstr ""
  2103. #: plugins/Marketplace/resources/qml/Marketplace.qml:87
  2104. msgctxt "@title"
  2105. msgid "Loading..."
  2106. msgstr ""
  2107. #: plugins/Marketplace/resources/qml/Marketplace.qml:148
  2108. msgctxt "@button"
  2109. msgid "Plugins"
  2110. msgstr ""
  2111. #: plugins/Marketplace/resources/qml/Marketplace.qml:156
  2112. msgctxt "@button"
  2113. msgid "Materials"
  2114. msgstr ""
  2115. #: plugins/Marketplace/resources/qml/Marketplace.qml:193
  2116. msgctxt "@info"
  2117. msgid "Search in the browser"
  2118. msgstr ""
  2119. #: plugins/Marketplace/resources/qml/Marketplace.qml:271
  2120. msgctxt "@button"
  2121. msgid "In order to use the package you will need to restart Cura"
  2122. msgstr ""
  2123. #: plugins/Marketplace/resources/qml/Marketplace.qml:279
  2124. msgctxt "@info:button, %1 is the application name"
  2125. msgid "Quit %1"
  2126. msgstr "結束 %1"
  2127. #: plugins/Marketplace/resources/qml/Materials.qml:8
  2128. #: plugins/Marketplace/resources/qml/MissingPackages.qml:8
  2129. msgctxt "@header"
  2130. msgid "Install Materials"
  2131. msgstr ""
  2132. #: plugins/Marketplace/resources/qml/Materials.qml:12
  2133. msgctxt "@text"
  2134. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2135. msgstr ""
  2136. #: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  2137. msgctxt "@label"
  2138. msgid "You need to accept the license to install the package"
  2139. msgstr "你必需同意授權協議才能安裝套件"
  2140. #: plugins/Marketplace/resources/qml/OnboardBanner.qml:101
  2141. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205
  2142. msgctxt "@button:label"
  2143. msgid "Learn More"
  2144. msgstr ""
  2145. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170
  2146. msgctxt "@label Is followed by the name of an author"
  2147. msgid "By"
  2148. msgstr ""
  2149. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  2150. msgctxt "@button"
  2151. msgid "Disable"
  2152. msgstr ""
  2153. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  2154. msgctxt "@button"
  2155. msgid "Enable"
  2156. msgstr ""
  2157. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2158. msgctxt "@button"
  2159. msgid "Downgrading..."
  2160. msgstr ""
  2161. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243
  2162. msgctxt "@button"
  2163. msgid "Downgrade"
  2164. msgstr ""
  2165. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247
  2166. msgctxt "@button"
  2167. msgid "Installing..."
  2168. msgstr ""
  2169. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248
  2170. msgctxt "@button"
  2171. msgid "Install"
  2172. msgstr ""
  2173. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252
  2174. msgctxt "@button"
  2175. msgid "Uninstall"
  2176. msgstr ""
  2177. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  2178. msgctxt "@button"
  2179. msgid "Update"
  2180. msgstr ""
  2181. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  2182. msgctxt "@button"
  2183. msgid "Updating..."
  2184. msgstr ""
  2185. #: plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2186. msgctxt "@header"
  2187. msgid "Package details"
  2188. msgstr ""
  2189. #: plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2190. msgctxt "@button:tooltip"
  2191. msgid "Back"
  2192. msgstr ""
  2193. #: plugins/Marketplace/resources/qml/PackagePage.qml:81
  2194. msgctxt "@header"
  2195. msgid "Description"
  2196. msgstr ""
  2197. #: plugins/Marketplace/resources/qml/PackagePage.qml:110
  2198. msgctxt "@header"
  2199. msgid "Compatible printers"
  2200. msgstr ""
  2201. #: plugins/Marketplace/resources/qml/PackagePage.qml:134
  2202. msgctxt "@info"
  2203. msgid "No compatibility information"
  2204. msgstr ""
  2205. #: plugins/Marketplace/resources/qml/PackagePage.qml:152
  2206. msgctxt "@header"
  2207. msgid "Compatible support materials"
  2208. msgstr ""
  2209. #: plugins/Marketplace/resources/qml/PackagePage.qml:176
  2210. msgctxt "@info No materials"
  2211. msgid "None"
  2212. msgstr ""
  2213. #: plugins/Marketplace/resources/qml/PackagePage.qml:193
  2214. msgctxt "@header"
  2215. msgid "Compatible with Material Station"
  2216. msgstr ""
  2217. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  2218. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  2219. msgctxt "@info"
  2220. msgid "No"
  2221. msgstr ""
  2222. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  2223. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  2224. msgctxt "@info"
  2225. msgid "Yes"
  2226. msgstr ""
  2227. #: plugins/Marketplace/resources/qml/PackagePage.qml:219
  2228. msgctxt "@header"
  2229. msgid "Optimized for Air Manager"
  2230. msgstr ""
  2231. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  2232. msgctxt "@button"
  2233. msgid "Visit plug-in website"
  2234. msgstr ""
  2235. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  2236. msgctxt "@button"
  2237. msgid "Website"
  2238. msgstr ""
  2239. #: plugins/Marketplace/resources/qml/PackagePage.qml:252
  2240. msgctxt "@button"
  2241. msgid "Buy spool"
  2242. msgstr ""
  2243. #: plugins/Marketplace/resources/qml/PackagePage.qml:261
  2244. msgctxt "@button"
  2245. msgid "Safety datasheet"
  2246. msgstr ""
  2247. #: plugins/Marketplace/resources/qml/PackagePage.qml:270
  2248. msgctxt "@button"
  2249. msgid "Technical datasheet"
  2250. msgstr ""
  2251. #: plugins/Marketplace/resources/qml/Packages.qml:151
  2252. msgctxt "@button"
  2253. msgid "Failed to load packages:"
  2254. msgstr ""
  2255. #: plugins/Marketplace/resources/qml/Packages.qml:151
  2256. msgctxt "@button"
  2257. msgid "Retry?"
  2258. msgstr ""
  2259. #: plugins/Marketplace/resources/qml/Packages.qml:167
  2260. msgctxt "@button"
  2261. msgid "Loading"
  2262. msgstr ""
  2263. #: plugins/Marketplace/resources/qml/Packages.qml:183
  2264. msgctxt "@message"
  2265. msgid "No more results to load"
  2266. msgstr ""
  2267. #: plugins/Marketplace/resources/qml/Packages.qml:183
  2268. msgctxt "@message"
  2269. msgid "No results found with current filter"
  2270. msgstr ""
  2271. #: plugins/Marketplace/resources/qml/Packages.qml:226
  2272. msgctxt "@button"
  2273. msgid "Load more"
  2274. msgstr ""
  2275. #: plugins/Marketplace/resources/qml/Plugins.qml:8
  2276. msgctxt "@header"
  2277. msgid "Install Plugins"
  2278. msgstr ""
  2279. #: plugins/Marketplace/resources/qml/Plugins.qml:12
  2280. msgctxt "@text"
  2281. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  2282. msgstr ""
  2283. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2284. msgctxt "@info"
  2285. msgid "UltiMaker Verified Plug-in"
  2286. msgstr ""
  2287. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2288. msgctxt "@info"
  2289. msgid "UltiMaker Certified Material"
  2290. msgstr ""
  2291. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2292. msgctxt "@info"
  2293. msgid "UltiMaker Verified Package"
  2294. msgstr ""
  2295. #: plugins/ModelChecker/ModelChecker.py:31
  2296. msgctxt "@info:title"
  2297. msgid "3D Model Assistant"
  2298. msgstr "3D 模型助手"
  2299. #: plugins/ModelChecker/ModelChecker.py:97
  2300. #, python-brace-format
  2301. msgctxt "@info:status"
  2302. msgid ""
  2303. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  2304. "<p>{model_names}</p>\n"
  2305. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  2306. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  2307. msgstr ""
  2308. "<p>由於模型尺寸和線材設定的原因,一個或多個模型無法在最佳情狀下列印</p>\n"
  2309. "<p>{model_names}</p>\n"
  2310. "<p>了解如何確保最佳的列印品質和可靠性。</p>\n"
  2311. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">閱讀列印品質指南</a></p>"
  2312. #: plugins/MonitorStage/MonitorMain.qml:100
  2313. msgctxt "@info"
  2314. msgid ""
  2315. "Please make sure your printer has a connection:\n"
  2316. "- Check if the printer is turned on.\n"
  2317. "- Check if the printer is connected to the network.\n"
  2318. "- Check if you are signed in to discover cloud-connected printers."
  2319. msgstr ""
  2320. "請確認你的印表機有連接:\n"
  2321. "- 檢查印表機是否已打開。\n"
  2322. "- 檢查印表機是否已連接到網路。\n"
  2323. "- 檢查是否已登入以尋找雲端連接的印表機。"
  2324. #: plugins/MonitorStage/MonitorMain.qml:113
  2325. msgctxt "@info"
  2326. msgid "Please connect your printer to the network."
  2327. msgstr "請將你的印表機連上網路。"
  2328. #: plugins/MonitorStage/MonitorMain.qml:148
  2329. msgctxt "@label link to technical assistance"
  2330. msgid "View user manuals online"
  2331. msgstr "查看線上使用者手冊"
  2332. #: plugins/MonitorStage/MonitorMain.qml:164
  2333. msgctxt "@info"
  2334. msgid "In order to monitor your print from Cura, please connect the printer."
  2335. msgstr "為了監控您的印表機,請連結印表機."
  2336. #: plugins/MonitorStage/__init__.py:14
  2337. msgctxt "@item:inmenu"
  2338. msgid "Monitor"
  2339. msgstr "監控"
  2340. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  2341. msgctxt "@label"
  2342. msgid "Mesh Type"
  2343. msgstr "網格類型"
  2344. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  2345. msgctxt "@label"
  2346. msgid "Normal model"
  2347. msgstr "普通模型"
  2348. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  2349. msgctxt "@label"
  2350. msgid "Print as support"
  2351. msgstr "做為支撐"
  2352. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  2353. msgctxt "@label"
  2354. msgid "Modify settings for overlaps"
  2355. msgstr "修改重疊處設定"
  2356. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  2357. msgctxt "@label"
  2358. msgid "Don't support overlaps"
  2359. msgstr "重疊處不建立支撐"
  2360. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  2361. msgctxt "@item:inlistbox"
  2362. msgid "Infill mesh only"
  2363. msgstr "只填充網格"
  2364. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161
  2365. msgctxt "@item:inlistbox"
  2366. msgid "Cutting mesh"
  2367. msgstr "切割網格"
  2368. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386
  2369. msgctxt "@action:button"
  2370. msgid "Select settings"
  2371. msgstr "選擇設定"
  2372. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  2373. msgctxt "@title:window"
  2374. msgid "Select Settings to Customize for this model"
  2375. msgstr "選擇對此模型的自訂設定"
  2376. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  2377. #: resources/qml/Preferences/SettingVisibilityPage.qml:102
  2378. msgctxt "@label:textbox"
  2379. msgid "Filter..."
  2380. msgstr "篩選..."
  2381. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  2382. msgctxt "@label:checkbox"
  2383. msgid "Show all"
  2384. msgstr "顯示全部"
  2385. #: plugins/PerObjectSettingsTool/__init__.py:14
  2386. msgctxt "@label"
  2387. msgid "Per Model Settings"
  2388. msgstr "單一模型設定"
  2389. #: plugins/PerObjectSettingsTool/__init__.py:15
  2390. msgctxt "@info:tooltip"
  2391. msgid "Configure Per Model Settings"
  2392. msgstr "設定對每個模型的單獨設定"
  2393. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  2394. msgctxt "@item:inmenu"
  2395. msgid "Post Processing"
  2396. msgstr "後處理"
  2397. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  2398. msgctxt "@item:inmenu"
  2399. msgid "Modify G-Code"
  2400. msgstr "修改 G-Code 檔案"
  2401. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2402. msgctxt "@title:window"
  2403. msgid "Post Processing Plugin"
  2404. msgstr "後處理外掛"
  2405. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2406. msgctxt "@label"
  2407. msgid "Post Processing Scripts"
  2408. msgstr "後處理腳本"
  2409. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215
  2410. msgctxt "@action"
  2411. msgid "Add a script"
  2412. msgstr "添加一個腳本"
  2413. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251
  2414. msgctxt "@label"
  2415. msgid "Settings"
  2416. msgstr "設定"
  2417. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460
  2418. msgctxt "@info:tooltip"
  2419. msgid "Change active post-processing scripts."
  2420. msgstr "更改目前啟用的後處理腳本。"
  2421. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  2422. msgctxt "@info:tooltip"
  2423. msgid "The following script is active:"
  2424. msgid_plural "The following scripts are active:"
  2425. msgstr[0] "下列為啟用中的腳本:"
  2426. #: plugins/PrepareStage/PrepareMenu.qml:74
  2427. msgctxt "@button"
  2428. msgid "Add printer"
  2429. msgstr "新增印表機"
  2430. #: plugins/PrepareStage/PrepareMenu.qml:90
  2431. msgctxt "@button"
  2432. msgid "Manage printers"
  2433. msgstr "管理印表機"
  2434. #: plugins/PrepareStage/__init__.py:12
  2435. msgctxt "@item:inmenu"
  2436. msgid "Prepare"
  2437. msgstr "準備"
  2438. #: plugins/PreviewStage/__init__.py:13
  2439. msgctxt "@item:inmenu"
  2440. msgid "Preview"
  2441. msgstr "預覽"
  2442. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  2443. msgctxt "@action:button Preceded by 'Ready to'."
  2444. msgid "Save to Removable Drive"
  2445. msgstr "儲存至行動裝置"
  2446. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  2447. #, python-brace-format
  2448. msgctxt "@item:inlistbox"
  2449. msgid "Save to Removable Drive {0}"
  2450. msgstr "儲存到行動裝置 {0}"
  2451. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  2452. #: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  2453. msgctxt "@info:status"
  2454. msgid "There are no file formats available to write with!"
  2455. msgstr "沒有可供寫入的檔案格式!"
  2456. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  2457. #, python-brace-format
  2458. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2459. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2460. msgstr "正在儲存到行動裝置 <filename>{0}</filename>"
  2461. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110
  2462. msgctxt "@info:title"
  2463. msgid "Saving"
  2464. msgstr "儲存中"
  2465. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120
  2466. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  2467. #, python-brace-format
  2468. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2469. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  2470. msgstr "無法儲存到 <filename>{0}</filename>:<message>{1}</message>"
  2471. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  2472. #, python-brace-format
  2473. msgctxt "@info:status Don't translate the tag {device}!"
  2474. msgid "Could not find a file name when trying to write to {device}."
  2475. msgstr "嘗試寫入到 {device} 時無法找到檔名。"
  2476. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152
  2477. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171
  2478. #, python-brace-format
  2479. msgctxt "@info:status"
  2480. msgid "Could not save to removable drive {0}: {1}"
  2481. msgstr "無法儲存到行動裝置 {0}:{1}"
  2482. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162
  2483. #, python-brace-format
  2484. msgctxt "@info:status"
  2485. msgid "Saved to Removable Drive {0} as {1}"
  2486. msgstr "儲存到行動裝置 {0}:{1}"
  2487. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  2488. msgctxt "@info:title"
  2489. msgid "File Saved"
  2490. msgstr "檔案已儲存"
  2491. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2492. msgctxt "@action:button"
  2493. msgid "Eject"
  2494. msgstr "卸載"
  2495. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2496. #, python-brace-format
  2497. msgctxt "@action"
  2498. msgid "Eject removable device {0}"
  2499. msgstr "卸載行動裝置 {0}"
  2500. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184
  2501. #, python-brace-format
  2502. msgctxt "@info:status"
  2503. msgid "Ejected {0}. You can now safely remove the drive."
  2504. msgstr "已卸載 {0}。現在你可以安全地移除行動裝置。"
  2505. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185
  2506. msgctxt "@info:title"
  2507. msgid "Safely Remove Hardware"
  2508. msgstr "安全移除硬體"
  2509. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188
  2510. #, python-brace-format
  2511. msgctxt "@info:status"
  2512. msgid "Failed to eject {0}. Another program may be using the drive."
  2513. msgstr "無法卸載 {0},可能有其它程式正在使用行動裝置。"
  2514. #: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  2515. msgctxt "@item:intext"
  2516. msgid "Removable Drive"
  2517. msgstr "行動裝置"
  2518. #: plugins/SimulationView/SimulationView.py:129
  2519. msgctxt "@info:status"
  2520. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  2521. msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層。"
  2522. #: plugins/SimulationView/SimulationView.py:130
  2523. msgctxt "@info:title"
  2524. msgid "Simulation View"
  2525. msgstr "模擬檢視"
  2526. #: plugins/SimulationView/SimulationView.py:133
  2527. msgctxt "@info:status"
  2528. msgid "Nothing is shown because you need to slice first."
  2529. msgstr "因為你還沒切片,沒有東西可顯示。"
  2530. #: plugins/SimulationView/SimulationView.py:134
  2531. msgctxt "@info:title"
  2532. msgid "No layers to show"
  2533. msgstr "沒有列印層可顯示"
  2534. #: plugins/SimulationView/SimulationView.py:136
  2535. #: plugins/SolidView/SolidView.py:74
  2536. msgctxt "@info:option_text"
  2537. msgid "Do not show this message again"
  2538. msgstr "不要再顯示這個訊息"
  2539. #: plugins/SimulationView/SimulationViewMenuComponent.qml:18
  2540. #: plugins/SimulationView/SimulationViewMenuComponent.qml:47
  2541. msgctxt "@label"
  2542. msgid "Color scheme"
  2543. msgstr "顏色方案"
  2544. #: plugins/SimulationView/SimulationViewMenuComponent.qml:104
  2545. msgctxt "@label:listbox"
  2546. msgid "Material Color"
  2547. msgstr "線材顏色"
  2548. #: plugins/SimulationView/SimulationViewMenuComponent.qml:108
  2549. msgctxt "@label:listbox"
  2550. msgid "Line Type"
  2551. msgstr "線條類型"
  2552. #: plugins/SimulationView/SimulationViewMenuComponent.qml:112
  2553. msgctxt "@label:listbox"
  2554. msgid "Speed"
  2555. msgstr "速度"
  2556. #: plugins/SimulationView/SimulationViewMenuComponent.qml:116
  2557. msgctxt "@label:listbox"
  2558. msgid "Layer Thickness"
  2559. msgstr "層厚"
  2560. #: plugins/SimulationView/SimulationViewMenuComponent.qml:120
  2561. msgctxt "@label:listbox"
  2562. msgid "Line Width"
  2563. msgstr "線寬"
  2564. #: plugins/SimulationView/SimulationViewMenuComponent.qml:124
  2565. msgctxt "@label:listbox"
  2566. msgid "Flow"
  2567. msgstr "流動"
  2568. #: plugins/SimulationView/SimulationViewMenuComponent.qml:164
  2569. msgctxt "@label"
  2570. msgid "Compatibility Mode"
  2571. msgstr "相容模式"
  2572. #: plugins/SimulationView/SimulationViewMenuComponent.qml:231
  2573. msgctxt "@label"
  2574. msgid "Travels"
  2575. msgstr "移動軌跡"
  2576. #: plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2577. msgctxt "@label"
  2578. msgid "Helpers"
  2579. msgstr "輔助結構"
  2580. #: plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2581. msgctxt "@label"
  2582. msgid "Shell"
  2583. msgstr "外殼"
  2584. #: plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2585. msgctxt "@label"
  2586. msgid "Infill"
  2587. msgstr "填充"
  2588. #: plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2589. msgctxt "@label"
  2590. msgid "Starts"
  2591. msgstr "啟動"
  2592. #: plugins/SimulationView/SimulationViewMenuComponent.qml:304
  2593. msgctxt "@label"
  2594. msgid "Only Show Top Layers"
  2595. msgstr "只顯示頂層"
  2596. #: plugins/SimulationView/SimulationViewMenuComponent.qml:313
  2597. msgctxt "@label"
  2598. msgid "Show 5 Detailed Layers On Top"
  2599. msgstr "顯示頂端 5 層列印細節"
  2600. #: plugins/SimulationView/SimulationViewMenuComponent.qml:326
  2601. msgctxt "@label"
  2602. msgid "Top / Bottom"
  2603. msgstr "頂 / 底層"
  2604. #: plugins/SimulationView/SimulationViewMenuComponent.qml:330
  2605. msgctxt "@label"
  2606. msgid "Inner Wall"
  2607. msgstr "內壁"
  2608. #: plugins/SimulationView/SimulationViewMenuComponent.qml:397
  2609. msgctxt "@label"
  2610. msgid "min"
  2611. msgstr "最小值"
  2612. #: plugins/SimulationView/SimulationViewMenuComponent.qml:462
  2613. msgctxt "@label"
  2614. msgid "max"
  2615. msgstr "最大值"
  2616. # Added manually to fix a string that was changed after string freeze.
  2617. #: plugins/SimulationView/__init__.py:15
  2618. msgctxt "@item:inlistbox"
  2619. msgid "Layer view"
  2620. msgstr "分層檢視"
  2621. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2622. msgctxt "@title:window"
  2623. msgid "More information on anonymous data collection"
  2624. msgstr "更多關於匿名資料收集的資訊"
  2625. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73
  2626. msgctxt "@text:window"
  2627. 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:"
  2628. msgstr "UltiMaker Cura 搜集匿名資料以提高列印品質和使用者體驗。以下是共享資料的範例:"
  2629. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107
  2630. msgctxt "@text:window"
  2631. msgid "I don't want to send anonymous data"
  2632. msgstr "我不想傳送匿名資料"
  2633. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116
  2634. msgctxt "@text:window"
  2635. msgid "Allow sending anonymous data"
  2636. msgstr "允許傳送匿名資料"
  2637. #: plugins/SliceInfoPlugin/SliceInfo.py:95
  2638. msgctxt "@text"
  2639. msgid "Unable to read example data file."
  2640. msgstr "無法讀取範例資料檔案."
  2641. #: plugins/SolidView/SolidView.py:71
  2642. msgctxt "@info:status"
  2643. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  2644. msgstr "模型區域顯示已遺失或突出表面, 請修復您的模型並重新匯入Cura."
  2645. #: plugins/SolidView/SolidView.py:73
  2646. msgctxt "@info:title"
  2647. msgid "Model Errors"
  2648. msgstr "模型錯誤"
  2649. #: plugins/SolidView/__init__.py:12
  2650. msgctxt "@item:inmenu"
  2651. msgid "Solid view"
  2652. msgstr "實體檢視"
  2653. #: plugins/SupportEraser/__init__.py:12
  2654. msgctxt "@label"
  2655. msgid "Support Blocker"
  2656. msgstr "支撐阻斷器"
  2657. #: plugins/SupportEraser/__init__.py:13
  2658. msgctxt "@info:tooltip"
  2659. msgid "Create a volume in which supports are not printed."
  2660. msgstr "建立一塊不列印支撐的空間。"
  2661. #: plugins/TrimeshReader/__init__.py:15
  2662. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2663. msgid "Open Compressed Triangle Mesh"
  2664. msgstr "打開壓縮的三角面網格"
  2665. #: plugins/TrimeshReader/__init__.py:19
  2666. msgctxt "@item:inlistbox"
  2667. msgid "COLLADA Digital Asset Exchange"
  2668. msgstr "COLLADA Digital Asset Exchange"
  2669. #: plugins/TrimeshReader/__init__.py:23
  2670. msgctxt "@item:inlistbox"
  2671. msgid "glTF Binary"
  2672. msgstr "glTF Binary"
  2673. #: plugins/TrimeshReader/__init__.py:27
  2674. msgctxt "@item:inlistbox"
  2675. msgid "glTF Embedded JSON"
  2676. msgstr "glTF Embedded JSON"
  2677. #: plugins/TrimeshReader/__init__.py:36
  2678. msgctxt "@item:inlistbox"
  2679. msgid "Stanford Triangle Format"
  2680. msgstr "Stanford 三角形格式"
  2681. #: plugins/TrimeshReader/__init__.py:40
  2682. msgctxt "@item:inlistbox"
  2683. msgid "Compressed COLLADA Digital Asset Exchange"
  2684. msgstr "Compressed COLLADA Digital Asset Exchange"
  2685. #: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28
  2686. msgctxt "@item:inlistbox"
  2687. msgid "UltiMaker Format Package"
  2688. msgstr "UltiMaker 格式的封包"
  2689. #: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80
  2690. #: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115
  2691. #: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180
  2692. msgctxt "@info:error"
  2693. msgid "Can't write to UFP file:"
  2694. msgstr "無法寫入 UFP 檔案:"
  2695. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  2696. msgctxt "@title:window"
  2697. msgid "Connect to Networked Printer"
  2698. msgstr "連接到網路印表機"
  2699. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2700. msgctxt "@label"
  2701. msgid "Select your printer from the list below:"
  2702. msgstr "從下列清單中選擇你的印表機:"
  2703. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2704. msgctxt "@label"
  2705. 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."
  2706. msgstr "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。"
  2707. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  2708. msgctxt "@action:button"
  2709. msgid "Edit"
  2710. msgstr "編輯"
  2711. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  2712. #: resources/qml/Preferences/MachinesPage.qml:153
  2713. #: resources/qml/Preferences/Materials/MaterialsPage.qml:186
  2714. #: resources/qml/Preferences/ProfilesPage.qml:321
  2715. msgctxt "@action:button"
  2716. msgid "Remove"
  2717. msgstr "移除"
  2718. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  2719. msgctxt "@action:button"
  2720. msgid "Refresh"
  2721. msgstr "刷新"
  2722. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  2723. msgctxt "@label"
  2724. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2725. msgstr "如果你的印表機未被列出,請閱讀<a href='%1'>網路列印故障排除指南</a>"
  2726. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  2727. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247
  2728. msgctxt "@label"
  2729. msgid "Type"
  2730. msgstr "類型"
  2731. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  2732. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256
  2733. msgctxt "@label"
  2734. msgid "Firmware version"
  2735. msgstr "韌體版本"
  2736. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  2737. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266
  2738. msgctxt "@label"
  2739. msgid "Address"
  2740. msgstr "位址"
  2741. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  2742. msgctxt "@label"
  2743. msgid "This printer is not set up to host a group of printers."
  2744. msgstr "此印表機未被設定為管理印表機群組。"
  2745. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  2746. msgctxt "@label"
  2747. msgid "This printer is the host for a group of %1 printers."
  2748. msgstr "此印表機為 %1 印表機群組的管理者。"
  2749. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  2750. msgctxt "@label"
  2751. msgid "The printer at this address has not yet responded."
  2752. msgstr "該網路位址的印表機尚無回應。"
  2753. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  2754. msgctxt "@action:button"
  2755. msgid "Connect"
  2756. msgstr "連接"
  2757. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  2758. msgctxt "@title:window"
  2759. msgid "Invalid IP address"
  2760. msgstr "無效的 IP 位址"
  2761. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  2762. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141
  2763. msgctxt "@text"
  2764. msgid "Please enter a valid IP address."
  2765. msgstr "請輸入有效的 IP 位址 。"
  2766. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  2767. msgctxt "@title:window"
  2768. msgid "Printer Address"
  2769. msgstr "印表機網路位址"
  2770. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2771. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97
  2772. msgctxt "@label"
  2773. msgid "Enter the IP address of your printer on the network."
  2774. msgstr "輸入印表機的 IP 位址。"
  2775. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2776. msgctxt "@title:window"
  2777. msgid "Configuration Changes"
  2778. msgstr "修改設定"
  2779. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  2780. msgctxt "@action:button"
  2781. msgid "Override"
  2782. msgstr "覆寫"
  2783. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  2784. msgctxt "@label"
  2785. msgid "The assigned printer, %1, requires the following configuration change:"
  2786. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2787. msgstr[0] "分配的印表機 %1 需要下列的設定更動:"
  2788. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  2789. msgctxt "@label"
  2790. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2791. msgstr "已分配到印表機 %1,但列印工作含有未知的線材設定。"
  2792. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  2793. msgctxt "@label"
  2794. msgid "Change material %1 from %2 to %3."
  2795. msgstr "將線材 %1 從 %2 改成 %3。"
  2796. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  2797. msgctxt "@label"
  2798. msgid "Load %3 as material %1 (This cannot be overridden)."
  2799. msgstr "將 %3 做為線材 %1 載入(無法覆寫)。"
  2800. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  2801. msgctxt "@label"
  2802. msgid "Change print core %1 from %2 to %3."
  2803. msgstr "將 print core %1 從 %2 改成 %3。"
  2804. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110
  2805. msgctxt "@label"
  2806. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2807. msgstr "覆寫會將指定的設定套用在現有的印表機上。這可能導致列印失敗。"
  2808. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2809. msgctxt "@label"
  2810. msgid "Move to top"
  2811. msgstr "移至頂端"
  2812. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155
  2813. msgctxt "@label"
  2814. msgid "Delete"
  2815. msgstr "刪除"
  2816. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186
  2817. #: resources/qml/MonitorButton.qml:284
  2818. msgctxt "@label"
  2819. msgid "Resume"
  2820. msgstr "繼續"
  2821. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188
  2822. msgctxt "@label"
  2823. msgid "Pausing..."
  2824. msgstr "正在暫停..."
  2825. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190
  2826. msgctxt "@label"
  2827. msgid "Resuming..."
  2828. msgstr "正在繼續..."
  2829. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192
  2830. #: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288
  2831. msgctxt "@label"
  2832. msgid "Pause"
  2833. msgstr "暫停"
  2834. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2835. msgctxt "@label"
  2836. msgid "Abort"
  2837. msgstr "中斷"
  2838. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2839. msgctxt "@label"
  2840. msgid "Aborting..."
  2841. msgstr "正在中斷..."
  2842. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218
  2843. msgctxt "@label %1 is the name of a print job."
  2844. msgid "Are you sure you want to move %1 to the top of the queue?"
  2845. msgstr "你確定要將 %1 移至隊列的頂端嗎?"
  2846. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219
  2847. msgctxt "@window:title"
  2848. msgid "Move print job to top"
  2849. msgstr "將列印作業移至最頂端"
  2850. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227
  2851. msgctxt "@label %1 is the name of a print job."
  2852. msgid "Are you sure you want to delete %1?"
  2853. msgstr "你確定要刪除 %1 嗎?"
  2854. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228
  2855. msgctxt "@window:title"
  2856. msgid "Delete print job"
  2857. msgstr "刪除列印作業"
  2858. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236
  2859. msgctxt "@label %1 is the name of a print job."
  2860. msgid "Are you sure you want to abort %1?"
  2861. msgstr "你確定要中斷 %1 嗎?"
  2862. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237
  2863. #: resources/qml/MonitorButton.qml:326
  2864. msgctxt "@window:title"
  2865. msgid "Abort print"
  2866. msgstr "中斷列印"
  2867. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  2868. msgctxt "@label"
  2869. msgid "Unavailable printer"
  2870. msgstr "無法使用的印表機"
  2871. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  2872. msgctxt "@label"
  2873. msgid "First available"
  2874. msgstr "可用的第一個"
  2875. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242
  2876. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246
  2877. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472
  2878. msgctxt "@info"
  2879. msgid "Please update your printer's firmware to manage the queue remotely."
  2880. msgstr "請更新你印表機的韌體以便遠端管理工作隊列。"
  2881. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  2882. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2883. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2884. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2885. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2886. msgctxt "@label:status"
  2887. msgid "Aborted"
  2888. msgstr "已中斷"
  2889. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  2890. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  2891. msgctxt "@label:status"
  2892. msgid "Finished"
  2893. msgstr "已完成"
  2894. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  2895. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2896. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2897. msgctxt "@label:status"
  2898. msgid "Preparing..."
  2899. msgstr "正在準備..."
  2900. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2901. msgctxt "@label:status"
  2902. msgid "Aborting..."
  2903. msgstr "正在中斷..."
  2904. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2905. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2906. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2907. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2908. msgctxt "@label:status"
  2909. msgid "Failed"
  2910. msgstr "失敗"
  2911. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2912. msgctxt "@label:status"
  2913. msgid "Pausing..."
  2914. msgstr "正在暫停..."
  2915. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2916. msgctxt "@label:status"
  2917. msgid "Paused"
  2918. msgstr "已暫停"
  2919. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2920. msgctxt "@label:status"
  2921. msgid "Resuming..."
  2922. msgstr "正在繼續..."
  2923. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2924. msgctxt "@label:status"
  2925. msgid "Action required"
  2926. msgstr "需要採取的動作"
  2927. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2928. msgctxt "@label:status"
  2929. msgid "Finishes %1 at %2"
  2930. msgstr "在 %2 完成 %1"
  2931. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  2932. msgctxt "@label link to Connect and Cloud interfaces"
  2933. msgid "Manage printer"
  2934. msgstr "管理印表機"
  2935. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280
  2936. msgctxt "@info"
  2937. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  2938. msgstr "網路攝影機無法從UltiMaker Cura中瀏覽,請點擊\"管理列印機\"並從Ultimaker Digital Factory中瀏覽網路攝影機."
  2939. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340
  2940. msgctxt "@label:status"
  2941. msgid "Loading..."
  2942. msgstr "正在載入..."
  2943. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344
  2944. msgctxt "@label:status"
  2945. msgid "Unavailable"
  2946. msgstr "無法使用"
  2947. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2948. msgctxt "@label:status"
  2949. msgid "Unreachable"
  2950. msgstr "無法連接"
  2951. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2952. msgctxt "@label:status"
  2953. msgid "Idle"
  2954. msgstr "閒置中"
  2955. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361
  2956. msgctxt "@label:status"
  2957. msgid "Printing"
  2958. msgstr "正在列印"
  2959. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402
  2960. msgctxt "@label"
  2961. msgid "Untitled"
  2962. msgstr "無標題"
  2963. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417
  2964. msgctxt "@label"
  2965. msgid "Anonymous"
  2966. msgstr "匿名"
  2967. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438
  2968. msgctxt "@label:status"
  2969. msgid "Requires configuration changes"
  2970. msgstr "需要修改設定"
  2971. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452
  2972. msgctxt "@action:button"
  2973. msgid "Details"
  2974. msgstr "細項"
  2975. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  2976. msgctxt "@label"
  2977. msgid "Queued"
  2978. msgstr "已排入隊列"
  2979. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64
  2980. msgctxt "@label link to connect manager"
  2981. msgid "Manage in browser"
  2982. msgstr "使用瀏覽器管理"
  2983. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91
  2984. msgctxt "@label"
  2985. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2986. msgstr "目前沒有列印作業在隊列中。可透過切片並傳送列印作來增加一個。"
  2987. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2988. msgctxt "@label"
  2989. msgid "Print jobs"
  2990. msgstr "列印作業"
  2991. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108
  2992. msgctxt "@label"
  2993. msgid "Total print time"
  2994. msgstr "總列印時間"
  2995. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117
  2996. msgctxt "@label"
  2997. msgid "Waiting for"
  2998. msgstr "等待"
  2999. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117
  3000. msgctxt "@info"
  3001. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  3002. msgstr ""
  3003. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129
  3004. msgctxt "@button"
  3005. msgid "View printers in Digital Factory"
  3006. msgstr ""
  3007. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  3008. msgctxt "@title:window"
  3009. msgid "Print over network"
  3010. msgstr "網路連線列印"
  3011. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  3012. msgctxt "@action:button"
  3013. msgid "Print"
  3014. msgstr "列印"
  3015. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  3016. msgctxt "@label"
  3017. msgid "Printer selection"
  3018. msgstr "印表機選擇"
  3019. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80
  3020. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  3021. msgctxt "@action:button"
  3022. msgid "Print via cloud"
  3023. msgstr "透過雲端服務列印"
  3024. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81
  3025. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  3026. msgctxt "@properties:tooltip"
  3027. msgid "Print via cloud"
  3028. msgstr "透過雲端服務列印"
  3029. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82
  3030. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164
  3031. msgctxt "@info:status"
  3032. msgid "Connected via cloud"
  3033. msgstr "透過雲端服務連接"
  3034. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276
  3035. msgctxt "@action:button"
  3036. msgid "Monitor print"
  3037. msgstr "監控列印"
  3038. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278
  3039. msgctxt "@action:tooltip"
  3040. msgid "Track the print in Ultimaker Digital Factory"
  3041. msgstr "在Ultimaker Digital Factory中追蹤您的列印"
  3042. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298
  3043. #, python-brace-format
  3044. msgctxt "@error:send"
  3045. msgid "Unknown error code when uploading print job: {0}"
  3046. msgstr "不明上傳列印作業錯誤代碼:{0}"
  3047. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  3048. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23
  3049. msgctxt "info:name"
  3050. msgid "Ultimaker Digital Factory"
  3051. msgstr "Ultimaker Digital Factory"
  3052. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  3053. #, python-brace-format
  3054. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3055. msgid "{printer_name} will be removed until the next account sync."
  3056. msgstr "{printer_name} 將被移除,直到下次帳號同步之前。"
  3057. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426
  3058. #, python-brace-format
  3059. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3060. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3061. msgstr "要永久移除 {printer_name},請前往 {digital_factory_link}"
  3062. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427
  3063. #, python-brace-format
  3064. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3065. msgid "Are you sure you want to remove {printer_name} temporarily?"
  3066. msgstr "你確定要暫時移除 {printer_name} 嗎?"
  3067. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474
  3068. msgctxt "@title:window"
  3069. msgid "Remove printers?"
  3070. msgstr "移除印表機?"
  3071. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477
  3072. #, python-brace-format
  3073. msgctxt "@label"
  3074. msgid ""
  3075. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  3076. "Are you sure you want to continue?"
  3077. msgid_plural ""
  3078. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  3079. "Are you sure you want to continue?"
  3080. msgstr[0] ""
  3081. "你將從 Cura 移除 {0} 印表機。此動作無法復原。\n"
  3082. "你確定要繼續嗎?"
  3083. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484
  3084. msgctxt "@label"
  3085. msgid ""
  3086. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  3087. "Are you sure you want to continue?"
  3088. msgstr ""
  3089. "你將從 Cura 移除所有印表機。此動作無法復原。\n"
  3090. "你確定要繼續嗎?"
  3091. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  3092. #, python-brace-format
  3093. msgctxt "@info:status"
  3094. msgid ""
  3095. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  3096. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  3097. msgstr ""
  3098. "您的列印機 <b>{printer_name}</b> 可以透過雲端連接.\n"
  3099. "\v透過連接Digital Factory使您可以任意管理列印順序及監控列印"
  3100. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  3101. msgctxt "@info:title"
  3102. msgid "Are you ready for cloud printing?"
  3103. msgstr "您準備好雲端列印嗎?"
  3104. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  3105. msgctxt "@action"
  3106. msgid "Get started"
  3107. msgstr "開始"
  3108. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  3109. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24
  3110. msgctxt "@action"
  3111. msgid "Learn more"
  3112. msgstr "學習更多"
  3113. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  3114. #, fuzzy
  3115. msgctxt "@info:status"
  3116. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  3117. msgstr "你正在嘗試連接到一台未安裝 UltiMaker Connect 的印表機。請將印表機更新至最新版本的韌體。"
  3118. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  3119. msgctxt "@info:title"
  3120. msgid "Update your printer"
  3121. msgstr "更新你印表機"
  3122. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  3123. #, python-brace-format
  3124. msgctxt "@info:status"
  3125. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  3126. msgstr "Cura 偵測到群組 {0} 的管理主機上未安裝的線材參數。"
  3127. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  3128. msgctxt "@info:title"
  3129. msgid "Sending materials to printer"
  3130. msgstr "向印表機傳送線材參數中"
  3131. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13
  3132. #, fuzzy
  3133. msgctxt "info:status"
  3134. msgid "New printer detected from your Ultimaker account"
  3135. msgid_plural "New printers detected from your Ultimaker account"
  3136. msgstr[0] "從你的 Ultimaker 帳號偵測到新的印表機"
  3137. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29
  3138. #, python-brace-format
  3139. msgctxt "info:status Filled in with printer name and printer model."
  3140. msgid "Adding printer {name} ({model}) from your account"
  3141. msgstr "從你的帳號新增印表機 {name} ({model})"
  3142. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48
  3143. #, python-brace-format
  3144. msgctxt "info:{0} gets replaced by a number of printers"
  3145. msgid "... and {0} other"
  3146. msgid_plural "... and {0} others"
  3147. msgstr[0] "… 和 {0} 其他"
  3148. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57
  3149. msgctxt "info:status"
  3150. msgid "Printers added from Digital Factory:"
  3151. msgstr "從 Digital Factory 新增的印表機:"
  3152. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  3153. #, python-brace-format
  3154. msgctxt "@info:status"
  3155. 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."
  3156. msgstr "你正在嘗試連接到 {0},但它不是印表機群組的管理者。你可以透過網頁將其設定為印表機群組的管理者。"
  3157. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  3158. msgctxt "@info:title"
  3159. msgid "Not a group host"
  3160. msgstr "不是印表機群組管理者"
  3161. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  3162. msgctxt "@action"
  3163. msgid "Configure group"
  3164. msgstr "設定印表機群組"
  3165. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18
  3166. msgctxt "@info:status"
  3167. msgid "You will receive a confirmation via email when the print job is approved"
  3168. msgstr ""
  3169. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19
  3170. msgctxt "@info:title"
  3171. msgid "The print job was successfully submitted"
  3172. msgstr ""
  3173. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22
  3174. msgctxt "@action"
  3175. msgid "Manage print jobs"
  3176. msgstr ""
  3177. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  3178. msgctxt "@info:status"
  3179. msgid "Please wait until the current job has been sent."
  3180. msgstr "請等待目前作業傳送完成。"
  3181. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  3182. msgctxt "@info:title"
  3183. msgid "Print error"
  3184. msgstr "列印錯誤"
  3185. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  3186. msgctxt "@info:text"
  3187. msgid "Could not upload the data to the printer."
  3188. msgstr "雲端服務未上傳資料到印表機。"
  3189. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  3190. msgctxt "@info:title"
  3191. msgid "Network error"
  3192. msgstr "網路錯誤"
  3193. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  3194. msgctxt "@info:status"
  3195. msgid "Sending Print Job"
  3196. msgstr "正在傳送列印作業"
  3197. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  3198. msgctxt "@info:status"
  3199. msgid "Uploading print job to printer."
  3200. msgstr "正在上傳列印作業到印表機。"
  3201. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  3202. msgctxt "@info:status"
  3203. msgid "Print job queue is full. The printer can't accept a new job."
  3204. msgstr "列印作業隊列已滿,印表機無法再接受新的作業。"
  3205. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  3206. msgctxt "@info:title"
  3207. msgid "Queue Full"
  3208. msgstr "隊列已滿"
  3209. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  3210. msgctxt "@info:status"
  3211. msgid "Print job was successfully sent to the printer."
  3212. msgstr "列印作業已成功傳送到印表機。"
  3213. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  3214. msgctxt "@info:title"
  3215. msgid "Data Sent"
  3216. msgstr "資料傳送"
  3217. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17
  3218. msgctxt "info:status"
  3219. msgid "This printer is not linked to the Digital Factory:"
  3220. msgid_plural "These printers are not linked to the Digital Factory:"
  3221. msgstr[0] "印表機未連到 Digital Factory:"
  3222. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29
  3223. #, python-brace-format
  3224. msgctxt "info:status"
  3225. msgid "To establish a connection, please visit the {website_link}"
  3226. msgstr "要建立連線,請前往 {website_link}"
  3227. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33
  3228. msgctxt "info:status"
  3229. msgid "A cloud connection is not available for a printer"
  3230. msgid_plural "A cloud connection is not available for some printers"
  3231. msgstr[0] "印表機無法使用雲端連接"
  3232. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41
  3233. msgctxt "@action:button"
  3234. msgid "Keep printer configurations"
  3235. msgstr "保留印表機設定"
  3236. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46
  3237. msgctxt "@action:button"
  3238. msgid "Remove printers"
  3239. msgstr "移除印表機"
  3240. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
  3241. msgctxt "@action:button Preceded by 'Ready to'."
  3242. msgid "Print over network"
  3243. msgstr "網路連線列印"
  3244. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
  3245. msgctxt "@properties:tooltip"
  3246. msgid "Print over network"
  3247. msgstr "網路連線列印"
  3248. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
  3249. msgctxt "@info:status"
  3250. msgid "Connected over the network"
  3251. msgstr "透過網路連接"
  3252. #: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  3253. msgctxt "@action"
  3254. msgid "Connect via Network"
  3255. msgstr "透過網路連接"
  3256. #: plugins/UM3NetworkPrinting/src/Utils.py:27
  3257. msgctxt "@info:status"
  3258. msgid "tomorrow"
  3259. msgstr "明天"
  3260. #: plugins/UM3NetworkPrinting/src/Utils.py:30
  3261. msgctxt "@info:status"
  3262. msgid "today"
  3263. msgstr "今天"
  3264. #: plugins/USBPrinting/USBPrinterOutputDevice.py:42
  3265. msgctxt "@item:inmenu"
  3266. msgid "USB printing"
  3267. msgstr "USB 連線列印"
  3268. #: plugins/USBPrinting/USBPrinterOutputDevice.py:43
  3269. msgctxt "@action:button Preceded by 'Ready to'."
  3270. msgid "Print via USB"
  3271. msgstr "透過 USB 連線列印"
  3272. #: plugins/USBPrinting/USBPrinterOutputDevice.py:44
  3273. msgctxt "@info:tooltip"
  3274. msgid "Print via USB"
  3275. msgstr "透過 USB 連線列印"
  3276. #: plugins/USBPrinting/USBPrinterOutputDevice.py:80
  3277. msgctxt "@info:status"
  3278. msgid "Connected via USB"
  3279. msgstr "透過 USB 連接"
  3280. #: plugins/USBPrinting/USBPrinterOutputDevice.py:110
  3281. msgctxt "@label"
  3282. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  3283. msgstr "USB 列印正在進行中,關閉 Cura 將停止此列印工作。你確定要繼續嗎?"
  3284. #: plugins/USBPrinting/USBPrinterOutputDevice.py:135
  3285. msgctxt "@message"
  3286. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  3287. msgstr "列印仍在進行中。列印完成前,Cura 無法透過 USB 開始另一次列印。"
  3288. #: plugins/USBPrinting/USBPrinterOutputDevice.py:136
  3289. msgctxt "@message"
  3290. msgid "Print in Progress"
  3291. msgstr "列印正在進行中"
  3292. #: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  3293. msgctxt "@action"
  3294. msgid "Level build plate"
  3295. msgstr "調整列印平台水平"
  3296. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  3297. msgctxt "@title"
  3298. msgid "Build Plate Leveling"
  3299. msgstr "列印平台調整水平"
  3300. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42
  3301. msgctxt "@label"
  3302. 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."
  3303. msgstr "為了確保列印品質出色,你現在可以開始調整你的列印平台。當你點擊「移動到下一個位置」時,噴頭將移動到不同的可調節位置。"
  3304. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52
  3305. msgctxt "@label"
  3306. 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."
  3307. msgstr "在噴頭停止的每一個位置下方插入一張紙,並調整平台高度。當紙張恰好被噴頭的尖端輕微壓住時,表示列印平台已被校準在正確的高度。"
  3308. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67
  3309. msgctxt "@action:button"
  3310. msgid "Start Build Plate Leveling"
  3311. msgstr "開始進行列印平台調平"
  3312. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79
  3313. msgctxt "@action:button"
  3314. msgid "Move to Next Position"
  3315. msgstr "移動到下一個位置"
  3316. #: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  3317. msgctxt "@action"
  3318. msgid "Select upgrades"
  3319. msgstr "選擇升級"
  3320. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  3321. msgctxt "@label"
  3322. msgid "Please select any upgrades made to this UltiMaker Original"
  3323. msgstr "請選擇適用於 UltiMaker Original 的更新檔案"
  3324. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39
  3325. msgctxt "@label"
  3326. msgid "Heated Build Plate (official kit or self-built)"
  3327. msgstr "熱床(官方版本或自製版本)"
  3328. #: plugins/X3DReader/__init__.py:13
  3329. msgctxt "@item:inlistbox"
  3330. msgid "X3D File"
  3331. msgstr "X3D 檔案"
  3332. #: plugins/XRayView/__init__.py:12
  3333. msgctxt "@item:inlistbox"
  3334. msgid "X-Ray view"
  3335. msgstr "透視檢視"
  3336. #: resources/qml/Account/AccountWidget.qml:24
  3337. msgctxt "@action:button"
  3338. msgid "Sign in"
  3339. msgstr "登入"
  3340. #: resources/qml/Account/GeneralOperations.qml:19
  3341. #: resources/qml/WelcomePages/CloudContent.qml:64
  3342. msgctxt "@label"
  3343. msgid "Sign in to the UltiMaker platform"
  3344. msgstr "登入UltiMaker 論壇"
  3345. #: resources/qml/Account/GeneralOperations.qml:39
  3346. #, fuzzy
  3347. msgctxt "@text"
  3348. msgid ""
  3349. "- Add material profiles and plug-ins from the Marketplace\n"
  3350. "- Back-up and sync your material profiles and plug-ins\n"
  3351. "- Share ideas and get help from 48,000+ users in the UltiMaker community"
  3352. msgstr ""
  3353. "- 從市集中加入線材參數及插件\n"
  3354. "-備份及同步您的線材設定與插件 \n"
  3355. "- 分享創意並可從Ultimaker社群中超過48000的使用者得到幫助"
  3356. #: resources/qml/Account/GeneralOperations.qml:58
  3357. msgctxt "@button"
  3358. msgid "Create a free UltiMaker account"
  3359. msgstr "創建免費的UltiMaker帳戶"
  3360. #: resources/qml/Account/SyncState.qml:35
  3361. msgctxt "@label"
  3362. msgid "Checking..."
  3363. msgstr "檢查中..."
  3364. #: resources/qml/Account/SyncState.qml:42
  3365. msgctxt "@label"
  3366. msgid "Account synced"
  3367. msgstr "帳號已同步"
  3368. #: resources/qml/Account/SyncState.qml:49
  3369. msgctxt "@label"
  3370. msgid "Something went wrong..."
  3371. msgstr "出了些問題..."
  3372. #: resources/qml/Account/SyncState.qml:102
  3373. msgctxt "@button"
  3374. msgid "Install pending updates"
  3375. msgstr "安裝待處理的更新"
  3376. #: resources/qml/Account/SyncState.qml:123
  3377. msgctxt "@button"
  3378. msgid "Check for account updates"
  3379. msgstr "檢查帳號更新"
  3380. #: resources/qml/Account/UserOperations.qml:78
  3381. msgctxt "@label The argument is a timestamp"
  3382. msgid "Last update: %1"
  3383. msgstr "最後一次更新:%1"
  3384. #: resources/qml/Account/UserOperations.qml:107
  3385. msgctxt "@button"
  3386. msgid "UltiMaker Account"
  3387. msgstr "UltiMaker 帳號"
  3388. #: resources/qml/Account/UserOperations.qml:126
  3389. msgctxt "@button"
  3390. msgid "Sign Out"
  3391. msgstr "登出"
  3392. #: resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3393. msgctxt "@label"
  3394. msgid "No time estimation available"
  3395. msgstr "沒有時間估計"
  3396. #: resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3397. msgctxt "@label"
  3398. msgid "No cost estimation available"
  3399. msgstr "沒有成本估算"
  3400. #: resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3401. msgctxt "@button"
  3402. msgid "Preview"
  3403. msgstr "預覽"
  3404. #: resources/qml/ActionPanel/PrintJobInformation.qml:31
  3405. msgctxt "@label"
  3406. msgid "Time estimation"
  3407. msgstr "時間估計"
  3408. #: resources/qml/ActionPanel/PrintJobInformation.qml:107
  3409. msgctxt "@label"
  3410. msgid "Material estimation"
  3411. msgstr "線材估計"
  3412. #: resources/qml/ActionPanel/PrintJobInformation.qml:156
  3413. msgctxt "@label m for meter"
  3414. msgid "%1m"
  3415. msgstr "%1m"
  3416. #: resources/qml/ActionPanel/PrintJobInformation.qml:157
  3417. msgctxt "@label g for grams"
  3418. msgid "%1g"
  3419. msgstr "%1g"
  3420. #: resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3421. msgctxt "@label:PrintjobStatus"
  3422. msgid "Slicing..."
  3423. msgstr "正在切片..."
  3424. #: resources/qml/ActionPanel/SliceProcessWidget.qml:78
  3425. msgctxt "@label:PrintjobStatus"
  3426. msgid "Unable to slice"
  3427. msgstr "無法切片"
  3428. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3429. msgctxt "@button"
  3430. msgid "Processing"
  3431. msgstr "處理中"
  3432. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3433. msgctxt "@button"
  3434. msgid "Slice"
  3435. msgstr "切片"
  3436. #: resources/qml/ActionPanel/SliceProcessWidget.qml:115
  3437. msgctxt "@label"
  3438. msgid "Start the slicing process"
  3439. msgstr "開始切片程序"
  3440. #: resources/qml/ActionPanel/SliceProcessWidget.qml:132
  3441. msgctxt "@button"
  3442. msgid "Cancel"
  3443. msgstr "取消"
  3444. #: resources/qml/Actions.qml:81
  3445. msgctxt "@action:inmenu"
  3446. msgid "Show Online Troubleshooting"
  3447. msgstr ""
  3448. #: resources/qml/Actions.qml:88
  3449. msgctxt "@action:inmenu"
  3450. msgid "Toggle Full Screen"
  3451. msgstr "切換全螢幕"
  3452. #: resources/qml/Actions.qml:96
  3453. msgctxt "@action:inmenu"
  3454. msgid "Exit Full Screen"
  3455. msgstr "離開全螢幕"
  3456. #: resources/qml/Actions.qml:103
  3457. msgctxt "@action:inmenu menubar:edit"
  3458. msgid "&Undo"
  3459. msgstr "復原(&U)"
  3460. #: resources/qml/Actions.qml:113
  3461. msgctxt "@action:inmenu menubar:edit"
  3462. msgid "&Redo"
  3463. msgstr "取消復原(&R)"
  3464. #: resources/qml/Actions.qml:131
  3465. msgctxt "@action:inmenu menubar:file"
  3466. msgid "&Quit"
  3467. msgstr "退出(&Q)"
  3468. #: resources/qml/Actions.qml:139
  3469. msgctxt "@action:inmenu menubar:view"
  3470. msgid "3D View"
  3471. msgstr "立體圖"
  3472. #: resources/qml/Actions.qml:146
  3473. msgctxt "@action:inmenu menubar:view"
  3474. msgid "Front View"
  3475. msgstr "前視圖"
  3476. #: resources/qml/Actions.qml:153
  3477. msgctxt "@action:inmenu menubar:view"
  3478. msgid "Top View"
  3479. msgstr "上視圖"
  3480. #: resources/qml/Actions.qml:160
  3481. msgctxt "@action:inmenu menubar:view"
  3482. msgid "Bottom View"
  3483. msgstr "下視圖"
  3484. #: resources/qml/Actions.qml:167
  3485. msgctxt "@action:inmenu menubar:view"
  3486. msgid "Left Side View"
  3487. msgstr "左視圖"
  3488. #: resources/qml/Actions.qml:174
  3489. msgctxt "@action:inmenu menubar:view"
  3490. msgid "Right Side View"
  3491. msgstr "右視圖"
  3492. #: resources/qml/Actions.qml:188
  3493. msgctxt "@action:inmenu"
  3494. msgid "Configure Cura..."
  3495. msgstr "設定 Cura..."
  3496. #: resources/qml/Actions.qml:197
  3497. msgctxt "@action:inmenu menubar:printer"
  3498. msgid "&Add Printer..."
  3499. msgstr "新增印表機(&A)..."
  3500. #: resources/qml/Actions.qml:203
  3501. msgctxt "@action:inmenu menubar:printer"
  3502. msgid "Manage Pr&inters..."
  3503. msgstr "管理印表機(&I)..."
  3504. #: resources/qml/Actions.qml:210
  3505. msgctxt "@action:inmenu"
  3506. msgid "Manage Materials..."
  3507. msgstr "管理線材..."
  3508. #: resources/qml/Actions.qml:218
  3509. #, fuzzy
  3510. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  3511. msgid "Add more materials from Marketplace"
  3512. msgstr "從市集增加更多線材"
  3513. #: resources/qml/Actions.qml:225
  3514. msgctxt "@action:inmenu menubar:profile"
  3515. msgid "&Update profile with current settings/overrides"
  3516. msgstr "使用目前設定 / 覆寫更新列印參數(&U)"
  3517. #: resources/qml/Actions.qml:233
  3518. msgctxt "@action:inmenu menubar:profile"
  3519. msgid "&Discard current changes"
  3520. msgstr "捨棄目前更改(&D)"
  3521. #: resources/qml/Actions.qml:245
  3522. msgctxt "@action:inmenu menubar:profile"
  3523. msgid "&Create profile from current settings/overrides..."
  3524. msgstr "從目前設定 / 覆寫值建立列印參數(&C)..."
  3525. #: resources/qml/Actions.qml:251
  3526. msgctxt "@action:inmenu menubar:profile"
  3527. msgid "Manage Profiles..."
  3528. msgstr "管理列印參數.."
  3529. #: resources/qml/Actions.qml:259
  3530. msgctxt "@action:inmenu menubar:help"
  3531. msgid "Show Online &Documentation"
  3532. msgstr "顯示線上說明文件(&D)"
  3533. #: resources/qml/Actions.qml:267
  3534. msgctxt "@action:inmenu menubar:help"
  3535. msgid "Report a &Bug"
  3536. msgstr "BUG 回報(&B)"
  3537. #: resources/qml/Actions.qml:275
  3538. msgctxt "@action:inmenu menubar:help"
  3539. msgid "What's New"
  3540. msgstr "新功能"
  3541. #: resources/qml/Actions.qml:289
  3542. msgctxt "@action:inmenu menubar:help"
  3543. msgid "About..."
  3544. msgstr "關於..."
  3545. #: resources/qml/Actions.qml:296
  3546. msgctxt "@action:inmenu menubar:edit"
  3547. msgid "Delete Selected"
  3548. msgstr "刪除選取"
  3549. #: resources/qml/Actions.qml:306
  3550. msgctxt "@action:inmenu menubar:edit"
  3551. msgid "Center Selected"
  3552. msgstr "置中選取"
  3553. #: resources/qml/Actions.qml:315
  3554. msgctxt "@action:inmenu menubar:edit"
  3555. msgid "Multiply Selected"
  3556. msgstr "複製選取"
  3557. #: resources/qml/Actions.qml:324
  3558. msgctxt "@action:inmenu"
  3559. msgid "Delete Model"
  3560. msgstr "刪除模型"
  3561. #: resources/qml/Actions.qml:332
  3562. msgctxt "@action:inmenu"
  3563. msgid "Ce&nter Model on Platform"
  3564. msgstr "將模型置中(&N)"
  3565. #: resources/qml/Actions.qml:338
  3566. msgctxt "@action:inmenu menubar:edit"
  3567. msgid "&Group Models"
  3568. msgstr "群組模型(&G)"
  3569. #: resources/qml/Actions.qml:358
  3570. msgctxt "@action:inmenu menubar:edit"
  3571. msgid "Ungroup Models"
  3572. msgstr "取消模型群組"
  3573. #: resources/qml/Actions.qml:368
  3574. msgctxt "@action:inmenu menubar:edit"
  3575. msgid "&Merge Models"
  3576. msgstr "結合模型(&M)"
  3577. #: resources/qml/Actions.qml:378
  3578. msgctxt "@action:inmenu"
  3579. msgid "&Multiply Model..."
  3580. msgstr "複製模型...(&M)"
  3581. #: resources/qml/Actions.qml:385
  3582. msgctxt "@action:inmenu menubar:edit"
  3583. msgid "Select All Models"
  3584. msgstr "選擇所有模型"
  3585. #: resources/qml/Actions.qml:395
  3586. msgctxt "@action:inmenu menubar:edit"
  3587. msgid "Clear Build Plate"
  3588. msgstr "清空列印平台"
  3589. #: resources/qml/Actions.qml:405
  3590. msgctxt "@action:inmenu menubar:file"
  3591. msgid "Reload All Models"
  3592. msgstr "重新載入所有模型"
  3593. #: resources/qml/Actions.qml:414
  3594. msgctxt "@action:inmenu menubar:edit"
  3595. msgid "Arrange All Models"
  3596. msgstr "排列所有模型"
  3597. #: resources/qml/Actions.qml:422
  3598. msgctxt "@action:inmenu menubar:edit"
  3599. msgid "Arrange Selection"
  3600. msgstr "排列所選模型"
  3601. #: resources/qml/Actions.qml:429
  3602. msgctxt "@action:inmenu menubar:edit"
  3603. msgid "Reset All Model Positions"
  3604. msgstr "重置所有模型位置"
  3605. #: resources/qml/Actions.qml:436
  3606. msgctxt "@action:inmenu menubar:edit"
  3607. msgid "Reset All Model Transformations"
  3608. msgstr "重置所有模型旋轉"
  3609. #: resources/qml/Actions.qml:445
  3610. msgctxt "@action:inmenu menubar:file"
  3611. msgid "&Open File(s)..."
  3612. msgstr "開啟檔案(&O)..."
  3613. #: resources/qml/Actions.qml:455
  3614. msgctxt "@action:inmenu menubar:file"
  3615. msgid "&New Project..."
  3616. msgstr "新建專案(&N)..."
  3617. #: resources/qml/Actions.qml:462
  3618. msgctxt "@action:inmenu menubar:help"
  3619. msgid "Show Configuration Folder"
  3620. msgstr "顯示設定資料夾"
  3621. #: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476
  3622. msgctxt "@action:menu"
  3623. msgid "Configure setting visibility..."
  3624. msgstr "參數顯示設定..."
  3625. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  3626. msgctxt "@label:button"
  3627. msgid "My printers"
  3628. msgstr "我的列印機"
  3629. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  3630. msgctxt "@tooltip:button"
  3631. msgid "Monitor printers in Ultimaker Digital Factory."
  3632. msgstr "從Ultimaker Digital Factory中監控我的列印機."
  3633. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  3634. msgctxt "@tooltip:button"
  3635. msgid "Create print projects in Digital Library."
  3636. msgstr "從 Digital Library中創建列印專案."
  3637. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  3638. msgctxt "@label:button"
  3639. msgid "Print jobs"
  3640. msgstr "列印工作"
  3641. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  3642. msgctxt "@tooltip:button"
  3643. msgid "Monitor print jobs and reprint from your print history."
  3644. msgstr "監控列印工作並於從您的歷史紀錄中再次列印."
  3645. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  3646. msgctxt "@tooltip:button"
  3647. msgid "Extend UltiMaker Cura with plugins and material profiles."
  3648. msgstr "使用插件及線材參數擴充UltiMaker Cura."
  3649. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  3650. msgctxt "@tooltip:button"
  3651. msgid "Become a 3D printing expert with UltiMaker e-learning."
  3652. msgstr "使用UltiMaker e-learning成為一位3D列印專家."
  3653. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  3654. msgctxt "@label:button"
  3655. msgid "UltiMaker support"
  3656. msgstr "UltiMaker 支援"
  3657. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  3658. msgctxt "@tooltip:button"
  3659. msgid "Learn how to get started with UltiMaker Cura."
  3660. msgstr "學習如何開始使用UltiMaker Cura."
  3661. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  3662. msgctxt "@label:button"
  3663. msgid "Ask a question"
  3664. msgstr "提出問題"
  3665. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  3666. msgctxt "@tooltip:button"
  3667. msgid "Consult the UltiMaker Community."
  3668. msgstr "諮詢UltiMaker社群."
  3669. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  3670. msgctxt "@label:button"
  3671. msgid "Report a bug"
  3672. msgstr "回報Bug"
  3673. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  3674. msgctxt "@tooltip:button"
  3675. msgid "Let developers know that something is going wrong."
  3676. msgstr "讓開發者了解您遇到的問題."
  3677. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  3678. msgctxt "@tooltip:button"
  3679. msgid "Visit the UltiMaker website."
  3680. msgstr "參觀UltiMaker網站."
  3681. #: resources/qml/ColorDialog.qml:110
  3682. msgctxt "@label"
  3683. msgid "Hex"
  3684. msgstr ""
  3685. #: resources/qml/Cura.qml:256
  3686. msgctxt "@label"
  3687. msgid "This package will be installed after restarting."
  3688. msgstr "此套件將在重新啟動後安裝。"
  3689. #: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14
  3690. msgctxt "@title:tab"
  3691. msgid "General"
  3692. msgstr "基本"
  3693. #: resources/qml/Cura.qml:470
  3694. msgctxt "@title:tab"
  3695. msgid "Settings"
  3696. msgstr "設定"
  3697. #: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17
  3698. msgctxt "@title:tab"
  3699. msgid "Printers"
  3700. msgstr "印表機"
  3701. #: resources/qml/Cura.qml:474
  3702. #: resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3703. msgctxt "@title:tab"
  3704. msgid "Materials"
  3705. msgstr "線材"
  3706. #: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57
  3707. msgctxt "@title:tab"
  3708. msgid "Profiles"
  3709. msgstr "列印參數"
  3710. #: resources/qml/Cura.qml:581
  3711. msgctxt "@title:window %1 is the application name"
  3712. msgid "Closing %1"
  3713. msgstr "關閉 %1 中"
  3714. #: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591
  3715. msgctxt "@label %1 is the application name"
  3716. msgid "Are you sure you want to exit %1?"
  3717. msgstr "是否確定要離開 %1 ?"
  3718. #: resources/qml/Cura.qml:629
  3719. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  3720. msgctxt "@title:window"
  3721. msgid "Open file(s)"
  3722. msgstr "開啟檔案"
  3723. #: resources/qml/Cura.qml:734
  3724. msgctxt "@window:title"
  3725. msgid "Install Package"
  3726. msgstr "安裝套件"
  3727. #: resources/qml/Cura.qml:741
  3728. msgctxt "@title:window"
  3729. msgid "Open File(s)"
  3730. msgstr "開啟檔案"
  3731. #: resources/qml/Cura.qml:743
  3732. msgctxt "@text:window"
  3733. 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."
  3734. msgstr "我們已經在你選擇的檔案中找到一個或多個 G-Code 檔案。你一次只能開啟一個 G-Code 檔案。若需開啟 G-Code 檔案,請僅選擇一個。"
  3735. #: resources/qml/Cura.qml:828
  3736. msgctxt "@title:window"
  3737. msgid "Add Printer"
  3738. msgstr "新增印表機"
  3739. #: resources/qml/Cura.qml:836
  3740. msgctxt "@title:window"
  3741. msgid "What's New"
  3742. msgstr "新功能"
  3743. #: resources/qml/Cura.qml:890
  3744. #, fuzzy
  3745. msgctxt "@title:window"
  3746. msgid "Save Custom Profile"
  3747. msgstr "自訂列印參數"
  3748. #: resources/qml/Cura.qml:891
  3749. #, fuzzy
  3750. msgctxt "@textfield:placeholder"
  3751. msgid "New Custom Profile"
  3752. msgstr "自訂列印參數"
  3753. #: resources/qml/Cura.qml:892
  3754. #, fuzzy
  3755. msgctxt "@info"
  3756. msgid "Custom profile name:"
  3757. msgstr "自訂列印參數"
  3758. #: resources/qml/Cura.qml:909
  3759. msgctxt "@label %i will be replaced with a profile name"
  3760. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  3761. msgstr ""
  3762. #: resources/qml/Cura.qml:917
  3763. msgctxt "@action:button"
  3764. msgid "Learn more about Cura print profiles"
  3765. msgstr ""
  3766. #: resources/qml/Cura.qml:926
  3767. #, fuzzy
  3768. msgctxt "@button"
  3769. msgid "Save new profile"
  3770. msgstr "建立新的列印參數"
  3771. #: resources/qml/Dialogs/AboutDialog.qml:15
  3772. msgctxt "@title:window The argument is the application name."
  3773. msgid "About %1"
  3774. msgstr "關於 %1"
  3775. #: resources/qml/Dialogs/AboutDialog.qml:59
  3776. msgctxt "@label"
  3777. msgid "version: %1"
  3778. msgstr "版本:%1"
  3779. #: resources/qml/Dialogs/AboutDialog.qml:74
  3780. msgctxt "@label"
  3781. msgid "End-to-end solution for fused filament 3D printing."
  3782. msgstr "熔絲 3D 列印技術的的端對端解決方案。"
  3783. #: resources/qml/Dialogs/AboutDialog.qml:87
  3784. msgctxt "@info:credit"
  3785. msgid ""
  3786. "Cura is developed by UltiMaker in cooperation with the community.\n"
  3787. "Cura proudly uses the following open source projects:"
  3788. msgstr ""
  3789. "Cura 由 Ultimaker B.V. 與社群合作開發。\n"
  3790. "Cura 使用以下開源專案:"
  3791. #: resources/qml/Dialogs/AboutDialog.qml:138
  3792. msgctxt "@label Description for application component"
  3793. msgid "Graphical user interface"
  3794. msgstr "圖形用戶介面"
  3795. #: resources/qml/Dialogs/AboutDialog.qml:139
  3796. msgctxt "@label Description for application component"
  3797. msgid "Application framework"
  3798. msgstr "應用框架"
  3799. #: resources/qml/Dialogs/AboutDialog.qml:140
  3800. msgctxt "@label Description for application component"
  3801. msgid "G-code generator"
  3802. msgstr "G-code 產生器"
  3803. #: resources/qml/Dialogs/AboutDialog.qml:141
  3804. msgctxt "@label Description for application component"
  3805. msgid "Interprocess communication library"
  3806. msgstr "進程間通訊交互使用庫"
  3807. #: resources/qml/Dialogs/AboutDialog.qml:142
  3808. msgctxt "@label Description for application component"
  3809. msgid "Python bindings for libnest2d"
  3810. msgstr "Python bindings for libnest2d"
  3811. #: resources/qml/Dialogs/AboutDialog.qml:143
  3812. msgctxt "@label Description for application component"
  3813. msgid "Polygon packing library, developed by Prusa Research"
  3814. msgstr "多邊形包裝函式庫,由 Prusa Research 開發"
  3815. #: resources/qml/Dialogs/AboutDialog.qml:144
  3816. msgctxt "@label Description for application component"
  3817. msgid "Support library for handling 3MF files"
  3818. msgstr "用於處理 3MF 檔案的函式庫"
  3819. #: resources/qml/Dialogs/AboutDialog.qml:145
  3820. msgctxt "@label Description for application component"
  3821. msgid "Support library for file metadata and streaming"
  3822. msgstr "用於檔案 metadata 和串流的函式庫"
  3823. #: resources/qml/Dialogs/AboutDialog.qml:148
  3824. msgctxt "@label Description for application dependency"
  3825. msgid "Programming language"
  3826. msgstr "編程語言"
  3827. #: resources/qml/Dialogs/AboutDialog.qml:149
  3828. msgctxt "@label Description for application dependency"
  3829. msgid "GUI framework"
  3830. msgstr "GUI 框架"
  3831. #: resources/qml/Dialogs/AboutDialog.qml:150
  3832. msgctxt "@label Description for application dependency"
  3833. msgid "GUI framework bindings"
  3834. msgstr "GUI 框架綁定"
  3835. #: resources/qml/Dialogs/AboutDialog.qml:151
  3836. msgctxt "@label Description for application dependency"
  3837. msgid "C/C++ Binding library"
  3838. msgstr "C / C++ 綁定庫"
  3839. #: resources/qml/Dialogs/AboutDialog.qml:152
  3840. msgctxt "@label Description for application dependency"
  3841. msgid "Data interchange format"
  3842. msgstr "資料交換格式"
  3843. #: resources/qml/Dialogs/AboutDialog.qml:153
  3844. msgctxt "@label"
  3845. msgid "Font"
  3846. msgstr "字體"
  3847. #: resources/qml/Dialogs/AboutDialog.qml:156
  3848. msgctxt "@label Description for application dependency"
  3849. msgid "Polygon clipping library"
  3850. msgstr "多邊形剪輯函式庫"
  3851. #: resources/qml/Dialogs/AboutDialog.qml:157
  3852. msgctxt "@label Description for application dependency"
  3853. msgid "JSON parser"
  3854. msgstr ""
  3855. #: resources/qml/Dialogs/AboutDialog.qml:158
  3856. msgctxt "@label Description for application dependency"
  3857. msgid "Utility functions, including an image loader"
  3858. msgstr ""
  3859. #: resources/qml/Dialogs/AboutDialog.qml:159
  3860. msgctxt "@label Description for application dependency"
  3861. msgid "Utility library, including Voronoi generation"
  3862. msgstr ""
  3863. #: resources/qml/Dialogs/AboutDialog.qml:162
  3864. #: resources/qml/Dialogs/AboutDialog.qml:163
  3865. msgctxt "@label Description for application dependency"
  3866. msgid "Root Certificates for validating SSL trustworthiness"
  3867. msgstr ""
  3868. #: resources/qml/Dialogs/AboutDialog.qml:164
  3869. msgctxt "@label Description for application dependency"
  3870. msgid "Compatibility between Python 2 and 3"
  3871. msgstr ""
  3872. #: resources/qml/Dialogs/AboutDialog.qml:165
  3873. msgctxt "@label Description for application dependency"
  3874. msgid "Support library for system keyring access"
  3875. msgstr "存取系統金鑰函式庫"
  3876. #: resources/qml/Dialogs/AboutDialog.qml:166
  3877. msgctxt "@label Description for application dependency"
  3878. msgid "Support library for faster math"
  3879. msgstr "高速運算函式庫"
  3880. #: resources/qml/Dialogs/AboutDialog.qml:167
  3881. msgctxt "@label Description for application dependency"
  3882. msgid "Support library for handling STL files"
  3883. msgstr "用於處理 STL 檔案的函式庫"
  3884. #: resources/qml/Dialogs/AboutDialog.qml:168
  3885. msgctxt "@label Description for application dependency"
  3886. msgid "Python bindings for Clipper"
  3887. msgstr ""
  3888. #: resources/qml/Dialogs/AboutDialog.qml:169
  3889. msgctxt "@label Description for application dependency"
  3890. msgid "Serial communication library"
  3891. msgstr "串口通訊函式庫"
  3892. #: resources/qml/Dialogs/AboutDialog.qml:170
  3893. msgctxt "@label Description for application dependency"
  3894. msgid "Support library for scientific computing"
  3895. msgstr "科學計算函式庫"
  3896. #: resources/qml/Dialogs/AboutDialog.qml:171
  3897. msgctxt "@Label Description for application dependency"
  3898. msgid "Python Error tracking library"
  3899. msgstr ""
  3900. #: resources/qml/Dialogs/AboutDialog.qml:172
  3901. msgctxt "@label Description for application dependency"
  3902. msgid "Support library for handling triangular meshes"
  3903. msgstr "用於處理三角形網格的函式庫"
  3904. #: resources/qml/Dialogs/AboutDialog.qml:173
  3905. msgctxt "@label Description for application dependency"
  3906. msgid "ZeroConf discovery library"
  3907. msgstr "ZeroConf 發現函式庫"
  3908. #: resources/qml/Dialogs/AboutDialog.qml:176
  3909. msgctxt "@label Description for development tool"
  3910. msgid "Universal build system configuration"
  3911. msgstr ""
  3912. #: resources/qml/Dialogs/AboutDialog.qml:177
  3913. msgctxt "@label Description for development tool"
  3914. msgid "Dependency and package manager"
  3915. msgstr ""
  3916. #: resources/qml/Dialogs/AboutDialog.qml:178
  3917. msgctxt "@label Description for development tool"
  3918. msgid "Packaging Python-applications"
  3919. msgstr ""
  3920. #: resources/qml/Dialogs/AboutDialog.qml:179
  3921. msgctxt "@label Description for development tool"
  3922. msgid "Linux cross-distribution application deployment"
  3923. msgstr "Linux cross-distribution 應用程式部署"
  3924. #: resources/qml/Dialogs/AboutDialog.qml:180
  3925. msgctxt "@label Description for development tool"
  3926. msgid "Generating Windows installers"
  3927. msgstr ""
  3928. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  3929. msgctxt "@title:window"
  3930. msgid "Open project file"
  3931. msgstr "開啟專案檔案"
  3932. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84
  3933. msgctxt "@text:window"
  3934. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3935. msgstr "這是一個 Cura 專案檔案。你想將其作為一個專案開啟還是從中匯入模型?"
  3936. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  3937. msgctxt "@text:window"
  3938. msgid "Remember my choice"
  3939. msgstr "記住我的選擇"
  3940. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  3941. msgctxt "@action:button"
  3942. msgid "Open as project"
  3943. msgstr "作為專案開啟"
  3944. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  3945. msgctxt "@action:button"
  3946. msgid "Import models"
  3947. msgstr "匯入模型"
  3948. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:17
  3949. msgctxt "@title:window"
  3950. msgid "Select Printer"
  3951. msgstr ""
  3952. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:54
  3953. msgctxt "@title:label"
  3954. msgid "Compatible Printers"
  3955. msgstr ""
  3956. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:110
  3957. msgctxt "@description"
  3958. msgid "No compatible printers, that are currently online, where found."
  3959. msgstr ""
  3960. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13
  3961. msgctxt "@title:window"
  3962. msgid "Discard or Keep changes"
  3963. msgstr "捨棄或保留更改"
  3964. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64
  3965. msgctxt "@text:window, %1 is a profile name"
  3966. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  3967. msgstr ""
  3968. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90
  3969. msgctxt "@title:column"
  3970. msgid "Profile settings"
  3971. msgstr "列印參數設定"
  3972. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92
  3973. msgctxt "@title:column"
  3974. msgid "Current changes"
  3975. msgstr "目前更動"
  3976. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123
  3977. #: resources/qml/Preferences/GeneralPage.qml:820
  3978. msgctxt "@option:discardOrKeep"
  3979. msgid "Always ask me this"
  3980. msgstr "總是詢問"
  3981. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124
  3982. msgctxt "@option:discardOrKeep"
  3983. msgid "Discard and never ask again"
  3984. msgstr "捨棄更改,並不再詢問此問題"
  3985. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  3986. msgctxt "@option:discardOrKeep"
  3987. msgid "Keep and never ask again"
  3988. msgstr "保留更改,並不再詢問此問題"
  3989. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157
  3990. msgctxt "@action:button"
  3991. msgid "Discard changes"
  3992. msgstr "忽略更動"
  3993. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164
  3994. msgctxt "@action:button"
  3995. msgid "Keep changes"
  3996. msgstr "保留更動"
  3997. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171
  3998. #, fuzzy
  3999. msgctxt "@action:button"
  4000. msgid "Save as new custom profile"
  4001. msgstr "自訂列印參數"
  4002. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178
  4003. #, fuzzy
  4004. msgctxt "@action:button"
  4005. msgid "Save changes"
  4006. msgstr "保留更動"
  4007. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  4008. msgctxt "@text:window"
  4009. 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?"
  4010. msgstr "我們已經在你所選擇的檔案中找到一個或多個專案檔案,但一次只能開啟一個專案檔案。我們建議只從那些檔案中匯入模型而不開啟專案。你要繼續操作嗎?"
  4011. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  4012. msgctxt "@action:button"
  4013. msgid "Import all as models"
  4014. msgstr "匯入所有模型"
  4015. #: resources/qml/Dialogs/RenameDialog.qml:23
  4016. msgctxt "@title:window"
  4017. msgid "Rename"
  4018. msgstr ""
  4019. #: resources/qml/Dialogs/RenameDialog.qml:24
  4020. msgctxt "@info"
  4021. msgid "Please provide a new name."
  4022. msgstr ""
  4023. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  4024. msgctxt "@title:window"
  4025. msgid "Save Project"
  4026. msgstr "儲存專案"
  4027. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  4028. msgctxt "@action:label"
  4029. msgid "Extruder %1"
  4030. msgstr "擠出機 %1"
  4031. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  4032. msgctxt "@action:label"
  4033. msgid "%1 & material"
  4034. msgstr "%1 & 線材"
  4035. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  4036. msgctxt "@action:label"
  4037. msgid "Material"
  4038. msgstr "線材"
  4039. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  4040. msgctxt "@action:label"
  4041. msgid "Don't show project summary on save again"
  4042. msgstr "儲存時不再顯示專案摘要"
  4043. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298
  4044. msgctxt "@action:button"
  4045. msgid "Save"
  4046. msgstr "儲存"
  4047. #: resources/qml/JobSpecs.qml:93
  4048. msgctxt "@text Print job name"
  4049. msgid "Untitled"
  4050. msgstr "無標題"
  4051. #: resources/qml/MainWindow/ApplicationMenu.qml:63
  4052. #: resources/qml/Menus/SettingsMenu.qml:13
  4053. msgctxt "@title:menu menubar:toplevel"
  4054. msgid "&Settings"
  4055. msgstr "設定(&S)"
  4056. #: resources/qml/MainWindow/ApplicationMenu.qml:87
  4057. msgctxt "@title:window"
  4058. msgid "New project"
  4059. msgstr "新建專案"
  4060. #: resources/qml/MainWindow/ApplicationMenu.qml:88
  4061. msgctxt "@info:question"
  4062. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4063. msgstr "你確定要開始一個新專案嗎?這將清除列印平台及任何未儲存的設定。"
  4064. #: resources/qml/MainWindow/MainWindowHeader.qml:135
  4065. msgctxt "@action:button"
  4066. msgid "Marketplace"
  4067. msgstr "市集"
  4068. #: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  4069. msgctxt "@header"
  4070. msgid "Configurations"
  4071. msgstr "設定"
  4072. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  4073. msgctxt "@label"
  4074. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  4075. msgstr "由於無法識別 %1,因此無法使用此設定。 請連上 %2 下載正確的線材參數設定。"
  4076. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  4077. msgctxt "@label"
  4078. msgid "Marketplace"
  4079. msgstr "市集"
  4080. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  4081. msgctxt "@label"
  4082. msgid "Loading available configurations from the printer..."
  4083. msgstr "從印表機載入可用的設定..."
  4084. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  4085. msgctxt "@label"
  4086. msgid "The configurations are not available because the printer is disconnected."
  4087. msgstr "由於印表機已斷線,因此設定無法使用。"
  4088. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  4089. msgctxt "@tooltip"
  4090. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  4091. msgstr "不允許使用此擠出機的配置並禁止切片功能."
  4092. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  4093. msgctxt "@tooltip"
  4094. msgid "There are no profiles matching the configuration of this extruder."
  4095. msgstr "目前無對應此擠出機的配置設定."
  4096. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250
  4097. msgctxt "@label"
  4098. msgid "Select configuration"
  4099. msgstr "選擇設定"
  4100. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358
  4101. msgctxt "@label"
  4102. msgid "Configurations"
  4103. msgstr "設定"
  4104. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  4105. msgctxt "@header"
  4106. msgid "Custom"
  4107. msgstr "自訂選項"
  4108. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173
  4109. msgctxt "@label"
  4110. msgid "Enabled"
  4111. msgstr "已啟用"
  4112. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222
  4113. msgctxt "@label"
  4114. msgid "Material"
  4115. msgstr "線材"
  4116. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348
  4117. msgctxt "@label"
  4118. msgid "Use glue for better adhesion with this material combination."
  4119. msgstr "在此線材組合下,使用膠水以獲得較佳的附著。"
  4120. #: resources/qml/Menus/ContextMenu.qml:29
  4121. msgctxt "@label"
  4122. msgid "Print Selected Model With:"
  4123. msgid_plural "Print Selected Models With:"
  4124. msgstr[0] "列印所選模型:"
  4125. #: resources/qml/Menus/ContextMenu.qml:92
  4126. msgctxt "@title:window"
  4127. msgid "Multiply Selected Model"
  4128. msgid_plural "Multiply Selected Models"
  4129. msgstr[0] "複製所選模型"
  4130. #: resources/qml/Menus/ContextMenu.qml:123
  4131. msgctxt "@label"
  4132. msgid "Number of Copies"
  4133. msgstr "複製個數"
  4134. #: resources/qml/Menus/EditMenu.qml:12
  4135. msgctxt "@title:menu menubar:toplevel"
  4136. msgid "&Edit"
  4137. msgstr "編輯(&E)"
  4138. #: resources/qml/Menus/ExtensionMenu.qml:13
  4139. msgctxt "@title:menu menubar:toplevel"
  4140. msgid "E&xtensions"
  4141. msgstr "擴充功能(&X)"
  4142. #: resources/qml/Menus/FileMenu.qml:13
  4143. msgctxt "@title:menu menubar:toplevel"
  4144. msgid "&File"
  4145. msgstr "檔案(&F)"
  4146. #: resources/qml/Menus/FileMenu.qml:45
  4147. msgctxt "@title:menu menubar:file"
  4148. msgid "&Save Project..."
  4149. msgstr "儲存專案...(&S)"
  4150. #: resources/qml/Menus/FileMenu.qml:78
  4151. msgctxt "@title:menu menubar:file"
  4152. msgid "&Export..."
  4153. msgstr "匯出...(&E)"
  4154. #: resources/qml/Menus/FileMenu.qml:89
  4155. msgctxt "@action:inmenu menubar:file"
  4156. msgid "Export Selection..."
  4157. msgstr "匯出選擇..."
  4158. #: resources/qml/Menus/HelpMenu.qml:14
  4159. msgctxt "@title:menu menubar:toplevel"
  4160. msgid "&Help"
  4161. msgstr "幫助(&H)"
  4162. #: resources/qml/Menus/MaterialMenu.qml:13
  4163. msgctxt "@label:category menu label"
  4164. msgid "Material"
  4165. msgstr "線材"
  4166. #: resources/qml/Menus/MaterialMenu.qml:53
  4167. msgctxt "@label:category menu label"
  4168. msgid "Favorites"
  4169. msgstr "常用"
  4170. #: resources/qml/Menus/MaterialMenu.qml:78
  4171. msgctxt "@label:category menu label"
  4172. msgid "Generic"
  4173. msgstr "通用"
  4174. #: resources/qml/Menus/OpenFilesMenu.qml:15
  4175. msgctxt "@title:menu menubar:file"
  4176. msgid "Open File(s)..."
  4177. msgstr "開啟檔案."
  4178. #: resources/qml/Menus/PreferencesMenu.qml:21
  4179. msgctxt "@title:menu menubar:toplevel"
  4180. msgid "P&references"
  4181. msgstr "偏好設定(&R)"
  4182. #: resources/qml/Menus/PrinterMenu.qml:13
  4183. msgctxt "@title:menu menubar:settings"
  4184. msgid "&Printer"
  4185. msgstr "印表機(&P)"
  4186. #: resources/qml/Menus/PrinterMenu.qml:17
  4187. msgctxt "@label:category menu label"
  4188. msgid "Network enabled printers"
  4189. msgstr "支援網路的印表機"
  4190. #: resources/qml/Menus/PrinterMenu.qml:50
  4191. msgctxt "@label:category menu label"
  4192. msgid "Local printers"
  4193. msgstr "本機印表機"
  4194. #: resources/qml/Menus/RecentFilesMenu.qml:15
  4195. msgctxt "@title:menu menubar:file"
  4196. msgid "Open &Recent"
  4197. msgstr "最近開啟的檔案(&R)"
  4198. #: resources/qml/Menus/SaveProjectMenu.qml:15
  4199. msgctxt "@title:menu menubar:file"
  4200. msgid "Save Project..."
  4201. msgstr "儲存專案."
  4202. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  4203. msgctxt "@action:inmenu"
  4204. msgid "Visible Settings"
  4205. msgstr "顯示設定"
  4206. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  4207. msgctxt "@action:inmenu"
  4208. msgid "Collapse All Categories"
  4209. msgstr "折疊所有分類"
  4210. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  4211. msgctxt "@action:inmenu"
  4212. msgid "Manage Setting Visibility..."
  4213. msgstr "管理參數顯示..."
  4214. #: resources/qml/Menus/SettingsMenu.qml:34
  4215. msgctxt "@title:menu"
  4216. msgid "&Material"
  4217. msgstr "線材(&M)"
  4218. #: resources/qml/Menus/SettingsMenu.qml:49
  4219. msgctxt "@action:inmenu"
  4220. msgid "Set as Active Extruder"
  4221. msgstr "設為主要擠出機"
  4222. #: resources/qml/Menus/SettingsMenu.qml:55
  4223. msgctxt "@action:inmenu"
  4224. msgid "Enable Extruder"
  4225. msgstr "啟用擠出機"
  4226. #: resources/qml/Menus/SettingsMenu.qml:63
  4227. msgctxt "@action:inmenu"
  4228. msgid "Disable Extruder"
  4229. msgstr "關閉擠出機"
  4230. #: resources/qml/Menus/ViewMenu.qml:13
  4231. msgctxt "@title:menu menubar:toplevel"
  4232. msgid "&View"
  4233. msgstr "檢視(&V)"
  4234. #: resources/qml/Menus/ViewMenu.qml:17
  4235. msgctxt "@action:inmenu menubar:view"
  4236. msgid "&Camera position"
  4237. msgstr "視角位置(&C)"
  4238. #: resources/qml/Menus/ViewMenu.qml:30
  4239. msgctxt "@action:inmenu menubar:view"
  4240. msgid "Camera view"
  4241. msgstr "攝影機檢視"
  4242. #: resources/qml/Menus/ViewMenu.qml:48
  4243. msgctxt "@action:inmenu menubar:view"
  4244. msgid "Perspective"
  4245. msgstr "透視"
  4246. #: resources/qml/Menus/ViewMenu.qml:59
  4247. msgctxt "@action:inmenu menubar:view"
  4248. msgid "Orthographic"
  4249. msgstr "正交"
  4250. #: resources/qml/MonitorButton.qml:115
  4251. msgctxt "@label:MonitorStatus"
  4252. msgid "Not connected to a printer"
  4253. msgstr "未連接至印表機"
  4254. #: resources/qml/MonitorButton.qml:119
  4255. msgctxt "@label:MonitorStatus"
  4256. msgid "Printer does not accept commands"
  4257. msgstr "印表機不接受命令"
  4258. #: resources/qml/MonitorButton.qml:129
  4259. msgctxt "@label:MonitorStatus"
  4260. msgid "In maintenance. Please check the printer"
  4261. msgstr "維護中。請檢查印表機"
  4262. #: resources/qml/MonitorButton.qml:140
  4263. msgctxt "@label:MonitorStatus"
  4264. msgid "Lost connection with the printer"
  4265. msgstr "與印表機的連線中斷"
  4266. #: resources/qml/MonitorButton.qml:142
  4267. msgctxt "@label:MonitorStatus"
  4268. msgid "Printing..."
  4269. msgstr "列印中..."
  4270. #: resources/qml/MonitorButton.qml:145
  4271. msgctxt "@label:MonitorStatus"
  4272. msgid "Paused"
  4273. msgstr "已暫停"
  4274. #: resources/qml/MonitorButton.qml:148
  4275. msgctxt "@label:MonitorStatus"
  4276. msgid "Preparing..."
  4277. msgstr "準備中..."
  4278. #: resources/qml/MonitorButton.qml:150
  4279. msgctxt "@label:MonitorStatus"
  4280. msgid "Please remove the print"
  4281. msgstr "請取出列印件"
  4282. #: resources/qml/MonitorButton.qml:318
  4283. msgctxt "@label"
  4284. msgid "Abort Print"
  4285. msgstr "中斷列印"
  4286. #: resources/qml/MonitorButton.qml:327
  4287. msgctxt "@label"
  4288. msgid "Are you sure you want to abort the print?"
  4289. msgstr "你確定要中斷列印嗎?"
  4290. #: resources/qml/ObjectItemButton.qml:109
  4291. msgctxt "@label"
  4292. msgid "Is printed as support."
  4293. msgstr "做為支撐而列印。"
  4294. #: resources/qml/ObjectItemButton.qml:112
  4295. msgctxt "@label"
  4296. msgid "Other models overlapping with this model are modified."
  4297. msgstr "與此模型重疊的其他模型已被更改。"
  4298. #: resources/qml/ObjectItemButton.qml:115
  4299. msgctxt "@label"
  4300. msgid "Infill overlapping with this model is modified."
  4301. msgstr "與此模型重疊的填充已被更改。"
  4302. #: resources/qml/ObjectItemButton.qml:118
  4303. msgctxt "@label"
  4304. msgid "Overlaps with this model are not supported."
  4305. msgstr "與此模型的重疊沒有支撐。"
  4306. #: resources/qml/ObjectItemButton.qml:125
  4307. msgctxt "@label %1 is the number of settings it overrides."
  4308. msgid "Overrides %1 setting."
  4309. msgid_plural "Overrides %1 settings."
  4310. msgstr[0] "覆寫 %1 設定。"
  4311. #: resources/qml/ObjectSelector.qml:59
  4312. msgctxt "@label"
  4313. msgid "Object list"
  4314. msgstr "物件清單"
  4315. #: resources/qml/Preferences/GeneralPage.qml:134
  4316. #: resources/qml/Preferences/SettingVisibilityPage.qml:24
  4317. msgctxt "@action:button"
  4318. msgid "Defaults"
  4319. msgstr ""
  4320. #: resources/qml/Preferences/GeneralPage.qml:172
  4321. msgctxt "@label"
  4322. msgid "Interface"
  4323. msgstr "介面"
  4324. #: resources/qml/Preferences/GeneralPage.qml:215
  4325. msgctxt "@heading"
  4326. msgid "-- incomplete --"
  4327. msgstr ""
  4328. #: resources/qml/Preferences/GeneralPage.qml:261
  4329. msgctxt "@label"
  4330. msgid "Currency:"
  4331. msgstr "貨幣:"
  4332. #: resources/qml/Preferences/GeneralPage.qml:277
  4333. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  4334. msgid "Theme*:"
  4335. msgstr ""
  4336. #: resources/qml/Preferences/GeneralPage.qml:323
  4337. msgctxt "@info:tooltip"
  4338. msgid "Slice automatically when changing settings."
  4339. msgstr "當設定變更時自動進行切片。"
  4340. #: resources/qml/Preferences/GeneralPage.qml:331
  4341. msgctxt "@option:check"
  4342. msgid "Slice automatically"
  4343. msgstr "自動切片"
  4344. #: resources/qml/Preferences/GeneralPage.qml:340
  4345. msgctxt "@info:tooltip"
  4346. msgid "Show an icon and notifications in the system notification area."
  4347. msgstr ""
  4348. #: resources/qml/Preferences/GeneralPage.qml:348
  4349. msgctxt "@option:check"
  4350. msgid "Add icon to system tray *"
  4351. msgstr ""
  4352. #: resources/qml/Preferences/GeneralPage.qml:357
  4353. msgctxt "@label"
  4354. msgid "*You will need to restart the application for these changes to have effect."
  4355. msgstr ""
  4356. #: resources/qml/Preferences/GeneralPage.qml:373
  4357. msgctxt "@label"
  4358. msgid "Viewport behavior"
  4359. msgstr "顯示區設定"
  4360. #: resources/qml/Preferences/GeneralPage.qml:381
  4361. msgctxt "@info:tooltip"
  4362. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  4363. msgstr "模型缺少支撐的區域已以紅色標示。如果沒有支撐這些區域將無法正常列印。"
  4364. #: resources/qml/Preferences/GeneralPage.qml:390
  4365. msgctxt "@option:check"
  4366. msgid "Display overhang"
  4367. msgstr "顯示突出部分"
  4368. #: resources/qml/Preferences/GeneralPage.qml:400
  4369. msgctxt "@info:tooltip"
  4370. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  4371. msgstr "模型缺少或多餘的表面已用警告符號標示。工具路徑是將缺少部份補上的型狀。"
  4372. #: resources/qml/Preferences/GeneralPage.qml:409
  4373. msgctxt "@option:check"
  4374. msgid "Display model errors"
  4375. msgstr "顯示模型錯誤"
  4376. #: resources/qml/Preferences/GeneralPage.qml:417
  4377. msgctxt "@info:tooltip"
  4378. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  4379. msgstr "當模型被選中時,視角將自動調整到最合適的觀察位置(模型處於正中央)"
  4380. #: resources/qml/Preferences/GeneralPage.qml:422
  4381. msgctxt "@action:button"
  4382. msgid "Center camera when item is selected"
  4383. msgstr "當專案被選中時,自動置中視角"
  4384. #: resources/qml/Preferences/GeneralPage.qml:432
  4385. msgctxt "@info:tooltip"
  4386. msgid "Should the default zoom behavior of cura be inverted?"
  4387. msgstr "需要讓 Cura 的預設縮放操作反轉嗎?"
  4388. #: resources/qml/Preferences/GeneralPage.qml:437
  4389. msgctxt "@action:button"
  4390. msgid "Invert the direction of camera zoom."
  4391. msgstr "反轉視角縮放方向。"
  4392. #: resources/qml/Preferences/GeneralPage.qml:453
  4393. msgctxt "@info:tooltip"
  4394. msgid "Should zooming move in the direction of the mouse?"
  4395. msgstr "是否跟隨滑鼠方向進行縮放?"
  4396. #: resources/qml/Preferences/GeneralPage.qml:453
  4397. msgctxt "@info:tooltip"
  4398. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  4399. msgstr "正交透視不支援游標縮放功能。"
  4400. #: resources/qml/Preferences/GeneralPage.qml:458
  4401. msgctxt "@action:button"
  4402. msgid "Zoom toward mouse direction"
  4403. msgstr "跟隨滑鼠方向縮放"
  4404. #: resources/qml/Preferences/GeneralPage.qml:484
  4405. msgctxt "@info:tooltip"
  4406. msgid "Should models on the platform be moved so that they no longer intersect?"
  4407. msgstr "需要移動平台上的模型,使它們不再交錯嗎?"
  4408. #: resources/qml/Preferences/GeneralPage.qml:489
  4409. msgctxt "@option:check"
  4410. msgid "Ensure models are kept apart"
  4411. msgstr "確保每個模型都保持分離"
  4412. #: resources/qml/Preferences/GeneralPage.qml:498
  4413. msgctxt "@info:tooltip"
  4414. msgid "Should models on the platform be moved down to touch the build plate?"
  4415. msgstr "要將模型下降到碰觸列印平台嗎?"
  4416. #: resources/qml/Preferences/GeneralPage.qml:503
  4417. msgctxt "@option:check"
  4418. msgid "Automatically drop models to the build plate"
  4419. msgstr "自動下降模型到列印平台"
  4420. #: resources/qml/Preferences/GeneralPage.qml:515
  4421. msgctxt "@info:tooltip"
  4422. msgid "Show caution message in g-code reader."
  4423. msgstr "在 g-code 讀取器中顯示警告訊息。"
  4424. #: resources/qml/Preferences/GeneralPage.qml:524
  4425. msgctxt "@option:check"
  4426. msgid "Caution message in g-code reader"
  4427. msgstr "G-code 讀取器中的警告訊息"
  4428. #: resources/qml/Preferences/GeneralPage.qml:532
  4429. msgctxt "@info:tooltip"
  4430. msgid "Should layer be forced into compatibility mode?"
  4431. msgstr "分層檢視要強制進入相容模式嗎?"
  4432. #: resources/qml/Preferences/GeneralPage.qml:537
  4433. msgctxt "@option:check"
  4434. msgid "Force layer view compatibility mode (restart required)"
  4435. msgstr "強制分層檢視相容模式(需要重新啟動)"
  4436. #: resources/qml/Preferences/GeneralPage.qml:547
  4437. msgctxt "@info:tooltip"
  4438. msgid "Should Cura open at the location it was closed?"
  4439. msgstr "Cura 應該開啟在前次關閉時的位置嗎?"
  4440. #: resources/qml/Preferences/GeneralPage.qml:552
  4441. msgctxt "@option:check"
  4442. msgid "Restore window position on start"
  4443. msgstr "開啟時復原視窗位置"
  4444. #: resources/qml/Preferences/GeneralPage.qml:562
  4445. msgctxt "@info:tooltip"
  4446. msgid "What type of camera rendering should be used?"
  4447. msgstr "使用哪種類型的攝影機渲染?"
  4448. #: resources/qml/Preferences/GeneralPage.qml:569
  4449. msgctxt "@window:text"
  4450. msgid "Camera rendering:"
  4451. msgstr "攝影機渲染:"
  4452. #: resources/qml/Preferences/GeneralPage.qml:576
  4453. msgid "Perspective"
  4454. msgstr "透視"
  4455. #: resources/qml/Preferences/GeneralPage.qml:577
  4456. msgid "Orthographic"
  4457. msgstr "正交"
  4458. #: resources/qml/Preferences/GeneralPage.qml:617
  4459. msgctxt "@label"
  4460. msgid "Opening and saving files"
  4461. msgstr "開啟並儲存檔案"
  4462. #: resources/qml/Preferences/GeneralPage.qml:624
  4463. msgctxt "@info:tooltip"
  4464. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  4465. msgstr "從桌面或外部程式開啟檔案時,使用同一 Cura 視窗嗎?"
  4466. #: resources/qml/Preferences/GeneralPage.qml:629
  4467. msgctxt "@option:check"
  4468. msgid "Use a single instance of Cura"
  4469. msgstr "使用同一 Cura 視窗"
  4470. #: resources/qml/Preferences/GeneralPage.qml:640
  4471. msgctxt "@info:tooltip"
  4472. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  4473. msgstr "需要再載入新模型前清空視窗內之列印平台嗎?"
  4474. #: resources/qml/Preferences/GeneralPage.qml:646
  4475. msgctxt "@option:check"
  4476. msgid "Clear buildplate before loading model into the single instance"
  4477. msgstr "載入新模型時清空視窗內之列印平台"
  4478. #: resources/qml/Preferences/GeneralPage.qml:656
  4479. msgctxt "@info:tooltip"
  4480. msgid "Should models be scaled to the build volume if they are too large?"
  4481. msgstr "當模型的尺寸過大時,是否將模型自動縮小至列印範圍嗎?"
  4482. #: resources/qml/Preferences/GeneralPage.qml:661
  4483. msgctxt "@option:check"
  4484. msgid "Scale large models"
  4485. msgstr "縮小過大模型"
  4486. #: resources/qml/Preferences/GeneralPage.qml:671
  4487. msgctxt "@info:tooltip"
  4488. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  4489. msgstr "部份模型採用較大的單位(例如:公尺),導致模型變得非常小,要將這些模型放大嗎?"
  4490. #: resources/qml/Preferences/GeneralPage.qml:676
  4491. msgctxt "@option:check"
  4492. msgid "Scale extremely small models"
  4493. msgstr "放大過小模型"
  4494. #: resources/qml/Preferences/GeneralPage.qml:686
  4495. msgctxt "@info:tooltip"
  4496. msgid "Should models be selected after they are loaded?"
  4497. msgstr "模型載入後要設為被選擇的狀態嗎?"
  4498. #: resources/qml/Preferences/GeneralPage.qml:691
  4499. msgctxt "@option:check"
  4500. msgid "Select models when loaded"
  4501. msgstr "模型載入後選擇模型"
  4502. #: resources/qml/Preferences/GeneralPage.qml:701
  4503. msgctxt "@info:tooltip"
  4504. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  4505. msgstr "是否自動將印表機名稱作為列印作業名稱的前綴?"
  4506. #: resources/qml/Preferences/GeneralPage.qml:706
  4507. msgctxt "@option:check"
  4508. msgid "Add machine prefix to job name"
  4509. msgstr "將印表機名稱前綴添加到列印作業名稱中"
  4510. #: resources/qml/Preferences/GeneralPage.qml:716
  4511. msgctxt "@info:tooltip"
  4512. msgid "Should a summary be shown when saving a project file?"
  4513. msgstr "儲存專案檔案時是否顯示摘要?"
  4514. #: resources/qml/Preferences/GeneralPage.qml:720
  4515. msgctxt "@option:check"
  4516. msgid "Show summary dialog when saving project"
  4517. msgstr "儲存專案時顯示摘要對話框"
  4518. #: resources/qml/Preferences/GeneralPage.qml:730
  4519. msgctxt "@info:tooltip"
  4520. msgid "Default behavior when opening a project file"
  4521. msgstr "開啟專案檔案時的預設行為"
  4522. #: resources/qml/Preferences/GeneralPage.qml:738
  4523. msgctxt "@window:text"
  4524. msgid "Default behavior when opening a project file: "
  4525. msgstr "開啟專案檔案時的預設行為: "
  4526. #: resources/qml/Preferences/GeneralPage.qml:753
  4527. msgctxt "@option:openProject"
  4528. msgid "Always ask me this"
  4529. msgstr "每次都向我確認"
  4530. #: resources/qml/Preferences/GeneralPage.qml:754
  4531. msgctxt "@option:openProject"
  4532. msgid "Always open as a project"
  4533. msgstr "總是作為一個專案開啟"
  4534. #: resources/qml/Preferences/GeneralPage.qml:755
  4535. msgctxt "@option:openProject"
  4536. msgid "Always import models"
  4537. msgstr "總是匯入模型"
  4538. #: resources/qml/Preferences/GeneralPage.qml:792
  4539. msgctxt "@info:tooltip"
  4540. 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."
  4541. msgstr "當你對列印參數進行更改然後切換到其他列印參數時,將顯示一個對話框詢問你是否要保留修改。你也可以選擇預設不顯示該對話框。"
  4542. #: resources/qml/Preferences/GeneralPage.qml:801
  4543. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46
  4544. msgctxt "@label"
  4545. msgid "Profiles"
  4546. msgstr "列印參數"
  4547. #: resources/qml/Preferences/GeneralPage.qml:806
  4548. msgctxt "@window:text"
  4549. msgid "Default behavior for changed setting values when switching to a different profile: "
  4550. msgstr "當切換到另一組列印參數時,對於被修改過的設定的預設行為: "
  4551. #: resources/qml/Preferences/GeneralPage.qml:821
  4552. msgctxt "@option:discardOrKeep"
  4553. msgid "Always discard changed settings"
  4554. msgstr "總是放棄修改過的設定"
  4555. #: resources/qml/Preferences/GeneralPage.qml:822
  4556. msgctxt "@option:discardOrKeep"
  4557. msgid "Always transfer changed settings to new profile"
  4558. msgstr "總是將修改過的設定轉移至新的列印參數"
  4559. #: resources/qml/Preferences/GeneralPage.qml:856
  4560. msgctxt "@label"
  4561. msgid "Privacy"
  4562. msgstr "隱私權"
  4563. #: resources/qml/Preferences/GeneralPage.qml:862
  4564. msgctxt "@info:tooltip"
  4565. 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."
  4566. msgstr "你願意將關於你的列印資料以匿名形式發送到 UltiMaker 嗎?注意:我們不會記錄或發送任何模型、IP 位址或其他私人資料。"
  4567. #: resources/qml/Preferences/GeneralPage.qml:867
  4568. msgctxt "@option:check"
  4569. msgid "Send (anonymous) print information"
  4570. msgstr "(匿名)發送列印資訊"
  4571. #: resources/qml/Preferences/GeneralPage.qml:897
  4572. msgctxt "@label"
  4573. msgid "Updates"
  4574. msgstr "更新"
  4575. #: resources/qml/Preferences/GeneralPage.qml:904
  4576. msgctxt "@info:tooltip"
  4577. msgid "Should Cura check for updates when the program is started?"
  4578. msgstr "當 Cura 啟動時,是否自動檢查更新?"
  4579. #: resources/qml/Preferences/GeneralPage.qml:909
  4580. msgctxt "@option:check"
  4581. msgid "Check for updates on start"
  4582. msgstr "啟動時檢查更新"
  4583. #: resources/qml/Preferences/GeneralPage.qml:925
  4584. msgctxt "@info:tooltip"
  4585. msgid "When checking for updates, only check for stable releases."
  4586. msgstr "當檢查更新時,只檢查正式版本."
  4587. #: resources/qml/Preferences/GeneralPage.qml:931
  4588. msgctxt "@option:radio"
  4589. msgid "Stable releases only"
  4590. msgstr "僅正式版本"
  4591. #: resources/qml/Preferences/GeneralPage.qml:941
  4592. msgctxt "@info:tooltip"
  4593. msgid "When checking for updates, check for both stable and for beta releases."
  4594. msgstr "當檢查更新時,同時檢查正式版本與測試版本."
  4595. #: resources/qml/Preferences/GeneralPage.qml:947
  4596. msgctxt "@option:radio"
  4597. msgid "Stable and Beta releases"
  4598. msgstr "正式版本與測試版本發佈"
  4599. #: resources/qml/Preferences/GeneralPage.qml:957
  4600. msgctxt "@info:tooltip"
  4601. 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!"
  4602. msgstr "需要於開啟Cura時自動更新插件嗎? 建議您勿關閉此功能!"
  4603. #: resources/qml/Preferences/GeneralPage.qml:962
  4604. msgctxt "@option:check"
  4605. msgid "Get notifications for plugin updates"
  4606. msgstr "設定插件更新提示"
  4607. #: resources/qml/Preferences/MachinesPage.qml:50
  4608. msgctxt "@action:button"
  4609. msgid "Add New"
  4610. msgstr ""
  4611. #: resources/qml/Preferences/MachinesPage.qml:147
  4612. #: resources/qml/Preferences/Materials/MaterialsPage.qml:160
  4613. #: resources/qml/Preferences/ProfilesPage.qml:294
  4614. msgctxt "@action:button"
  4615. msgid "Activate"
  4616. msgstr "啟用"
  4617. #: resources/qml/Preferences/MachinesPage.qml:159
  4618. #: resources/qml/Preferences/ProfilesPage.qml:331
  4619. msgctxt "@action:button"
  4620. msgid "Rename"
  4621. msgstr "重命名"
  4622. #: resources/qml/Preferences/Materials/MaterialsPage.qml:72
  4623. msgctxt "@label"
  4624. msgid "Materials compatible with active printer:"
  4625. msgstr ""
  4626. #: resources/qml/Preferences/Materials/MaterialsPage.qml:78
  4627. #: resources/qml/Preferences/ProfilesPage.qml:94
  4628. msgctxt "@action:button"
  4629. msgid "Create new"
  4630. msgstr ""
  4631. #: resources/qml/Preferences/Materials/MaterialsPage.qml:90
  4632. #: resources/qml/Preferences/ProfilesPage.qml:88
  4633. msgctxt "@action:button"
  4634. msgid "Import"
  4635. msgstr "匯入"
  4636. #: resources/qml/Preferences/Materials/MaterialsPage.qml:101
  4637. msgctxt "@action:button"
  4638. msgid "Sync with Printers"
  4639. msgstr ""
  4640. #: resources/qml/Preferences/Materials/MaterialsPage.qml:174
  4641. #: resources/qml/Preferences/ProfilesPage.qml:311
  4642. msgctxt "@action:button"
  4643. msgid "Duplicate"
  4644. msgstr "複製"
  4645. #: resources/qml/Preferences/Materials/MaterialsPage.qml:198
  4646. #: resources/qml/Preferences/ProfilesPage.qml:342
  4647. msgctxt "@action:button"
  4648. msgid "Export"
  4649. msgstr "匯出"
  4650. #: resources/qml/Preferences/Materials/MaterialsPage.qml:212
  4651. #: resources/qml/Preferences/ProfilesPage.qml:392
  4652. msgctxt "@title:window"
  4653. msgid "Confirm Remove"
  4654. msgstr "移除確認"
  4655. #: resources/qml/Preferences/Materials/MaterialsPage.qml:215
  4656. #: resources/qml/Preferences/ProfilesPage.qml:393
  4657. msgctxt "@label (%1 is object name)"
  4658. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  4659. msgstr "你確定要移除 %1 嗎?這動作無法復原!"
  4660. #: resources/qml/Preferences/Materials/MaterialsPage.qml:228
  4661. #: resources/qml/Preferences/Materials/MaterialsPage.qml:238
  4662. msgctxt "@title:window"
  4663. msgid "Import Material"
  4664. msgstr "匯入線材設定"
  4665. #: resources/qml/Preferences/Materials/MaterialsPage.qml:242
  4666. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4667. msgid "Successfully imported material <filename>%1</filename>"
  4668. msgstr "成功匯入線材 <filename>%1</filename>"
  4669. #: resources/qml/Preferences/Materials/MaterialsPage.qml:245
  4670. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4671. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  4672. msgstr "無法匯入線材 <filename>%1</filename>:<message>%2</message>"
  4673. #: resources/qml/Preferences/Materials/MaterialsPage.qml:256
  4674. #: resources/qml/Preferences/Materials/MaterialsPage.qml:267
  4675. msgctxt "@title:window"
  4676. msgid "Export Material"
  4677. msgstr "匯出線材設定"
  4678. #: resources/qml/Preferences/Materials/MaterialsPage.qml:272
  4679. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4680. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4681. msgstr "無法匯出線材至 <filename>%1</filename>:<message>%2</message>"
  4682. #: resources/qml/Preferences/Materials/MaterialsPage.qml:275
  4683. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4684. msgid "Successfully exported material to <filename>%1</filename>"
  4685. msgstr "成功匯出線材至:<filename>%1</filename>"
  4686. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18
  4687. msgctxt "@title:window"
  4688. msgid "Sync materials with printers"
  4689. msgstr "同步印表機線材設定"
  4690. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49
  4691. msgctxt "@title:header"
  4692. msgid "Sync materials with printers"
  4693. msgstr "同步印表機線材設定"
  4694. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55
  4695. msgctxt "@text"
  4696. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  4697. msgstr "依照下述簡單的步驟。您將同步線材設定檔至您的印表機."
  4698. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  4699. msgctxt "@button"
  4700. msgid "Why do I need to sync material profiles?"
  4701. msgstr "為何我需要同步線材設定檔?"
  4702. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86
  4703. msgctxt "@button"
  4704. msgid "Start"
  4705. msgstr "開始"
  4706. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144
  4707. msgctxt "@title:header"
  4708. msgid "Sign in"
  4709. msgstr "登入"
  4710. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150
  4711. msgctxt "@text"
  4712. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  4713. msgstr "為了自動將線材設定檔與所有連接到 Digital Factory 的列印機同步,您必須先從Cura進行登入."
  4714. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174
  4715. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462
  4716. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602
  4717. msgctxt "@button"
  4718. msgid "Sync materials with USB"
  4719. msgstr "從USB進行同步線材設定檔"
  4720. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  4721. msgctxt "@title:header"
  4722. msgid "The following printers will receive the new material profiles:"
  4723. msgstr "下述的印表機將新增新的線材設定檔:"
  4724. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  4725. msgctxt "@title:header"
  4726. msgid "Something went wrong when sending the materials to the printers."
  4727. msgstr "再發送線材設定檔至印表機時發生錯誤."
  4728. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221
  4729. msgctxt "@title:header"
  4730. msgid "Material profiles successfully synced with the following printers:"
  4731. msgstr "線材設定檔成功同步至下述的印表機內:"
  4732. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258
  4733. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445
  4734. msgctxt "@button"
  4735. msgid "Troubleshooting"
  4736. msgstr "故障排除"
  4737. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422
  4738. msgctxt "@text Asking the user whether printers are missing in a list."
  4739. msgid "Printers missing?"
  4740. msgstr "列印機資訊遺失了?"
  4741. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424
  4742. msgctxt "@text"
  4743. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  4744. msgstr "確認您的列印機已開機並連接至Digital Factory."
  4745. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433
  4746. msgctxt "@button"
  4747. msgid "Refresh List"
  4748. msgstr "重新載入清單"
  4749. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473
  4750. msgctxt "@button"
  4751. msgid "Try again"
  4752. msgstr "再試一次"
  4753. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477
  4754. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4755. msgctxt "@button"
  4756. msgid "Done"
  4757. msgstr "完成"
  4758. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479
  4759. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622
  4760. msgctxt "@button"
  4761. msgid "Sync"
  4762. msgstr "同步"
  4763. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535
  4764. msgctxt "@button"
  4765. msgid "Syncing"
  4766. msgstr "同步中"
  4767. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553
  4768. msgctxt "@title:header"
  4769. msgid "No printers found"
  4770. msgstr "未發現任何列印機資訊"
  4771. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574
  4772. msgctxt "@text"
  4773. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  4774. msgstr "您似乎沒有任何兼容的打印機連接至Digital Factory。請確保您的打印機已連接並且安裝最新的軟體."
  4775. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585
  4776. msgctxt "@button"
  4777. msgid "Learn how to connect your printer to Digital Factory"
  4778. msgstr "學習如何連結您的印表機至Digital Factory"
  4779. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613
  4780. msgctxt "@button"
  4781. msgid "Refresh"
  4782. msgstr "重新載入"
  4783. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642
  4784. msgctxt "@title:header"
  4785. msgid "Sync material profiles via USB"
  4786. msgstr "透過USB同步您的線材設定檔"
  4787. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648
  4788. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  4789. msgid "Follow the following steps to load the new material profiles to your printer."
  4790. msgstr "請依照下述步驟載入新的線材設定檔至印表機."
  4791. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  4792. msgctxt "@text"
  4793. msgid "Click the export material archive button."
  4794. msgstr "請點擊輸出材料檔案按鈕."
  4795. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  4796. msgctxt "@text"
  4797. msgid "Save the .umm file on a USB stick."
  4798. msgstr "將 .umm 的文件儲存至USB."
  4799. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  4800. msgctxt "@text"
  4801. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  4802. msgstr "插入USB至您的列印機,並啟動程式去載入新的線材設定檔."
  4803. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  4804. msgctxt "@button"
  4805. msgid "How to load new material profiles to my printer"
  4806. msgstr "如何載入新的線材設定檔至我的列印機"
  4807. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703
  4808. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299
  4809. msgctxt "@button"
  4810. msgid "Back"
  4811. msgstr "返回"
  4812. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4813. msgctxt "@button"
  4814. msgid "Export material archive"
  4815. msgstr "輸出線材設定存檔"
  4816. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747
  4817. msgctxt "@title:window"
  4818. msgid "Export All Materials"
  4819. msgstr "匯出所有線材設定"
  4820. #: resources/qml/Preferences/Materials/MaterialsView.qml:121
  4821. msgctxt "@title:window"
  4822. msgid "Confirm Diameter Change"
  4823. msgstr "直徑更改確認"
  4824. #: resources/qml/Preferences/Materials/MaterialsView.qml:122
  4825. msgctxt "@label (%1 is a number)"
  4826. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  4827. msgstr "新的線材直徑設定為 %1 mm,這與目前的擠出機不相容。你要繼續嗎?"
  4828. #: resources/qml/Preferences/Materials/MaterialsView.qml:152
  4829. msgctxt "@label"
  4830. msgid "Display Name"
  4831. msgstr "顯示名稱"
  4832. #: resources/qml/Preferences/Materials/MaterialsView.qml:171
  4833. msgctxt "@label"
  4834. msgid "Brand"
  4835. msgstr "品牌"
  4836. #: resources/qml/Preferences/Materials/MaterialsView.qml:190
  4837. msgctxt "@label"
  4838. msgid "Material Type"
  4839. msgstr "線材類型"
  4840. #: resources/qml/Preferences/Materials/MaterialsView.qml:210
  4841. msgctxt "@label"
  4842. msgid "Color"
  4843. msgstr "顏色"
  4844. #: resources/qml/Preferences/Materials/MaterialsView.qml:262
  4845. msgctxt "@title"
  4846. msgid "Material color picker"
  4847. msgstr ""
  4848. #: resources/qml/Preferences/Materials/MaterialsView.qml:275
  4849. msgctxt "@label"
  4850. msgid "Properties"
  4851. msgstr "屬性"
  4852. #: resources/qml/Preferences/Materials/MaterialsView.qml:286
  4853. msgctxt "@label"
  4854. msgid "Density"
  4855. msgstr "密度"
  4856. #: resources/qml/Preferences/Materials/MaterialsView.qml:319
  4857. msgctxt "@label"
  4858. msgid "Diameter"
  4859. msgstr "直徑"
  4860. #: resources/qml/Preferences/Materials/MaterialsView.qml:369
  4861. msgctxt "@label"
  4862. msgid "Filament Cost"
  4863. msgstr "線材成本"
  4864. #: resources/qml/Preferences/Materials/MaterialsView.qml:401
  4865. msgctxt "@label"
  4866. msgid "Filament weight"
  4867. msgstr "線材重量"
  4868. #: resources/qml/Preferences/Materials/MaterialsView.qml:433
  4869. msgctxt "@label"
  4870. msgid "Filament length"
  4871. msgstr "線材長度"
  4872. #: resources/qml/Preferences/Materials/MaterialsView.qml:451
  4873. msgctxt "@label"
  4874. msgid "Cost per Meter"
  4875. msgstr "每公尺成本"
  4876. #: resources/qml/Preferences/Materials/MaterialsView.qml:465
  4877. msgctxt "@label"
  4878. msgid "This material is linked to %1 and shares some of its properties."
  4879. msgstr "此線材與 %1 相關聯,並共享其部份屬性。"
  4880. #: resources/qml/Preferences/Materials/MaterialsView.qml:472
  4881. msgctxt "@label"
  4882. msgid "Unlink Material"
  4883. msgstr "解除聯結線材"
  4884. #: resources/qml/Preferences/Materials/MaterialsView.qml:485
  4885. msgctxt "@label"
  4886. msgid "Description"
  4887. msgstr "描述"
  4888. #: resources/qml/Preferences/Materials/MaterialsView.qml:503
  4889. msgctxt "@label"
  4890. msgid "Adhesion Information"
  4891. msgstr "附著資訊"
  4892. #: resources/qml/Preferences/Materials/MaterialsView.qml:642
  4893. msgctxt "@title"
  4894. msgid "Information"
  4895. msgstr "資訊"
  4896. #: resources/qml/Preferences/Materials/MaterialsView.qml:647
  4897. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18
  4898. msgctxt "@label"
  4899. msgid "Print settings"
  4900. msgstr "列印設定"
  4901. #: resources/qml/Preferences/ProfilesPage.qml:59
  4902. msgctxt "@label"
  4903. msgid "Profiles compatible with active printer:"
  4904. msgstr ""
  4905. #: resources/qml/Preferences/ProfilesPage.qml:98
  4906. msgctxt "@action:tooltip"
  4907. msgid "Create new profile from current settings/overrides"
  4908. msgstr ""
  4909. #: resources/qml/Preferences/ProfilesPage.qml:125
  4910. msgctxt "@action:label"
  4911. msgid "Some settings from current profile were overwritten."
  4912. msgstr ""
  4913. #: resources/qml/Preferences/ProfilesPage.qml:140
  4914. msgctxt "@action:button"
  4915. msgid "Update profile."
  4916. msgstr ""
  4917. #: resources/qml/Preferences/ProfilesPage.qml:143
  4918. msgctxt "@action:tooltip"
  4919. msgid "Update profile with current settings/overrides"
  4920. msgstr ""
  4921. #: resources/qml/Preferences/ProfilesPage.qml:148
  4922. msgctxt "@action:button"
  4923. msgid "Discard current changes"
  4924. msgstr "捨棄目前更改"
  4925. #: resources/qml/Preferences/ProfilesPage.qml:158
  4926. msgctxt "@action:label"
  4927. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  4928. msgstr "此列印參數使用印表機指定的預設值,因此在下面的清單中沒有此設定項。"
  4929. #: resources/qml/Preferences/ProfilesPage.qml:165
  4930. msgctxt "@action:label"
  4931. msgid "Your current settings match the selected profile."
  4932. msgstr "你目前的設定與選定的列印參數相匹配。"
  4933. #: resources/qml/Preferences/ProfilesPage.qml:175
  4934. msgctxt "@title:tab"
  4935. msgid "Global Settings"
  4936. msgstr "全局設定"
  4937. #: resources/qml/Preferences/ProfilesPage.qml:278
  4938. msgctxt "@title:window"
  4939. msgid "Create Profile"
  4940. msgstr "建立列印參數"
  4941. #: resources/qml/Preferences/ProfilesPage.qml:280
  4942. msgctxt "@info"
  4943. msgid "Please provide a name for this profile."
  4944. msgstr "請為此參數提供一個名字。"
  4945. #: resources/qml/Preferences/ProfilesPage.qml:352
  4946. #: resources/qml/Preferences/ProfilesPage.qml:368
  4947. msgctxt "@title:window"
  4948. msgid "Export Profile"
  4949. msgstr "匯出列印參數"
  4950. #: resources/qml/Preferences/ProfilesPage.qml:382
  4951. msgctxt "@title:window"
  4952. msgid "Duplicate Profile"
  4953. msgstr "複製列印參數"
  4954. #: resources/qml/Preferences/ProfilesPage.qml:409
  4955. msgctxt "@title:window"
  4956. msgid "Rename Profile"
  4957. msgstr "重命名列印參數"
  4958. #: resources/qml/Preferences/ProfilesPage.qml:422
  4959. #: resources/qml/Preferences/ProfilesPage.qml:429
  4960. msgctxt "@title:window"
  4961. msgid "Import Profile"
  4962. msgstr "匯入列印參數"
  4963. #: resources/qml/Preferences/SettingVisibilityItem.qml:56
  4964. msgctxt "@item:tooltip"
  4965. msgid "This setting has been hidden by the active machine and will not be visible."
  4966. msgstr ""
  4967. #: resources/qml/Preferences/SettingVisibilityItem.qml:73
  4968. msgctxt "@item:tooltip %1 is list of setting names"
  4969. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  4970. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  4971. msgstr[0] ""
  4972. #: resources/qml/Preferences/SettingVisibilityPage.qml:13
  4973. msgctxt "@title:tab"
  4974. msgid "Setting Visibility"
  4975. msgstr "參數顯示設定"
  4976. #: resources/qml/Preferences/SettingVisibilityPage.qml:55
  4977. msgctxt "@label:textbox"
  4978. msgid "Check all"
  4979. msgstr "全選"
  4980. #: resources/qml/PrintMonitor.qml:156
  4981. msgctxt "@label"
  4982. msgid "Active print"
  4983. msgstr "正在列印"
  4984. #: resources/qml/PrintMonitor.qml:164
  4985. msgctxt "@label"
  4986. msgid "Job Name"
  4987. msgstr "作業名稱"
  4988. #: resources/qml/PrintMonitor.qml:172
  4989. msgctxt "@label"
  4990. msgid "Printing Time"
  4991. msgstr "列印時間"
  4992. #: resources/qml/PrintMonitor.qml:180
  4993. msgctxt "@label"
  4994. msgid "Estimated time left"
  4995. msgstr "預計剩餘時間"
  4996. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  4997. msgctxt "@label"
  4998. msgid "Profile"
  4999. msgstr "參數"
  5000. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136
  5001. msgctxt "@tooltip"
  5002. msgid ""
  5003. "Some setting/override values are different from the values stored in the profile.\n"
  5004. "\n"
  5005. "Click to open the profile manager."
  5006. msgstr ""
  5007. "部份設定/覆寫值與儲存在列印參數中的值不同。\n"
  5008. "\n"
  5009. "點擊開啟列印參數管理器。"
  5010. #: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  5011. msgctxt "@label:header"
  5012. msgid "Custom profiles"
  5013. msgstr "自訂列印參數"
  5014. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20
  5015. msgctxt "@label shown when we load a Gcode file"
  5016. msgid "Print setup disabled. G-code file can not be modified."
  5017. msgstr "列印設定已被停用。 G-code 檔案無法修改。"
  5018. #: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:160
  5019. msgctxt "@button"
  5020. msgid "Recommended"
  5021. msgstr "推薦"
  5022. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  5023. msgctxt "@label:Should be short"
  5024. msgid "On"
  5025. msgstr "開啟"
  5026. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  5027. msgctxt "@label:Should be short"
  5028. msgid "Off"
  5029. msgstr "關閉"
  5030. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65
  5031. msgctxt "@info, %1 is the name of the custom profile"
  5032. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  5033. msgstr ""
  5034. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78
  5035. msgctxt "@info, %1 is the name of the custom profile"
  5036. msgid "<b>%1</b> custom profile is overriding some settings."
  5037. msgstr ""
  5038. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92
  5039. msgctxt "@info %1 is the name of a profile"
  5040. msgid "Recommended settings (for <b>%1</b>) were altered."
  5041. msgstr ""
  5042. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106
  5043. msgctxt "@info %1 is the name of a profile"
  5044. msgid "Some setting-values defined in <b>%1</b> were overridden."
  5045. msgstr ""
  5046. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137
  5047. msgctxt "@info"
  5048. msgid "Reset to defaults."
  5049. msgstr ""
  5050. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178
  5051. msgctxt "@info"
  5052. msgid "Compare and save."
  5053. msgstr ""
  5054. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15
  5055. msgctxt "@label"
  5056. msgid "Adhesion"
  5057. msgstr "附著"
  5058. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20
  5059. msgctxt "@label"
  5060. 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."
  5061. msgstr "允許列印邊緣或木筏。這將在你的物件周圍或下方添加一個容易切斷的平面區域。"
  5062. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102
  5063. #, fuzzy
  5064. msgctxt "@label"
  5065. msgid "Recommended print settings"
  5066. msgstr "轉換設定"
  5067. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111
  5068. #, fuzzy
  5069. msgctxt "@button"
  5070. msgid "Show Custom"
  5071. msgstr "自訂選項"
  5072. #: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27
  5073. msgctxt "@label"
  5074. msgid "Resolution"
  5075. msgstr ""
  5076. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16
  5077. msgctxt "@label"
  5078. msgid "Strength"
  5079. msgstr ""
  5080. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20
  5081. msgctxt "@label"
  5082. msgid "The following settings define the strength of your part."
  5083. msgstr ""
  5084. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34
  5085. #, fuzzy
  5086. msgctxt "infill_sparse_density description"
  5087. msgid "Infill Density"
  5088. msgstr "只有填充"
  5089. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35
  5090. msgctxt "@label"
  5091. msgid "Adjusts the density of infill of the print."
  5092. msgstr ""
  5093. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54
  5094. #, fuzzy
  5095. msgctxt "@action:label"
  5096. msgid "Infill Pattern"
  5097. msgstr "只有填充"
  5098. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56
  5099. msgctxt "@label"
  5100. msgid ""
  5101. "The pattern of the infill material of the print:\n"
  5102. "\n"
  5103. "For quick prints of non functional model choose line, zig zag or lighting infill.\n"
  5104. "\n"
  5105. "For functional part not subjected to a lot of stress we reccomend grid or triangle or tri hexagon.\n"
  5106. "\n"
  5107. "For functional 3D prints which require high strenght in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  5108. msgstr ""
  5109. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67
  5110. #, fuzzy
  5111. msgctxt "@action:label"
  5112. msgid "Shell Thickness"
  5113. msgstr "層厚"
  5114. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68
  5115. msgctxt "@label"
  5116. msgid "Defines the tickness of your part side walls, roof and floor."
  5117. msgstr ""
  5118. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16
  5119. msgctxt "@label"
  5120. msgid "Support"
  5121. msgstr "支撐"
  5122. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21
  5123. #, fuzzy
  5124. msgctxt "@label"
  5125. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  5126. msgstr "在模型的突出部分產生支撐結構。若不這樣做,這些部分在列印時將倒塌。"
  5127. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40
  5128. #, fuzzy
  5129. msgctxt "@action:label"
  5130. msgid "Support Type"
  5131. msgstr "支撐"
  5132. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41
  5133. msgctxt "@label"
  5134. msgid ""
  5135. "Chooses between the techniques available to generate support. \n"
  5136. "\n"
  5137. "\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n"
  5138. "\n"
  5139. "\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  5140. msgstr ""
  5141. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53
  5142. #, fuzzy
  5143. msgctxt "@action:label"
  5144. msgid "Print with"
  5145. msgstr "使用 "
  5146. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54
  5147. msgctxt "@label"
  5148. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  5149. msgstr ""
  5150. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67
  5151. msgctxt "@action:label"
  5152. msgid "Placement"
  5153. msgstr ""
  5154. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68
  5155. msgctxt "support_type description"
  5156. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  5157. msgstr ""
  5158. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31
  5159. msgctxt "@error"
  5160. msgid "Configuration not supported"
  5161. msgstr ""
  5162. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39
  5163. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  5164. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  5165. msgstr ""
  5166. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47
  5167. msgctxt "@button:label"
  5168. msgid "Learn more"
  5169. msgstr ""
  5170. #: resources/qml/PrinterOutput/ExtruderBox.qml:40
  5171. msgctxt "@label"
  5172. msgid "Extruder"
  5173. msgstr "擠出機"
  5174. #: resources/qml/PrinterOutput/ExtruderBox.qml:70
  5175. msgctxt "@tooltip"
  5176. 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."
  5177. msgstr "加熱頭的目標溫度。加熱頭將加熱或冷卻至此溫度。若設定為 0,則關閉加熱頭的加熱。"
  5178. #: resources/qml/PrinterOutput/ExtruderBox.qml:105
  5179. msgctxt "@tooltip"
  5180. msgid "The current temperature of this hotend."
  5181. msgstr "此加熱頭的目前溫度。"
  5182. #: resources/qml/PrinterOutput/ExtruderBox.qml:182
  5183. msgctxt "@tooltip of temperature input"
  5184. msgid "The temperature to pre-heat the hotend to."
  5185. msgstr "加熱頭預熱溫度。"
  5186. #: resources/qml/PrinterOutput/ExtruderBox.qml:271
  5187. #: resources/qml/PrinterOutput/HeatedBedBox.qml:259
  5188. msgctxt "@button Cancel pre-heating"
  5189. msgid "Cancel"
  5190. msgstr "取消"
  5191. #: resources/qml/PrinterOutput/ExtruderBox.qml:274
  5192. #: resources/qml/PrinterOutput/HeatedBedBox.qml:263
  5193. msgctxt "@button"
  5194. msgid "Pre-heat"
  5195. msgstr "預熱"
  5196. #: resources/qml/PrinterOutput/ExtruderBox.qml:297
  5197. msgctxt "@tooltip of pre-heat"
  5198. 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."
  5199. msgstr "列印前預先加熱。你可以在加熱時繼續調整你的列印,當你準備好列印時就不需等待加熱頭升溫。"
  5200. #: resources/qml/PrinterOutput/ExtruderBox.qml:335
  5201. msgctxt "@tooltip"
  5202. msgid "The colour of the material in this extruder."
  5203. msgstr "該擠出機中線材的顏色。"
  5204. #: resources/qml/PrinterOutput/ExtruderBox.qml:367
  5205. msgctxt "@tooltip"
  5206. msgid "The material in this extruder."
  5207. msgstr "該擠出機中的線材。"
  5208. #: resources/qml/PrinterOutput/ExtruderBox.qml:400
  5209. msgctxt "@tooltip"
  5210. msgid "The nozzle inserted in this extruder."
  5211. msgstr "該擠出機所使用的噴頭。"
  5212. #: resources/qml/PrinterOutput/HeatedBedBox.qml:25
  5213. msgctxt "@label"
  5214. msgid "Build plate"
  5215. msgstr "列印平台"
  5216. #: resources/qml/PrinterOutput/HeatedBedBox.qml:55
  5217. msgctxt "@tooltip"
  5218. 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."
  5219. msgstr "熱床的目標溫度。熱床將加熱或冷卻至此溫度。若設定為 0,則不使用熱床。"
  5220. #: resources/qml/PrinterOutput/HeatedBedBox.qml:88
  5221. msgctxt "@tooltip"
  5222. msgid "The current temperature of the heated bed."
  5223. msgstr "熱床目前溫度。"
  5224. #: resources/qml/PrinterOutput/HeatedBedBox.qml:162
  5225. msgctxt "@tooltip of temperature input"
  5226. msgid "The temperature to pre-heat the bed to."
  5227. msgstr "熱床的預熱溫度。"
  5228. #: resources/qml/PrinterOutput/HeatedBedBox.qml:286
  5229. msgctxt "@tooltip of pre-heat"
  5230. 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."
  5231. msgstr "列印前請預熱熱床。你可以在熱床加熱時繼續調整相關物件,讓你在準備列印時不必等待熱床加熱完畢。"
  5232. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  5233. msgctxt "@label"
  5234. msgid "Printer control"
  5235. msgstr "印表機控制"
  5236. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  5237. msgctxt "@label"
  5238. msgid "Jog Position"
  5239. msgstr "輕搖位置"
  5240. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  5241. msgctxt "@label"
  5242. msgid "X/Y"
  5243. msgstr "X/Y"
  5244. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  5245. msgctxt "@label"
  5246. msgid "Z"
  5247. msgstr "Z"
  5248. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  5249. msgctxt "@label"
  5250. msgid "Jog Distance"
  5251. msgstr "輕搖距離"
  5252. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  5253. msgctxt "@label"
  5254. msgid "Send G-code"
  5255. msgstr "傳送 G-code"
  5256. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  5257. msgctxt "@tooltip of G-code command input"
  5258. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  5259. msgstr "傳送一個自訂的 G-code 命令到連接中的印表機。按下 Enter 鍵傳送命令。"
  5260. #: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  5261. msgctxt "@info:status"
  5262. msgid "The printer is not connected."
  5263. msgstr "尚未連線到印表機。"
  5264. #: resources/qml/PrinterSelector/MachineListButton.qml:34
  5265. msgctxt "@label"
  5266. msgid "Hide all connected printers"
  5267. msgstr ""
  5268. #: resources/qml/PrinterSelector/MachineListButton.qml:47
  5269. msgctxt "@label"
  5270. msgid "Show all connected printers"
  5271. msgstr ""
  5272. #: resources/qml/PrinterSelector/MachineSelector.qml:64
  5273. msgctxt "@status"
  5274. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  5275. msgstr "雲端印表機為離線狀態。請檢查印表機是否已開機並連上網路。"
  5276. #: resources/qml/PrinterSelector/MachineSelector.qml:68
  5277. msgctxt "@status"
  5278. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  5279. msgstr "此印表機未連接到你的帳號。請前往 Ultimaker Digital Factory 建立連接。"
  5280. #: resources/qml/PrinterSelector/MachineSelector.qml:73
  5281. msgctxt "@status"
  5282. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  5283. msgstr "雲端服務目前無法使用。請登入以連接到雲端印表機。"
  5284. #: resources/qml/PrinterSelector/MachineSelector.qml:78
  5285. msgctxt "@status"
  5286. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  5287. msgstr "雲端服務目前無法使用。請檢查你的網路連線。"
  5288. #: resources/qml/PrinterSelector/MachineSelectorList.qml:30
  5289. #: resources/qml/PrinterSelector/MachineSelectorList.qml:32
  5290. msgctxt "@label"
  5291. msgid "Other printers"
  5292. msgstr ""
  5293. #: resources/qml/ProfileOverview.qml:36
  5294. msgctxt "@title:column"
  5295. msgid "Setting"
  5296. msgstr "設定"
  5297. #: resources/qml/ProfileOverview.qml:37
  5298. msgctxt "@title:column"
  5299. msgid "Profile"
  5300. msgstr "列印參數"
  5301. #: resources/qml/ProfileOverview.qml:38
  5302. msgctxt "@title:column"
  5303. msgid "Current"
  5304. msgstr "目前"
  5305. #: resources/qml/ProfileOverview.qml:39
  5306. msgctxt "@title:column Unit of measurement"
  5307. msgid "Unit"
  5308. msgstr ""
  5309. #: resources/qml/SearchBar.qml:17
  5310. msgctxt "@placeholder"
  5311. msgid "Search"
  5312. msgstr ""
  5313. #: resources/qml/Settings/SettingCategory.qml:115
  5314. msgctxt "@label"
  5315. msgid ""
  5316. "Some hidden settings use values different from their normal calculated value.\n"
  5317. "\n"
  5318. "Click to make these settings visible."
  5319. msgstr ""
  5320. "部份隱藏設定使用的值與一般計算所得的值不同。\n"
  5321. "\n"
  5322. "點擊以顯這些設定。"
  5323. #: resources/qml/Settings/SettingItem.qml:84
  5324. msgctxt "@label"
  5325. msgid "This setting is not used because all the settings that it influences are overridden."
  5326. msgstr "此設定未被使用,因為受它影響的設定都被覆寫了。"
  5327. #: resources/qml/Settings/SettingItem.qml:89
  5328. msgctxt "@label Header for list of settings."
  5329. msgid "Affects"
  5330. msgstr "影響"
  5331. #: resources/qml/Settings/SettingItem.qml:94
  5332. msgctxt "@label Header for list of settings."
  5333. msgid "Affected By"
  5334. msgstr "影響因素"
  5335. #: resources/qml/Settings/SettingItem.qml:190
  5336. msgctxt "@label"
  5337. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  5338. msgstr "這個設定是所有擠出機共用的。修改它會同時更動到所有擠出機的值。"
  5339. #: resources/qml/Settings/SettingItem.qml:194
  5340. msgctxt "@label"
  5341. msgid "This setting is resolved from conflicting extruder-specific values:"
  5342. msgstr "此設定是透過解決擠出機設定值衝突獲得:"
  5343. #: resources/qml/Settings/SettingItem.qml:234
  5344. msgctxt "@label"
  5345. msgid ""
  5346. "This setting has a value that is different from the profile.\n"
  5347. "\n"
  5348. "Click to restore the value of the profile."
  5349. msgstr ""
  5350. "此設定的值與列印參數不同。\n"
  5351. "\n"
  5352. "單擊以復原列印參數的值。"
  5353. #: resources/qml/Settings/SettingItem.qml:334
  5354. msgctxt "@label"
  5355. msgid ""
  5356. "This setting is normally calculated, but it currently has an absolute value set.\n"
  5357. "\n"
  5358. "Click to restore the calculated value."
  5359. msgstr ""
  5360. "這個設定通常由計算得出,可是它目前被設定為一個數值。\n"
  5361. "\n"
  5362. "點擊以恢復計算得出的數值。"
  5363. #: resources/qml/Settings/SettingView.qml:48
  5364. msgctxt "@label:textbox"
  5365. msgid "Search settings"
  5366. msgstr "搜尋設定"
  5367. #: resources/qml/Settings/SettingView.qml:395
  5368. msgctxt "@action:menu"
  5369. msgid "Copy value to all extruders"
  5370. msgstr "將設定值複製到所有擠出機"
  5371. #: resources/qml/Settings/SettingView.qml:404
  5372. msgctxt "@action:menu"
  5373. msgid "Copy all changed values to all extruders"
  5374. msgstr "複製所有改變的設定值到所有擠出機"
  5375. #: resources/qml/Settings/SettingView.qml:440
  5376. msgctxt "@action:menu"
  5377. msgid "Hide this setting"
  5378. msgstr "隱藏此設定"
  5379. #: resources/qml/Settings/SettingView.qml:453
  5380. msgctxt "@action:menu"
  5381. msgid "Don't show this setting"
  5382. msgstr "不再顯示此設定"
  5383. #: resources/qml/Settings/SettingView.qml:457
  5384. msgctxt "@action:menu"
  5385. msgid "Keep this setting visible"
  5386. msgstr "保持此設定顯示"
  5387. #: resources/qml/Toolbar.qml:142
  5388. msgctxt "@label %1 is filled in with the name of an extruder"
  5389. msgid "Print Selected Model with %1"
  5390. msgid_plural "Print Selected Models with %1"
  5391. msgstr[0] "用 %1 列印所選模型"
  5392. #: resources/qml/ViewOrientationControls.qml:25
  5393. msgctxt "@info:tooltip"
  5394. msgid "3D View"
  5395. msgstr "立體圖"
  5396. #: resources/qml/ViewOrientationControls.qml:38
  5397. msgctxt "@info:tooltip"
  5398. msgid "Front View"
  5399. msgstr "前視圖"
  5400. #: resources/qml/ViewOrientationControls.qml:51
  5401. msgctxt "@info:tooltip"
  5402. msgid "Top View"
  5403. msgstr "上視圖"
  5404. #: resources/qml/ViewOrientationControls.qml:64
  5405. msgctxt "@info:tooltip"
  5406. msgid "Left View"
  5407. msgstr "左視圖"
  5408. #: resources/qml/ViewOrientationControls.qml:77
  5409. msgctxt "@info:tooltip"
  5410. msgid "Right View"
  5411. msgstr "右視圖"
  5412. #: resources/qml/ViewsSelector.qml:50
  5413. msgctxt "@label"
  5414. msgid "View type"
  5415. msgstr "檢示類型"
  5416. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  5417. msgctxt "@label"
  5418. msgid "Add a Cloud printer"
  5419. msgstr "新增雲端印表機"
  5420. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:73
  5421. msgctxt "@label"
  5422. msgid "Waiting for Cloud response"
  5423. msgstr "等待雲端服務回應"
  5424. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:83
  5425. msgctxt "@label"
  5426. msgid "No printers found in your account?"
  5427. msgstr "在你的帳號未發現任何印表機?"
  5428. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:117
  5429. msgctxt "@label"
  5430. msgid "The following printers in your account have been added in Cura:"
  5431. msgstr "下列您帳號中的印表機已新增至 Cura:"
  5432. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:186
  5433. msgctxt "@button"
  5434. msgid "Add printer manually"
  5435. msgstr "手動新增印表機"
  5436. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203
  5437. msgctxt "@label"
  5438. msgid "Manufacturer"
  5439. msgstr "製造商"
  5440. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
  5441. msgctxt "@label"
  5442. msgid "Profile author"
  5443. msgstr "列印參數作者"
  5444. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226
  5445. msgctxt "@label"
  5446. msgid "Printer name"
  5447. msgstr "印表機名稱"
  5448. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232
  5449. msgctxt "@text"
  5450. msgid "Please name your printer"
  5451. msgstr "請為你的印表機取一個名稱"
  5452. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  5453. msgctxt "@label"
  5454. msgid "There is no printer found over your network."
  5455. msgstr "在你的網路上找不到印表機。"
  5456. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  5457. msgctxt "@label"
  5458. msgid "Refresh"
  5459. msgstr "更新"
  5460. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  5461. msgctxt "@label"
  5462. msgid "Add printer by IP"
  5463. msgstr "使用 IP 位址新增印表機"
  5464. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205
  5465. msgctxt "@label"
  5466. msgid "Troubleshooting"
  5467. msgstr "故障排除"
  5468. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  5469. msgctxt "@label"
  5470. msgid "Add printer by IP address"
  5471. msgstr "使用 IP 位址新增印表機"
  5472. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128
  5473. msgctxt "@text"
  5474. msgid "Enter your printer's IP address."
  5475. msgstr "輸入印表機的 IP 位址。"
  5476. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150
  5477. msgctxt "@button"
  5478. msgid "Add"
  5479. msgstr "新增"
  5480. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195
  5481. msgctxt "@label"
  5482. msgid "Could not connect to device."
  5483. msgstr "無法連接到裝置。"
  5484. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196
  5485. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201
  5486. msgctxt "@label"
  5487. msgid "Can't connect to your UltiMaker printer?"
  5488. msgstr "無法連接到 UltiMaker 印表機?"
  5489. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200
  5490. msgctxt "@label"
  5491. msgid "The printer at this address has not responded yet."
  5492. msgstr "此位址的印表機尚未回應。"
  5493. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231
  5494. msgctxt "@label"
  5495. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  5496. msgstr "無法添加此印表機,因為它是未知的印表機,或者它不是印表機群組的主機。"
  5497. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312
  5498. msgctxt "@button"
  5499. msgid "Connect"
  5500. msgstr "連接"
  5501. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29
  5502. msgctxt "@label"
  5503. msgid "Add a networked printer"
  5504. msgstr "新增網路印表機"
  5505. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78
  5506. msgctxt "@label"
  5507. msgid "Add a non-networked printer"
  5508. msgstr "新增非網路印表機"
  5509. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102
  5510. #, fuzzy
  5511. msgctxt "@button"
  5512. msgid "Add UltiMaker printer via Digital Factory"
  5513. msgstr "Ultimaker Digital Factory"
  5514. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29
  5515. #, fuzzy
  5516. msgctxt "@label"
  5517. msgid "In order to start using Cura you will need to configure a printer."
  5518. msgstr "為了監控您的印表機,請連結印表機."
  5519. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36
  5520. msgctxt "@label"
  5521. msgid "What printer would you like to setup?"
  5522. msgstr ""
  5523. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55
  5524. #, fuzzy
  5525. msgctxt "@button"
  5526. msgid "UltiMaker printer"
  5527. msgstr "UltiMaker 支援"
  5528. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64
  5529. #, fuzzy
  5530. msgctxt "@button"
  5531. msgid "Non UltiMaker printer"
  5532. msgstr "UltiMaker 支援"
  5533. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73
  5534. msgctxt "@button"
  5535. msgid "Learn more about adding printers to Cura"
  5536. msgstr ""
  5537. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29
  5538. #, fuzzy
  5539. msgctxt "@label"
  5540. msgid "Add printer"
  5541. msgstr "新增印表機"
  5542. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33
  5543. #, fuzzy
  5544. msgctxt "@label"
  5545. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  5546. msgstr "確認您的列印機已開機並連接至Digital Factory."
  5547. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70
  5548. msgctxt "@label"
  5549. msgid "If you are trying to add a new UltiMaker printer to Cura"
  5550. msgstr ""
  5551. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80
  5552. #, fuzzy
  5553. msgctxt "@info"
  5554. msgid "Sign in into UltiMaker Digilal Factory"
  5555. msgstr "連接到 Ultimaker Digital Factory"
  5556. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81
  5557. msgctxt "@info"
  5558. msgid "Follow the procedure to add a new printer"
  5559. msgstr ""
  5560. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82
  5561. msgctxt "@info"
  5562. msgid "Your new printer will automatically appear in Cura"
  5563. msgstr ""
  5564. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100
  5565. #, fuzzy
  5566. msgctxt "@button"
  5567. msgid "Learn more"
  5568. msgstr "學習更多"
  5569. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121
  5570. #, fuzzy
  5571. msgctxt "@button"
  5572. msgid "Add local printer"
  5573. msgstr "新增印表機"
  5574. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129
  5575. #, fuzzy
  5576. msgctxt "@button"
  5577. msgid "Sign in to Digital Factory"
  5578. msgstr "在連接至Digital Factory的過程中失敗."
  5579. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133
  5580. #, fuzzy
  5581. msgctxt "@button"
  5582. msgid "Waiting for new printers"
  5583. msgstr "等待:印表機無法使用"
  5584. #: resources/qml/WelcomePages/ChangelogContent.qml:24
  5585. msgctxt "@label"
  5586. msgid "Release Notes"
  5587. msgstr "發佈通知"
  5588. #: resources/qml/WelcomePages/CloudContent.qml:123
  5589. msgctxt "@text"
  5590. msgid "Add material settings and plugins from the Marketplace"
  5591. msgstr "從市集中加入線材設定或插件"
  5592. #: resources/qml/WelcomePages/CloudContent.qml:149
  5593. msgctxt "@text"
  5594. msgid "Backup and sync your material settings and plugins"
  5595. msgstr "備份及同步您的線材設定與插件"
  5596. #: resources/qml/WelcomePages/CloudContent.qml:175
  5597. msgctxt "@text"
  5598. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  5599. msgstr "分享創意並可從UltiMaker社群中超過48000的使用者得到幫助"
  5600. #: resources/qml/WelcomePages/CloudContent.qml:189
  5601. msgctxt "@button"
  5602. msgid "Skip"
  5603. msgstr "略過"
  5604. #: resources/qml/WelcomePages/CloudContent.qml:201
  5605. msgctxt "@text"
  5606. msgid "Create a free UltiMaker Account"
  5607. msgstr "創建免費的UltiMaker帳戶"
  5608. #: resources/qml/WelcomePages/DataCollectionsContent.qml:24
  5609. msgctxt "@label"
  5610. msgid "Help us to improve UltiMaker Cura"
  5611. msgstr "協助我們改進 UltiMaker Cura"
  5612. #: resources/qml/WelcomePages/DataCollectionsContent.qml:56
  5613. msgctxt "@text"
  5614. msgid "UltiMaker Cura collects anonymous data to improve print quality and user experience, including:"
  5615. msgstr "UltiMaker Cura 搜集匿名資料以提高列印品質和使用者體驗,包含:"
  5616. #: resources/qml/WelcomePages/DataCollectionsContent.qml:68
  5617. msgctxt "@text"
  5618. msgid "Machine types"
  5619. msgstr "機器類型"
  5620. #: resources/qml/WelcomePages/DataCollectionsContent.qml:74
  5621. msgctxt "@text"
  5622. msgid "Material usage"
  5623. msgstr "線材用法"
  5624. #: resources/qml/WelcomePages/DataCollectionsContent.qml:80
  5625. msgctxt "@text"
  5626. msgid "Number of slices"
  5627. msgstr "切片次數"
  5628. #: resources/qml/WelcomePages/DataCollectionsContent.qml:86
  5629. msgctxt "@text"
  5630. msgid "Print settings"
  5631. msgstr "列印設定"
  5632. #: resources/qml/WelcomePages/DataCollectionsContent.qml:99
  5633. msgctxt "@text"
  5634. msgid "Data collected by UltiMaker Cura will not contain any personal information."
  5635. msgstr "UltiMaker Cura 收集的資料不包含任何個人資訊。"
  5636. #: resources/qml/WelcomePages/DataCollectionsContent.qml:100
  5637. msgctxt "@text"
  5638. msgid "More information"
  5639. msgstr "更多資訊"
  5640. #: resources/qml/WelcomePages/DropDownWidget.qml:93
  5641. msgctxt "@label"
  5642. msgid "Empty"
  5643. msgstr "空的"
  5644. #: resources/qml/WelcomePages/UserAgreementContent.qml:23
  5645. msgctxt "@label"
  5646. msgid "User Agreement"
  5647. msgstr "使用者授權"
  5648. #: resources/qml/WelcomePages/UserAgreementContent.qml:67
  5649. msgctxt "@button"
  5650. msgid "Decline and close"
  5651. msgstr "拒絕並關閉"
  5652. #: resources/qml/WelcomePages/WelcomeContent.qml:56
  5653. msgctxt "@label"
  5654. msgid "Welcome to UltiMaker Cura"
  5655. msgstr "歡迎來到 UltiMaker Cura"
  5656. #: resources/qml/WelcomePages/WelcomeContent.qml:67
  5657. msgctxt "@text"
  5658. msgid "Please follow these steps to set up UltiMaker Cura. This will only take a few moments."
  5659. msgstr "請依照步驟安裝UltiMaker Cura. 這會需要幾分鐘的時間."
  5660. #: resources/qml/WelcomePages/WelcomeContent.qml:82
  5661. msgctxt "@button"
  5662. msgid "Get started"
  5663. msgstr "開始"
  5664. #: resources/qml/WelcomePages/WhatsNewContent.qml:28
  5665. msgctxt "@label"
  5666. msgid "What's New"
  5667. msgstr "新功能"
  5668. #: resources/qml/Widgets/ComboBox.qml:18
  5669. msgctxt "@label"
  5670. msgid "No items to select from"
  5671. msgstr "沒有可選取的專案"
  5672. #~ msgctxt "@info:generic"
  5673. #~ msgid ""
  5674. #~ "\n"
  5675. #~ "Do you want to sync material and software packages with your account?"
  5676. #~ msgstr ""
  5677. #~ "\n"
  5678. #~ "你要使用 Ultimaker 帳號同步耗材資料和軟體套件嗎?"
  5679. #~ msgctxt "@info:generic"
  5680. #~ msgid ""
  5681. #~ "\n"
  5682. #~ "Syncing..."
  5683. #~ msgstr ""
  5684. #~ "\n"
  5685. #~ "同步中..."
  5686. #~ msgctxt "@label: arg 1 is group name"
  5687. #~ msgid "%1 is not set up to host a group of connected UltiMaker 3 printers"
  5688. #~ msgstr "%1 未設定成管理一組連線的 UltiMaker 3 印表機的主機"
  5689. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  5690. #~ msgid "%1m / ~ %2g"
  5691. #~ msgstr "%1m / ~ %2g"
  5692. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  5693. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  5694. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  5695. #~ msgctxt "@action:inmenu menubar:view"
  5696. #~ msgid "&Build plate"
  5697. #~ msgstr "列印平台(&B)"
  5698. #~ msgctxt "@title:menu"
  5699. #~ msgid "&Build plate"
  5700. #~ msgstr "列印平台(&B)"
  5701. #~ msgctxt "@action:menu"
  5702. #~ msgid "&Marketplace"
  5703. #~ msgstr "市集(&M)"
  5704. #~ msgctxt "@title:settings"
  5705. #~ msgid "&Profile"
  5706. #~ msgstr "列印參數(&P)"
  5707. #~ msgctxt "@action:inmenu menubar:view"
  5708. #~ msgid "&Reset camera position"
  5709. #~ msgstr "重置視角位置"
  5710. #~ msgctxt "@action:inmenu menubar:file"
  5711. #~ msgid "&Save Selection to File"
  5712. #~ msgstr "儲存到檔案(&S)"
  5713. #~ msgctxt "@title:menu menubar:file"
  5714. #~ msgid "&Save..."
  5715. #~ msgstr "儲存(&S)"
  5716. #~ msgctxt "@title:menu"
  5717. #~ msgid "&Settings"
  5718. #~ msgstr "設定(&S)"
  5719. #~ msgctxt "@title:menu menubar:toplevel"
  5720. #~ msgid "&Toolbox"
  5721. #~ msgstr "工具箱(&T)"
  5722. #~ msgctxt "@title:menu"
  5723. #~ msgid "&View"
  5724. #~ msgstr "檢視(&V)"
  5725. #~ msgctxt "@text"
  5726. #~ msgid "- Customize your experience with more print profiles and plugins"
  5727. #~ msgstr "- 使用更多的列印參數設定和外掛訂做你的使用體驗"
  5728. #~ msgctxt "@text"
  5729. #~ msgid ""
  5730. #~ "- Customize your experience with more print profiles and plugins\n"
  5731. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5732. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5733. #~ msgstr ""
  5734. #~ "- 使用更多的列印參數設定和外掛訂做你的使用體驗\n"
  5735. #~ "- 通過同步設定可在任何地方將其載入以保持靈活性\n"
  5736. #~ "- 透過 Ultimaker 印表機上的遠端工作流程提高效率"
  5737. #~ msgctxt "@text"
  5738. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5739. #~ msgstr "- 取得領導品牌的耗材參數設定的獨家存取權限"
  5740. #~ msgctxt "@text"
  5741. #~ msgid "- Increase efficiency with a remote workflow on UltiMaker printers"
  5742. #~ msgstr "- 透過 UltiMaker 印表機上的遠端工作流程提高效率"
  5743. #~ msgctxt "@text"
  5744. #~ msgid "- Send print jobs to UltiMaker printers outside your local network"
  5745. #~ msgstr "- 將列印作業傳送到你區域網路外的 UltiMaker 印表機"
  5746. #~ msgctxt "@text"
  5747. #~ msgid ""
  5748. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5749. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5750. #~ "- Get exclusive access to material profiles from leading brands"
  5751. #~ msgstr ""
  5752. #~ "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機\n"
  5753. #~ "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用\n"
  5754. #~ "- 取得領導品牌的耗材參數設定的獨家存取權限"
  5755. #~ msgctxt "@text"
  5756. #~ msgid ""
  5757. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5758. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5759. #~ "- Get exclusive access to print profiles from leading brands"
  5760. #~ msgstr ""
  5761. #~ "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機\n"
  5762. #~ "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用\n"
  5763. #~ "- 取得領導品牌的耗材參數設定的獨家存取權限"
  5764. #~ msgctxt "@text"
  5765. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5766. #~ msgstr "- 通過同步設定可在任何地方將其載入以保持靈活性"
  5767. #~ msgctxt "@text"
  5768. #~ msgid "- Store your UltiMaker Cura settings in the cloud for use anywhere"
  5769. #~ msgstr "- 將你的 UltiMaker Cura 設定儲存在雲端以便隨處使用"
  5770. #~ msgctxt "@label"
  5771. #~ msgid "0%"
  5772. #~ msgstr "0%"
  5773. #~ msgctxt "@label Hours and minutes"
  5774. #~ msgid "00h 00min"
  5775. #~ msgstr "00 小時 00 分"
  5776. #~ msgctxt "@label"
  5777. #~ msgid "100%"
  5778. #~ msgstr "100%"
  5779. #~ msgctxt "@label"
  5780. #~ msgid "20%"
  5781. #~ msgstr "20%"
  5782. #~ msgctxt "@label"
  5783. #~ msgid "50%"
  5784. #~ msgstr "50%"
  5785. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5786. #~ msgid "<a href='%1'>Buy material spools</a>"
  5787. #~ msgstr "<a href='%1'>購買線材線軸</a>"
  5788. #~ msgctxt "@label"
  5789. #~ msgid "<a href='%1'>Check compatibility</a>"
  5790. #~ msgstr "<a href='%1'>檢查耗材相容性</a>"
  5791. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5792. #~ msgid "<a href='%1'>Log in</a> is required to install or update"
  5793. #~ msgstr "需要<a href='%1'>登入</a>才能進行安裝或升級"
  5794. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5795. #~ msgid "<a href='%1'>Log in</a> is required to update"
  5796. #~ msgstr "需要<a href='%1'>登入</a>才能進行升級"
  5797. #~ msgctxt "@label Cura version"
  5798. #~ msgid "<b>Cura version:</b> {version}<br/>"
  5799. #~ msgstr "<b>Cura 版本:</b> {version}<br/>"
  5800. #~ msgctxt "@tooltip"
  5801. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5802. #~ msgstr "<b>自訂列印設定</b> <br/>對切片過程中的每一個細節進行精細控制。"
  5803. #~ msgctxt "@label OpenGL"
  5804. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  5805. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  5806. #~ msgctxt "@label Platform"
  5807. #~ msgid "<b>Platform:</b> {platform}<br/>"
  5808. #~ msgstr "<b>平台:</b> {platform}<br/>"
  5809. #~ msgctxt "@label PyQt version"
  5810. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  5811. #~ msgstr "<b>PyQt 版本:</b> {pyqt}<br/>"
  5812. #~ msgctxt "@label Qt version"
  5813. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  5814. #~ msgstr "<b>Qt 版本:</b> {qt}<br/>"
  5815. #~ msgctxt "@tooltip"
  5816. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5817. #~ msgstr "<b>推薦的列印設定</b> <br/> <br/>使用針對所選印表機、耗材和品質的推薦設定進行列印。"
  5818. #~ msgctxt "@tooltip"
  5819. #~ msgid "<b>Time specification</b><br/><table>"
  5820. #~ msgstr "<b>時間資訊</b><br/><table>"
  5821. #~ msgctxt "info:hidden list items"
  5822. #~ msgid "<li>... and {} others</li>"
  5823. #~ msgstr "<li>... 和 {} 其他</li>"
  5824. #~ msgctxt "@label crash message"
  5825. #~ msgid ""
  5826. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  5827. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  5828. #~ " "
  5829. #~ msgstr ""
  5830. #~ "<p><b>發生致命錯誤。請將錯誤報告傳送給我們以便修正此問題。</p></b>\n"
  5831. #~ " <p>請使用\"送出報告\"按鈕自動發送一份問題報告給我們的伺服器</p>\n"
  5832. #~ " "
  5833. #~ msgctxt "@label crash message"
  5834. #~ msgid ""
  5835. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  5836. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  5837. #~ " "
  5838. #~ msgstr ""
  5839. #~ "<p><b>程式發生了致命異常。請將錯誤報告傳送給我們以解決這個問題</p></b>\n"
  5840. #~ " <p>請使用「送出報告」按鈕將錯誤報告自動發送到我們的伺服器</p>\n"
  5841. #~ " "
  5842. #~ msgctxt "@label"
  5843. #~ msgid ""
  5844. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  5845. #~ " <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"
  5846. #~ " "
  5847. #~ msgstr ""
  5848. #~ "<p>發生了致命錯誤,我們無法繼續!</p>\n"
  5849. #~ " <p>請利用下方資訊回報錯誤到 <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  5850. #~ " "
  5851. #~ msgctxt "info:status"
  5852. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5853. #~ msgstr "<ul>{}</ul>要建立連線,請前往 <a href='https://mycloud.UltiMaker.com/'>Ultimaker Digital Factory</a>。"
  5854. #~ msgctxt "@tooltip"
  5855. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5856. #~ msgstr "目前正使用自訂列印參數。若要使用品質滑動條,在自訂分頁中選擇預設的列印參數"
  5857. #~ msgctxt "@action:button"
  5858. #~ msgid "Abort"
  5859. #~ msgstr "取消"
  5860. #~ msgctxt "@label:"
  5861. #~ msgid "Abort Print"
  5862. #~ msgstr "中斷列印"
  5863. #~ msgctxt "@label:MonitorStatus"
  5864. #~ msgid "Aborting print..."
  5865. #~ msgstr "中斷列印..."
  5866. #~ msgctxt "@title:window"
  5867. #~ msgid "About "
  5868. #~ msgstr "關於 "
  5869. #~ msgctxt "@title:window"
  5870. #~ msgid "About Cura"
  5871. #~ msgstr "關於 Cura"
  5872. #~ msgctxt "@action:button"
  5873. #~ msgid "Accept"
  5874. #~ msgstr "接受"
  5875. #~ msgctxt "description"
  5876. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  5877. #~ msgstr "接受 G-Code 並透過 WiFi 將其發送到 Doodle3D 無線網路盒。"
  5878. #~ msgctxt "@info:status"
  5879. #~ msgid "Access request failed due to a timeout."
  5880. #~ msgstr "存取請求超時失敗。"
  5881. #~ msgctxt "@info:status"
  5882. #~ msgid "Access request was denied on the printer."
  5883. #~ msgstr "存取請求被印表機上拒絕。"
  5884. #~ msgctxt "@info:status"
  5885. #~ msgid "Access to the printer accepted"
  5886. #~ msgstr "印表機接受了存取請求"
  5887. #~ msgctxt "@info:status"
  5888. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5889. #~ msgstr "已發送印表機存取請求,請在印表機上批准該請求"
  5890. #~ msgctxt "@action:button"
  5891. #~ msgid "Activate Configuration"
  5892. #~ msgstr "啟用設定"
  5893. #~ msgctxt "@action:button"
  5894. #~ msgid "Add Printer"
  5895. #~ msgstr "新增印表機"
  5896. #~ msgctxt "@title:tab"
  5897. #~ msgid "Add a printer to Cura"
  5898. #~ msgstr "新增印表機到 Cura"
  5899. #~ msgctxt "@label"
  5900. #~ msgid "Add cloud printer"
  5901. #~ msgstr "新增雲端印表機"
  5902. #~ msgctxt "@label link to connect manager"
  5903. #~ msgid "Add/Remove printers"
  5904. #~ msgstr "新增/移除印表機"
  5905. #~ msgctxt "info:status"
  5906. #~ msgid "Adding printer {} ({}) from your account"
  5907. #~ msgstr "從你的帳號新增印表機 {} ({})"
  5908. #~ msgctxt "@info"
  5909. #~ msgid "All jobs are printed."
  5910. #~ msgstr "所有列印作業已完成。"
  5911. #~ msgctxt "@action:button"
  5912. #~ msgid "Allow"
  5913. #~ msgstr "允許"
  5914. #~ msgctxt "@action:tooltip"
  5915. #~ 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."
  5916. #~ msgstr "允許 Cura 以匿名方式傳送使用狀況統計資料,用來協助 Cura 的未來改善工作。你的部份偏好設定和參數,Cura 的版本及你切片模型的雜湊值會被傳送。"
  5917. #~ msgctxt "@text:window"
  5918. #~ msgid "Allow sending these data to UltiMaker and help us improve Cura"
  5919. #~ msgstr "允許將這些資料傳送給 UltiMaker 並協助我們改進 Cura"
  5920. #~ msgctxt "@text:window"
  5921. #~ msgid "Allow sending this data to UltiMaker and help us improve Cura"
  5922. #~ msgstr "允許將這些資料傳送給 UltiMaker 以協助我們改進 Cura"
  5923. #~ msgctxt "description"
  5924. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5925. #~ msgstr "允許耗材製造商使用下拉式 UI 建立新的耗材和品質設定參數。"
  5926. #~ msgctxt "description"
  5927. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5928. #~ msgstr "允許將切片結果儲存為 X3G 檔案,以支援讀取此格式的印表機(Malyan,Makerbot 和其他以 Sailfish 為原型的印表機)。"
  5929. #~ msgctxt "@label"
  5930. #~ msgid "Aluminum"
  5931. #~ msgstr "鋁"
  5932. #~ msgctxt "@option:curaSolidworksStlQuality"
  5933. #~ msgid "Always ask"
  5934. #~ msgstr "總是詢問"
  5935. #~ msgctxt "@option:openProject"
  5936. #~ msgid "Always ask"
  5937. #~ msgstr "總是詢問"
  5938. #~ msgctxt "@option:curaSolidworksStlQuality"
  5939. #~ msgid "Always use Coarse quality"
  5940. #~ msgstr "總是使用粗糙品質"
  5941. #~ msgctxt "@option:curaSolidworksStlQuality"
  5942. #~ msgid "Always use Fine quality"
  5943. #~ msgstr "總是使用精細品質"
  5944. #~ msgctxt "@label"
  5945. #~ msgid "Are you sure you want to exit Cura?"
  5946. #~ msgstr "你確定要結束 Cura 嗎?"
  5947. #~ msgctxt "@label"
  5948. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5949. #~ msgstr "你確定要使用所選設定進行列印嗎?"
  5950. #~ msgctxt "@label ({} is object name)"
  5951. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5952. #~ msgstr "你確認要移除 {}?此動作無法復原!"
  5953. #~ msgctxt "@action:inmenu menubar:edit"
  5954. #~ msgid "Arrange All Models To All Build Plates"
  5955. #~ msgstr "將所有模型排列到所有列印平台上"
  5956. #~ msgctxt "@action:button"
  5957. #~ msgid "Arrange current build plate"
  5958. #~ msgstr "擺放到目前的列印平台"
  5959. #~ msgctxt "@action:button"
  5960. #~ msgid "Arrange to all build plates"
  5961. #~ msgstr "擺放到所有的列印平台"
  5962. #~ msgctxt "description"
  5963. #~ msgid "Ask the user once if he/she agrees with our license"
  5964. #~ msgstr "詢問使用者是否同意我們的授權協議"
  5965. #~ msgctxt "description"
  5966. #~ msgid "Ask the user once if he/she agrees with our license."
  5967. #~ msgstr "詢問使用者是否同意我們的授權協議。"
  5968. #~ msgctxt "@info:title"
  5969. #~ msgid "Authentication Status"
  5970. #~ msgstr "認証狀態"
  5971. #~ msgctxt "@info:title"
  5972. #~ msgid "Authentication status"
  5973. #~ msgstr "認証狀態"
  5974. #~ msgctxt "@label"
  5975. #~ msgid "Author"
  5976. #~ msgstr "作者"
  5977. #~ msgctxt "name"
  5978. #~ msgid "Auto Save"
  5979. #~ msgstr "自動儲存"
  5980. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  5981. #~ msgid "Automatic: %1"
  5982. #~ msgstr "自動:%1"
  5983. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  5984. #~ msgid "Automatic: %1"
  5985. #~ msgstr "自動: %1"
  5986. #~ msgctxt "@label"
  5987. #~ msgid "Automatically rotate opened file into normed orientation"
  5988. #~ msgstr "自動將開啟的檔案旋轉到正常方向"
  5989. #~ msgctxt "description"
  5990. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  5991. #~ msgstr "偏好設定、機器設定和列印參數修改後自動儲存。"
  5992. #~ msgctxt "@label"
  5993. #~ msgid "Available"
  5994. #~ msgstr "可用"
  5995. #~ msgctxt "@label:status"
  5996. #~ msgid "Available"
  5997. #~ msgstr "可用"
  5998. #~ msgctxt "@label:header configurations"
  5999. #~ msgid "Available configurations"
  6000. #~ msgstr "可用的設定"
  6001. #~ msgctxt "@action:button"
  6002. #~ msgid "Back"
  6003. #~ msgstr "返回"
  6004. #~ msgctxt "@label"
  6005. #~ msgid "Bed Temperature: %1/%2°C"
  6006. #~ msgstr "熱床溫度:%1/%2°C"
  6007. #~ msgctxt "name"
  6008. #~ msgid "Blender Integration (experimental)"
  6009. #~ msgstr "Blender 整合(實驗功能)"
  6010. #~ msgctxt "@item:inlistbox"
  6011. #~ msgid "Blender file"
  6012. #~ msgstr "Blender 檔案"
  6013. #~ msgctxt "@label:status"
  6014. #~ msgid "Blocked"
  6015. #~ msgstr "暫停"
  6016. #~ msgctxt "@action:menu"
  6017. #~ msgid "Browse packages..."
  6018. #~ msgstr "瀏覽套件..."
  6019. #~ msgctxt "@menuitem"
  6020. #~ msgid "Browse plugins"
  6021. #~ msgstr "瀏覽外掛"
  6022. #~ msgctxt "@action:menu"
  6023. #~ msgid "Browse plugins..."
  6024. #~ msgstr "瀏覽外掛..."
  6025. #~ msgctxt "@label:table_header"
  6026. #~ msgid "Build Plate"
  6027. #~ msgstr "列印平台"
  6028. #~ msgctxt "@label"
  6029. #~ msgid "Build Plate Adhesion"
  6030. #~ msgstr "列印平台附著"
  6031. #~ msgctxt "@action:label"
  6032. #~ msgid "Build plate"
  6033. #~ msgstr "列印平台"
  6034. #~ msgctxt "@title:tab"
  6035. #~ msgid "Bundled materials"
  6036. #~ msgstr "捆綁式線材"
  6037. #~ msgctxt "@title:tab"
  6038. #~ msgid "Bundled plugins"
  6039. #~ msgstr "捆綁式外掛"
  6040. #~ msgctxt "@info:tooltip"
  6041. #~ 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."
  6042. #~ msgstr "預設情況下,白色像素表示網格上的高點,黑色像素表示網格上的低點。更改此選項將以相反方式呈現,黑色像素表示網格上的高點,白色像素表示網格上的低點。"
  6043. #~ msgctxt "@label"
  6044. #~ msgid "COM service found"
  6045. #~ msgstr "找到 COM 服務"
  6046. #~ msgctxt "@label"
  6047. #~ msgid "COM starting"
  6048. #~ msgstr "COM 啟動中"
  6049. #~ msgctxt "@window:text"
  6050. #~ msgid "Camera rendering: "
  6051. #~ msgstr "攝影機渲染:"
  6052. #~ msgctxt "@label:status"
  6053. #~ msgid "Can't start print"
  6054. #~ msgstr "無法開始列印"
  6055. #~ msgctxt "@label:Printjob"
  6056. #~ msgid "Cancel"
  6057. #~ msgstr "取消"
  6058. #~ msgctxt "@info:tooltip"
  6059. #~ msgid "Cancel slicing process"
  6060. #~ msgstr "取消進行中的切片程序"
  6061. #~ msgctxt "@option:check"
  6062. #~ msgid "Caution message in gcode reader"
  6063. #~ msgstr "G-code 讀取器中的警告資訊"
  6064. #~ msgctxt "@action:inmenu menubar:edit"
  6065. #~ msgid "Center Selected Model"
  6066. #~ msgid_plural "Center Selected Models"
  6067. #~ msgstr[0] "置中所選模型"
  6068. #~ msgctxt "@info:tooltip"
  6069. #~ msgid "Change active post-processing scripts"
  6070. #~ msgstr "更改目前啟用的後處理腳本"
  6071. #~ msgctxt "@label"
  6072. #~ msgid "Change build plate to %1 (This cannot be overridden)."
  6073. #~ msgstr "將列印平台改成 %1(無法覆寫)。"
  6074. #~ msgctxt "@item:inmenu"
  6075. #~ msgid "Changelog"
  6076. #~ msgstr "更新日誌"
  6077. #~ msgctxt "@label"
  6078. #~ msgid "Changelog"
  6079. #~ msgstr "更新日誌"
  6080. #~ msgctxt "name"
  6081. #~ msgid "Changelog"
  6082. #~ msgstr "更新日誌"
  6083. #~ msgctxt "@label"
  6084. #~ msgid "Check compatibility"
  6085. #~ msgstr "檢查相容性"
  6086. #~ msgctxt "@label"
  6087. #~ msgid "Checklist"
  6088. #~ msgstr "檢查清單"
  6089. #~ msgctxt "@label"
  6090. #~ msgid "Clear build plate"
  6091. #~ msgstr "清空列印平台"
  6092. #~ msgctxt "@tooltip"
  6093. #~ msgid "Click to check the material compatibility on UltiMaker.com."
  6094. #~ msgstr "點擊查看 UltiMaker.com 上的耗材相容性。"
  6095. #~ msgctxt "@title:window"
  6096. #~ msgid "Closing Cura"
  6097. #~ msgstr "關閉 Cura 中"
  6098. #~ msgctxt "@info:title"
  6099. #~ msgid "Cloud error"
  6100. #~ msgstr "雲端服務錯誤"
  6101. #~ msgctxt "@option:curaSolidworksStlQuality"
  6102. #~ msgid "Coarse"
  6103. #~ msgstr "粗糙"
  6104. #~ msgctxt "@option:curaSolidworksStlQuality"
  6105. #~ msgid "Coarse (3D-printing)"
  6106. #~ msgstr "粗糙 (3D-printing)"
  6107. #~ msgctxt "@option:curaSolidworksStlQuality"
  6108. #~ msgid "Coarse (SolidWorks)"
  6109. #~ msgstr "粗糙 (SolidWorks)"
  6110. #~ msgctxt "@action:inmenu"
  6111. #~ msgid "Collapse All"
  6112. #~ msgstr "全部折疊"
  6113. #~ msgctxt "@info:title"
  6114. #~ msgid "Collecting Data"
  6115. #~ msgstr "收集資料中"
  6116. #~ msgctxt "@label"
  6117. #~ msgid "Community Contributions"
  6118. #~ msgstr "社群貢獻"
  6119. #~ msgctxt "@label"
  6120. #~ msgid "Community Plugins"
  6121. #~ msgstr "社群外掛"
  6122. #~ msgctxt "@label"
  6123. #~ msgid "Compatibility"
  6124. #~ msgstr "相容性"
  6125. #~ msgctxt "@label"
  6126. #~ msgid "Completed on: "
  6127. #~ msgstr "完成時間:"
  6128. #~ msgctxt "@label"
  6129. #~ msgid "Configuration change"
  6130. #~ msgstr "設定更動"
  6131. #~ msgid "Configure"
  6132. #~ msgstr "設定"
  6133. #~ msgctxt "@action:menu"
  6134. #~ msgid "Configure setting visiblity..."
  6135. #~ msgstr "設定設定可見性..."
  6136. #~ msgctxt "@action:button"
  6137. #~ msgid "Confirm"
  6138. #~ msgstr "確定"
  6139. #~ msgctxt "@title:window"
  6140. #~ msgid "Confirm uninstall"
  6141. #~ msgstr "移除確認"
  6142. #~ msgctxt "@title:window"
  6143. #~ msgid "Confirm uninstall "
  6144. #~ msgstr "移除確認 "
  6145. #~ msgctxt "@info:status"
  6146. #~ msgid "Connect to UltiMaker Cloud"
  6147. #~ msgstr "連接到 UltiMaker Cloud"
  6148. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  6149. #~ msgid "Connect to UltiMaker Cloud"
  6150. #~ msgstr "連接到 UltiMaker Cloud"
  6151. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  6152. #~ msgid "Connect to UltiMaker Cloud"
  6153. #~ msgstr "連接到 UltiMaker Cloud"
  6154. #~ msgctxt "@info:tooltip"
  6155. #~ msgid "Connect to a printer"
  6156. #~ msgstr "連接到印表機"
  6157. #~ msgctxt "@info:status"
  6158. #~ msgid "Connected over the network."
  6159. #~ msgstr "已透過網路連接。"
  6160. #~ msgctxt "@info:status"
  6161. #~ msgid "Connected over the network. No access to control the printer."
  6162. #~ msgstr "已透過網路連接,但沒有印表機的控制權限。"
  6163. #~ msgctxt "@info:status"
  6164. #~ msgid "Connected over the network. Please approve the access request on the printer."
  6165. #~ msgstr "已透過網路連接。請在印表機上接受存取請求。"
  6166. #~ msgctxt "@info:status"
  6167. #~ msgid "Connected via Cloud"
  6168. #~ msgstr "透過雲端服務連接"
  6169. #~ msgctxt "@info:status"
  6170. #~ msgid "Connected!"
  6171. #~ msgstr "已連線!"
  6172. #~ msgctxt "@info:status"
  6173. #~ msgid "Connecting to Doodle3D Connect"
  6174. #~ msgstr "正在連接 Doodle3D Connect"
  6175. #~ msgctxt "@info:title"
  6176. #~ msgid "Connection Status"
  6177. #~ msgstr "連線狀態"
  6178. #~ msgctxt "@info:title"
  6179. #~ msgid "Connection status"
  6180. #~ msgstr "連線狀態"
  6181. #~ msgctxt "@label"
  6182. #~ msgid "Connection:"
  6183. #~ msgstr "連線:"
  6184. #~ msgctxt "@label"
  6185. #~ msgid "Contact"
  6186. #~ msgstr "聯繫"
  6187. #~ msgctxt "@action:button"
  6188. #~ msgid "Continue"
  6189. #~ msgstr "繼續"
  6190. #~ msgctxt "@title:window"
  6191. #~ msgid "Convert Image..."
  6192. #~ msgstr "轉換圖片..."
  6193. #~ msgctxt "@label"
  6194. #~ msgid "Cost specification"
  6195. #~ msgstr "成本明細"
  6196. #~ msgctxt "@info"
  6197. #~ msgid "Could not connect to the Cura Package database. Please check your connection."
  6198. #~ msgstr "無法連上 Cura 套件資料庫。請檢查你的網路連線。"
  6199. #~ msgctxt "@info:status"
  6200. #~ msgid "Could not export print job."
  6201. #~ msgstr "雲端服務未匯出列印作業。"
  6202. #~ msgctxt "@info:status"
  6203. #~ msgid ""
  6204. #~ "Could not export using \"{}\" quality!\n"
  6205. #~ "Felt back to \"{}\"."
  6206. #~ msgstr ""
  6207. #~ "無法使用 \"{}\" 品質導出!\n"
  6208. #~ "覆蓋回 \"{}\"。"
  6209. #~ msgctxt "@info:status"
  6210. #~ msgid "Could not find a quality type {0} for the current configuration."
  6211. #~ msgstr "無法為目前設定找到品質類型 {0}。"
  6212. #~ msgctxt "@info"
  6213. #~ msgid "Could not find firmware required for the printer at %s."
  6214. #~ msgstr "在 %s 無法找到印表機所需的韌體。"
  6215. #~ msgctxt "@action:button"
  6216. #~ msgid "Create"
  6217. #~ msgstr "建立"
  6218. #~ msgctxt "@label"
  6219. #~ msgid "Create"
  6220. #~ msgstr "建立"
  6221. #~ msgctxt "description"
  6222. #~ msgid "Create a flattend quality changes profile."
  6223. #~ msgstr "建立一份合併品質變化列印參數。"
  6224. #~ msgctxt "description"
  6225. #~ msgid "Create a flattened quality changes profile."
  6226. #~ msgstr "建立一個撫平的品質修改參數。"
  6227. #~ msgctxt "@button"
  6228. #~ msgid "Create account"
  6229. #~ msgstr "建立帳號"
  6230. #~ msgctxt "@button"
  6231. #~ msgid "Create an account"
  6232. #~ msgstr "建立帳號"
  6233. #~ msgctxt "@action:ComboBox option"
  6234. #~ msgid "Create new"
  6235. #~ msgstr "新建"
  6236. #~ msgctxt "@title:window"
  6237. #~ msgid "Cura"
  6238. #~ msgstr "Cura"
  6239. #~ msgctxt "@item:inmenu"
  6240. #~ msgid "Cura Settings Guide"
  6241. #~ msgstr "Cura 設定指南"
  6242. #~ msgctxt "@title"
  6243. #~ msgid "Cura Settings Guide"
  6244. #~ msgstr "Cura 設定指南"
  6245. #~ msgctxt "@title:window"
  6246. #~ msgid "Cura SolidWorks Plugin Configuration"
  6247. #~ msgstr "Cura SolidWorks 外掛設定"
  6248. #~ msgctxt "@info"
  6249. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6250. #~ msgstr "Cura 收集匿名切片統計資料。你可以在偏好設定中關閉此選項。"
  6251. #~ msgctxt "@info"
  6252. #~ msgid "Cura collects anonymized usage statistics."
  6253. #~ msgstr "Cura 以匿名方式蒐集使用狀況統計資料。"
  6254. #~ msgctxt "@info:status"
  6255. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  6256. #~ msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層(Layers)"
  6257. #~ msgctxt "@text:window"
  6258. #~ 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."
  6259. #~ msgstr "Cura 傳送匿名資料給 UltiMaker 以提高列印品質和使用者體驗。以下是傳送資料的例子。"
  6260. #~ msgctxt "@title:column"
  6261. #~ msgid "Customized"
  6262. #~ msgstr "自訂"
  6263. #~ msgctxt "@info:status"
  6264. #~ msgid ""
  6265. #~ "Dear customer,\n"
  6266. #~ "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"
  6267. #~ "\n"
  6268. #~ "With kind regards\n"
  6269. #~ " - Thomas Karl Pietrowski"
  6270. #~ msgstr ""
  6271. #~ "親愛的客戶,\n"
  6272. #~ "我們無法在您的系統上找到有效安裝的 SolidWorks。這表示未安裝 SolidWorks,或者您沒有擁有有效的授權。請確認 SolidWorks 本身是可以正常執行的,或是聯絡您的技術部門處理。\n"
  6273. #~ "\n"
  6274. #~ "順頌 時祺\n"
  6275. #~ " - Thomas Karl Pietrowski"
  6276. #~ msgctxt "@info:status"
  6277. #~ msgid ""
  6278. #~ "Dear customer,\n"
  6279. #~ "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"
  6280. #~ "\n"
  6281. #~ "With kind regards\n"
  6282. #~ " - Thomas Karl Pietrowski"
  6283. #~ msgstr ""
  6284. #~ "親愛的客戶,\n"
  6285. #~ "您目前正在 Windows 以外的作業系統上執行此外掛。此外掛只能在有安裝有效授權 SolidWorks 的 Windows 上執行。請在有安裝 SolidWorks 的 windows 電腦上安裝此外掛。\n"
  6286. #~ "\n"
  6287. #~ "順頌 時祺\n"
  6288. #~ " - Thomas Karl Pietrowski"
  6289. #~ msgctxt "@action:button"
  6290. #~ msgid "Decline"
  6291. #~ msgstr "拒絕"
  6292. #~ msgctxt "@title:column"
  6293. #~ msgid "Default"
  6294. #~ msgstr "預設"
  6295. #~ msgctxt "@label"
  6296. #~ msgid "Default profiles"
  6297. #~ msgstr "預設參數"
  6298. #~ msgctxt "@action:label"
  6299. #~ msgid "Default quality of the exported STL:"
  6300. #~ msgstr "預設的匯出 STL 品質:"
  6301. #~ msgctxt "@text:menu"
  6302. #~ msgid "Default version"
  6303. #~ msgstr "預設的版本"
  6304. #~ msgctxt "@action:inmenu menubar:edit"
  6305. #~ msgid "Delete Selected Model"
  6306. #~ msgid_plural "Delete Selected Models"
  6307. #~ msgstr[0] "刪除所選模型"
  6308. #~ msgctxt "@label"
  6309. #~ msgid "Dense (50%) infill will give your model an above average strength."
  6310. #~ msgstr "密集(50%)填充將使列印模型高於平均的強度。"
  6311. #~ msgctxt "@label"
  6312. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6313. #~ msgstr "不同的列印頭(Cura:{0},印表機: 為擠出機 {2} 選擇了 {1})"
  6314. #~ msgctxt "@label"
  6315. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  6316. #~ msgstr "擠出機 {extruder_id} 選擇了不同的 PrintCore(Cura:{cura_printcore_name},印表機:{remote_printcore_name})"
  6317. #~ msgctxt "@label"
  6318. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6319. #~ msgstr "擠出機 {2} 選擇了不同的耗材(Cura:{0},印表機:{1})"
  6320. #~ msgctxt "@action:button"
  6321. #~ msgid "Disable"
  6322. #~ msgstr "關閉"
  6323. #~ msgctxt "@label:status"
  6324. #~ msgid "Disabled"
  6325. #~ msgstr "已關閉"
  6326. #~ msgctxt "@action:button"
  6327. #~ msgid "Discard"
  6328. #~ msgstr "捨棄"
  6329. #~ msgctxt "@action:button"
  6330. #~ msgid "Dismiss"
  6331. #~ msgstr "關閉此通知"
  6332. #~ msgctxt "@tooltip"
  6333. #~ 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\"."
  6334. #~ msgstr "列印頭前端至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  6335. #~ msgctxt "@tooltip"
  6336. #~ 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\"."
  6337. #~ msgstr "列印頭左側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  6338. #~ msgctxt "@tooltip"
  6339. #~ 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\"."
  6340. #~ msgstr "列印頭後部至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  6341. #~ msgctxt "@tooltip"
  6342. #~ 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\"."
  6343. #~ msgstr "列印頭右側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  6344. #~ msgctxt "@option:check"
  6345. #~ msgid "Do not arrange objects on load"
  6346. #~ msgstr "載入時不要擺放物件"
  6347. #~ msgctxt "@action:tooltip"
  6348. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6349. #~ msgstr "不允許 Cura 傳送匿名的使用狀況統計資料。你可以在偏好設定中再次啟用此功能。"
  6350. #~ msgctxt "@action"
  6351. #~ msgid "Don't ask me again for this printer."
  6352. #~ msgstr "對此印表機不要再次詢問。"
  6353. #~ msgctxt "@label"
  6354. #~ msgid "Don't support overlap with other models"
  6355. #~ msgstr "與模型重疊處不建立支撐"
  6356. #~ msgctxt "@action:button"
  6357. #~ msgid "Done"
  6358. #~ msgstr "完成"
  6359. #~ msgctxt "@label"
  6360. #~ msgid "Doodle3D"
  6361. #~ msgstr "Doodle3D"
  6362. #~ msgctxt "@title:menu"
  6363. #~ msgid "Doodle3D"
  6364. #~ msgstr "Doodle3D 列印"
  6365. #~ msgctxt "@title:window"
  6366. #~ msgid "Doodle3D Settings"
  6367. #~ msgstr "Doodle3D 設定"
  6368. #~ msgctxt "name"
  6369. #~ msgid "Doodle3D WiFi-Box"
  6370. #~ msgstr "Doodle3D 無線網路盒"
  6371. #~ msgctxt "@action:button"
  6372. #~ msgid "Downgrade"
  6373. #~ msgstr "降級版本"
  6374. #~ msgctxt "@action:button"
  6375. #~ msgid "Download"
  6376. #~ msgstr "下載"
  6377. #~ msgctxt "@label"
  6378. #~ msgid "Downloads"
  6379. #~ msgstr "下載"
  6380. #~ msgctxt "description"
  6381. #~ msgid "Dump the contents of all settings to a HTML file."
  6382. #~ msgstr "將所有設定內容轉儲至 HTML 檔案。"
  6383. #~ msgctxt "@label"
  6384. #~ msgid "Duplicate"
  6385. #~ msgstr "複製"
  6386. #~ msgctxt "@label"
  6387. #~ msgid "Email"
  6388. #~ msgstr "電子郵件"
  6389. #~ msgctxt "@label:material"
  6390. #~ msgid "Empty"
  6391. #~ msgstr "空的"
  6392. #~ msgctxt "@label"
  6393. #~ msgid "Empty infill will leave your model hollow with low strength."
  6394. #~ msgstr "無填充將使模型處於低強度且保持空心狀態。"
  6395. #~ msgctxt "@item:inlistbox"
  6396. #~ msgid "Enable Scan devices..."
  6397. #~ msgstr "啟用掃描設備..."
  6398. #~ msgctxt "@label"
  6399. #~ msgid "Enable gradual"
  6400. #~ msgstr "啟用漸層"
  6401. #~ msgctxt "@label"
  6402. #~ msgid "End G-code"
  6403. #~ msgstr "結束 G-code"
  6404. #~ msgctxt "@label"
  6405. #~ msgid "End Gcode"
  6406. #~ msgstr "結束 Gcode"
  6407. #~ msgctxt "@title:window"
  6408. #~ msgid "Engine Log"
  6409. #~ msgstr "引擎日誌"
  6410. #~ msgctxt "@alabel"
  6411. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6412. #~ msgstr "輸入印表機在網路上的 IP 位址或主機名。"
  6413. #~ msgctxt "@label"
  6414. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6415. #~ msgstr "輸入印表機在網路上的 IP 位址或主機名稱。"
  6416. #~ msgctxt "@info:status"
  6417. #~ msgid "Error while starting %s!"
  6418. #~ msgstr "啟動 %s 時發生錯誤!"
  6419. #~ msgctxt "@info:status"
  6420. #~ 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!"
  6421. #~ msgstr "開啟 SolidWorks 檔案時發生錯誤! 請檢查能否在 SolidWorks 中正常開啟檔案而不出現任何問題!"
  6422. #~ msgctxt "@item:inmenu"
  6423. #~ msgid "Evaluation"
  6424. #~ msgstr "評估"
  6425. #~ msgctxt "@title:groupbox"
  6426. #~ msgid "Exception traceback"
  6427. #~ msgstr "異常追溯"
  6428. #~ msgctxt "@label"
  6429. #~ msgid "Executable found"
  6430. #~ msgstr "找到可執行檔案"
  6431. #~ msgctxt "@window:title"
  6432. #~ msgid "Existing Connection"
  6433. #~ msgstr "目前連線中"
  6434. #~ msgctxt "@action:inmenu"
  6435. #~ msgid "Expand All"
  6436. #~ msgstr "全部展開"
  6437. #~ msgctxt "@action:inmenu menubar:view"
  6438. #~ msgid "Expand/Collapse Sidebar"
  6439. #~ msgstr "展開/收合側邊欄"
  6440. #~ msgctxt "@info:title"
  6441. #~ msgid "Export Details"
  6442. #~ msgstr "匯出細項設定"
  6443. #~ msgctxt "@label:extruder label"
  6444. #~ msgid "Extruder"
  6445. #~ msgstr "擠出機"
  6446. #~ msgctxt "@label"
  6447. #~ msgid "Extruder End G-code"
  6448. #~ msgstr "擠出機結束 G-code"
  6449. #~ msgctxt "@label"
  6450. #~ msgid "Extruder End Gcode"
  6451. #~ msgstr "擠出機結束 Gcode"
  6452. #~ msgctxt "@label"
  6453. #~ msgid "Extruder Start G-code"
  6454. #~ msgstr "擠出機起始 G-code"
  6455. #~ msgctxt "@label"
  6456. #~ msgid "Extruder Start Gcode"
  6457. #~ msgstr "擠出機起始 Gcode"
  6458. #~ msgctxt "@label"
  6459. #~ msgid "Extruder Temperature: %1/%2°C"
  6460. #~ msgstr "列印頭溫度:%1/%2 °C"
  6461. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6462. #~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR。"
  6463. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6464. #~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR,它沒有設置到正確的目錄。"
  6465. #~ msgctxt "@info:status"
  6466. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6467. #~ msgstr "無法從 <filename>{0}</filename> 取得外掛 ID"
  6468. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6469. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  6470. #~ msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  6471. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6472. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6473. #~ msgstr "無法從 <filename>{0}</filename> 匯入列印參數:<message>{1}</message>"
  6474. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6475. #~ msgstr "無法安裝 Siemens NX 外掛。無法為 Siemens NX 設定環境變數 UGII_USER_DIR。"
  6476. #~ msgctxt "@label"
  6477. #~ msgid "Faster"
  6478. #~ msgstr "更快"
  6479. #~ msgctxt "@label"
  6480. #~ msgid "Featured"
  6481. #~ msgstr "精選"
  6482. #~ msgctxt "@label:listbox"
  6483. #~ msgid "Feedrate"
  6484. #~ msgstr "進給率"
  6485. #~ msgctxt "@info"
  6486. #~ msgid "Fetching packages..."
  6487. #~ msgstr "取得套件..."
  6488. #~ msgctxt "@info:status"
  6489. #~ msgid "File sent to Doodle3D Connect"
  6490. #~ msgstr "檔案已被傳送到 Doodle3D Connect"
  6491. #~ msgctxt "@title:window"
  6492. #~ msgid "Find & Update plugins"
  6493. #~ msgstr "查找與更新外掛"
  6494. #~ msgctxt "description"
  6495. #~ msgid "Find, manage and install new Cura packages."
  6496. #~ msgstr "查詢,管理和安裝新的 Cura 套件。"
  6497. #~ msgctxt "description"
  6498. #~ msgid "Find, manage and install new plugins."
  6499. #~ msgstr "尋找、管理和安裝新外掛。"
  6500. #~ msgctxt "@option:curaSolidworksStlQuality"
  6501. #~ msgid "Fine"
  6502. #~ msgstr "精細"
  6503. #~ msgctxt "@option:curaSolidworksStlQuality"
  6504. #~ msgid "Fine (3D-printing)"
  6505. #~ msgstr "精細 (3D-printing)"
  6506. #~ msgctxt "@option:curaSolidworksStlQuality"
  6507. #~ msgid "Fine (SolidWorks)"
  6508. #~ msgstr "精細 (SolidWorks)"
  6509. #~ msgctxt "@button"
  6510. #~ msgid "Finish"
  6511. #~ msgstr "完成"
  6512. #~ msgctxt "@label"
  6513. #~ msgid "Finishes at: "
  6514. #~ msgstr "完成時間:"
  6515. #~ msgctxt "@label"
  6516. #~ msgid "First choice:"
  6517. #~ msgstr "第一選擇:"
  6518. #~ msgctxt "@item:inmenu"
  6519. #~ msgid "Flatten active settings"
  6520. #~ msgstr "合併有效設定"
  6521. #~ msgctxt "@info:status"
  6522. #~ msgid ""
  6523. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6524. #~ "\n"
  6525. #~ "Sorry!"
  6526. #~ msgstr ""
  6527. #~ "在你的繪圖中發現了超過一個以上的零件或組件。我們目前只支援只有正好一個零件或組件的繪圖。\n"
  6528. #~ "\n"
  6529. #~ "抱歉!"
  6530. #~ msgctxt "@info:status"
  6531. #~ msgid ""
  6532. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6533. #~ "\n"
  6534. #~ "Sorry!"
  6535. #~ msgstr ""
  6536. #~ "在你的繪圖找到了超過一個的零件或組件。我們目前只支援一個零件或組件的繪圖。\n"
  6537. #~ "\n"
  6538. #~ "抱歉!"
  6539. #~ msgctxt "@info:status"
  6540. #~ msgid ""
  6541. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6542. #~ "\n"
  6543. #~ " Thanks!."
  6544. #~ msgstr ""
  6545. #~ "在你的繪圖找不到模型。請你再次檢查它的內容並確認裡面有一個零件或組件。\n"
  6546. #~ "\n"
  6547. #~ "謝謝。"
  6548. #~ msgctxt "@info:status"
  6549. #~ msgid ""
  6550. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6551. #~ "\n"
  6552. #~ "Thanks!"
  6553. #~ msgstr ""
  6554. #~ "在你的繪圖中找不到模型。請你再次檢查它的內容並確認裡面有一個零件或組件。\n"
  6555. #~ "\n"
  6556. #~ "謝謝!"
  6557. #~ msgctxt "@label"
  6558. #~ msgid "Functions available"
  6559. #~ msgstr "可用功能"
  6560. #~ msgctxt "@tooltip"
  6561. #~ msgid "G-code commands to be executed at the very end."
  6562. #~ msgstr "結束前最後執行的 G-code 命令。"
  6563. #~ msgctxt "@tooltip"
  6564. #~ msgid "G-code commands to be executed at the very start."
  6565. #~ msgstr "開始時最先執行的 G-code 命令。"
  6566. #~ msgctxt "@item:inlistbox"
  6567. #~ msgid "GCode File"
  6568. #~ msgstr "GCode 檔案"
  6569. #~ msgctxt "name"
  6570. #~ msgid "GCode Profile Reader"
  6571. #~ msgstr "G-code 列印參數讀取器"
  6572. #~ msgctxt "name"
  6573. #~ msgid "GCode Writer"
  6574. #~ msgstr "GCode 寫入器"
  6575. #~ msgctxt "@label"
  6576. #~ msgid "GCode generator"
  6577. #~ msgstr "GCode 產生器"
  6578. #~ msgctxt "@label"
  6579. #~ msgid "Gantry height"
  6580. #~ msgstr "龍門高度"
  6581. #~ msgctxt "@tooltip"
  6582. #~ msgid "Gcode commands to be executed at the very end."
  6583. #~ msgstr "將在結束時執行的 Gcode 命令。"
  6584. #~ msgctxt "@tooltip"
  6585. #~ msgid "Gcode commands to be executed at the very start."
  6586. #~ msgstr "將在開始時執行的 Gcode 命令。"
  6587. #~ msgctxt "@label"
  6588. #~ msgid "Gcode flavor"
  6589. #~ msgstr "GCode 類型"
  6590. #~ msgctxt "@label"
  6591. #~ msgid "Generate Support"
  6592. #~ msgstr "產生支撐"
  6593. #~ msgctxt "@label"
  6594. #~ msgid "Generic Materials"
  6595. #~ msgstr "通用線材"
  6596. #~ msgctxt "@description"
  6597. #~ msgid "Get plugins and materials verified by UltiMaker"
  6598. #~ msgstr "取得經 UltiMaker 驗証過的外掛和耗材"
  6599. #~ msgctxt "description"
  6600. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6601. #~ msgstr "讓你可以使用 SolidWorks 開啟某些檔案。此外掛會完成轉換和最佳化的工作。"
  6602. #~ msgctxt "description"
  6603. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6604. #~ msgstr "讓你可以透過 SolidWorks 自身開啟特定檔案。隨後會將這些檔案進行轉換並載入 Cura"
  6605. #~ msgctxt "@label"
  6606. #~ msgid "Glass"
  6607. #~ msgstr "玻璃"
  6608. #~ msgctxt "@menuitem"
  6609. #~ msgid "Global"
  6610. #~ msgstr "整體"
  6611. #~ msgctxt "@info:status"
  6612. #~ msgid "Global stack is missing."
  6613. #~ msgstr "全域堆疊遺失。"
  6614. #~ msgctxt "@label link to connect manager"
  6615. #~ msgid "Go to Cura Connect"
  6616. #~ msgstr "前往 Cura Connect"
  6617. #~ msgctxt "@info:tooltip"
  6618. #~ msgid "Go to Web Marketplace"
  6619. #~ msgstr "前往網路市集"
  6620. #~ msgctxt "name"
  6621. #~ msgid "God Mode"
  6622. #~ msgstr "上帝模式"
  6623. #~ msgctxt "@label"
  6624. #~ msgid "Gradual"
  6625. #~ msgstr "漸層填充"
  6626. #~ msgctxt "@label"
  6627. #~ msgid "Gradual infill"
  6628. #~ msgstr "漸近式填充"
  6629. #~ msgctxt "@label"
  6630. #~ msgid "Gradual infill will gradually increase the amount of infill towards the top."
  6631. #~ msgstr "漸近式填充將隨著列印高度的提升而逐漸加大填充密度。"
  6632. #~ msgctxt "@option:check"
  6633. #~ msgid "Heated bed"
  6634. #~ msgstr "熱床"
  6635. #~ msgctxt "description"
  6636. #~ msgid "Helps to open Blender files directly in Cura."
  6637. #~ msgstr "協助你直接在 Cura 中打開 Blender 檔案。"
  6638. #~ msgctxt "description"
  6639. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6640. #~ msgstr "協助你在 Siemens NX 中安裝一個「匯出到 Cura」按鈕。"
  6641. #~ msgctxt "@label"
  6642. #~ msgid "Here you can find a list of Third Party plugins."
  6643. #~ msgstr "你可以在這裡找到第三方外掛列表。"
  6644. #~ msgctxt "@label"
  6645. #~ msgid "Hi "
  6646. #~ msgstr "嗨 "
  6647. #~ msgctxt "@label The argument is a username."
  6648. #~ msgid "Hi %1"
  6649. #~ msgstr "嗨 %1"
  6650. #~ msgctxt "@label"
  6651. #~ msgid "Hotend"
  6652. #~ msgstr "熱端"
  6653. #~ msgctxt "@info:tooltip"
  6654. #~ msgid "How should the conflict in the machine be resolved?"
  6655. #~ msgstr "如何解決機器的設定衝突?"
  6656. #~ msgctxt "@info:tooltip"
  6657. #~ msgid "How should the conflict in the material be resolved?"
  6658. #~ msgstr "如何解决線材的設定衝突?"
  6659. #~ msgctxt "@info:tooltip"
  6660. #~ msgid "How should the conflict in the profile be resolved?"
  6661. #~ msgstr "如何解决列印參數中的設定衝突?"
  6662. #~ msgctxt "@title:window"
  6663. #~ msgid "How to install Cura SolidWorks macro"
  6664. #~ msgstr "如何安裝 Cura SolidWorks 巨集"
  6665. #~ msgctxt "@text:window"
  6666. #~ msgid "I don't want to send these data"
  6667. #~ msgstr "我不想傳送這些資料"
  6668. #~ msgctxt "@text:window"
  6669. #~ msgid "I don't want to send this data"
  6670. #~ msgstr "我不想傳送這些資料"
  6671. #~ msgctxt "@window:title"
  6672. #~ msgid "Import Profile"
  6673. #~ msgstr "匯入列印參數"
  6674. #~ msgctxt "@title:window"
  6675. #~ msgid "Import SolidWorks File as STL..."
  6676. #~ msgstr "匯入 SolidWorks 檔案為 STL..."
  6677. #~ msgctxt "@info:title"
  6678. #~ msgid "Incompatible Material"
  6679. #~ msgstr "不相容的耗材"
  6680. #~ msgid "Install"
  6681. #~ msgstr "安裝"
  6682. #~ msgctxt "@action:button"
  6683. #~ msgid "Install"
  6684. #~ msgstr "安裝"
  6685. #~ msgctxt "@window:title"
  6686. #~ msgid "Install Plugin"
  6687. #~ msgstr "安裝外掛"
  6688. #~ msgid "Installation guide for SolidWorks macro"
  6689. #~ msgstr "SolidWorks 巨集的安裝指南"
  6690. #~ msgctxt "@title:tab"
  6691. #~ msgid "Installation(s)"
  6692. #~ msgstr "安裝"
  6693. #~ msgctxt "@action:button"
  6694. #~ msgid "Installed"
  6695. #~ msgstr "已安裝"
  6696. #~ msgctxt "@title:tab"
  6697. #~ msgid "Installed"
  6698. #~ msgstr "已安裝"
  6699. #~ msgctxt "@title:tab"
  6700. #~ msgid "Installed materials"
  6701. #~ msgstr "已安裝線材"
  6702. #~ msgctxt "@title:tab"
  6703. #~ msgid "Installed plugins"
  6704. #~ msgstr "已安裝外掛"
  6705. #~ msgctxt "@action:menu"
  6706. #~ msgid "Installed plugins..."
  6707. #~ msgstr "安裝外掛..."
  6708. #~ msgctxt "@description:label"
  6709. #~ msgid "Instructions:"
  6710. #~ msgstr "操作說明:"
  6711. #~ msgctxt "@action:button"
  6712. #~ msgid "Keep"
  6713. #~ msgstr "保留"
  6714. #~ msgctxt "@label"
  6715. #~ msgid "Language:"
  6716. #~ msgstr "語言:"
  6717. #~ msgctxt "@label"
  6718. #~ msgid "Last updated"
  6719. #~ msgstr "最後更新時間"
  6720. #~ msgctxt "@text:menu"
  6721. #~ msgid "Latest installed version (Recommended)"
  6722. #~ msgstr "最新安裝的版本(建議)"
  6723. #~ msgctxt "@label"
  6724. #~ msgid "Layer Height"
  6725. #~ msgstr "層高"
  6726. #~ msgctxt "@info:title"
  6727. #~ msgid "Layer View"
  6728. #~ msgstr "分層檢視"
  6729. #~ msgctxt "name"
  6730. #~ msgid "Layer View"
  6731. #~ msgstr "分層檢視"
  6732. #~ msgctxt "@label:listbox"
  6733. #~ msgid "Layer thickness"
  6734. #~ msgstr "層厚"
  6735. #~ msgctxt "@item:inlistbox"
  6736. #~ msgid "Layers"
  6737. #~ msgstr "層"
  6738. #~ msgctxt "@label"
  6739. #~ msgid "Light (20%) infill will give your model an average strength."
  6740. #~ msgstr "輕度(20%)填充將使列印模型處於中等強度。"
  6741. #~ msgctxt "name"
  6742. #~ msgid "Live scripting tool"
  6743. #~ msgstr "即時描述檔工具"
  6744. #~ msgctxt "@info:tooltip"
  6745. #~ msgid "Load the configuration of the printer into Cura"
  6746. #~ msgstr "將印表機設定載入 Cura"
  6747. #~ msgctxt "@info:title"
  6748. #~ msgid "Local printers"
  6749. #~ msgstr "本機印表機"
  6750. #~ msgctxt "@label:status"
  6751. #~ msgid "Lost connection with the printer"
  6752. #~ msgstr "與印表機失去連線"
  6753. #~ msgctxt "@label:table_header"
  6754. #~ msgid "Machine"
  6755. #~ msgstr "機器"
  6756. #~ msgctxt "@title"
  6757. #~ msgid "Machine Settings"
  6758. #~ msgstr "印表機設定"
  6759. #~ msgctxt "name"
  6760. #~ msgid "Machine Settings action"
  6761. #~ msgstr "印表機設定操作"
  6762. #~ msgctxt "@label link to connect manager"
  6763. #~ msgid "Manage printers"
  6764. #~ msgstr "管理印表機"
  6765. #~ msgctxt "@label link to connect manager"
  6766. #~ msgid "Manage queue"
  6767. #~ msgstr "管理隊列"
  6768. #~ msgctxt "description"
  6769. #~ msgid "Manages network connections to UltiMaker 3 printers"
  6770. #~ msgstr "管理與 UltiMaker 3 印表機的網路連接"
  6771. #~ msgctxt "description"
  6772. #~ msgid "Manages network connections to UltiMaker 3 printers."
  6773. #~ msgstr "管理與 UltiMaker 3 印表機的網絡連線。"
  6774. #~ msgctxt "@title"
  6775. #~ msgid "Marketplace"
  6776. #~ msgstr "市集"
  6777. #~ msgctxt "@label"
  6778. #~ msgid "Material diameter"
  6779. #~ msgstr "耗材直徑"
  6780. #~ msgctxt "@label"
  6781. #~ msgid "Material specification"
  6782. #~ msgstr "耗材規格"
  6783. #~ msgctxt "@text:window"
  6784. #~ msgid "Materials"
  6785. #~ msgstr "線材"
  6786. #~ msgctxt "@window:title"
  6787. #~ msgid "Mismatched configuration"
  6788. #~ msgstr "設定不匹配"
  6789. #~ msgctxt "@info:title"
  6790. #~ msgid "Model Checker Warning"
  6791. #~ msgstr "模型檢查器警告"
  6792. #~ msgctxt "@info:title"
  6793. #~ msgid "Model errors"
  6794. #~ msgstr "模型錯誤"
  6795. #~ msgid "Modify G-Code"
  6796. #~ msgstr "修改 G-Code 檔案"
  6797. #~ msgctxt "@label"
  6798. #~ msgid "Modify settings for infill of other models"
  6799. #~ msgstr "修改其他模型的填充設定"
  6800. #~ msgctxt "@label"
  6801. #~ msgid "Modify settings for overlap with other models"
  6802. #~ msgstr "修改與模型重疊處的設定"
  6803. #~ msgctxt "@title:tab"
  6804. #~ msgid "Monitor"
  6805. #~ msgstr "監控"
  6806. #~ msgctxt "@action:button"
  6807. #~ msgid "More info"
  6808. #~ msgstr "更多資訊"
  6809. #~ msgctxt "@action:button"
  6810. #~ msgid "More information"
  6811. #~ msgstr "更多資訊"
  6812. #~ msgctxt "@action:inmenu menubar:edit"
  6813. #~ msgid "Multiply Selected Model"
  6814. #~ msgid_plural "Multiply Selected Models"
  6815. #~ msgstr[0] "複製所選模型"
  6816. #~ msgctxt "@label"
  6817. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>UltiMaker Troubleshooting Guides</a>"
  6818. #~ msgstr "需要幫助改善你的列印?閱讀 <a href=『%1』>UltiMaker 故障排除指南</a>"
  6819. #~ msgctxt "@info:title"
  6820. #~ msgid "Network enabled printers"
  6821. #~ msgstr "網路印表機"
  6822. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  6823. #~ msgid "New %s firmware available"
  6824. #~ msgstr "有新 %s 韌體可用"
  6825. #~ msgctxt "@info:title"
  6826. #~ msgid "New cloud printers found"
  6827. #~ msgstr "找到新的雲端印表機"
  6828. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6829. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  6830. #~ msgstr "你的 {machine_name} 有新功能可用!建議更新印表機韌體。"
  6831. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6832. #~ 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}."
  6833. #~ msgstr "可能有適用於你的 {machine_name} 的新功能或錯誤修正!假如尚未使用最新版本,建議更新你印表機的韌體到版本 {latest_version}。"
  6834. #~ msgctxt "@info:message"
  6835. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  6836. #~ msgstr "新找到的印表機已連接到你的帳戶,你可以在已發現的印表機清單中找到它們。"
  6837. #~ msgctxt "@action:button"
  6838. #~ msgid "Next Step"
  6839. #~ msgstr "下一步"
  6840. #~ msgctxt "@label:extruder label"
  6841. #~ msgid "No"
  6842. #~ msgstr "否"
  6843. #~ msgctxt "@info:status"
  6844. #~ msgid "No Printcore loaded in slot {slot_number}"
  6845. #~ msgstr "Slot {slot_number} 中沒有載入 Printcore"
  6846. #~ msgctxt "@"
  6847. #~ msgid "No Profile Available"
  6848. #~ msgstr "無可用的列印參數"
  6849. #~ msgctxt "@info:status"
  6850. #~ msgid "No access to print with this printer. Unable to send print job."
  6851. #~ msgstr "無法使用本印表機進行列印,無法發送列印作業。"
  6852. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6853. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6854. #~ msgstr "檔案 <filename>{0}</filename> 內無自訂參數可匯入"
  6855. #~ msgctxt "@info"
  6856. #~ msgid "No material has been installed."
  6857. #~ msgstr "尚未安裝任何線材。"
  6858. #~ msgctxt "@item:material"
  6859. #~ msgid "No material loaded"
  6860. #~ msgstr "未載入耗材"
  6861. #~ msgctxt "@info:status"
  6862. #~ msgid "No material loaded in slot {slot_number}"
  6863. #~ msgstr "Slot {slot_number} 中沒有載入耗材"
  6864. #~ msgctxt "@info"
  6865. #~ msgid "No plugin has been installed."
  6866. #~ msgstr "尚未安裝任何外掛。"
  6867. #~ msgctxt "@label"
  6868. #~ msgid "No print selected"
  6869. #~ msgstr "沒有選擇任何模型"
  6870. #~ msgctxt "@info:status"
  6871. #~ msgid "No printer connected"
  6872. #~ msgstr "沒有連接印表機"
  6873. #~ msgctxt "@label"
  6874. #~ msgid "Not accepting print jobs"
  6875. #~ msgstr "不接受列印作業"
  6876. #~ msgctxt "@label"
  6877. #~ msgid "Not available"
  6878. #~ msgstr "無法使用"
  6879. #~ msgctxt "@label"
  6880. #~ msgid "Not enough material for spool {0}."
  6881. #~ msgstr "線軸 {0} 上沒有足夠的耗材。"
  6882. #~ msgctxt "@label"
  6883. #~ msgid "Not supported"
  6884. #~ msgstr "不支援"
  6885. #~ msgctxt "@label"
  6886. #~ msgid "Not yet initialized<br/>"
  6887. #~ msgstr "尚未初始化<br/>"
  6888. #~ msgctxt "@info:status"
  6889. #~ 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."
  6890. #~ msgstr "因沒有模型符合列印範圍或是被分配到停用的擠出機,無模型可進行切片。請縮放或旋轉模型以符合列印範圍,或是啟用擠出機。"
  6891. #~ msgctxt "@info:status"
  6892. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  6893. #~ msgstr "沒有模型可進行切片,因為模型超出了列印範圍。請縮放或旋轉模型, 讓模型可置入列印範圍。"
  6894. #~ msgctxt "@label"
  6895. #~ msgid "Nozzle Settings"
  6896. #~ msgstr "噴頭設定"
  6897. #~ msgctxt "@action:button"
  6898. #~ msgid "Ok"
  6899. #~ msgstr "確定"
  6900. #~ msgctxt "@label"
  6901. #~ msgid "Olsson Block"
  6902. #~ msgstr "Olsson Block"
  6903. #~ msgctxt "@item:inlistbox"
  6904. #~ msgid "Open Compressed Triangle Mesh"
  6905. #~ msgstr "Open Compressed Triangle Mesh"
  6906. #~ msgctxt "@action:button"
  6907. #~ msgid "Open Connect..."
  6908. #~ msgstr "開啟連線..."
  6909. #~ msgctxt "@action:button"
  6910. #~ msgid "Open Web Page"
  6911. #~ msgstr "開啟網頁"
  6912. #~ msgctxt "@info:tooltip"
  6913. #~ msgid "Open the Doodle3D Connect web interface"
  6914. #~ msgstr "開啟 Doodle3D Connect 的網路介面"
  6915. #~ msgctxt "@action:button"
  6916. #~ msgid ""
  6917. #~ "Open the directory\n"
  6918. #~ "with macro and icon"
  6919. #~ msgstr ""
  6920. #~ "使用巨集和圖示\n"
  6921. #~ "開啟目錄"
  6922. #~ msgctxt "@info:tooltip"
  6923. #~ msgid "Opens the print jobs interface in your browser."
  6924. #~ msgstr "使用瀏覽器開啟列印作業介面。"
  6925. #~ msgctxt "@info:tooltip"
  6926. #~ msgid "Opens the print jobs page with your default web browser."
  6927. #~ msgstr "使用預設瀏覽器開啟列印作業頁面。"
  6928. #~ msgctxt "@option:check"
  6929. #~ msgid "Origin at center"
  6930. #~ msgstr "原點位於中心"
  6931. #~ msgid "Orthogonal"
  6932. #~ msgstr "正交"
  6933. #~ msgctxt "@label"
  6934. #~ msgid "Override"
  6935. #~ msgstr "覆寫"
  6936. #~ msgctxt "@label"
  6937. #~ msgid "Override Profile"
  6938. #~ msgstr "覆寫列印參數"
  6939. #~ msgctxt "@window:title"
  6940. #~ msgid "Override configuration configuration and start print"
  6941. #~ msgstr "覆寫設定並開始列印"
  6942. #~ msgctxt "@label"
  6943. #~ msgid "Overrides %1 setting."
  6944. #~ msgid_plural "Overrides %1 settings."
  6945. #~ msgstr[0] "覆寫 %1 設定。"
  6946. #~ msgctxt "@title:menu menubar:toplevel"
  6947. #~ msgid "P&lugins"
  6948. #~ msgstr "外掛(&l)"
  6949. #~ msgctxt "@label"
  6950. #~ msgid "PRINTER GROUP"
  6951. #~ msgstr "印表機群組"
  6952. #~ msgctxt "@action:playpause"
  6953. #~ msgid "Pause"
  6954. #~ msgstr "暫停"
  6955. #~ msgctxt "@label:"
  6956. #~ msgid "Pause"
  6957. #~ msgstr "暫停"
  6958. #~ msgctxt "@label:status"
  6959. #~ msgid "Pausing"
  6960. #~ msgstr "暫停中"
  6961. #~ msgctxt "@label:MonitorStatus"
  6962. #~ msgid "Pausing print..."
  6963. #~ msgstr "暫停列印..."
  6964. #~ msgctxt "@text"
  6965. #~ msgid "Place enter your printer's IP address."
  6966. #~ msgstr "輸入印表機的 IP 地址。"
  6967. #~ msgctxt "@action:playpause"
  6968. #~ msgid "Play"
  6969. #~ msgstr "播放"
  6970. #~ msgctxt "@info"
  6971. #~ msgid "Please connect your UltiMaker printer to your local network."
  6972. #~ msgstr "請將你的 UltiMaker 印表機連接到區域網路。"
  6973. #~ msgctxt "@text"
  6974. #~ msgid ""
  6975. #~ "Please follow these steps to set up\n"
  6976. #~ "Ultimaker Cura. This will only take a few moments."
  6977. #~ msgstr ""
  6978. #~ "請按照以下步驟進行設定\n"
  6979. #~ "Ultimaker Cura。這只需要一點時間。"
  6980. #~ msgctxt "@warning:status"
  6981. #~ msgid "Please generate G-code before saving."
  6982. #~ msgstr "請在儲存前產出 G-code。"
  6983. #~ msgctxt "@text"
  6984. #~ msgid "Please give your printer a name"
  6985. #~ msgstr "請為你的印表機取一個名稱"
  6986. #~ msgctxt "@info:status"
  6987. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6988. #~ msgstr "請注意,重新載入模型功能無法運作!你必須手動重新開啟 SolidWorks 檔案!"
  6989. #~ msgctxt "@label:PrintjobStatus"
  6990. #~ msgid "Please load a 3D model"
  6991. #~ msgstr "請載入一個 3D 模型"
  6992. #~ msgctxt "@info"
  6993. #~ msgid ""
  6994. #~ "Please make sure your printer has a connection:\n"
  6995. #~ "- Check if the printer is turned on.\n"
  6996. #~ "- Check if the printer is connected to the network."
  6997. #~ msgstr ""
  6998. #~ "請確認你的印表機有連接:\n"
  6999. #~ "- 檢查印表機是否已打開。\n"
  7000. #~ "- 檢查印表機是否已連接到網路。"
  7001. #~ msgctxt "@info"
  7002. #~ msgid "Please select a network connected printer to monitor."
  7003. #~ msgstr "請選擇要監控的網絡連線印表機。"
  7004. #~ msgctxt "@label"
  7005. #~ msgid "Please select any upgrades made to this UltiMaker 2."
  7006. #~ msgstr "請選擇適用於 UltiMaker 2 的更新檔案。"
  7007. #~ msgctxt "@description"
  7008. #~ msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  7009. #~ msgstr "請登入以取得 UltiMaker Cura Enterprise 驗証的外掛及線材"
  7010. #~ msgctxt "name"
  7011. #~ msgid "Plugin Browser"
  7012. #~ msgstr "外掛瀏覽器"
  7013. #~ msgctxt "@window:title"
  7014. #~ msgid "Plugin browser"
  7015. #~ msgstr "外掛瀏覽器"
  7016. #~ msgctxt "@title:tab"
  7017. #~ msgid "Plugins"
  7018. #~ msgstr "外掛"
  7019. #~ msgctxt "@label"
  7020. #~ msgid "Pre-sliced file {0}"
  7021. #~ msgstr "預切片檔案 {0}"
  7022. #~ msgctxt "@label"
  7023. #~ msgid "Premium"
  7024. #~ msgstr "付費會員"
  7025. #~ msgctxt "@label:Printjob"
  7026. #~ msgid "Prepare"
  7027. #~ msgstr "準備"
  7028. #~ msgctxt "@title:tab"
  7029. #~ msgid "Prepare"
  7030. #~ msgstr "準備"
  7031. #~ msgctxt "@label:status"
  7032. #~ msgid "Preparing"
  7033. #~ msgstr "正在準備"
  7034. #~ msgctxt "@label"
  7035. #~ msgid "Preparing to print"
  7036. #~ msgstr "準備列印中"
  7037. #~ msgctxt "@label:status"
  7038. #~ msgid "Preparing to print"
  7039. #~ msgstr "準備列印中"
  7040. #~ msgctxt "@action:button"
  7041. #~ msgid "Previous"
  7042. #~ msgstr "前一個"
  7043. #~ msgctxt "@action:button"
  7044. #~ msgid "Previous Step"
  7045. #~ msgstr "前一步"
  7046. #~ msgctxt "@title:tab"
  7047. #~ msgid "Print"
  7048. #~ msgstr "列印"
  7049. #~ msgctxt "@label:table_header"
  7050. #~ msgid "Print Core"
  7051. #~ msgstr "Print Core"
  7052. #~ msgctxt "@info:title"
  7053. #~ msgid "Print Details"
  7054. #~ msgstr "列印細項設定"
  7055. #~ msgctxt "name"
  7056. #~ msgid "Print Profile Assistant"
  7057. #~ msgstr "列印參數設定助手"
  7058. #~ msgctxt "@label:listbox"
  7059. #~ msgid "Print Setup"
  7060. #~ msgstr "列印設定"
  7061. #~ msgctxt "@label:listbox"
  7062. #~ msgid ""
  7063. #~ "Print Setup disabled\n"
  7064. #~ "G-code files cannot be modified"
  7065. #~ msgstr ""
  7066. #~ "列印設定已關閉\n"
  7067. #~ "G-code 檔案無法被修改"
  7068. #~ msgctxt "@label"
  7069. #~ msgid "Print Speed"
  7070. #~ msgstr "列印速度"
  7071. #~ msgctxt "@label:status"
  7072. #~ msgid "Print aborted"
  7073. #~ msgstr "列印已取消"
  7074. #~ msgctxt "@label:MonitorStatus"
  7075. #~ msgid "Print aborted. Please check the printer"
  7076. #~ msgstr "列印已中斷。請檢查印表機"
  7077. #~ msgctxt "@label"
  7078. #~ msgid "Print experiment"
  7079. #~ msgstr "列印實驗"
  7080. #~ msgctxt "@info:status"
  7081. #~ msgid "Print finished"
  7082. #~ msgstr "列印已完成"
  7083. #~ msgctxt "@title"
  7084. #~ msgid "Print jobs"
  7085. #~ msgstr "列印作業"
  7086. #~ msgctxt "@label shown when we load a Gcode file"
  7087. #~ msgid "Print setup disabled. G code file can not be modified."
  7088. #~ msgstr "列印設定已被停用。 G-code 檔案無法修改。"
  7089. #~ msgctxt "@description"
  7090. #~ msgid "Print time"
  7091. #~ msgstr "列印時間"
  7092. #~ msgctxt "@title:window"
  7093. #~ msgid "Print to: %1"
  7094. #~ msgstr "列印至:%1"
  7095. #~ msgctxt "@action:button"
  7096. #~ msgid "Print via Cloud"
  7097. #~ msgstr "透過雲端服務列印"
  7098. #~ msgctxt "@properties:tooltip"
  7099. #~ msgid "Print via Cloud"
  7100. #~ msgstr "透過雲端服務列印"
  7101. #~ msgctxt "@action:button"
  7102. #~ msgid "Print with Doodle3D WiFi-Box"
  7103. #~ msgstr "使用 Doodle3D 無線網路盒列印"
  7104. #~ msgctxt "@properties:tooltip"
  7105. #~ msgid "Print with Doodle3D WiFi-Box"
  7106. #~ msgstr "使用 Doodle3D 無線網路盒列印"
  7107. #~ msgctxt "@label"
  7108. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7109. #~ msgstr "列印頭 {0} 未正確校準。需要在印表機上執行 XY 校正。"
  7110. #~ msgctxt "@action:label"
  7111. #~ msgid "Printer"
  7112. #~ msgstr "印表機"
  7113. #~ msgctxt "@label"
  7114. #~ msgid "Printer"
  7115. #~ msgstr "印表機"
  7116. #~ msgctxt "@info:status"
  7117. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  7118. #~ msgstr "印表機 '{printer_name}' 已完成列印 '{job_name}'。"
  7119. #~ msgctxt "@info:title"
  7120. #~ msgid "Printer Firmware"
  7121. #~ msgstr "印表機韌體"
  7122. #~ msgctxt "@label"
  7123. #~ msgid "Printer Name"
  7124. #~ msgstr "印表機名稱"
  7125. #~ msgctxt "@label"
  7126. #~ msgid "Printer Name:"
  7127. #~ msgstr "印表機名稱:"
  7128. #~ msgctxt "@label"
  7129. #~ msgid "Printer Settings"
  7130. #~ msgstr "印表機設定"
  7131. #~ msgctxt "@info:title"
  7132. #~ msgid "Printer Status"
  7133. #~ msgstr "印表機狀態"
  7134. #~ msgctxt "@info:title"
  7135. #~ msgid "Printer Unavailable"
  7136. #~ msgstr "印表機無法使用"
  7137. #~ msgctxt "@label"
  7138. #~ msgid "Printer type"
  7139. #~ msgstr "印表機類型"
  7140. #~ msgctxt "@label"
  7141. #~ msgid "Printer type:"
  7142. #~ msgstr "印表機類型:"
  7143. #~ msgctxt "@action:label %1 is printer name"
  7144. #~ msgid "Printer: %1"
  7145. #~ msgstr "印表機:%1"
  7146. #~ msgctxt "@label %1 is printer name"
  7147. #~ msgid "Printer: %1"
  7148. #~ msgstr "印表機:%1"
  7149. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  7150. #~ msgid "Printer: %1, %2: %3"
  7151. #~ msgstr "印表機:%1, %2: %3"
  7152. #~ msgctxt "@label:title"
  7153. #~ msgid "Printers"
  7154. #~ msgstr "印表機"
  7155. #~ msgctxt "info:status"
  7156. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  7157. #~ msgstr "從 Digital Factory 新增印表機:<ul>{}</ul>"
  7158. #~ msgctxt "@label"
  7159. #~ msgid "Printhead Settings"
  7160. #~ msgstr "列印頭設定"
  7161. #~ msgctxt "@label"
  7162. #~ msgid "Printing"
  7163. #~ msgstr "列印中"
  7164. #~ msgctxt "@action:label"
  7165. #~ msgid "Printing Guidelines"
  7166. #~ msgstr "列印指南"
  7167. #~ msgctxt "@item:inlistbox"
  7168. #~ msgid "Profile Assistant"
  7169. #~ msgstr "參數助手"
  7170. #~ msgctxt "@item:inmenu"
  7171. #~ msgid "Profile Assistant"
  7172. #~ msgstr "參數助手"
  7173. #~ msgctxt "name"
  7174. #~ msgid "Profile Flattener"
  7175. #~ msgstr "參數撫平器"
  7176. #~ msgctxt "name"
  7177. #~ msgid "Profile flatener"
  7178. #~ msgstr "列印參數合併器"
  7179. #~ msgctxt "@info:status"
  7180. #~ msgid "Profile has been flattened & activated."
  7181. #~ msgstr "列印參數已被合併並啟用。"
  7182. #~ msgctxt "@label"
  7183. #~ msgid "Profile:"
  7184. #~ msgstr "列印參數:"
  7185. #~ msgctxt "@text:window"
  7186. #~ msgid "Profiles"
  7187. #~ msgstr "參數"
  7188. #~ msgctxt "@label"
  7189. #~ msgid "Protected profiles"
  7190. #~ msgstr "受保護的列印參數"
  7191. #~ msgctxt "description"
  7192. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7193. #~ msgstr "提供更改印表機設定(如成形空間體積、噴頭口徑等)的方法"
  7194. #~ msgctxt "description"
  7195. #~ msgid "Provides an edit window for direct script editing."
  7196. #~ msgstr "提供一個直接編輯描述檔的編輯視窗。"
  7197. #~ msgctxt "description"
  7198. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  7199. #~ msgstr "提供關於 Cura 設定額外的圖片動畫資訊和說明。"
  7200. #~ msgctxt "description"
  7201. #~ msgid "Provides machine actions for UltiMaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7202. #~ msgstr "提供 UltiMaker 印表機專屬功能(如平台調平精靈、選擇升級等)"
  7203. #~ msgctxt "description"
  7204. #~ msgid "Provides support for writing X3G files"
  7205. #~ msgstr "提供寫入 X3G 檔案的支援"
  7206. #~ msgctxt "description"
  7207. #~ msgid "Provides the Layer view."
  7208. #~ msgstr "提供分層檢視。"
  7209. #~ msgctxt "description"
  7210. #~ msgid "Provides the Simulation view."
  7211. #~ msgstr "提供模擬檢視。"
  7212. #~ msgctxt "@label Description for application dependency"
  7213. #~ msgid "Python Error tracking library"
  7214. #~ msgstr "Python 錯誤追蹤函式庫"
  7215. #~ msgctxt "@Label"
  7216. #~ msgid "Python HTTP library"
  7217. #~ msgstr "Python HTTP 函式庫"
  7218. #~ msgctxt "@label"
  7219. #~ msgid "Python extensions for Microsoft Windows"
  7220. #~ msgstr "Python擴充(windows)"
  7221. #~ msgctxt "@action:label"
  7222. #~ msgid "Quality"
  7223. #~ msgstr "品質"
  7224. #~ msgctxt "@label:table_header"
  7225. #~ msgid "Quality"
  7226. #~ msgstr "品質"
  7227. #~ msgctxt "@info:tooltip"
  7228. #~ msgid "Quality of the Exported STL"
  7229. #~ msgstr "匯出 STL 的品質"
  7230. #~ msgctxt "@action:label"
  7231. #~ msgid "Quality:"
  7232. #~ msgstr "品質:"
  7233. #~ msgctxt "@info:button"
  7234. #~ msgid "Quit Cura"
  7235. #~ msgstr "結束 Cura"
  7236. #~ msgctxt "@info:tooltip"
  7237. #~ msgid "Re-send the access request"
  7238. #~ msgstr "重新發送存取請求"
  7239. #~ msgctxt "description"
  7240. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  7241. #~ msgstr "讀取 SVG 檔案做為工具路徑,用於印表機移動的除錯。"
  7242. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  7243. #~ msgid "Ready to %1"
  7244. #~ msgstr "%1 已準備就緒"
  7245. #~ msgctxt "@label:PrintjobStatus"
  7246. #~ msgid "Ready to slice"
  7247. #~ msgstr "切片已準備就緒"
  7248. #~ msgctxt "@action:button"
  7249. #~ msgid "Request Access"
  7250. #~ msgstr "請求存取"
  7251. #~ msgctxt "@label:status"
  7252. #~ msgid "Reserved"
  7253. #~ msgstr "保留"
  7254. #~ msgctxt "@label:"
  7255. #~ msgid "Resume"
  7256. #~ msgstr "繼續"
  7257. #~ msgctxt "@label:status"
  7258. #~ msgid "Resuming"
  7259. #~ msgstr "繼續"
  7260. #~ msgctxt "@label:MonitorStatus"
  7261. #~ msgid "Resuming print..."
  7262. #~ msgstr "繼續列印..."
  7263. #~ msgctxt "@action:button"
  7264. #~ msgid "Retry"
  7265. #~ msgstr "重試"
  7266. #~ msgctxt "@action"
  7267. #~ msgid "Review your connection"
  7268. #~ msgstr "檢查您的連線"
  7269. #~ msgctxt "@label"
  7270. #~ msgid "Revision number"
  7271. #~ msgstr "版本號碼"
  7272. #~ msgctxt "@Label"
  7273. #~ msgid "Root Certificates for validating SSL trustworthiness"
  7274. #~ msgstr "驗證 SSL 可信度用的根憑證"
  7275. #~ msgctxt "name"
  7276. #~ msgid "SVG Toolpath Reader"
  7277. #~ msgstr "SVG 工具路徑讀取器"
  7278. #~ msgctxt "@label"
  7279. #~ msgid "SVG icons"
  7280. #~ msgstr "SVG 圖標"
  7281. #~ msgctxt "@action:label"
  7282. #~ msgid "Safety Data Sheet"
  7283. #~ msgstr "安全資料表"
  7284. #~ msgctxt "@title:menu menubar:file"
  7285. #~ msgid "Save &As..."
  7286. #~ msgstr "另存為(&A)…"
  7287. #~ msgctxt "@title:menu menubar:file"
  7288. #~ msgid "Save &Project..."
  7289. #~ msgstr "儲存專案...(&P)"
  7290. #~ msgctxt "@title:menu menubar:file"
  7291. #~ msgid "Save project"
  7292. #~ msgstr "儲存專案"
  7293. #~ msgctxt "@label"
  7294. #~ msgid "Search materials"
  7295. #~ msgstr "搜尋線材"
  7296. #~ msgctxt "@label:textbox"
  7297. #~ msgid "Search..."
  7298. #~ msgstr "搜尋..."
  7299. #~ msgctxt "@action:tooltip"
  7300. #~ msgid "See more information on what data Cura sends."
  7301. #~ msgstr "檢視更多關於 Cura 傳送資料的資訊。"
  7302. #~ msgctxt "@option:check"
  7303. #~ msgid "See only current build plate"
  7304. #~ msgstr "只顯示目前的列印平台"
  7305. #~ msgctxt "@label"
  7306. #~ msgid "See the material compatibility chart"
  7307. #~ msgstr "請參閱耗材相容性圖表"
  7308. #~ msgctxt "@title"
  7309. #~ msgid "Select Printer Upgrades"
  7310. #~ msgstr "選擇印表機更新檔案"
  7311. #~ msgctxt "@info:tooltip"
  7312. #~ msgid "Select the active output device"
  7313. #~ msgstr "選擇作用中的輸出裝置"
  7314. #~ msgctxt "@title:tab"
  7315. #~ msgid ""
  7316. #~ "Select the printer you want to use from the list below.\n"
  7317. #~ "\n"
  7318. #~ "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."
  7319. #~ msgstr ""
  7320. #~ "從下面的清單中選擇要使用的印表機。\n"
  7321. #~ "\n"
  7322. #~ "假如你的印表機不在清單上,選擇“Custom”類別中的“Custom FFF Printer”,並在下一個對話窗中調整設定以符合你的印表機。"
  7323. #~ msgctxt "@label"
  7324. #~ 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."
  7325. #~ msgstr "選擇用於支撐的擠出機。該擠出機將在模型之下建立支撐結構,以防止模型下垂或在空中列印。"
  7326. #~ msgctxt "@info:tooltip"
  7327. #~ msgid "Send access request to the printer"
  7328. #~ msgstr "向印表機發送存取請求"
  7329. #~ msgctxt "@info:status"
  7330. #~ msgid "Send and monitor print jobs from anywhere using your UltiMaker account."
  7331. #~ msgstr "利用你的 UltiMaker 帳號在任何地方傳送和監控列印作業。"
  7332. #~ msgctxt "@info:progress"
  7333. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  7334. #~ msgstr "傳送 <filename>{file_name}</filename> 到群組 {cluster_name} 中"
  7335. #~ msgctxt "@info:title"
  7336. #~ msgid "Sending Data"
  7337. #~ msgstr "發送資料中"
  7338. #~ msgctxt "@info:status"
  7339. #~ msgid "Sending data to Doodle3D Connect"
  7340. #~ msgstr "正在向 Doodle3D Connect 發送資料"
  7341. #~ msgctxt "@info:status"
  7342. #~ msgid "Sending data to printer"
  7343. #~ msgstr "正在向印表機發送資料"
  7344. #~ msgctxt "@info:status"
  7345. #~ msgid "Sending data to remote cluster"
  7346. #~ msgstr "正在傳送資料到遠端叢集"
  7347. #~ msgctxt "@info:status"
  7348. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  7349. #~ msgstr "前一列印作業傳送中,暫停傳送新列印作業。"
  7350. #~ msgctxt "@info:status"
  7351. #~ msgid "Sent {file_name} to group {cluster_name}."
  7352. #~ msgstr "{file_name} 已傳送到群組 {cluster_name}。"
  7353. #~ msgctxt "name"
  7354. #~ msgid "Settings Guide"
  7355. #~ msgstr "設定指南"
  7356. #~ msgctxt "@info:generic"
  7357. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  7358. #~ msgstr "設定已改為與目前擠出機性能相匹配:[%s]"
  7359. #~ msgctxt "@label"
  7360. #~ msgid "Shared Heater"
  7361. #~ msgstr "共用加熱器"
  7362. #~ msgctxt "@info:tooltip"
  7363. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  7364. #~ msgstr "新載入的模型要擺放在列印平台上嗎?必需與多列印平台功能一起使用(實驗功能)"
  7365. #~ msgctxt "@action:inmenu"
  7366. #~ msgid "Show All Settings"
  7367. #~ msgstr "顯示所有設定"
  7368. #~ msgctxt "@item:inmenu"
  7369. #~ msgid "Show Changelog"
  7370. #~ msgstr "顯示更新日誌"
  7371. #~ msgctxt "@action:inmenu menubar:help"
  7372. #~ msgid "Show Engine &Log..."
  7373. #~ msgstr "顯示切片引擎日誌(&L)..."
  7374. #~ msgctxt "@label"
  7375. #~ msgid "Show Helpers"
  7376. #~ msgstr "顯示輔助結構"
  7377. #~ msgctxt "@label"
  7378. #~ msgid "Show Infill"
  7379. #~ msgstr "顯示填充"
  7380. #~ msgctxt "@action:inmenu"
  7381. #~ msgid "Show Online Troubleshooting Guide"
  7382. #~ msgstr "顯示線上故障排除指南"
  7383. #~ msgctxt "@label"
  7384. #~ msgid "Show Shell"
  7385. #~ msgstr "顯示外殼"
  7386. #~ msgctxt "@label"
  7387. #~ msgid "Show Travels"
  7388. #~ msgstr "顯示移動軌跡"
  7389. #~ msgctxt "@info:tooltip"
  7390. #~ msgid "Show caution message in gcode reader."
  7391. #~ msgstr "在 G-code 讀取器中顯示警告資訊。"
  7392. #~ msgctxt "@action:button"
  7393. #~ msgid "Show print jobs"
  7394. #~ msgstr "顯示列印作業"
  7395. #~ msgctxt "@text:window"
  7396. #~ msgid "Show this dialog again"
  7397. #~ msgstr "再次顯示這個對話框"
  7398. #~ msgctxt "@label"
  7399. #~ msgid "Show wizard before opening SolidWorks files"
  7400. #~ msgstr "開啟 SolidWorks 檔案時顯示精靈"
  7401. #~ msgctxt "description"
  7402. #~ msgid "Shows changes since latest checked version."
  7403. #~ msgstr "顯示最新版本更動。"
  7404. #~ msgctxt "name"
  7405. #~ msgid "Siemens NX Integration"
  7406. #~ msgstr "Siemens NX 整合"
  7407. #~ msgctxt "@button"
  7408. #~ msgid "Sign out"
  7409. #~ msgstr "登出"
  7410. #~ msgctxt "@item:inlistbox"
  7411. #~ msgid "Simulation view"
  7412. #~ msgstr "模擬檢視"
  7413. #~ msgctxt "@info:tooltip"
  7414. #~ msgid "Slice current printjob"
  7415. #~ msgstr "對目前列印工作進行切片"
  7416. #~ msgctxt "@label:PrintjobStatus"
  7417. #~ msgid "Slicing unavailable"
  7418. #~ msgstr "切片無法使用"
  7419. #~ msgctxt "@label"
  7420. #~ msgid "Slower"
  7421. #~ msgstr "更慢"
  7422. #~ msgctxt "@item:inmenu"
  7423. #~ msgid "Solid"
  7424. #~ msgstr "實體"
  7425. #~ msgctxt "@label"
  7426. #~ msgid "Solid (100%) infill will make your model completely solid."
  7427. #~ msgstr "完全(100%)填充將使你的模型處於完全實心狀態。"
  7428. #~ msgctxt "name"
  7429. #~ msgid "SolidWorks Integration"
  7430. #~ msgstr "SolidWorks 整合"
  7431. #~ msgctxt "@item:inlistbox"
  7432. #~ msgid "SolidWorks assembly file"
  7433. #~ msgstr "SolidWorks 組件檔案"
  7434. #~ msgctxt "@item:inlistbox"
  7435. #~ msgid "SolidWorks drawing file"
  7436. #~ msgstr "SolidWorks 繪圖檔案"
  7437. #~ msgctxt "@item:inlistbox"
  7438. #~ msgid "SolidWorks part file"
  7439. #~ msgstr "SolidWorks 零件檔案"
  7440. #~ msgctxt "@title:window"
  7441. #~ msgid "SolidWorks plugin: Configuration"
  7442. #~ msgstr "SolidWorks 外掛:設定"
  7443. #~ msgctxt "@info:status"
  7444. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7445. #~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內解決這些問題。"
  7446. #~ msgctxt "@info:status"
  7447. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7448. #~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內部解決這些問題。"
  7449. #~ msgctxt "@title:window"
  7450. #~ msgid "SolidWorks: Export wizard"
  7451. #~ msgstr "SolidWorks: 導出精靈"
  7452. #~ msgctxt "@info:status"
  7453. #~ msgid ""
  7454. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  7455. #~ "Tips that may be useful to improve the print quality:\n"
  7456. #~ "1) Use rounded corners.\n"
  7457. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  7458. #~ "3) Use a different material."
  7459. #~ msgstr ""
  7460. #~ "由於物件大小和模型所選用的耗材,某些模型可能無法理想地列印:{model_names}。\n"
  7461. #~ "可能有助於提高列印品質的訣竅:\n"
  7462. #~ "1) 使用圓角。\n"
  7463. #~ "2) 關閉風扇(在模型沒有微小細節的情況下)。\n"
  7464. #~ "3) 使用不同的耗材。"
  7465. #~ msgctxt "@info:tooltip"
  7466. #~ msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  7467. #~ msgstr "此列印可能會有些問題。點擊查看調整提示。"
  7468. #~ msgctxt "@label"
  7469. #~ msgid "Start G-code"
  7470. #~ msgstr "起始 G-code"
  7471. #~ msgctxt "@label"
  7472. #~ msgid "Start Gcode"
  7473. #~ msgstr "起始 Gcode"
  7474. #~ msgctxt "@label"
  7475. #~ 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?"
  7476. #~ msgstr "使用不相容的設定啟動列印工作可能會損壞你的 3D 印表機。你確定要覆寫設定並列印 %1 嗎?"
  7477. #~ msgctxt "@label"
  7478. #~ msgid "Starting firmware update, this may take a while."
  7479. #~ msgstr "正在開始韌體更新。可能需要花費一些時間,請耐心等待。"
  7480. #~ msgctxt "@label"
  7481. #~ msgid "State:"
  7482. #~ msgstr "狀態:"
  7483. #~ msgctxt "@Label"
  7484. #~ msgid "Static type checker for Python"
  7485. #~ msgstr "Python 靜態型別檢查器"
  7486. #~ msgctxt "@description:label"
  7487. #~ msgid "Steps:"
  7488. #~ msgstr "步驟:"
  7489. #~ msgctxt "@info:status"
  7490. #~ msgid "Storing data on Doodle3D Connect"
  7491. #~ msgstr "正在儲存資料到 Doodle3D Connect"
  7492. #~ msgctxt "@info:status"
  7493. #~ msgid "Successfully imported profile {0}"
  7494. #~ msgstr "已成功匯入列印參數 {0}"
  7495. #~ msgid "Successfully installed Siemens NX Cura plugin."
  7496. #~ msgstr "Siemens NX Cura 外掛已成功安裝。"
  7497. #~ msgctxt "@label:table_header"
  7498. #~ msgid "Support"
  7499. #~ msgstr "支撐"
  7500. #~ msgctxt "@label"
  7501. #~ msgid "Support Extruder"
  7502. #~ msgstr "支撐用擠出機"
  7503. #~ msgctxt "@label"
  7504. #~ msgid "Support library for analysis of complex networks"
  7505. #~ msgstr "用於分析複雜網路的函式庫"
  7506. #~ msgctxt "@label"
  7507. #~ msgid "Support library for handling planar objects"
  7508. #~ msgstr "用於處理平面物件的函式庫"
  7509. #~ msgctxt "@action:button"
  7510. #~ msgid "Sync materials with printers"
  7511. #~ msgstr "列印機同步線材資料"
  7512. #~ msgctxt "@action:button Sending materials to printers"
  7513. #~ msgid "Sync with Printers"
  7514. #~ msgstr "同步列印機"
  7515. #~ msgctxt "@window:title"
  7516. #~ msgid "Sync with your printer"
  7517. #~ msgstr "與你的印表機同步"
  7518. #~ msgctxt "@action:label"
  7519. #~ msgid "Technical Data Sheet"
  7520. #~ msgstr "技術資料表"
  7521. #~ msgctxt "@label"
  7522. #~ 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."
  7523. #~ msgstr "印表機上的 PrintCores 和/或耗材與目前專案中的不同。為獲得最佳列印效果,請使用目前印表機的 PrintCores 和耗材設定進行切片。"
  7524. #~ msgctxt "@label"
  7525. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  7526. #~ msgstr "分配的印表機 %1 需要下列的設定更動:"
  7527. #~ msgctxt "@info:status"
  7528. #~ msgid "The connection with the network was lost."
  7529. #~ msgstr "網路連接中斷。"
  7530. #~ msgctxt "@info:status"
  7531. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  7532. #~ msgstr "與印表機的連接中斷,請檢查印表機是否已連接。"
  7533. #~ msgctxt "@tooltip"
  7534. #~ msgid "The current temperature of this extruder."
  7535. #~ msgstr "該擠出機的目前溫度。"
  7536. #~ msgctxt "@tooltip"
  7537. #~ 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\"."
  7538. #~ msgstr "噴頭尖端與龍門系統(X 軸和 Y 軸)之間的高度差。用於防止「排隊列印」時之前的列印品與龍門發生碰撞。"
  7539. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7540. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  7541. #~ msgstr "參數檔案 <filename>{0}</filename> ({1}) 中定義的機器與你目前的機器 ({2}) 不匹配,無法匯入。"
  7542. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  7543. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  7544. #~ msgstr "列印參數 <filename>{0}</filename> 內定義的機器({1})與你目前的機器({2})不匹配, 無法匯入。"
  7545. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7546. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  7547. #~ msgstr "列印參數 <filename>{0}</filename> 中的機器設定與你目前的機器不相符,無法導入。"
  7548. #~ msgctxt "@label (%1 is object name)"
  7549. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  7550. #~ msgstr "新的耗材直徑設定為 %1 mm,這與目前機器不相容。你想繼續嗎?"
  7551. #~ msgctxt "@label"
  7552. #~ msgid "The next generation 3D printing workflow"
  7553. #~ msgstr "下一世代的 3D 列印流程"
  7554. #~ msgctxt "@text"
  7555. #~ msgid "The next generation 3D printing workflow"
  7556. #~ msgstr "下一世代的 3D 列印流程"
  7557. #~ msgctxt "@tooltip"
  7558. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  7559. #~ msgstr "印表機所支援的耗材直徑。實際列印的耗材直徑由耗材和/或列印參數提供。"
  7560. #~ msgctxt "@info:status"
  7561. #~ msgid "The print job '{job_name}' was finished."
  7562. #~ msgstr "列印作業 '{job_name}' 已完成。"
  7563. #~ msgctxt "@info:status Has a cancel button next to it."
  7564. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  7565. #~ msgstr "所選耗材直徑導致耗材與目前印表機不相容。"
  7566. #~ msgctxt "@info:status"
  7567. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  7568. #~ msgstr "所選耗材與所選機器或設定不相容。"
  7569. #~ msgctxt "@info:status"
  7570. #~ msgid "The selected model was too small to load."
  7571. #~ msgstr "選擇的模型太小無法載入。"
  7572. #~ msgctxt "@label"
  7573. #~ msgid "The value is resolved from per-extruder values "
  7574. #~ msgstr "這個數值是由每個擠出機的設定值解析出來的 "
  7575. #~ msgctxt "@info"
  7576. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  7577. #~ msgstr "由於你正在監控一台雲端印表機,因此無法使用網路攝影機。"
  7578. #~ msgctxt "@info:tooltip"
  7579. #~ msgid "The width in millimeters on the build plate."
  7580. #~ msgstr "列印平台寬度,以毫米為單位。"
  7581. #~ msgctxt "@label"
  7582. #~ msgid "Theme:"
  7583. #~ msgstr "主題:"
  7584. #~ msgctxt "@label"
  7585. #~ 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."
  7586. #~ msgstr "印表機的設定或校正與 Cura 之間不匹配。為了獲得最佳列印效果,請使用印表機的 PrintCores 和耗材設定進行切片。"
  7587. #~ msgctxt "@label"
  7588. #~ 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."
  7589. #~ msgstr "UltiMaker 的設定有問題導致無法開始列印。請在繼續之前解決這個問題。"
  7590. #~ 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')"
  7591. #~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  7592. #~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  7593. #~ msgstr[0] "沒有擠出機 %2 用的 %1 參數。將使用預設參數"
  7594. #~ msgctxt "@info:description"
  7595. #~ msgid "There was an error connecting to the cloud."
  7596. #~ msgstr "連接到雲端服務時發生錯誤。"
  7597. #~ msgctxt "@info:backup_status"
  7598. #~ msgid "There was an error listing your backups."
  7599. #~ msgstr "列出備份時發生錯誤。"
  7600. #~ msgctxt "@info"
  7601. #~ msgid "These options are not available because you are monitoring a cloud printer."
  7602. #~ msgstr "由於你正在監控一台雲端印表機,因此無法使用這些選項。"
  7603. #~ msgctxt "@label"
  7604. #~ msgid ""
  7605. #~ "This plugin contains a license.\n"
  7606. #~ "You need to accept this license to install this plugin.\n"
  7607. #~ "Do you agree with the terms below?"
  7608. #~ msgstr ""
  7609. #~ "外掛內含一份授權協議。\n"
  7610. #~ "你必需同意此份授權協議才能安裝此外掛。\n"
  7611. #~ "是否同意下列條款?"
  7612. #~ msgctxt "@info:status"
  7613. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  7614. #~ msgstr "此印表機不支援透過 USB 連線列印,因為其使用 UltiGCode 類型的 G-code 檔案。"
  7615. #~ msgctxt "@label"
  7616. #~ msgid "This printer is not set up to host a group of UltiMaker 3 printers."
  7617. #~ msgstr "這台印表機未設定成管理一組 UltiMaker 3 印表機的主機。"
  7618. #~ msgctxt "@label"
  7619. #~ msgid "This printer is not set up to host a group of connected UltiMaker 3 printers"
  7620. #~ msgstr "這台印表機未設定成管理一組連線的 UltiMaker 3 印表機的主機"
  7621. #~ msgid "This printer is not set up to host a group of connected UltiMaker 3 printers."
  7622. #~ msgstr "這台印表機未設定成管理一組連線的 UltiMaker 3 印表機的主機。"
  7623. #~ msgctxt "@label"
  7624. #~ msgid "This printer is the host for a group of %1 UltiMaker 3 printers."
  7625. #~ msgstr "這台印表機是 %1 台 UltiMaker 3 印表機群組的主機。"
  7626. #~ msgctxt "@label"
  7627. #~ msgid "This printer is the host for a group of %1 connected UltiMaker 3 printers"
  7628. #~ msgstr "這台印表機是 %1 台 UltiMaker 3 印表機群組的主機"
  7629. #~ msgctxt "Count is number of printers."
  7630. #~ msgid "This printer is the host for a group of {count} connected UltiMaker 3 printers."
  7631. #~ msgstr "這台印表機是 {count} 台連線的 UltiMaker 3 印表機群組的主機。"
  7632. #~ msgctxt "@message:text"
  7633. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  7634. #~ msgstr "此印表機/群組已加入 Cura。請選擇另一個印表機/群組。"
  7635. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7636. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  7637. #~ msgstr "此列印參數 <filename>{0}</filename> 含有錯誤的資料,無法導入。"
  7638. #~ msgctxt "@tooltip"
  7639. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  7640. #~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請變更這些設定以啟用此品質參數"
  7641. #~ msgctxt "@tooltip"
  7642. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  7643. #~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數"
  7644. #~ msgctxt "@tooltip"
  7645. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  7646. #~ msgstr "品質參數無法用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數。"
  7647. #~ msgctxt "@label"
  7648. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  7649. #~ msgstr "這個設定由全部的擠出機共享,變更這個設定將改變全部擠出機的設定值"
  7650. #~ msgctxt "@label"
  7651. #~ msgid "Time specification"
  7652. #~ msgstr "時間規格"
  7653. #~ msgctxt "@tooltip"
  7654. #~ msgid "Time specification"
  7655. #~ msgstr "時間規格"
  7656. #~ msgctxt "@label"
  7657. #~ msgid "Tip"
  7658. #~ msgstr "提示"
  7659. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  7660. #~ 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."
  7661. #~ msgstr "為了確保您的 {machine_name} 配備了最新功能,建議定期更新韌體。 這可以在 {machine_name} 上完成(有連接到網絡時)或透過 USB 完成。"
  7662. #~ msgctxt "@label"
  7663. #~ msgid ""
  7664. #~ "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"
  7665. #~ "\n"
  7666. #~ "Select your printer from the list below:"
  7667. #~ msgstr ""
  7668. #~ "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。\n"
  7669. #~ "\n"
  7670. #~ "從以下清單中選擇你的印表機:"
  7671. #~ msgctxt "@title"
  7672. #~ msgid "Toolbox"
  7673. #~ msgstr "工具箱"
  7674. #~ msgctxt "name"
  7675. #~ msgid "Toolbox"
  7676. #~ msgstr "工具箱"
  7677. #~ msgctxt "@label"
  7678. #~ msgid "Total:"
  7679. #~ msgstr "總共:"
  7680. #~ msgctxt "@info:backup_failed"
  7681. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  7682. #~ msgstr "嘗試復原版本不符的 Cura 備份。"
  7683. #~ msgctxt "name"
  7684. #~ msgid "UM3 Network Connection"
  7685. #~ msgstr "UM3 網路連線"
  7686. #~ msgctxt "name"
  7687. #~ msgid "UM3 Network Connection (Cluster)"
  7688. #~ msgstr "UM3 網路連接(叢集)"
  7689. #~ msgctxt "@info:title"
  7690. #~ msgid "USB Printing"
  7691. #~ msgstr "USB 連線列印"
  7692. #~ msgctxt "@label"
  7693. #~ msgid "UltiMaker 3"
  7694. #~ msgstr "UltiMaker 3"
  7695. #~ msgctxt "@label Printer name"
  7696. #~ msgid "UltiMaker 3"
  7697. #~ msgstr "UltiMaker 3"
  7698. #~ msgctxt "@label"
  7699. #~ msgid "UltiMaker 3 Extended"
  7700. #~ msgstr "UltiMaker 3 Extended"
  7701. #~ msgctxt "@label Printer name"
  7702. #~ msgid "UltiMaker 3 Extended"
  7703. #~ msgstr "UltiMaker 3 Extended"
  7704. #~ msgctxt "@label"
  7705. #~ msgid "UltiMaker Account"
  7706. #~ msgstr "UltiMaker 帳號"
  7707. #~ msgctxt "@label"
  7708. #~ msgid "UltiMaker Cloud"
  7709. #~ msgstr "UltiMaker Cloud"
  7710. #~ msgctxt "@title:window"
  7711. #~ msgid "UltiMaker Cura"
  7712. #~ msgstr "UltiMaker Cura"
  7713. #~ msgctxt "@button"
  7714. #~ msgid "UltiMaker account"
  7715. #~ msgstr "UltiMaker 帳號"
  7716. #~ msgctxt "@label:PrintjobStatus"
  7717. #~ msgid "Unable to Slice"
  7718. #~ msgstr "無法切片"
  7719. #~ msgctxt "@info:status"
  7720. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  7721. #~ msgstr "無法向 Doodle3D Connect 發送資料。請確認是否有另一項列印作業正在進行?"
  7722. #~ msgctxt "@info:status"
  7723. #~ msgid "Unable to send data to printer. Is another job still active?"
  7724. #~ msgstr "無法向印表機發送資料。請確認是否有另一項列印作業正在進行?"
  7725. #~ msgctxt "@info:status"
  7726. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected UltiMaker 3 printers."
  7727. #~ msgstr "無法傳送新的列印作業:這台印表機尚未設定成管理一組連線的 UltiMaker 3 印表機的主機。"
  7728. #~ msgctxt "@info:status"
  7729. #~ msgid "Unable to send print job to group {cluster_name}."
  7730. #~ msgstr "無法傳送列印作業到群組 {cluster_name}。"
  7731. #~ msgctxt "@info:status"
  7732. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  7733. #~ msgstr "無法啟動新作業,因為該印表機不支援 USB 連線列印。"
  7734. #~ msgctxt "@info:status"
  7735. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  7736. #~ msgstr "無法啟動新作業,因為印表機處於忙碌狀態或未連接。"
  7737. #~ msgctxt "@info:status"
  7738. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  7739. #~ msgstr "印表機無法啟動新的列印作業,目前的印表機狀態為 %s。"
  7740. #~ msgctxt "@label"
  7741. #~ msgid "Unable to start a new print job."
  7742. #~ msgstr "無法開始新的列印作業。"
  7743. #~ msgctxt "@info:status"
  7744. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  7745. #~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入列印頭。"
  7746. #~ msgctxt "@info:status"
  7747. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  7748. #~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入耗材。"
  7749. #~ msgctxt "@info"
  7750. #~ msgid "Unable to update firmware because there are no printers connected."
  7751. #~ msgstr "無法更新韌體,因為沒有連接印表機。"
  7752. #~ msgctxt "@action:button"
  7753. #~ msgid "Undo"
  7754. #~ msgstr "復原"
  7755. #~ msgctxt "@action"
  7756. #~ msgid "Undo changing the material diameter."
  7757. #~ msgstr "復原更改耗材直徑。"
  7758. #~ msgctxt "@action:button"
  7759. #~ msgid "Uninstall"
  7760. #~ msgstr "移除"
  7761. #~ msgctxt "@title:column"
  7762. #~ msgid "Unit"
  7763. #~ msgstr "單位"
  7764. #~ msgctxt "@label Printer name"
  7765. #~ msgid "Unknown"
  7766. #~ msgstr "未知"
  7767. #~ msgctxt "@label Printer status"
  7768. #~ msgid "Unknown"
  7769. #~ msgstr "未知"
  7770. #~ msgctxt "@label unknown material"
  7771. #~ msgid "Unknown"
  7772. #~ msgstr "未知"
  7773. #~ msgctxt "@label:material"
  7774. #~ msgid "Unknown"
  7775. #~ msgstr "未知"
  7776. #~ msgctxt "@label:status"
  7777. #~ msgid "Unknown"
  7778. #~ msgstr "未知"
  7779. #~ msgctxt "@label"
  7780. #~ msgid "Unknown error code: %1"
  7781. #~ msgstr "未知錯誤代碼: %1"
  7782. #~ msgctxt "@item:material"
  7783. #~ msgid "Unknown material"
  7784. #~ msgstr "未知耗材"
  7785. #~ msgctxt "@label"
  7786. #~ msgid "Unreachable"
  7787. #~ msgstr "無法連接"
  7788. #~ msgctxt "@action:ComboBox option"
  7789. #~ msgid "Update"
  7790. #~ msgstr "更新"
  7791. #~ msgctxt "@action:button"
  7792. #~ msgid "Update"
  7793. #~ msgstr "更新"
  7794. #~ msgctxt "@action:ComboBox option"
  7795. #~ msgid "Update existing"
  7796. #~ msgstr "更新已有設定"
  7797. #~ msgctxt "@action:button"
  7798. #~ msgid "Update profile with current settings/overrides"
  7799. #~ msgstr "使用目前設定 / 覆寫值更新列印參數"
  7800. #~ msgctxt "@action:button"
  7801. #~ msgid "Updated"
  7802. #~ msgstr "更新完成"
  7803. #~ msgctxt "@action:button"
  7804. #~ msgid "Updating"
  7805. #~ msgstr "更新中"
  7806. #~ msgctxt "@action:button"
  7807. #~ msgid "Upgrade"
  7808. #~ msgstr "升級"
  7809. #~ msgctxt "@action"
  7810. #~ msgid "Upgrade Firmware"
  7811. #~ msgstr "升級韌體"
  7812. #~ msgctxt "@title"
  7813. #~ msgid "Upgrade Firmware"
  7814. #~ msgstr "升級韌體"
  7815. #~ msgctxt "@info:status"
  7816. #~ msgid "Uploading via UltiMaker Cloud"
  7817. #~ msgstr "透過 UltiMaker Cloud 上傳"
  7818. # Added after the string freeze.
  7819. #~ msgctxt "@label"
  7820. #~ msgid "Use adhesion sheet or glue with this material combination"
  7821. #~ msgstr "在此耗材組合下使用膠水或是附著墊片"
  7822. #~ msgctxt "@label"
  7823. #~ msgid "Use glue with this material combination"
  7824. #~ msgstr "此耗材使用膠水組合"
  7825. #~ msgctxt "@info:tooltip"
  7826. #~ msgid "Use multi build plate functionality"
  7827. #~ msgstr "使用多列印平台功能"
  7828. #~ msgctxt "@option:check"
  7829. #~ msgid "Use multi build plate functionality (restart required)"
  7830. #~ msgstr "使用多列印平台功能(需重啟軟體)"
  7831. #~ msgctxt "@title:window"
  7832. #~ msgid "User Agreement"
  7833. #~ msgstr "使用者授權"
  7834. #~ msgctxt "@title:groupbox"
  7835. #~ msgid "User description"
  7836. #~ msgstr "使用者描述"
  7837. #~ msgctxt "@title:groupbox"
  7838. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  7839. #~ msgstr "使用者描述(注意:開發人員可能不會說您的語言,請盡可能使用英語)"
  7840. #~ msgctxt "name"
  7841. #~ msgid "UserAgreement"
  7842. #~ msgstr "使用者授權"
  7843. #~ msgctxt "@label"
  7844. #~ msgid "Version"
  7845. #~ msgstr "版本"
  7846. #~ msgctxt "@action:button"
  7847. #~ msgid "View Mode"
  7848. #~ msgstr "檢視模式"
  7849. #~ msgctxt "@label"
  7850. #~ msgid "View Mode: Layers"
  7851. #~ msgstr "檢視模式:分層"
  7852. #~ msgctxt "@action:button"
  7853. #~ msgid "View in Monitor"
  7854. #~ msgstr "使用監控觀看"
  7855. #~ msgctxt "@label link to connect manager"
  7856. #~ msgid "View print history"
  7857. #~ msgstr "檢視列印歷史記錄"
  7858. #~ msgctxt "@action:button"
  7859. #~ msgid "View print jobs"
  7860. #~ msgstr "檢視列印作業"
  7861. #~ msgctxt "@action:button"
  7862. #~ msgid "View printers"
  7863. #~ msgstr "檢視印表機"
  7864. #~ msgctxt "@label"
  7865. #~ msgid "View types"
  7866. #~ msgstr "檢示類型"
  7867. #~ msgctxt "@action:label"
  7868. #~ msgid "Visible settings:"
  7869. #~ msgstr "顯示設定:"
  7870. #~ msgctxt "@label:MonitorStatus"
  7871. #~ msgid "Waiting for a printjob"
  7872. #~ msgstr "等待列印作業"
  7873. #~ msgctxt "@label"
  7874. #~ msgid "Waiting for configuration change"
  7875. #~ msgstr "等待設定更動"
  7876. #~ msgctxt "@label:MonitorStatus"
  7877. #~ msgid "Waiting for someone to clear the build plate"
  7878. #~ msgstr "等待清空列印平台"
  7879. #~ msgctxt "@label"
  7880. #~ msgid "Waiting for: "
  7881. #~ msgstr "等待: "
  7882. #~ msgctxt "@label"
  7883. #~ msgid "Waiting for: First available"
  7884. #~ msgstr "等待:第一可用"
  7885. #~ msgctxt "@info:tile"
  7886. #~ msgid "Warning"
  7887. #~ msgstr "警告"
  7888. #~ msgctxt "@info"
  7889. #~ msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura."
  7890. #~ msgstr "無法從UltiMaker Cura中查看你的雲端列印機."
  7891. #~ msgctxt "@action:label"
  7892. #~ msgid "Website"
  7893. #~ msgstr "網站"
  7894. #~ msgctxt "@label"
  7895. #~ msgid "Website"
  7896. #~ msgstr "網站"
  7897. #~ msgctxt "@label"
  7898. #~ msgid "What's new in UltiMaker Cura"
  7899. #~ msgstr "UltiMaker Cura 新功能"
  7900. #~ msgctxt "@label"
  7901. #~ msgid "Will install upon restarting"
  7902. #~ msgstr "將在重新啟動時安裝"
  7903. #~ msgctxt "@label"
  7904. #~ msgid "Would you like to use your current printer configuration in Cura?"
  7905. #~ msgstr "你想在 Cura 中使用目前的印表機設定嗎?"
  7906. #~ msgctxt "description"
  7907. #~ msgid "Writes GCode to a file."
  7908. #~ msgstr "將 GCode 寫入至檔案。"
  7909. #~ msgctxt "X3g Writer Plugin Description"
  7910. #~ msgid "Writes X3g to files"
  7911. #~ msgstr "將 X3g 寫入檔案"
  7912. #~ msgctxt "@item:inlistbox"
  7913. #~ msgid "X-Ray"
  7914. #~ msgstr "透視"
  7915. #~ msgctxt "X3G Writer File Description"
  7916. #~ msgid "X3G File"
  7917. #~ msgstr "X3G 檔案"
  7918. #~ msgctxt "name"
  7919. #~ msgid "X3G Writer"
  7920. #~ msgstr "X3G 寫入器"
  7921. #~ msgctxt "name"
  7922. #~ msgid "X3GWriter"
  7923. #~ msgstr "X3G 寫入器"
  7924. #~ msgctxt "X3g Writer File Description"
  7925. #~ msgid "X3g File"
  7926. #~ msgstr "X3g 檔案"
  7927. #~ msgctxt "@label:extruder label"
  7928. #~ msgid "Yes"
  7929. #~ msgstr "是"
  7930. #~ msgctxt "@label"
  7931. #~ msgid ""
  7932. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  7933. #~ "Are you sure you want to continue?"
  7934. #~ msgstr ""
  7935. #~ "你將從 Cura 移除所有印表機。此動作無法復原。\n"
  7936. #~ "你確定要繼續嗎?"
  7937. #~ msgctxt "@label"
  7938. #~ msgid ""
  7939. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  7940. #~ "Are you sure you want to continue?"
  7941. #~ msgstr ""
  7942. #~ "你將從 Cura 移除 {} 印表機。此動作無法復原。\n"
  7943. #~ "你確定要繼續嗎?"
  7944. #~ msgctxt "@text:window"
  7945. #~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  7946. #~ msgstr "你正在移除仍被使用的線材/列印設定。確認後會將下列耗材/列印設定重設為預設值。"
  7947. #~ msgctxt "@info:status"
  7948. #~ msgid "You can now send and monitor print jobs from anywhere using your UltiMaker account."
  7949. #~ msgstr "現在你可以利用你的 UltiMaker 帳號在任何地方傳送和監控列印作業。"
  7950. #~ msgctxt "@text:window, %1 is a profile name"
  7951. #~ msgid ""
  7952. #~ "You have customized some profile settings.\n"
  7953. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  7954. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  7955. #~ msgstr ""
  7956. #~ "你修改了一些參數設定。\n"
  7957. #~ "你要在切換參數後保留這些更動?\n"
  7958. #~ "或者你也可以忽略這些更動,從 '%1' 載入預設值。"
  7959. #~ msgctxt "@text:window, %1 is a profile name"
  7960. #~ msgid ""
  7961. #~ "You have customized some profile settings.\n"
  7962. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  7963. #~ "Alternatively, you can discard the changes to load the defaults from '%1'."
  7964. #~ msgstr ""
  7965. #~ "你修改了一些參數設定。\n"
  7966. #~ "你要在切換參數後保留這些更動嗎?\n"
  7967. #~ "或者你也可以忽略這些更動,從 '%1' 載入預設值。"
  7968. #~ msgctxt "@text:window"
  7969. #~ msgid ""
  7970. #~ "You have customized some profile settings.\n"
  7971. #~ "Would you like to keep or discard those settings?"
  7972. #~ msgstr ""
  7973. #~ "你已自訂部份列印參數設定。\n"
  7974. #~ "你想保留或捨棄這些設定嗎?"
  7975. #~ msgctxt "@tooltip"
  7976. #~ msgid "You have modified some profile settings. If you want to change these go to custom mode."
  7977. #~ msgstr "你修改過部份列印參數設定。如果你想改變這些設定,請切換到自訂模式。"
  7978. #~ msgctxt "@label"
  7979. #~ msgid "You need to install the package before you can rate"
  7980. #~ msgstr "你需要先安裝套件才能進行評分"
  7981. #~ msgctxt "@label"
  7982. #~ msgid "You need to login first before you can rate"
  7983. #~ msgstr "你需要先登入才能進行評分"
  7984. #~ msgctxt "@info"
  7985. #~ msgid "You will need to restart Cura before changes in packages have effect."
  7986. #~ msgstr "需重新啟動 Cura,套件的更動才能生效。"
  7987. #~ msgctxt "@label"
  7988. #~ msgid "You will need to restart the application for these changes to have effect."
  7989. #~ msgstr "需重新啟動 Cura,新的設定才能生效。"
  7990. #~ msgctxt "@label"
  7991. #~ msgid "Your key to connected 3D printing"
  7992. #~ msgstr "連線 3D 列印的金鑰"
  7993. #~ msgctxt "@text"
  7994. #~ msgid "Your key to connected 3D printing"
  7995. #~ msgstr "連線 3D 列印的金鑰"
  7996. #~ msgctxt "@info:status"
  7997. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  7998. #~ msgstr "模型沒有封閉,標示的區域有缺少或多餘的表面。"
  7999. #~ msgctxt "@label"
  8000. #~ msgid "Your rating"
  8001. #~ msgstr "你的評分"
  8002. #~ msgctxt "@info:tooltip"
  8003. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  8004. #~ msgstr "正交透視不支援游標縮放功能。"
  8005. #~ msgctxt "@label"
  8006. #~ msgid "not yet initialised<br/>"
  8007. #~ msgstr "尚未初始化<br/>"
  8008. #~ msgctxt "@label"
  8009. #~ msgid "ratings"
  8010. #~ msgstr "評分"
  8011. #~ msgctxt "@label:textbox"
  8012. #~ msgid "search settings"
  8013. #~ msgstr "搜尋設定"
  8014. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  8015. #~ msgstr "{printer_name} 已完成列印 '{job_name}'。請收起列印件並確認清空列印平台。"
  8016. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  8017. #~ msgstr "{printer_name} 已為了列印 '{job_name}' 保留。請更改印表機設定配合此列印作業,以便開始列印。"
  8018. #~ msgctxt "@label ({} is printer name)"
  8019. #~ 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?"
  8020. #~ msgstr "直到下次帳號同步前 {} 將被移除。<br>要永久移除 {},請前往 <a href='https://mycloud.UltiMaker.com/'>Ultimaker Digital Factory</a>。<br><br>你確定要暫時移除 {} 嗎?"