cura.po 242 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905
  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: 2024-03-13 09:02+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. #, python-format
  21. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  22. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  23. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  24. msgctxt "@action:label"
  25. msgid "%1 & material"
  26. msgstr "%1 & 線材"
  27. msgctxt "@action:label"
  28. msgid "%1 out of %2"
  29. msgstr "%1 / %2"
  30. msgctxt "@action:label"
  31. msgid "%1 override"
  32. msgid_plural "%1 overrides"
  33. msgstr[0] "%1 覆寫"
  34. msgctxt "@action:label"
  35. msgid "%1, %2 override"
  36. msgid_plural "%1, %2 overrides"
  37. msgstr[0] "%1, %2 覆寫"
  38. msgctxt "@label g for grams"
  39. msgid "%1g"
  40. msgstr "%1g"
  41. msgctxt "@label m for meter"
  42. msgid "%1m"
  43. msgstr "%1m"
  44. msgctxt "@action:inmenu menubar:printer"
  45. msgid "&Add Printer..."
  46. msgstr "新增印表機(&A)..."
  47. msgctxt "@action:inmenu menubar:view"
  48. msgid "&Camera position"
  49. msgstr "視角位置(&C)"
  50. msgctxt "@action:inmenu menubar:profile"
  51. msgid "&Create profile from current settings/overrides..."
  52. msgstr "從目前設定 / 覆寫值建立列印參數(&C)..."
  53. msgctxt "@action:inmenu menubar:profile"
  54. msgid "&Discard current changes"
  55. msgstr "捨棄目前更改(&D)"
  56. msgctxt "@title:menu menubar:toplevel"
  57. msgid "&Edit"
  58. msgstr "編輯(&E)"
  59. msgctxt "@title:menu menubar:file"
  60. msgid "&Export..."
  61. msgstr "匯出...(&E)"
  62. msgctxt "@title:menu menubar:toplevel"
  63. msgid "&File"
  64. msgstr "檔案(&F)"
  65. msgctxt "@action:inmenu menubar:edit"
  66. msgid "&Group Models"
  67. msgstr "群組模型(&G)"
  68. msgctxt "@title:menu menubar:toplevel"
  69. msgid "&Help"
  70. msgstr "幫助(&H)"
  71. msgctxt "@title:menu"
  72. msgid "&Material"
  73. msgstr "線材(&M)"
  74. msgctxt "@action:inmenu menubar:edit"
  75. msgid "&Merge Models"
  76. msgstr "結合模型(&M)"
  77. msgctxt "@action:inmenu"
  78. msgid "&Multiply Model..."
  79. msgstr "複製模型...(&M)"
  80. msgctxt "@action:inmenu menubar:file"
  81. msgid "&New Project..."
  82. msgstr "新建專案(&N)..."
  83. msgctxt "@action:inmenu menubar:file"
  84. msgid "&Open File(s)..."
  85. msgstr "開啟檔案(&O)..."
  86. msgctxt "@title:menu menubar:settings"
  87. msgid "&Printer"
  88. msgstr "印表機(&P)"
  89. msgctxt "@action:inmenu menubar:file"
  90. msgid "&Quit"
  91. msgstr "退出(&Q)"
  92. msgctxt "@action:inmenu menubar:edit"
  93. msgid "&Redo"
  94. msgstr "取消復原(&R)"
  95. msgctxt "@title:menu menubar:file"
  96. msgid "&Save Project..."
  97. msgstr "儲存專案...(&S)"
  98. msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'"
  99. msgid "&Save Universal Cura Project..."
  100. msgstr ""
  101. msgctxt "@title:menu menubar:toplevel"
  102. msgid "&Settings"
  103. msgstr "設定(&S)"
  104. msgctxt "@action:inmenu menubar:edit"
  105. msgid "&Undo"
  106. msgstr "復原(&U)"
  107. msgctxt "@action:inmenu menubar:profile"
  108. msgid "&Update profile with current settings/overrides"
  109. msgstr "使用目前設定 / 覆寫更新列印參數(&U)"
  110. msgctxt "@title:menu menubar:toplevel"
  111. msgid "&View"
  112. msgstr "檢視(&V)"
  113. msgctxt "@label"
  114. msgid "*You will need to restart the application for these changes to have effect."
  115. msgstr ""
  116. msgctxt "@text"
  117. msgid ""
  118. "- Add material profiles and plug-ins from the Marketplace\n"
  119. "- Back-up and sync your material profiles and plug-ins\n"
  120. "- Share ideas and get help from 48,000+ users in the UltiMaker community"
  121. msgstr ""
  122. "- 從市集中加入線材參數及插件\n"
  123. "-備份及同步您的線材設定與插件 \n"
  124. "- 分享創意並可從UltiMaker社群中超過48000的使用者得到幫助"
  125. msgctxt "@heading"
  126. msgid "-- incomplete --"
  127. msgstr ""
  128. msgctxt "@action:label"
  129. msgid "1mm Transmittance (%)"
  130. msgstr "1mm 透明度"
  131. msgctxt "@info:title"
  132. msgid "3D Model Assistant"
  133. msgstr "3D 模型助手"
  134. msgctxt "@action:inmenu menubar:view"
  135. msgid "3D View"
  136. msgstr "立體圖"
  137. msgctxt "@info:tooltip"
  138. msgid "3D View"
  139. msgstr "立體圖"
  140. msgctxt "@item:inlistbox"
  141. msgid "3MF File"
  142. msgstr "3MF 檔案"
  143. msgctxt "name"
  144. msgid "3MF Reader"
  145. msgstr "3MF 讀取器"
  146. msgctxt "name"
  147. msgid "3MF Writer"
  148. msgstr "3MF 寫入器"
  149. msgctxt "@error:zip"
  150. msgid "3MF Writer plug-in is corrupt."
  151. msgstr "3MF 寫入器外掛已損壞。"
  152. msgctxt "@item:inlistbox"
  153. msgid "3MF file"
  154. msgstr "3MF 檔案"
  155. msgctxt "@info, %1 is the name of the custom profile"
  156. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  157. msgstr ""
  158. msgctxt "@info, %1 is the name of the custom profile"
  159. msgid "<b>%1</b> custom profile is overriding some settings."
  160. msgstr ""
  161. msgctxt "@label %i will be replaced with a profile name"
  162. 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>."
  163. msgstr ""
  164. #, python-brace-format
  165. msgctxt "@label OpenGL renderer"
  166. msgid "<li>OpenGL Renderer: {renderer}</li>"
  167. msgstr "<li>OpenGL 渲染器:{renderer}</li>"
  168. #, python-brace-format
  169. msgctxt "@label OpenGL vendor"
  170. msgid "<li>OpenGL Vendor: {vendor}</li>"
  171. msgstr "<li>OpenGL 供應商:{vendor}</li>"
  172. #, python-brace-format
  173. msgctxt "@label OpenGL version"
  174. msgid "<li>OpenGL Version: {version}</li>"
  175. msgstr "<li>OpenGL 版本:{version}</li>"
  176. msgctxt "@label crash message"
  177. msgid ""
  178. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  179. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  180. " "
  181. msgstr ""
  182. "<p><b>Cura 發生了一個嚴重的錯誤。請將錯誤報告傳送給我們以修正此問題</p></b>\n"
  183. " <p>請用\"送出報告\"按鈕自動發出一份錯誤報告到我們的伺服器</p>\n"
  184. " "
  185. msgctxt "@label crash message"
  186. msgid ""
  187. "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n"
  188. " <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"
  189. " <p>Backups can be found in the configuration folder.</p>\n"
  190. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  191. " "
  192. msgstr ""
  193. "<p><b>糟糕,UltiMaker Cura 遇到了一些似乎不正常的事情。</p></b>\n"
  194. " <p>我們在啟動過程中遇到了無法修正的錯誤。這可能是由一些不正確的設定檔造成的。我們建議備份並重置您的設定。</p>\n"
  195. " <p>備份檔案可在設定資料夾中找到。</p>\n"
  196. " <p>請將錯誤報告傳送給我們以修正此問題。</p>\n"
  197. " "
  198. #, python-brace-format
  199. msgctxt "@info:status"
  200. msgid ""
  201. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  202. "<p>{model_names}</p>\n"
  203. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  204. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  205. msgstr ""
  206. "<p>由於模型尺寸和線材設定的原因,一個或多個模型無法在最佳情狀下列印</p>\n"
  207. "<p>{model_names}</p>\n"
  208. "<p>了解如何確保最佳的列印品質和可靠性。</p>\n"
  209. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">閱讀列印品質指南</a></p>"
  210. msgctxt "@label"
  211. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  212. msgstr "USB 列印正在進行中,關閉 Cura 將停止此列印工作。你確定要繼續嗎?"
  213. msgctxt "info:status"
  214. msgid "A cloud connection is not available for a printer"
  215. msgid_plural "A cloud connection is not available for some printers"
  216. msgstr[0] "印表機無法使用雲端連接"
  217. msgctxt "@text"
  218. msgid "A highly dense and strong part but at a slower print time. Great for functional parts."
  219. msgstr ""
  220. msgctxt "@message"
  221. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  222. msgstr "列印仍在進行中。列印完成前,Cura 無法透過 USB 開始另一次列印。"
  223. msgctxt "@item:inlistbox"
  224. msgid "AMF File"
  225. msgstr "AMF 檔案"
  226. msgctxt "name"
  227. msgid "AMF Reader"
  228. msgstr "AMF 讀取器"
  229. msgctxt "@label"
  230. msgid "Abort"
  231. msgstr "中斷"
  232. msgctxt "@label"
  233. msgid "Abort Print"
  234. msgstr "中斷列印"
  235. msgctxt "@window:title"
  236. msgid "Abort print"
  237. msgstr "中斷列印"
  238. msgctxt "@label:status"
  239. msgid "Aborted"
  240. msgstr "已中斷"
  241. msgctxt "@label"
  242. msgid "Aborting..."
  243. msgstr "正在中斷..."
  244. msgctxt "@label:status"
  245. msgid "Aborting..."
  246. msgstr "正在中斷..."
  247. msgctxt "@title:window The argument is the application name."
  248. msgid "About %1"
  249. msgstr "關於 %1"
  250. msgctxt "@action:inmenu menubar:help"
  251. msgid "About..."
  252. msgstr "關於..."
  253. msgctxt "@button"
  254. msgid "Accept"
  255. msgstr ""
  256. msgctxt "description"
  257. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  258. msgstr "接受 G-Code 並且傳送到印表機。此外掛也可以更新韌體。"
  259. msgctxt "@label"
  260. msgid "Account synced"
  261. msgstr "帳號已同步"
  262. msgctxt "@label:status"
  263. msgid "Action required"
  264. msgstr "需要採取的動作"
  265. msgctxt "@action:button"
  266. msgid "Activate"
  267. msgstr "啟用"
  268. msgctxt "@label"
  269. msgid "Active print"
  270. msgstr "正在列印"
  271. msgctxt "@action:button"
  272. msgid "Add"
  273. msgstr "增加"
  274. msgctxt "@button"
  275. msgid "Add"
  276. msgstr "新增"
  277. msgctxt "@action:button"
  278. msgid "Add New"
  279. msgstr ""
  280. msgctxt "@title:window"
  281. msgid "Add Printer"
  282. msgstr "新增印表機"
  283. msgctxt "@button"
  284. msgid "Add UltiMaker printer via Digital Factory"
  285. msgstr ""
  286. msgctxt "@label"
  287. msgid "Add a Cloud printer"
  288. msgstr "新增雲端印表機"
  289. msgctxt "@label"
  290. msgid "Add a networked printer"
  291. msgstr "新增網路印表機"
  292. msgctxt "@label"
  293. msgid "Add a non-networked printer"
  294. msgstr "新增非網路印表機"
  295. msgctxt "@action"
  296. msgid "Add a script"
  297. msgstr "添加一個腳本"
  298. msgctxt "@option:check"
  299. msgid "Add icon to system tray *"
  300. msgstr ""
  301. msgctxt "@button"
  302. msgid "Add local printer"
  303. msgstr ""
  304. msgctxt "@option:check"
  305. msgid "Add machine prefix to job name"
  306. msgstr "將印表機名稱前綴添加到列印作業名稱中"
  307. msgctxt "@text"
  308. msgid "Add material settings and plugins from the Marketplace"
  309. msgstr "從市集中加入線材設定或插件"
  310. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  311. msgid "Add more materials from Marketplace"
  312. msgstr "從市集增加更多線材"
  313. msgctxt "@button"
  314. msgid "Add printer"
  315. msgstr "新增印表機"
  316. msgctxt "@label"
  317. msgid "Add printer"
  318. msgstr ""
  319. msgctxt "@label"
  320. msgid "Add printer by IP"
  321. msgstr "使用 IP 位址新增印表機"
  322. msgctxt "@label"
  323. msgid "Add printer by IP address"
  324. msgstr "使用 IP 位址新增印表機"
  325. msgctxt "@button"
  326. msgid "Add printer manually"
  327. msgstr "手動新增印表機"
  328. #, python-brace-format
  329. msgctxt "info:status Filled in with printer name and printer model."
  330. msgid "Adding printer {name} ({model}) from your account"
  331. msgstr "從你的帳號新增印表機 {name} ({model})"
  332. msgctxt "@label"
  333. msgid "Address"
  334. msgstr "位址"
  335. msgctxt "@label"
  336. msgid "Adhesion"
  337. msgstr "附著"
  338. msgctxt "@label"
  339. msgid "Adhesion Information"
  340. msgstr "附著資訊"
  341. msgctxt "@label"
  342. msgid "Adjusts the density of infill of the print."
  343. msgstr ""
  344. msgctxt "support_type description"
  345. 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."
  346. msgstr ""
  347. msgctxt "@label Header for list of settings."
  348. msgid "Affected By"
  349. msgstr "影響因素"
  350. msgctxt "@label Header for list of settings."
  351. msgid "Affects"
  352. msgstr "影響"
  353. msgctxt "@button"
  354. msgid "Agree"
  355. msgstr "同意"
  356. msgctxt "@item:inlistbox"
  357. msgid "All Files (*)"
  358. msgstr "所有檔案 (*)"
  359. #, python-brace-format
  360. msgctxt "@item:inlistbox"
  361. msgid "All Supported Types ({0})"
  362. msgstr "所有支援的類型 ({0})"
  363. msgctxt "@text:window"
  364. msgid "Allow sending anonymous data"
  365. msgstr "允許傳送匿名資料"
  366. msgctxt "description"
  367. msgid "Allows loading and displaying G-code files."
  368. msgstr "允許載入和顯示 G-code 檔案。"
  369. msgctxt "@option:discardOrKeep"
  370. msgid "Always ask me this"
  371. msgstr "總是詢問"
  372. msgctxt "@option:openProject"
  373. msgid "Always ask me this"
  374. msgstr "每次都向我確認"
  375. msgctxt "@option:discardOrKeep"
  376. msgid "Always discard changed settings"
  377. msgstr "總是放棄修改過的設定"
  378. msgctxt "@option:openProject"
  379. msgid "Always import models"
  380. msgstr "總是匯入模型"
  381. msgctxt "@option:openProject"
  382. msgid "Always open as a project"
  383. msgstr "總是作為一個專案開啟"
  384. msgctxt "@option:discardOrKeep"
  385. msgid "Always transfer changed settings to new profile"
  386. msgstr "總是將修改過的設定轉移至新的列印參數"
  387. msgctxt "@info:tooltip"
  388. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  389. msgstr "部份模型採用較大的單位(例如:公尺),導致模型變得非常小,要將這些模型放大嗎?"
  390. msgctxt "@label"
  391. msgid "Annealing"
  392. msgstr ""
  393. msgctxt "@label"
  394. msgid "Anonymous"
  395. msgstr "匿名"
  396. msgctxt "@option:radio"
  397. msgid "Anonymous crash reports"
  398. msgstr ""
  399. msgctxt "@label Description for application component"
  400. msgid "Application framework"
  401. msgstr "應用框架"
  402. msgctxt "@title:column"
  403. msgid "Applies on"
  404. msgstr ""
  405. msgctxt "@label"
  406. msgid "Apply Extruder offsets to GCode"
  407. msgstr "將擠出機偏移設定至Gcode"
  408. msgctxt "@info:title"
  409. msgid "Are you ready for cloud printing?"
  410. msgstr "您準備好雲端列印嗎?"
  411. msgctxt "@label %1 is the name of a print job."
  412. msgid "Are you sure you want to abort %1?"
  413. msgstr "你確定要中斷 %1 嗎?"
  414. msgctxt "@label"
  415. msgid "Are you sure you want to abort the print?"
  416. msgstr "你確定要中斷列印嗎?"
  417. msgctxt "@label %1 is the name of a print job."
  418. msgid "Are you sure you want to delete %1?"
  419. msgstr "你確定要刪除 %1 嗎?"
  420. msgctxt "@dialog:info"
  421. msgid "Are you sure you want to delete this backup? This cannot be undone."
  422. msgstr "你確定要刪除此備份嗎? 這動作無法復原。"
  423. msgctxt "@label %1 is the application name"
  424. msgid "Are you sure you want to exit %1?"
  425. msgstr "是否確定要離開 %1 ?"
  426. msgctxt "@label %1 is the name of a print job."
  427. msgid "Are you sure you want to move %1 to the top of the queue?"
  428. msgstr "你確定要將 %1 移至隊列的頂端嗎?"
  429. #, python-brace-format
  430. msgctxt "@message {printer_name} is replaced with the name of the printer"
  431. msgid "Are you sure you want to remove {printer_name} temporarily?"
  432. msgstr "你確定要暫時移除 {printer_name} 嗎?"
  433. msgctxt "@info:question"
  434. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  435. msgstr "你確定要開始一個新專案嗎?這將清除列印平台及任何未儲存的設定。"
  436. msgctxt "@label (%1 is object name)"
  437. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  438. msgstr "你確定要移除 %1 嗎?這動作無法復原!"
  439. #, python-brace-format
  440. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  441. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  442. msgstr "你確定要移除 {0} 嗎?這動作無法復原!"
  443. msgctxt "@action:inmenu menubar:edit"
  444. msgid "Arrange All Models"
  445. msgstr "排列所有模型"
  446. msgctxt "@action:inmenu menubar:edit"
  447. msgid "Arrange All Models in a grid"
  448. msgstr ""
  449. msgctxt "@action:inmenu menubar:edit"
  450. msgid "Arrange Selection"
  451. msgstr "排列所選模型"
  452. msgctxt "@label:button"
  453. msgid "Ask a question"
  454. msgstr "提出問題"
  455. msgctxt "@checkbox:description"
  456. msgid "Auto Backup"
  457. msgstr "自動備份"
  458. msgctxt "@checkbox:description"
  459. msgid "Automatically create a backup each day that Cura is started."
  460. msgstr "每天啟動 Cura 時自動建立備份。"
  461. msgctxt "@option:check"
  462. msgid "Automatically drop models to the build plate"
  463. msgstr "自動下降模型到列印平台"
  464. msgctxt "@action:button"
  465. msgid "Automatically upgrade Firmware"
  466. msgstr "自動升級韌體"
  467. msgctxt "@label"
  468. msgid "Available networked printers"
  469. msgstr "可用的網路印表機"
  470. msgctxt "@item:inlistbox"
  471. msgid "BMP Image"
  472. msgstr "BMP 圖片"
  473. msgctxt "@button"
  474. msgid "Back"
  475. msgstr "返回"
  476. msgctxt "@button:tooltip"
  477. msgid "Back"
  478. msgstr ""
  479. msgctxt "@info:title"
  480. msgid "Backup"
  481. msgstr "備份"
  482. msgctxt "@button"
  483. msgid "Backup Now"
  484. msgstr "立即備份"
  485. msgctxt "@action:button"
  486. msgid "Backup and Reset Configuration"
  487. msgstr "備份和重置設定"
  488. msgctxt "description"
  489. msgid "Backup and restore your configuration."
  490. msgstr "備份和復原你的設定。"
  491. msgctxt "@text"
  492. msgid "Backup and sync your material settings and plugins"
  493. msgstr "備份及同步您的線材設定與插件"
  494. msgctxt "@description"
  495. msgid "Backup and synchronize your Cura settings."
  496. msgstr "備份並同步你的 Cura 設定。"
  497. msgctxt "@info:title"
  498. msgid "Backups"
  499. msgstr "備份"
  500. msgctxt "@label"
  501. msgid "Balanced"
  502. msgstr ""
  503. msgctxt "@action:label"
  504. msgid "Base (mm)"
  505. msgstr "底板 (mm)"
  506. msgctxt "@action:inmenu menubar:view"
  507. msgid "Bottom View"
  508. msgstr "下視圖"
  509. msgctxt "@label"
  510. msgid "Brand"
  511. msgstr "品牌"
  512. msgctxt "@title"
  513. msgid "Build Plate Leveling"
  514. msgstr "列印平台調整水平"
  515. msgctxt "@info:title"
  516. msgid "Build Volume"
  517. msgstr "列印範圍"
  518. msgctxt "@label"
  519. msgid "Build plate"
  520. msgstr "列印平台"
  521. msgctxt "@label"
  522. msgid "Build plate shape"
  523. msgstr "列印平台形狀"
  524. msgctxt "@label"
  525. msgid "Bundled Materials"
  526. msgstr ""
  527. msgctxt "@label"
  528. msgid "Bundled Plugins"
  529. msgstr ""
  530. msgctxt "@button"
  531. msgid "Buy spool"
  532. msgstr ""
  533. msgctxt "@label Is followed by the name of an author"
  534. msgid "By"
  535. msgstr ""
  536. msgctxt "@label Description for application dependency"
  537. msgid "C/C++ Binding library"
  538. msgstr "C / C++ 綁定庫"
  539. msgctxt "@item:inlistbox"
  540. msgid "COLLADA Digital Asset Exchange"
  541. msgstr "COLLADA Digital Asset Exchange"
  542. msgctxt "@info:status"
  543. msgid "Calculated"
  544. msgstr "已計算"
  545. msgctxt "@window:text"
  546. msgid "Camera navigation:"
  547. msgstr ""
  548. msgctxt "@window:text"
  549. msgid "Camera rendering:"
  550. msgstr "攝影機渲染:"
  551. msgctxt "@action:inmenu menubar:view"
  552. msgid "Camera view"
  553. msgstr "攝影機檢視"
  554. msgctxt "@info:title"
  555. msgid "Can't Find Location"
  556. msgstr "無法找到位置"
  557. msgctxt "@info:title"
  558. msgid "Can't Open Project File"
  559. msgstr "無法開啟專案檔案"
  560. msgctxt "@label"
  561. msgid "Can't connect to your UltiMaker printer?"
  562. msgstr "無法連接到 UltiMaker 印表機?"
  563. #, python-brace-format
  564. msgctxt "@info:status Don't translate the XML tags <filename>!"
  565. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  566. msgstr "在加入印表機前,無法從 <filename>{0}</filename> 匯入列印參數。"
  567. #, python-brace-format
  568. msgctxt "@info:status"
  569. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  570. msgstr "如果載入 G-code,則無法開啟其他任何檔案。{0} 已跳過匯入"
  571. msgctxt "@info:error"
  572. msgid "Can't write to UFP file:"
  573. msgstr "無法寫入 UFP 檔案:"
  574. msgctxt "@action:button"
  575. msgid "Cancel"
  576. msgstr "取消"
  577. msgctxt "@button"
  578. msgid "Cancel"
  579. msgstr "取消"
  580. msgctxt "@button Cancel pre-heating"
  581. msgid "Cancel"
  582. msgstr "取消"
  583. msgctxt "@option:check"
  584. msgid "Caution message in g-code reader"
  585. msgstr "G-code 讀取器中的警告訊息"
  586. msgctxt "@action:inmenu"
  587. msgid "Ce&nter Model on Platform"
  588. msgstr "將模型置中(&N)"
  589. msgctxt "@action:inmenu menubar:edit"
  590. msgid "Center Selected"
  591. msgstr "置中選取"
  592. msgctxt "@action:button"
  593. msgid "Center camera when item is selected"
  594. msgstr "當專案被選中時,自動置中視角"
  595. msgctxt "@info:tooltip"
  596. msgid "Change active post-processing scripts."
  597. msgstr "更改目前啟用的後處理腳本。"
  598. msgctxt "@label"
  599. msgid "Change material %1 from %2 to %3."
  600. msgstr "將線材 %1 從 %2 改成 %3。"
  601. msgctxt "@label"
  602. msgid "Change print core %1 from %2 to %3."
  603. msgstr "將 print core %1 從 %2 改成 %3。"
  604. msgctxt "@info:title"
  605. msgid "Changes detected from your UltiMaker account"
  606. msgstr "從你的 UltiMaker 帳號偵測到資料更動"
  607. msgctxt "@title"
  608. msgid "Changes from your account"
  609. msgstr "你帳戶的更動"
  610. msgctxt "@label:textbox"
  611. msgid "Check all"
  612. msgstr "全選"
  613. msgctxt "@button"
  614. msgid "Check for account updates"
  615. msgstr "檢查帳號更新"
  616. msgctxt "@option:check"
  617. msgid "Check for updates on start"
  618. msgstr "啟動時檢查更新"
  619. msgctxt "@label"
  620. msgid "Checking..."
  621. msgstr "檢查中..."
  622. msgctxt "description"
  623. msgid "Checks for firmware updates."
  624. msgstr "檢查是否有韌體更新。"
  625. msgctxt "description"
  626. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  627. msgstr "檢查模型和列印設定以了解可能發生的問題並給出建議。"
  628. msgctxt "@label"
  629. msgid ""
  630. "Chooses between the techniques available to generate support. \n"
  631. "\n"
  632. "\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n"
  633. "\n"
  634. "\"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."
  635. msgstr ""
  636. msgctxt "@action:inmenu menubar:edit"
  637. msgid "Clear Build Plate"
  638. msgstr "清空列印平台"
  639. msgctxt "@option:check"
  640. msgid "Clear buildplate before loading model into the single instance"
  641. msgstr "載入新模型時清空視窗內之列印平台"
  642. msgctxt "@text"
  643. msgid "Click the export material archive button."
  644. msgstr "請點擊輸出材料檔案按鈕."
  645. msgctxt "@action:button"
  646. msgid "Close"
  647. msgstr "關閉"
  648. msgctxt "@title:window %1 is the application name"
  649. msgid "Closing %1"
  650. msgstr "關閉 %1 中"
  651. msgctxt "@action:inmenu"
  652. msgid "Collapse All Categories"
  653. msgstr "折疊所有分類"
  654. msgctxt "@label"
  655. msgid "Color"
  656. msgstr "顏色"
  657. msgctxt "@action:label"
  658. msgid "Color Model"
  659. msgstr ""
  660. msgctxt "@label"
  661. msgid "Color scheme"
  662. msgstr "顏色方案"
  663. msgctxt "@info"
  664. msgid "Compare and save."
  665. msgstr ""
  666. msgctxt "@label"
  667. msgid "Compatibility Mode"
  668. msgstr "相容模式"
  669. msgctxt "@label Description for application dependency"
  670. msgid "Compatibility between Python 2 and 3"
  671. msgstr ""
  672. msgctxt "@title:label"
  673. msgid "Compatible Printers"
  674. msgstr ""
  675. msgctxt "@label"
  676. msgid "Compatible material diameter"
  677. msgstr "相容的線材直徑"
  678. msgctxt "@header"
  679. msgid "Compatible printers"
  680. msgstr ""
  681. msgctxt "@header"
  682. msgid "Compatible support materials"
  683. msgstr ""
  684. msgctxt "@header"
  685. msgid "Compatible with Material Station"
  686. msgstr ""
  687. msgctxt "@item:inlistbox"
  688. msgid "Compressed COLLADA Digital Asset Exchange"
  689. msgstr "Compressed COLLADA Digital Asset Exchange"
  690. msgctxt "@item:inlistbox"
  691. msgid "Compressed G-code File"
  692. msgstr "壓縮 G-code 檔案"
  693. msgctxt "name"
  694. msgid "Compressed G-code Reader"
  695. msgstr "壓縮檔案 G-code 讀取器"
  696. msgctxt "name"
  697. msgid "Compressed G-code Writer"
  698. msgstr "壓縮檔案 G-code 寫入器"
  699. msgctxt "@title:window"
  700. msgid "Configuration Changes"
  701. msgstr "修改設定"
  702. msgctxt "@error"
  703. msgid "Configuration not supported"
  704. msgstr ""
  705. msgctxt "@header"
  706. msgid "Configurations"
  707. msgstr "設定"
  708. msgctxt "@label"
  709. msgid "Configurations"
  710. msgstr "設定"
  711. msgctxt "@action:inmenu"
  712. msgid "Configure Cura..."
  713. msgstr "設定 Cura..."
  714. msgctxt "@info:tooltip"
  715. msgid "Configure Per Model Settings"
  716. msgstr "設定對每個模型的單獨設定"
  717. msgctxt "@action"
  718. msgid "Configure group"
  719. msgstr "設定印表機群組"
  720. msgctxt "@action:menu"
  721. msgid "Configure setting visibility..."
  722. msgstr "參數顯示設定..."
  723. msgctxt "@title:window"
  724. msgid "Confirm Diameter Change"
  725. msgstr "直徑更改確認"
  726. msgctxt "@title:window"
  727. msgid "Confirm Remove"
  728. msgstr "移除確認"
  729. msgctxt "@action:button"
  730. msgid "Connect"
  731. msgstr "連接"
  732. msgctxt "@button"
  733. msgid "Connect"
  734. msgstr "連接"
  735. msgctxt "@title:window"
  736. msgid "Connect to Networked Printer"
  737. msgstr "連接到網路印表機"
  738. msgctxt "@action"
  739. msgid "Connect via Network"
  740. msgstr "透過網路連接"
  741. msgctxt "@info:status"
  742. msgid "Connected over the network"
  743. msgstr "透過網路連接"
  744. msgctxt "@label"
  745. msgid "Connected printers"
  746. msgstr "已連線印表機"
  747. msgctxt "@info:status"
  748. msgid "Connected via USB"
  749. msgstr "透過 USB 連接"
  750. msgctxt "@info:status"
  751. msgid "Connected via cloud"
  752. msgstr "透過雲端服務連接"
  753. msgctxt "description"
  754. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  755. msgstr "連結至\"數位博物館\",允許Cura從\"數位博物館\"打開或保存文件."
  756. msgctxt "@tooltip:button"
  757. msgid "Consult the UltiMaker Community."
  758. msgstr "諮詢UltiMaker社群."
  759. msgctxt "@title:window"
  760. msgid "Convert Image"
  761. msgstr ""
  762. msgctxt "@label"
  763. msgid "Cooling Fan Number"
  764. msgstr "冷卻風扇數量"
  765. msgctxt "@action:menu"
  766. msgid "Copy all changed values to all extruders"
  767. msgstr "複製所有改變的設定值到所有擠出機"
  768. msgctxt "@action:inmenu menubar:edit"
  769. msgid "Copy to clipboard"
  770. msgstr ""
  771. msgctxt "@action:menu"
  772. msgid "Copy value to all extruders"
  773. msgstr "將設定值複製到所有擠出機"
  774. msgctxt "@label"
  775. msgid "Cost per Meter"
  776. msgstr "每公尺成本"
  777. msgctxt "@info"
  778. msgid "Could not access update information."
  779. msgstr "無法存取更新資訊。"
  780. msgctxt "@label"
  781. msgid "Could not connect to device."
  782. msgstr "無法連接到裝置。"
  783. msgctxt "@info:backup_failed"
  784. msgid "Could not create archive from user data directory: {}"
  785. msgstr "無法從使用者資料目錄建立備份檔:{}"
  786. #, python-brace-format
  787. msgctxt "@info:status Don't translate the tag {device}!"
  788. msgid "Could not find a file name when trying to write to {device}."
  789. msgstr "嘗試寫入到 {device} 時無法找到檔名。"
  790. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  791. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  792. msgstr "無法匯入線材 <filename>%1</filename>:<message>%2</message>"
  793. msgctxt "@info:error"
  794. msgid "Could not interpret the server's response."
  795. msgstr ""
  796. msgctxt "@error:load"
  797. msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin."
  798. msgstr ""
  799. msgctxt "@info:error"
  800. msgid "Could not reach Marketplace."
  801. msgstr ""
  802. msgctxt "@message"
  803. msgid "Could not read response."
  804. msgstr "雲端沒有讀取回應。"
  805. msgctxt "@message:text"
  806. msgid "Could not save material archive to {}:"
  807. msgstr "無法儲存線材資料至{}:"
  808. #, python-brace-format
  809. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  810. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  811. msgstr "無法儲存到 <filename>{0}</filename>:<message>{1}</message>"
  812. #, python-brace-format
  813. msgctxt "@info:status"
  814. msgid "Could not save to removable drive {0}: {1}"
  815. msgstr "無法儲存到行動裝置 {0}:{1}"
  816. msgctxt "@info:text"
  817. msgid "Could not upload the data to the printer."
  818. msgstr "雲端服務未上傳資料到印表機。"
  819. #, python-brace-format
  820. msgctxt "@info:plugin_failed"
  821. msgid ""
  822. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  823. "No permission to execute process."
  824. msgstr ""
  825. #, python-brace-format
  826. msgctxt "@info:plugin_failed"
  827. msgid ""
  828. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  829. "Operating system is blocking it (antivirus?)"
  830. msgstr ""
  831. #, python-brace-format
  832. msgctxt "@info:plugin_failed"
  833. msgid ""
  834. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  835. "Resource is temporarily unavailable"
  836. msgstr ""
  837. msgctxt "@title:window"
  838. msgid "Crash Report"
  839. msgstr "錯誤報告"
  840. msgctxt "@title:window"
  841. msgid "Create Profile"
  842. msgstr "建立列印參數"
  843. msgctxt "@text"
  844. msgid "Create a free UltiMaker Account"
  845. msgstr "創建免費的UltiMaker帳戶"
  846. msgctxt "@button"
  847. msgid "Create a free UltiMaker account"
  848. msgstr "創建免費的UltiMaker帳戶"
  849. msgctxt "@info:tooltip"
  850. msgid "Create a volume in which supports are not printed."
  851. msgstr "建立一塊不列印支撐的空間。"
  852. msgctxt "@action:ComboBox Save settings in a new profile"
  853. msgid "Create new"
  854. msgstr "新建設定"
  855. msgctxt "@action:button"
  856. msgid "Create new"
  857. msgstr ""
  858. msgctxt "@button"
  859. msgid "Create new"
  860. msgstr ""
  861. msgctxt "@action:tooltip"
  862. msgid "Create new profile from current settings/overrides"
  863. msgstr ""
  864. msgctxt "@tooltip:button"
  865. msgid "Create print projects in Digital Library."
  866. msgstr "從 Digital Library中創建列印專案."
  867. msgctxt "description"
  868. msgid "Creates an eraser mesh to block the printing of support in certain places"
  869. msgstr "建立一個抹除器網格放在某些地方用來防止列印支撐"
  870. msgctxt "@info:backup_status"
  871. msgid "Creating your backup..."
  872. msgstr "正在建立備份..."
  873. msgctxt "@item:inlistbox"
  874. msgid "Cura 15.04 profiles"
  875. msgstr "Cura 15.04 列印參數"
  876. msgctxt "@title:window"
  877. msgid "Cura Backups"
  878. msgstr "Cura 備份"
  879. msgctxt "name"
  880. msgid "Cura Backups"
  881. msgstr "Cura 備份"
  882. msgctxt "@item:inlistbox"
  883. msgid "Cura Profile"
  884. msgstr "Cura 列印參數"
  885. msgctxt "name"
  886. msgid "Cura Profile Reader"
  887. msgstr "Cura 列印參數讀取器"
  888. msgctxt "name"
  889. msgid "Cura Profile Writer"
  890. msgstr "Cura 列印參數寫入器"
  891. msgctxt "@item:inlistbox"
  892. msgid "Cura Project 3MF file"
  893. msgstr "Cura 專案 3MF 檔案"
  894. msgctxt "@backuplist:label"
  895. msgid "Cura Version"
  896. msgstr "Cura 版本"
  897. msgctxt "@title:window"
  898. msgid "Cura can't start"
  899. msgstr "Cura 無法啟動"
  900. #, python-brace-format
  901. msgctxt "@info:status"
  902. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  903. msgstr "Cura 偵測到群組 {0} 的管理主機上未安裝的線材參數。"
  904. msgctxt "@info:credit"
  905. msgid ""
  906. "Cura is developed by UltiMaker in cooperation with the community.\n"
  907. "Cura proudly uses the following open source projects:"
  908. msgstr ""
  909. "Cura 由 Ultimaker B.V. 與社群合作開發。\n"
  910. "Cura 使用以下開源專案:"
  911. msgctxt "@label"
  912. msgid "Cura language"
  913. msgstr "Cura 語言"
  914. msgctxt "@label Cura version number"
  915. msgid "Cura version"
  916. msgstr "Cura 版本"
  917. msgctxt "name"
  918. msgid "CuraEngine Backend"
  919. msgstr "Cura 引擎後台"
  920. msgctxt "description"
  921. msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
  922. msgstr ""
  923. msgctxt "name"
  924. msgid "CuraEngineGradualFlow"
  925. msgstr ""
  926. msgctxt "@label"
  927. msgid "Currency:"
  928. msgstr "貨幣:"
  929. msgctxt "@title:column"
  930. msgid "Current"
  931. msgstr "目前"
  932. msgctxt "@title:column"
  933. msgid "Current changes"
  934. msgstr "目前更動"
  935. msgctxt "@header"
  936. msgid "Custom"
  937. msgstr "自訂選項"
  938. msgctxt "@label"
  939. msgid "Custom"
  940. msgstr "自訂"
  941. msgctxt "@title:tab"
  942. msgid "Custom"
  943. msgstr "自訂選項"
  944. msgctxt "@label"
  945. msgid "Custom Material"
  946. msgstr "自訂線材資料"
  947. msgctxt "@label"
  948. msgid "Custom profile"
  949. msgstr "自訂列印參數"
  950. msgctxt "@info"
  951. msgid "Custom profile name:"
  952. msgstr ""
  953. msgctxt "@label"
  954. msgid "Custom profiles"
  955. msgstr "自訂列印參數"
  956. msgctxt "@label:header"
  957. msgid "Custom profiles"
  958. msgstr "自訂列印參數"
  959. msgctxt "@action:inmenu menubar:edit"
  960. msgid "Cut"
  961. msgstr ""
  962. msgctxt "@item:inlistbox"
  963. msgid "Cutting mesh"
  964. msgstr "切割網格"
  965. msgctxt "@item:inlistbox"
  966. msgid "Darker is higher"
  967. msgstr "顏色越深高度越高"
  968. msgctxt "@info:title"
  969. msgid "Data Sent"
  970. msgstr "資料傳送"
  971. msgctxt "@label Description for application dependency"
  972. msgid "Data interchange format"
  973. msgstr "資料交換格式"
  974. msgctxt "@button"
  975. msgid "Decline"
  976. msgstr "拒絕"
  977. msgctxt "@button"
  978. msgid "Decline and close"
  979. msgstr "拒絕並關閉"
  980. msgctxt "@button"
  981. msgid "Decline and remove from account"
  982. msgstr "拒絕並從帳號中刪除"
  983. msgctxt "@info:No intent profile selected"
  984. msgid "Default"
  985. msgstr "預設值"
  986. msgctxt "@window:text"
  987. msgid "Default behavior for changed setting values when switching to a different profile: "
  988. msgstr "當切換到另一組列印參數時,對於被修改過的設定的預設行為: "
  989. msgctxt "@info:tooltip"
  990. msgid "Default behavior when opening a project file"
  991. msgstr "開啟專案檔案時的預設行為"
  992. msgctxt "@window:text"
  993. msgid "Default behavior when opening a project file: "
  994. msgstr "開啟專案檔案時的預設行為: "
  995. msgctxt "@action:button"
  996. msgid "Defaults"
  997. msgstr ""
  998. msgctxt "@label"
  999. msgid "Defines the thickness of your part side walls, roof and floor."
  1000. msgstr ""
  1001. msgctxt "@label"
  1002. msgid "Delete"
  1003. msgstr "刪除"
  1004. msgctxt "@dialog:title"
  1005. msgid "Delete Backup"
  1006. msgstr "刪除備份"
  1007. msgctxt "@action:inmenu"
  1008. msgid "Delete Model"
  1009. msgstr "刪除模型"
  1010. msgctxt "@action:inmenu menubar:edit"
  1011. msgid "Delete Selected"
  1012. msgstr "刪除選取"
  1013. msgctxt "@window:title"
  1014. msgid "Delete print job"
  1015. msgstr "刪除列印作業"
  1016. msgctxt "@label"
  1017. msgid "Density"
  1018. msgstr "密度"
  1019. msgctxt "@label Description for development tool"
  1020. msgid "Dependency and package manager"
  1021. msgstr ""
  1022. msgctxt "@action:label"
  1023. msgid "Depth (mm)"
  1024. msgstr "深度 (mm)"
  1025. msgctxt "@action:label"
  1026. msgid "Derivative from"
  1027. msgstr "衍生自"
  1028. msgctxt "@header"
  1029. msgid "Description"
  1030. msgstr ""
  1031. msgctxt "@label"
  1032. msgid "Description"
  1033. msgstr "描述"
  1034. msgctxt "@action:button"
  1035. msgid "Details"
  1036. msgstr "細項"
  1037. msgctxt "@label"
  1038. msgid "Diameter"
  1039. msgstr "直徑"
  1040. msgctxt "@button"
  1041. msgid "Disable"
  1042. msgstr ""
  1043. msgctxt "@action:inmenu"
  1044. msgid "Disable Extruder"
  1045. msgstr "關閉擠出機"
  1046. msgctxt "@option:discardOrKeep"
  1047. msgid "Discard and never ask again"
  1048. msgstr "捨棄更改,並不再詢問此問題"
  1049. msgctxt "@action:button"
  1050. msgid "Discard changes"
  1051. msgstr "忽略更動"
  1052. msgctxt "@action:button"
  1053. msgid "Discard current changes"
  1054. msgstr "捨棄目前更改"
  1055. msgctxt "@title:window"
  1056. msgid "Discard or Keep changes"
  1057. msgstr "捨棄或保留更改"
  1058. msgctxt "@button"
  1059. msgid "Dismiss"
  1060. msgstr "捨棄"
  1061. msgctxt "@label"
  1062. msgid "Display Name"
  1063. msgstr "顯示名稱"
  1064. msgctxt "@option:check"
  1065. msgid "Display model errors"
  1066. msgstr "顯示模型錯誤"
  1067. msgctxt "@option:check"
  1068. msgid "Display overhang"
  1069. msgstr "顯示突出部分"
  1070. msgctxt "@info:option_text"
  1071. msgid "Do not show this message again"
  1072. msgstr "不要再顯示這個訊息"
  1073. msgctxt "@info:generic"
  1074. msgid "Do you want to sync material and software packages with your account?"
  1075. msgstr "你要使用你的帳號同步線材資料和軟體套件嗎?"
  1076. msgctxt "@action:label"
  1077. msgid "Don't show project summary on save again"
  1078. msgstr "儲存時不再顯示專案摘要"
  1079. msgctxt "@action:menu"
  1080. msgid "Don't show this setting"
  1081. msgstr "不再顯示此設定"
  1082. msgctxt "@label"
  1083. msgid "Don't support overlaps"
  1084. msgstr "重疊處不建立支撐"
  1085. msgctxt "@button"
  1086. msgid "Done"
  1087. msgstr "完成"
  1088. msgctxt "@button"
  1089. msgid "Downgrade"
  1090. msgstr ""
  1091. msgctxt "@button"
  1092. msgid "Downgrading..."
  1093. msgstr ""
  1094. msgctxt "@label"
  1095. msgid "Draft"
  1096. msgstr "草稿"
  1097. msgctxt "@action:inmenu menubar:edit"
  1098. msgid "Drop All Models to buildplate"
  1099. msgstr ""
  1100. msgctxt "@action:button"
  1101. msgid "Duplicate"
  1102. msgstr "複製"
  1103. msgctxt "@title:window"
  1104. msgid "Duplicate Profile"
  1105. msgstr "複製列印參數"
  1106. msgctxt "@backup_limit_info"
  1107. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1108. msgstr "在預覽階段限制只能顯示 5 個備份。 刪除備份以顯示較舊的備份。"
  1109. msgctxt "@title:menu menubar:toplevel"
  1110. msgid "E&xtensions"
  1111. msgstr "擴充功能(&X)"
  1112. msgctxt "@action:button"
  1113. msgid "Edit"
  1114. msgstr "編輯"
  1115. msgctxt "@action:button"
  1116. msgid "Eject"
  1117. msgstr "卸載"
  1118. #, python-brace-format
  1119. msgctxt "@action"
  1120. msgid "Eject removable device {0}"
  1121. msgstr "卸載行動裝置 {0}"
  1122. #, python-brace-format
  1123. msgctxt "@info:status"
  1124. msgid "Ejected {0}. You can now safely remove the drive."
  1125. msgstr "已卸載 {0}。現在你可以安全地移除行動裝置。"
  1126. msgctxt "@label"
  1127. msgid "Empty"
  1128. msgstr "空的"
  1129. msgctxt "@button"
  1130. msgid "Enable"
  1131. msgstr ""
  1132. msgctxt "@action:inmenu"
  1133. msgid "Enable Extruder"
  1134. msgstr "啟用擠出機"
  1135. msgctxt "@label"
  1136. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default."
  1137. msgstr ""
  1138. msgctxt "@label"
  1139. msgid "Enabled"
  1140. msgstr "已啟用"
  1141. msgctxt "description"
  1142. msgid "Enables ability to generate printable geometry from 2D image files."
  1143. msgstr "支援從 2D 圖片檔案產生可列印 3D 模型的能力。"
  1144. msgctxt "@title:label"
  1145. msgid "End G-code"
  1146. msgstr "結束 G-code"
  1147. msgctxt "@label"
  1148. msgid "End-to-end solution for fused filament 3D printing."
  1149. msgstr "熔絲 3D 列印技術的的端對端解決方案。"
  1150. msgctxt "@info:title"
  1151. msgid "EnginePlugin"
  1152. msgstr ""
  1153. msgctxt "@label"
  1154. msgid "Engineering"
  1155. msgstr "工程"
  1156. msgctxt "@option:check"
  1157. msgid "Ensure models are kept apart"
  1158. msgstr "確保每個模型都保持分離"
  1159. msgctxt "@label"
  1160. msgid "Enter the IP address of your printer on the network."
  1161. msgstr "輸入印表機的 IP 位址。"
  1162. msgctxt "@text"
  1163. msgid "Enter your printer's IP address."
  1164. msgstr "輸入印表機的 IP 位址。"
  1165. msgctxt "@info:title"
  1166. msgid "Error"
  1167. msgstr "錯誤"
  1168. msgctxt "@title:groupbox"
  1169. msgid "Error traceback"
  1170. msgstr "錯誤追溯"
  1171. msgctxt "@label"
  1172. msgid "Estimated time left"
  1173. msgstr "預計剩餘時間"
  1174. msgctxt "@action:inmenu"
  1175. msgid "Exit Full Screen"
  1176. msgstr "離開全螢幕"
  1177. msgctxt "@label"
  1178. msgid "Experimental"
  1179. msgstr "實驗功能"
  1180. msgctxt "@action:button"
  1181. msgid "Export"
  1182. msgstr "匯出"
  1183. msgctxt "@title:window"
  1184. msgid "Export All Materials"
  1185. msgstr "匯出所有線材設定"
  1186. msgctxt "@title:window"
  1187. msgid "Export Material"
  1188. msgstr "匯出線材設定"
  1189. msgctxt "@title:window"
  1190. msgid "Export Profile"
  1191. msgstr "匯出列印參數"
  1192. msgctxt "@action:inmenu menubar:file"
  1193. msgid "Export Selection..."
  1194. msgstr "匯出選擇..."
  1195. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  1196. msgid "Export Universal Cura Project"
  1197. msgstr ""
  1198. msgctxt "@button"
  1199. msgid "Export material archive"
  1200. msgstr "輸出線材設定存檔"
  1201. msgctxt "@info:title"
  1202. msgid "Export succeeded"
  1203. msgstr "匯出成功"
  1204. #, python-brace-format
  1205. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1206. msgid "Exported profile to <filename>{0}</filename>"
  1207. msgstr "列印參數已匯出至:<filename>{0}</filename>"
  1208. msgctxt "@tooltip:button"
  1209. msgid "Extend UltiMaker Cura with plugins and material profiles."
  1210. msgstr "使用插件及線材參數擴充UltiMaker Cura."
  1211. msgctxt "description"
  1212. msgid "Extension that allows for user created scripts for post processing"
  1213. msgstr "擴充程式(允許用戶建立腳本進行後處理)"
  1214. msgctxt "@label"
  1215. msgid "Extruder"
  1216. msgstr "擠出機"
  1217. msgctxt "@action:label"
  1218. msgid "Extruder %1"
  1219. msgstr "擠出機 %1"
  1220. msgctxt "@title:label"
  1221. msgid "Extruder End G-code"
  1222. msgstr "擠出機結束 G-code"
  1223. msgctxt "@label"
  1224. msgid "Extruder End G-code duration"
  1225. msgstr ""
  1226. msgctxt "@title:label"
  1227. msgid "Extruder Start G-code"
  1228. msgstr "擠出機起始 G-code"
  1229. msgctxt "@label"
  1230. msgid "Extruder Start G-code duration"
  1231. msgstr ""
  1232. #, python-brace-format
  1233. msgctxt "@label"
  1234. msgid "Extruder {0}"
  1235. msgstr ""
  1236. msgctxt "@info:title"
  1237. msgid "Extruder(s) Disabled"
  1238. msgstr "擠出機已停用"
  1239. msgctxt "@label:status"
  1240. msgid "Failed"
  1241. msgstr "失敗"
  1242. msgctxt "@text:error"
  1243. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  1244. msgstr "在連接至Digital Factory去同步材料的過程中失敗."
  1245. msgctxt "@text:error"
  1246. msgid "Failed to connect to Digital Factory."
  1247. msgstr "在連接至Digital Factory的過程中失敗."
  1248. msgctxt "@text:error"
  1249. msgid "Failed to create archive of materials to sync with printers."
  1250. msgstr "無法建立與印表機同步的材料檔案."
  1251. #, python-brace-format
  1252. msgctxt "@info:status"
  1253. msgid "Failed to eject {0}. Another program may be using the drive."
  1254. msgstr "無法卸載 {0},可能有其它程式正在使用行動裝置。"
  1255. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  1256. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  1257. msgstr "無法匯出線材至 <filename>%1</filename>:<message>%2</message>"
  1258. #, python-brace-format
  1259. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1260. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1261. msgstr "無法將列印參數匯出至 <filename>{0}</filename>:<message>{1}</message>"
  1262. #, python-brace-format
  1263. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1264. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1265. msgstr "無法將列印參數匯出至 <filename>{0}</filename>:寫入器外掛報告故障。"
  1266. #, python-brace-format
  1267. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1268. msgid "Failed to import profile from <filename>{0}</filename>:"
  1269. msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  1270. #, python-brace-format
  1271. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1272. msgid "Failed to import profile from <filename>{0}</filename>:"
  1273. msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  1274. #, python-brace-format
  1275. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1276. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1277. msgstr "無法從 <filename>{0}</filename> 匯入列印參數:{1}"
  1278. msgctxt "@button"
  1279. msgid "Failed to load packages:"
  1280. msgstr ""
  1281. msgctxt "@text:error"
  1282. msgid "Failed to load the archive of materials to sync it with printers."
  1283. msgstr "無法載入與印表機同步的材料檔案."
  1284. msgctxt "@message:title"
  1285. msgid "Failed to save material archive"
  1286. msgstr "線材資料儲存失敗"
  1287. #, python-brace-format
  1288. msgctxt "@info:status"
  1289. msgid "Failed writing to specific cloud printer: {0} not in remote clusters."
  1290. msgstr ""
  1291. msgctxt "@label:category menu label"
  1292. msgid "Favorites"
  1293. msgstr "常用"
  1294. msgctxt "@label"
  1295. msgid "Filament Cost"
  1296. msgstr "線材成本"
  1297. msgctxt "@label"
  1298. msgid "Filament length"
  1299. msgstr "線材長度"
  1300. msgctxt "@label"
  1301. msgid "Filament weight"
  1302. msgstr "線材重量"
  1303. msgctxt "@title:window"
  1304. msgid "File Already Exists"
  1305. msgstr "檔案已經存在"
  1306. msgctxt "@info:title"
  1307. msgid "File Saved"
  1308. msgstr "檔案已儲存"
  1309. #, python-brace-format
  1310. msgctxt "@info:status"
  1311. msgid "File {0} does not contain any valid profile."
  1312. msgstr "檔案 {0} 內未含有效的列印參數。"
  1313. msgctxt "@label:textbox"
  1314. msgid "Filter..."
  1315. msgstr "篩選..."
  1316. msgctxt "@info:title"
  1317. msgid "Finding Location"
  1318. msgstr "尋找位置中"
  1319. msgctxt "@info:status"
  1320. msgid "Finding new location for objects"
  1321. msgstr "正在為物件尋找新位置"
  1322. msgctxt "@action:button"
  1323. msgid "Finish"
  1324. msgstr "完成"
  1325. msgctxt "@label:status"
  1326. msgid "Finished"
  1327. msgstr "已完成"
  1328. msgctxt "@label:status"
  1329. msgid "Finishes %1 at %2"
  1330. msgstr "在 %2 完成 %1"
  1331. msgctxt "@title:window"
  1332. msgid "Firmware Update"
  1333. msgstr "韌體更新"
  1334. msgctxt "name"
  1335. msgid "Firmware Update Checker"
  1336. msgstr "韌體更新檢查"
  1337. msgctxt "name"
  1338. msgid "Firmware Updater"
  1339. msgstr "韌體更新器"
  1340. msgctxt "@label"
  1341. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1342. msgstr "因為連線的印表機不支援更新韌體,無法更新韌體。"
  1343. msgctxt "@label"
  1344. msgid "Firmware can not be updated because there is no connection with the printer."
  1345. msgstr "因為沒有與印表機連線,無法更新韌體。"
  1346. msgctxt "@label"
  1347. 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."
  1348. msgstr "韌體是直接在 3D 印表機上運行的一個軟體。此韌體控制步進馬達,調節溫度讓印表機正常運作。"
  1349. msgctxt "@label"
  1350. msgid "Firmware update completed."
  1351. msgstr "韌體更新已完成。"
  1352. msgctxt "@label"
  1353. msgid "Firmware update failed due to an communication error."
  1354. msgstr "由於通訊錯誤,導致韌體更新失敗。"
  1355. msgctxt "@label"
  1356. msgid "Firmware update failed due to an input/output error."
  1357. msgstr "由於輸入/輸出錯誤,導致韌體更新失敗。"
  1358. msgctxt "@label"
  1359. msgid "Firmware update failed due to an unknown error."
  1360. msgstr "由於未知錯誤,韌體更新失敗。"
  1361. msgctxt "@label"
  1362. msgid "Firmware update failed due to missing firmware."
  1363. msgstr "由於韌體遺失,導致韌體更新失敗。"
  1364. msgctxt "@label"
  1365. msgid "Firmware version"
  1366. msgstr "韌體版本"
  1367. msgctxt "@label"
  1368. msgid "First available"
  1369. msgstr "可用的第一個"
  1370. msgctxt "@label:listbox"
  1371. msgid "Flow"
  1372. msgstr "流動"
  1373. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  1374. msgid "Follow the following steps to load the new material profiles to your printer."
  1375. msgstr "請依照下述步驟載入新的線材設定檔至印表機."
  1376. msgctxt "@info"
  1377. msgid "Follow the procedure to add a new printer"
  1378. msgstr ""
  1379. msgctxt "@text"
  1380. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  1381. msgstr "依照下述簡單的步驟。您將同步線材設定檔至您的印表機."
  1382. msgctxt "@label"
  1383. msgid "Font"
  1384. msgstr "字體"
  1385. msgctxt "@label"
  1386. 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."
  1387. msgstr "在噴頭停止的每一個位置下方插入一張紙,並調整平台高度。當紙張恰好被噴頭的尖端輕微壓住時,表示列印平台已被校準在正確的高度。"
  1388. msgctxt "@info:tooltip"
  1389. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1390. msgstr "若要列印浮雕,使用一個簡易的對數模型計算半透明效果。若要列印高度圖,將像素值線性對應到高度。"
  1391. msgctxt "@info:tooltip"
  1392. 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."
  1393. msgstr "若要列印浮雕,深色像素應該對應到較厚的位置,以阻擋更多的光通過。若要列印高度圖,淺色像素表示較高的地形,因此淺色像素應對應於產生的 3D 模型中較厚的位置。"
  1394. msgctxt "@option:check"
  1395. msgid "Force layer view compatibility mode (restart required)"
  1396. msgstr "強制分層檢視相容模式(需要重新啟動)"
  1397. msgid "FreeCAD trackpad"
  1398. msgstr ""
  1399. msgctxt "@action:inmenu menubar:view"
  1400. msgid "Front View"
  1401. msgstr "前視圖"
  1402. msgctxt "@info:tooltip"
  1403. msgid "Front View"
  1404. msgstr "前視圖"
  1405. msgctxt "@item:inlistbox"
  1406. msgid "G File"
  1407. msgstr "G 檔案"
  1408. msgctxt "@info:title"
  1409. msgid "G-code Details"
  1410. msgstr "G-code 細項設定"
  1411. msgctxt "@item:inlistbox"
  1412. msgid "G-code File"
  1413. msgstr "G-code 檔案"
  1414. msgctxt "name"
  1415. msgid "G-code Profile Reader"
  1416. msgstr "G-code 列印參數讀取器"
  1417. msgctxt "name"
  1418. msgid "G-code Reader"
  1419. msgstr "G-code 讀取器"
  1420. msgctxt "name"
  1421. msgid "G-code Writer"
  1422. msgstr "G-code 寫入器"
  1423. msgctxt "@label"
  1424. msgid "G-code flavor"
  1425. msgstr "G-code 類型"
  1426. msgctxt "@label Description for application component"
  1427. msgid "G-code generator"
  1428. msgstr "G-code 產生器"
  1429. msgctxt "@error:not supported"
  1430. msgid "GCodeGzWriter does not support text mode."
  1431. msgstr "G-code GZ 寫入器不支援非文字模式。"
  1432. msgctxt "@error:not supported"
  1433. msgid "GCodeWriter does not support non-text mode."
  1434. msgstr "G-code 寫入器不支援非文字模式。"
  1435. msgctxt "@item:inlistbox"
  1436. msgid "GIF Image"
  1437. msgstr "GIF 圖片"
  1438. msgctxt "@label Description for application dependency"
  1439. msgid "GUI framework"
  1440. msgstr "GUI 框架"
  1441. msgctxt "@label Description for application dependency"
  1442. msgid "GUI framework bindings"
  1443. msgstr "GUI 框架綁定"
  1444. msgctxt "@label"
  1445. msgid "Gantry Height"
  1446. msgstr "吊車高度"
  1447. msgctxt "@title:tab"
  1448. msgid "General"
  1449. msgstr "基本"
  1450. msgctxt "@label"
  1451. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  1452. msgstr "在模型的突出部分產生支撐結構。若不這樣做,這些部分在列印時將倒塌。"
  1453. msgctxt "@label Description for development tool"
  1454. msgid "Generating Windows installers"
  1455. msgstr ""
  1456. msgctxt "@label:category menu label"
  1457. msgid "Generic"
  1458. msgstr "通用"
  1459. msgctxt "@option:check"
  1460. msgid "Get notifications for plugin updates"
  1461. msgstr "設定插件更新提示"
  1462. msgctxt "@action"
  1463. msgid "Get started"
  1464. msgstr "開始"
  1465. msgctxt "@label"
  1466. msgid "Global"
  1467. msgstr ""
  1468. msgctxt "@title:tab"
  1469. msgid "Global Settings"
  1470. msgstr "全局設定"
  1471. msgctxt "@label Description for application component"
  1472. msgid "Graphical user interface"
  1473. msgstr "圖形用戶介面"
  1474. msgctxt "@label"
  1475. msgid "Grid Placement"
  1476. msgstr ""
  1477. #, python-brace-format
  1478. msgctxt "@label"
  1479. msgid "Group #{group_nr}"
  1480. msgstr "群組 #{group_nr}"
  1481. msgctxt "@tooltip of pre-heat"
  1482. 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."
  1483. msgstr "列印前請預熱熱床。你可以在熱床加熱時繼續調整相關物件,讓你在準備列印時不必等待熱床加熱完畢。"
  1484. msgctxt "@tooltip of pre-heat"
  1485. 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."
  1486. msgstr "列印前預先加熱。你可以在加熱時繼續調整你的列印,當你準備好列印時就不需等待加熱頭升溫。"
  1487. msgctxt "@label"
  1488. msgid "Heated Build Plate (official kit or self-built)"
  1489. msgstr "熱床(官方版本或自製版本)"
  1490. msgctxt "@label"
  1491. msgid "Heated bed"
  1492. msgstr "熱床"
  1493. msgctxt "@label"
  1494. msgid "Heated build volume"
  1495. msgstr "熱箱"
  1496. msgctxt "@action:label"
  1497. msgid "Height (mm)"
  1498. msgstr "高度 (mm)"
  1499. msgctxt "@label"
  1500. msgid "Helpers"
  1501. msgstr "輔助結構"
  1502. msgctxt "@label"
  1503. msgid "Hide all connected printers"
  1504. msgstr ""
  1505. msgctxt "@action:button"
  1506. msgid "Hide settings"
  1507. msgstr ""
  1508. msgctxt "@action:menu"
  1509. msgid "Hide this setting"
  1510. msgstr "隱藏此設定"
  1511. msgctxt "@info:tooltip"
  1512. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  1513. msgstr "模型缺少或多餘的表面已用警告符號標示。工具路徑是將缺少部份補上的型狀。"
  1514. msgctxt "@info:tooltip"
  1515. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  1516. msgstr "模型缺少支撐的區域已以紅色標示。如果沒有支撐這些區域將無法正常列印。"
  1517. msgctxt "@button"
  1518. msgid "How to load new material profiles to my printer"
  1519. msgstr "如何載入新的線材設定檔至我的列印機"
  1520. msgctxt "@action:button"
  1521. msgid "How to update"
  1522. msgstr "如何更新"
  1523. msgctxt "@text:window"
  1524. msgid "I don't want to send anonymous data"
  1525. msgstr "我不想傳送匿名資料"
  1526. msgctxt "@label:status"
  1527. msgid "Idle"
  1528. msgstr "閒置中"
  1529. msgctxt "@label"
  1530. msgid "If you are trying to add a new UltiMaker printer to Cura"
  1531. msgstr ""
  1532. msgctxt "@label"
  1533. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1534. msgstr "如果你的印表機未被列出,請閱讀<a href='%1'>網路列印故障排除指南</a>"
  1535. msgctxt "name"
  1536. msgid "Image Reader"
  1537. msgstr "圖片讀取器"
  1538. msgctxt "@action:button"
  1539. msgid "Import"
  1540. msgstr "匯入"
  1541. msgctxt "@title:window"
  1542. msgid "Import Material"
  1543. msgstr "匯入線材設定"
  1544. msgctxt "@title:window"
  1545. msgid "Import Profile"
  1546. msgstr "匯入列印參數"
  1547. msgctxt "@action:button"
  1548. msgid "Import all as models"
  1549. msgstr "匯入所有模型"
  1550. msgctxt "@action:button"
  1551. msgid "Import models"
  1552. msgstr "匯入模型"
  1553. msgctxt "@label:MonitorStatus"
  1554. msgid "In maintenance. Please check the printer"
  1555. msgstr "維護中。請檢查印表機"
  1556. msgctxt "@info"
  1557. msgid "In order to monitor your print from Cura, please connect the printer."
  1558. msgstr "為了監控您的印表機,請連結印表機."
  1559. msgctxt "@label"
  1560. msgid "In order to start using Cura you will need to configure a printer."
  1561. msgstr ""
  1562. msgctxt "@button"
  1563. msgid "In order to use the package you will need to restart Cura"
  1564. msgstr ""
  1565. msgctxt "@option:radio"
  1566. msgid "Include UltiMaker account name"
  1567. msgstr ""
  1568. msgctxt "@label"
  1569. msgid "Infill"
  1570. msgstr "填充"
  1571. msgctxt "@tooltip"
  1572. msgid "Infill"
  1573. msgstr "填充"
  1574. msgctxt "infill_sparse_density description"
  1575. msgid "Infill Density"
  1576. msgstr ""
  1577. msgctxt "@action:label"
  1578. msgid "Infill Pattern"
  1579. msgstr ""
  1580. msgctxt "@item:inlistbox"
  1581. msgid "Infill mesh only"
  1582. msgstr "只填充網格"
  1583. msgctxt "@label"
  1584. msgid "Infill overlapping with this model is modified."
  1585. msgstr "與此模型重疊的填充已被更改。"
  1586. msgctxt "@info:title"
  1587. msgid "Information"
  1588. msgstr "資訊"
  1589. msgctxt "@title"
  1590. msgid "Information"
  1591. msgstr "資訊"
  1592. msgctxt "@info:progress"
  1593. msgid "Initializing Active Machine..."
  1594. msgstr "正在初始化啟用的機器..."
  1595. msgctxt "@info:progress"
  1596. msgid "Initializing build volume..."
  1597. msgstr "正在初始化列印範圍..."
  1598. msgctxt "@info:progress"
  1599. msgid "Initializing engine..."
  1600. msgstr "正在初始化引擎..."
  1601. msgctxt "@info:progress"
  1602. msgid "Initializing machine manager..."
  1603. msgstr "正在初始化機器管理員..."
  1604. msgctxt "@label"
  1605. msgid "Inner Wall"
  1606. msgstr "內壁"
  1607. msgctxt "@tooltip"
  1608. msgid "Inner Walls"
  1609. msgstr "內壁"
  1610. msgctxt "@text"
  1611. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  1612. msgstr "插入USB至您的列印機,並啟動程式去載入新的線材設定檔."
  1613. msgctxt "@button"
  1614. msgid "Install"
  1615. msgstr ""
  1616. msgctxt "@header"
  1617. msgid "Install Materials"
  1618. msgstr ""
  1619. msgctxt "@window:title"
  1620. msgid "Install Package"
  1621. msgstr "安裝套件"
  1622. msgctxt "@action:button"
  1623. msgid "Install Packages"
  1624. msgstr ""
  1625. msgctxt "@header"
  1626. msgid "Install Packages"
  1627. msgstr ""
  1628. msgctxt "@header"
  1629. msgid "Install Plugins"
  1630. msgstr ""
  1631. msgctxt "@action:button"
  1632. msgid "Install missing packages"
  1633. msgstr ""
  1634. msgctxt "@title"
  1635. msgid "Install missing packages"
  1636. msgstr ""
  1637. msgctxt "@label"
  1638. msgid "Install missing packages from project file."
  1639. msgstr ""
  1640. msgctxt "@button"
  1641. msgid "Install pending updates"
  1642. msgstr "安裝待處理的更新"
  1643. msgctxt "@label"
  1644. msgid "Installed Materials"
  1645. msgstr ""
  1646. msgctxt "@label"
  1647. msgid "Installed Plugins"
  1648. msgstr ""
  1649. msgctxt "@button"
  1650. msgid "Installing..."
  1651. msgstr ""
  1652. msgctxt "@action:label"
  1653. msgid "Intent"
  1654. msgstr "意圖"
  1655. msgctxt "@label"
  1656. msgid "Interface"
  1657. msgstr "介面"
  1658. msgctxt "@label Description for application component"
  1659. msgid "Interprocess communication library"
  1660. msgstr "進程間通訊交互使用庫"
  1661. msgctxt "@title:window"
  1662. msgid "Invalid IP address"
  1663. msgstr "無效的 IP 位址"
  1664. msgctxt "@info:status"
  1665. msgid "Invalid file URL:"
  1666. msgstr "無效的檔案網址:"
  1667. msgctxt "@action:button"
  1668. msgid "Invert the direction of camera zoom."
  1669. msgstr "反轉視角縮放方向。"
  1670. msgctxt "@label"
  1671. msgid "Is printed as support."
  1672. msgstr "做為支撐而列印。"
  1673. msgctxt "@text"
  1674. 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."
  1675. msgstr "您似乎沒有任何兼容的打印機連接至Digital Factory。請確保您的打印機已連接並且安裝最新的軟體."
  1676. msgctxt "@item:inlistbox"
  1677. msgid "JPEG Image"
  1678. msgstr "JPEG 圖片"
  1679. msgctxt "@item:inlistbox"
  1680. msgid "JPG Image"
  1681. msgstr "JPG 圖片"
  1682. msgctxt "@label Description for application dependency"
  1683. msgid "JSON parser"
  1684. msgstr ""
  1685. msgctxt "@label"
  1686. msgid "Job Name"
  1687. msgstr "作業名稱"
  1688. msgctxt "@label"
  1689. msgid "Jog Distance"
  1690. msgstr "輕搖距離"
  1691. msgctxt "@label"
  1692. msgid "Jog Position"
  1693. msgstr "輕搖位置"
  1694. msgctxt "@option:discardOrKeep"
  1695. msgid "Keep and never ask again"
  1696. msgstr "保留更改,並不再詢問此問題"
  1697. msgctxt "@action:button"
  1698. msgid "Keep changes"
  1699. msgstr "保留更動"
  1700. msgctxt "@action:button"
  1701. msgid "Keep printer configurations"
  1702. msgstr "保留印表機設定"
  1703. msgctxt "@action:menu"
  1704. msgid "Keep this setting visible"
  1705. msgstr "保持此設定顯示"
  1706. msgctxt "@label The argument is a timestamp"
  1707. msgid "Last update: %1"
  1708. msgstr "最後一次更新:%1"
  1709. msgctxt "@label:listbox"
  1710. msgid "Layer Thickness"
  1711. msgstr "層厚"
  1712. # Added manually to fix a string that was changed after string freeze.
  1713. msgctxt "@item:inlistbox"
  1714. msgid "Layer view"
  1715. msgstr "分層檢視"
  1716. msgctxt "@button:label"
  1717. msgid "Learn More"
  1718. msgstr ""
  1719. msgctxt "@button"
  1720. msgid "Learn how to connect your printer to Digital Factory"
  1721. msgstr "學習如何連結您的印表機至Digital Factory"
  1722. msgctxt "@tooltip:button"
  1723. msgid "Learn how to get started with UltiMaker Cura."
  1724. msgstr "學習如何開始使用UltiMaker Cura."
  1725. msgctxt "@action"
  1726. msgid "Learn more"
  1727. msgstr "學習更多"
  1728. msgctxt "@action:button"
  1729. msgid "Learn more"
  1730. msgstr "學習更多"
  1731. msgctxt "@button"
  1732. msgid "Learn more"
  1733. msgstr "學習更多"
  1734. msgctxt "@button:label"
  1735. msgid "Learn more"
  1736. msgstr ""
  1737. msgctxt "@action:button"
  1738. msgid "Learn more about Cura print profiles"
  1739. msgstr ""
  1740. msgctxt "@button"
  1741. msgid "Learn more about adding printers to Cura"
  1742. msgstr ""
  1743. msgctxt "@label"
  1744. msgid "Learn more about project packages."
  1745. msgstr ""
  1746. msgctxt "@action:inmenu menubar:view"
  1747. msgid "Left Side View"
  1748. msgstr "左視圖"
  1749. msgctxt "@info:tooltip"
  1750. msgid "Left View"
  1751. msgstr "左視圖"
  1752. msgctxt "name"
  1753. msgid "Legacy Cura Profile Reader"
  1754. msgstr "舊版 Cura 列印參數讀取器"
  1755. msgctxt "@tooltip:button"
  1756. msgid "Let developers know that something is going wrong."
  1757. msgstr "讓開發者了解您遇到的問題."
  1758. msgctxt "@action"
  1759. msgid "Level build plate"
  1760. msgstr "調整列印平台水平"
  1761. msgctxt "@item:inlistbox"
  1762. msgid "Lighter is higher"
  1763. msgstr "顏色越淺高度越高"
  1764. msgctxt "@label:listbox"
  1765. msgid "Line Type"
  1766. msgstr "線條類型"
  1767. msgctxt "@label:listbox"
  1768. msgid "Line Width"
  1769. msgstr "線寬"
  1770. msgctxt "@item:inlistbox"
  1771. msgid "Linear"
  1772. msgstr "線性"
  1773. msgctxt "@label Description for development tool"
  1774. msgid "Linux cross-distribution application deployment"
  1775. msgstr "Linux cross-distribution 應用程式部署"
  1776. msgctxt "@label"
  1777. msgid "Load %3 as material %1 (This cannot be overridden)."
  1778. msgstr "將 %3 做為線材 %1 載入(無法覆寫)。"
  1779. msgctxt "@button"
  1780. msgid "Load more"
  1781. msgstr ""
  1782. msgctxt "@button"
  1783. msgid "Loading"
  1784. msgstr ""
  1785. msgctxt "@action:warning"
  1786. msgid "Loading a project will clear all models on the build plate."
  1787. msgstr "載入專案時將清除列印平台上的所有模型。"
  1788. msgctxt "@label"
  1789. msgid "Loading available configurations from the printer..."
  1790. msgstr "從印表機載入可用的設定..."
  1791. msgctxt "@info:progress"
  1792. msgid "Loading interface..."
  1793. msgstr "正在載入介面..."
  1794. msgctxt "@info:progress"
  1795. msgid "Loading machines..."
  1796. msgstr "正在載入印表機..."
  1797. msgctxt "@label:status"
  1798. msgid "Loading..."
  1799. msgstr "正在載入..."
  1800. msgctxt "@title"
  1801. msgid "Loading..."
  1802. msgstr ""
  1803. msgctxt "@label:category menu label"
  1804. msgid "Local printers"
  1805. msgstr "本機印表機"
  1806. msgctxt "@info:title"
  1807. msgid "Log-in failed"
  1808. msgstr "登入失敗"
  1809. msgctxt "@info:title"
  1810. msgid "Login failed"
  1811. msgstr "登入失敗"
  1812. msgctxt "@title:groupbox"
  1813. msgid "Logs"
  1814. msgstr "日誌"
  1815. msgctxt "description"
  1816. msgid "Logs certain events so that they can be used by the crash reporter"
  1817. msgstr "記錄某些事件以便在錯誤報告中使用"
  1818. msgctxt "@label:MonitorStatus"
  1819. msgid "Lost connection with the printer"
  1820. msgstr "與印表機的連線中斷"
  1821. msgctxt "@action"
  1822. msgid "Machine Settings"
  1823. msgstr "印表機設定"
  1824. msgctxt "name"
  1825. msgid "Machine Settings Action"
  1826. msgstr "印表機設定操作"
  1827. msgctxt "@backuplist:label"
  1828. msgid "Machines"
  1829. msgstr "印表機"
  1830. msgctxt "@text"
  1831. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  1832. msgstr "確認您的列印機已開機並連接至Digital Factory."
  1833. msgctxt "@info:generic"
  1834. 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."
  1835. msgstr "發送檔案之前,請確保 G-code 適用於目前印表機和印表機設定。目前 G-code 檔案可能不準確。"
  1836. msgctxt "@item:inlistbox"
  1837. msgid "Makerbot Printfile"
  1838. msgstr ""
  1839. msgctxt "name"
  1840. msgid "Makerbot Printfile Writer"
  1841. msgstr ""
  1842. msgctxt "@error"
  1843. msgid "MakerbotWriter could not save to the designated path."
  1844. msgstr ""
  1845. msgctxt "@error:not supported"
  1846. msgid "MakerbotWriter does not support text mode."
  1847. msgstr ""
  1848. msgctxt "@action:inmenu"
  1849. msgid "Manage Materials..."
  1850. msgstr "管理線材..."
  1851. msgctxt "@action:inmenu menubar:printer"
  1852. msgid "Manage Pr&inters..."
  1853. msgstr "管理印表機(&I)..."
  1854. msgctxt "@action:inmenu menubar:profile"
  1855. msgid "Manage Profiles..."
  1856. msgstr "管理列印參數.."
  1857. msgctxt "@action:inmenu"
  1858. msgid "Manage Setting Visibility..."
  1859. msgstr "管理參數顯示..."
  1860. msgctxt "@item:inmenu"
  1861. msgid "Manage backups"
  1862. msgstr "管理備份"
  1863. msgctxt "@label link to connect manager"
  1864. msgid "Manage in browser"
  1865. msgstr "使用瀏覽器管理"
  1866. msgctxt "@header"
  1867. msgid "Manage packages"
  1868. msgstr ""
  1869. msgctxt "@info:tooltip"
  1870. msgid "Manage packages"
  1871. msgstr ""
  1872. msgctxt "@action"
  1873. msgid "Manage print jobs"
  1874. msgstr ""
  1875. msgctxt "@label link to Connect and Cloud interfaces"
  1876. msgid "Manage printer"
  1877. msgstr "管理印表機"
  1878. msgctxt "@button"
  1879. msgid "Manage printers"
  1880. msgstr "管理印表機"
  1881. msgctxt "@text"
  1882. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1883. msgstr ""
  1884. msgctxt "description"
  1885. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  1886. msgstr ""
  1887. msgctxt "description"
  1888. msgid "Manages network connections to UltiMaker networked printers."
  1889. msgstr ""
  1890. msgctxt "@label"
  1891. msgid "Manufacturer"
  1892. msgstr "製造商"
  1893. msgctxt "@action:button"
  1894. msgid "Marketplace"
  1895. msgstr "市集"
  1896. msgctxt "@label"
  1897. msgid "Marketplace"
  1898. msgstr "市集"
  1899. msgctxt "name"
  1900. msgid "Marketplace"
  1901. msgstr ""
  1902. msgctxt "@action:label"
  1903. msgid "Material"
  1904. msgstr "線材"
  1905. msgctxt "@label"
  1906. msgid "Material"
  1907. msgstr "線材"
  1908. msgctxt "@label:category menu label"
  1909. msgid "Material"
  1910. msgstr "線材"
  1911. msgctxt "@label:listbox"
  1912. msgid "Material Color"
  1913. msgstr "線材顏色"
  1914. msgctxt "name"
  1915. msgid "Material Profiles"
  1916. msgstr "線材參數"
  1917. msgctxt "@label"
  1918. msgid "Material Type"
  1919. msgstr "線材類型"
  1920. msgctxt "@title"
  1921. msgid "Material color picker"
  1922. msgstr ""
  1923. msgctxt "@label"
  1924. msgid "Material estimation"
  1925. msgstr "線材估計"
  1926. msgctxt "@title:header"
  1927. msgid "Material profiles successfully synced with the following printers:"
  1928. msgstr "線材設定檔成功同步至下述的印表機內:"
  1929. msgctxt "@action:label"
  1930. msgid "Material settings"
  1931. msgstr "線材設定"
  1932. msgctxt "@backuplist:label"
  1933. msgid "Materials"
  1934. msgstr "線材"
  1935. msgctxt "@button"
  1936. msgid "Materials"
  1937. msgstr ""
  1938. msgctxt "@title:tab"
  1939. msgid "Materials"
  1940. msgstr "線材"
  1941. msgctxt "@label"
  1942. msgid "Materials compatible with active printer:"
  1943. msgstr ""
  1944. msgctxt "@label"
  1945. msgid "Mesh Type"
  1946. msgstr "網格類型"
  1947. msgctxt "@action:label"
  1948. msgid "Mode"
  1949. msgstr "模式"
  1950. msgctxt "name"
  1951. msgid "Model Checker"
  1952. msgstr "模器檢查器"
  1953. msgctxt "@info:title"
  1954. msgid "Model Errors"
  1955. msgstr "模型錯誤"
  1956. msgctxt "@item:inmenu"
  1957. msgid "Modify G-Code"
  1958. msgstr "修改 G-Code 檔案"
  1959. msgctxt "@label"
  1960. msgid "Modify settings for overlaps"
  1961. msgstr "修改重疊處設定"
  1962. msgctxt "@item:inmenu"
  1963. msgid "Monitor"
  1964. msgstr "監控"
  1965. msgctxt "name"
  1966. msgid "Monitor Stage"
  1967. msgstr "監控介面"
  1968. msgctxt "@action:button"
  1969. msgid "Monitor print"
  1970. msgstr "監控列印"
  1971. msgctxt "@tooltip:button"
  1972. msgid "Monitor print jobs and reprint from your print history."
  1973. msgstr "監控列印工作並於從您的歷史紀錄中再次列印."
  1974. msgctxt "@tooltip:button"
  1975. msgid "Monitor printers in Ultimaker Digital Factory."
  1976. msgstr "從Ultimaker Digital Factory中監控我的列印機."
  1977. msgctxt "@info"
  1978. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1979. msgstr ""
  1980. msgctxt "@title:window"
  1981. msgid "More information on anonymous data collection"
  1982. msgstr "更多關於匿名資料收集的資訊"
  1983. msgctxt "@window:title"
  1984. msgid "Move print job to top"
  1985. msgstr "將列印作業移至最頂端"
  1986. msgctxt "@action:button"
  1987. msgid "Move to Next Position"
  1988. msgstr "移動到下一個位置"
  1989. msgctxt "@label"
  1990. msgid "Move to top"
  1991. msgstr "移至頂端"
  1992. msgctxt "@info:tooltip"
  1993. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  1994. msgstr "當模型被選中時,視角將自動調整到最合適的觀察位置(模型處於正中央)"
  1995. msgctxt "@action:inmenu menubar:edit"
  1996. msgid "Multiply Selected"
  1997. msgstr "複製選取"
  1998. msgctxt "@title:window"
  1999. msgid "Multiply Selected Model"
  2000. msgid_plural "Multiply Selected Models"
  2001. msgstr[0] "複製所選模型"
  2002. msgctxt "@info"
  2003. msgid "Multiply selected item and place them in a grid of build plate."
  2004. msgstr ""
  2005. msgctxt "@info:status"
  2006. msgid "Multiplying and placing objects"
  2007. msgstr "正在複製並放置模型"
  2008. msgctxt "@title"
  2009. msgid "My Backups"
  2010. msgstr "我的備份"
  2011. msgctxt "@label:button"
  2012. msgid "My printers"
  2013. msgstr "我的列印機"
  2014. msgctxt "@action:label"
  2015. msgid "Name"
  2016. msgstr "名稱"
  2017. msgctxt "@label:category menu label"
  2018. msgid "Network enabled printers"
  2019. msgstr "支援網路的印表機"
  2020. msgctxt "@info:title"
  2021. msgid "Network error"
  2022. msgstr "網路錯誤"
  2023. #, python-format
  2024. msgctxt "@info:title The %s gets replaced with the printer name."
  2025. msgid "New %s stable firmware available"
  2026. msgstr "新的%s軟體已可使用"
  2027. msgctxt "@textfield:placeholder"
  2028. msgid "New Custom Profile"
  2029. msgstr ""
  2030. msgctxt "@label"
  2031. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  2032. msgstr ""
  2033. #, python-brace-format
  2034. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  2035. 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}."
  2036. msgstr "新的問題修復功能適用於您的 {machine_name}! 如果你準備好了,推薦您將列印機的軟體升級至最新版本 {latest_version}."
  2037. msgctxt "@action:button"
  2038. msgid "New materials installed"
  2039. msgstr "新線材資料安裝"
  2040. msgctxt "info:status"
  2041. msgid "New printer detected from your Ultimaker account"
  2042. msgid_plural "New printers detected from your Ultimaker account"
  2043. msgstr[0] ""
  2044. msgctxt "@title:window"
  2045. msgid "New project"
  2046. msgstr "新建專案"
  2047. msgctxt "@action:button"
  2048. msgid "Next"
  2049. msgstr "下一步"
  2050. msgctxt "@button"
  2051. msgid "Next"
  2052. msgstr "下一步"
  2053. msgctxt "@info:title"
  2054. msgid "Nightly build"
  2055. msgstr ""
  2056. msgctxt "@info"
  2057. msgid "No"
  2058. msgstr ""
  2059. msgctxt "@info"
  2060. msgid "No compatibility information"
  2061. msgstr ""
  2062. msgctxt "@description"
  2063. msgid "No compatible printers, that are currently online, were found."
  2064. msgstr ""
  2065. msgctxt "@label"
  2066. msgid "No cost estimation available"
  2067. msgstr "沒有成本估算"
  2068. #, python-brace-format
  2069. msgctxt "@info:status Don't translate the XML tags <filename>!"
  2070. msgid "No custom profile to import in file <filename>{0}</filename>"
  2071. msgstr "檔案 <filename>{0}</filename> 內沒有自訂列印參數可匯入"
  2072. msgctxt "@label"
  2073. msgid "No items to select from"
  2074. msgstr "沒有可選取的專案"
  2075. msgctxt "@info:title"
  2076. msgid "No layers to show"
  2077. msgstr "沒有列印層可顯示"
  2078. msgctxt "@message"
  2079. msgid "No more results to load"
  2080. msgstr ""
  2081. msgctxt "@error:zip"
  2082. msgid "No permission to write the workspace here."
  2083. msgstr "沒有寫入此處工作區的權限。"
  2084. msgctxt "@title:header"
  2085. msgid "No printers found"
  2086. msgstr "未發現任何列印機資訊"
  2087. msgctxt "@label"
  2088. msgid "No printers found in your account?"
  2089. msgstr "在你的帳號未發現任何印表機?"
  2090. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  2091. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  2092. msgstr ""
  2093. msgctxt "@message"
  2094. msgid "No results found with current filter"
  2095. msgstr ""
  2096. msgctxt "@label"
  2097. msgid "No specific value has been set"
  2098. msgstr ""
  2099. msgctxt "@label"
  2100. msgid "No time estimation available"
  2101. msgstr "沒有時間估計"
  2102. msgctxt "@button"
  2103. msgid "Non UltiMaker printer"
  2104. msgstr ""
  2105. msgctxt "@info No materials"
  2106. msgid "None"
  2107. msgstr ""
  2108. msgctxt "@label"
  2109. msgid "Normal model"
  2110. msgstr "普通模型"
  2111. msgctxt "@info:title"
  2112. msgid "Not a group host"
  2113. msgstr "不是印表機群組管理者"
  2114. msgctxt "@label:MonitorStatus"
  2115. msgid "Not connected to a printer"
  2116. msgstr "未連接至印表機"
  2117. msgctxt "@action:label"
  2118. msgid "Not in profile"
  2119. msgstr "不在列印參數中"
  2120. msgctxt "@menuitem"
  2121. msgid "Not overridden"
  2122. msgstr "不覆寫"
  2123. msgctxt "@info:not supported profile"
  2124. msgid "Not supported"
  2125. msgstr "不支援"
  2126. msgctxt "@label"
  2127. msgid "Not yet initialized"
  2128. msgstr ""
  2129. msgctxt "@info:status"
  2130. msgid "Nothing is shown because you need to slice first."
  2131. msgstr "因為你還沒切片,沒有東西可顯示。"
  2132. msgctxt "@label"
  2133. msgid "Nozzle"
  2134. msgstr "噴頭"
  2135. msgctxt "@title:label"
  2136. msgid "Nozzle Settings"
  2137. msgstr "噴頭設定"
  2138. msgctxt "@label"
  2139. msgid "Nozzle offset X"
  2140. msgstr "噴頭偏移 X"
  2141. msgctxt "@label"
  2142. msgid "Nozzle offset Y"
  2143. msgstr "噴頭偏移 Y"
  2144. msgctxt "@label"
  2145. msgid "Nozzle size"
  2146. msgstr "噴頭孔徑"
  2147. msgctxt "@label"
  2148. msgid "Number of Copies"
  2149. msgstr "複製個數"
  2150. msgctxt "@label"
  2151. msgid "Number of Extruders"
  2152. msgstr "擠出機數目"
  2153. msgctxt "@action:button"
  2154. msgid "OK"
  2155. msgstr "確定"
  2156. msgctxt "@label"
  2157. msgid "OS language"
  2158. msgstr "作業系統語言"
  2159. msgctxt "@label"
  2160. msgid "Object list"
  2161. msgstr "物件清單"
  2162. msgctxt "@label:Should be short"
  2163. msgid "Off"
  2164. msgstr "關閉"
  2165. msgctxt "@label:Should be short"
  2166. msgid "On"
  2167. msgstr "開啟"
  2168. msgctxt "@label"
  2169. msgid "Only Show Top Layers"
  2170. msgstr "只顯示頂層"
  2171. #, python-brace-format
  2172. msgctxt "@info:status"
  2173. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  2174. msgstr "一次只能載入一個 G-code 檔案。{0} 已跳過匯入"
  2175. msgctxt "@message"
  2176. msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker."
  2177. msgstr ""
  2178. msgctxt "@action:button"
  2179. msgid "Open"
  2180. msgstr "開啟"
  2181. msgctxt "@title:menu menubar:file"
  2182. msgid "Open &Recent"
  2183. msgstr "最近開啟的檔案(&R)"
  2184. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2185. msgid "Open Compressed Triangle Mesh"
  2186. msgstr "打開壓縮的三角面網格"
  2187. msgctxt "@title:window"
  2188. msgid "Open File(s)"
  2189. msgstr "開啟檔案"
  2190. msgctxt "@title:menu menubar:file"
  2191. msgid "Open File(s)..."
  2192. msgstr "開啟檔案."
  2193. msgctxt "@title:window"
  2194. msgid "Open Project"
  2195. msgstr "開啟專案"
  2196. msgctxt "@info:title"
  2197. msgid "Open Project File"
  2198. msgstr "開啟專案檔案"
  2199. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2200. msgid "Open Universal Cura Project (UCP)"
  2201. msgstr ""
  2202. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2203. msgid "Open Universal Cura Project (UCP) file"
  2204. msgstr ""
  2205. msgctxt "@action:label"
  2206. msgid "Open With"
  2207. msgstr ""
  2208. msgctxt "@action:button"
  2209. msgid "Open as UCP"
  2210. msgstr ""
  2211. msgctxt "@action:button"
  2212. msgid "Open as project"
  2213. msgstr "作為專案開啟"
  2214. msgctxt "@title:window"
  2215. msgid "Open file(s)"
  2216. msgstr "開啟檔案"
  2217. msgctxt "@action:button"
  2218. msgid "Open project anyway"
  2219. msgstr ""
  2220. msgctxt "@title:window"
  2221. msgid "Open project file"
  2222. msgstr "開啟專案檔案"
  2223. msgctxt "@label OpenGL version"
  2224. msgid "OpenGL"
  2225. msgstr "OpenGL"
  2226. msgctxt "@label"
  2227. msgid "Opening and saving files"
  2228. msgstr "開啟並儲存檔案"
  2229. msgctxt "@header"
  2230. msgid "Optimized for Air Manager"
  2231. msgstr ""
  2232. msgctxt "@label"
  2233. msgid "Origin at center"
  2234. msgstr "原點位於中心"
  2235. msgid "Orthographic"
  2236. msgstr "正交"
  2237. msgctxt "@action:inmenu menubar:view"
  2238. msgid "Orthographic"
  2239. msgstr "正交"
  2240. msgctxt "@tooltip"
  2241. msgid "Other"
  2242. msgstr "其它"
  2243. msgctxt "@label"
  2244. msgid "Other models overlapping with this model are modified."
  2245. msgstr "與此模型重疊的其他模型已被更改。"
  2246. msgctxt "@label"
  2247. msgid "Other printers"
  2248. msgstr ""
  2249. msgctxt "@tooltip"
  2250. msgid "Outer Wall"
  2251. msgstr "外壁"
  2252. msgctxt "@label"
  2253. msgid "Overlaps with this model are not supported."
  2254. msgstr "與此模型的重疊沒有支撐。"
  2255. msgctxt "@action:button"
  2256. msgid "Override"
  2257. msgstr "覆寫"
  2258. msgctxt "@label"
  2259. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2260. msgstr "覆寫會將指定的設定套用在現有的印表機上。這可能導致列印失敗。"
  2261. msgctxt "@label %1 is the number of settings it overrides."
  2262. msgid "Overrides %1 setting."
  2263. msgid_plural "Overrides %1 settings."
  2264. msgstr[0] "覆寫 %1 設定。"
  2265. msgctxt "@title:menu menubar:toplevel"
  2266. msgid "P&references"
  2267. msgstr "偏好設定(&R)"
  2268. msgctxt "@item:inlistbox"
  2269. msgid "PNG Image"
  2270. msgstr "PNG 圖片"
  2271. msgctxt "@header"
  2272. msgid "Package details"
  2273. msgstr ""
  2274. msgctxt "@label Description for development tool"
  2275. msgid "Packaging Python-applications"
  2276. msgstr ""
  2277. msgctxt "@info:status"
  2278. msgid "Parsing G-code"
  2279. msgstr "正在解析 G-code"
  2280. msgctxt "@action:inmenu menubar:edit"
  2281. msgid "Paste from clipboard"
  2282. msgstr ""
  2283. msgctxt "@label"
  2284. msgid "Pause"
  2285. msgstr "暫停"
  2286. msgctxt "@label:MonitorStatus"
  2287. msgid "Paused"
  2288. msgstr "已暫停"
  2289. msgctxt "@label:status"
  2290. msgid "Paused"
  2291. msgstr "已暫停"
  2292. msgctxt "@label"
  2293. msgid "Pausing..."
  2294. msgstr "正在暫停..."
  2295. msgctxt "@label:status"
  2296. msgid "Pausing..."
  2297. msgstr "正在暫停..."
  2298. msgctxt "@label"
  2299. msgid "Per Model Settings"
  2300. msgstr "單一模型設定"
  2301. msgctxt "name"
  2302. msgid "Per Model Settings Tool"
  2303. msgstr "單一模型設定工具"
  2304. msgid "Perspective"
  2305. msgstr "透視"
  2306. msgctxt "@action:inmenu menubar:view"
  2307. msgid "Perspective"
  2308. msgstr "透視"
  2309. msgctxt "@action:label"
  2310. msgid "Placement"
  2311. msgstr ""
  2312. msgctxt "@info:title"
  2313. msgid "Placing Object"
  2314. msgstr "擺放物件中"
  2315. msgctxt "@info:title"
  2316. msgid "Placing Objects"
  2317. msgstr "正在放置模型"
  2318. msgctxt "@label Type of platform"
  2319. msgid "Platform"
  2320. msgstr "平台"
  2321. msgctxt "@info"
  2322. msgid "Please connect your printer to the network."
  2323. msgstr "請將你的印表機連上網路。"
  2324. msgctxt "@text"
  2325. msgid "Please enter a valid IP address."
  2326. msgstr "請輸入有效的 IP 位址 。"
  2327. msgctxt "@message"
  2328. msgid "Please give the required permissions when authorizing this application."
  2329. msgstr "核准此應用程式時,請給予所需的權限。"
  2330. msgctxt "@info"
  2331. msgid ""
  2332. "Please make sure your printer has a connection:\n"
  2333. "- Check if the printer is turned on.\n"
  2334. "- Check if the printer is connected to the network.\n"
  2335. "- Check if you are signed in to discover cloud-connected printers."
  2336. msgstr ""
  2337. "請確認你的印表機有連接:\n"
  2338. "- 檢查印表機是否已打開。\n"
  2339. "- 檢查印表機是否已連接到網路。\n"
  2340. "- 檢查是否已登入以尋找雲端連接的印表機。"
  2341. msgctxt "@text"
  2342. msgid "Please name your printer"
  2343. msgstr "請為你的印表機取一個名稱"
  2344. msgctxt "@warning:status"
  2345. msgid "Please prepare G-code before exporting."
  2346. msgstr "匯出前請先將 G-code 準備好。"
  2347. msgctxt "@info"
  2348. msgid "Please provide a name for this profile."
  2349. msgstr "請為此參數提供一個名字。"
  2350. msgctxt "@info"
  2351. msgid "Please provide a new name."
  2352. msgstr ""
  2353. msgctxt "@text"
  2354. msgid "Please read and agree with the plugin licence."
  2355. msgstr ""
  2356. msgctxt "@label:MonitorStatus"
  2357. msgid "Please remove the print"
  2358. msgstr "請取出列印件"
  2359. msgctxt "@info:status"
  2360. msgid ""
  2361. "Please review settings and check if your models:\n"
  2362. "- Fit within the build volume\n"
  2363. "- Are assigned to an enabled extruder\n"
  2364. "- Are not all set as modifier meshes"
  2365. msgstr ""
  2366. "請檢查設定並檢查你的模型是否:\n"
  2367. "- 適合列印範圍\n"
  2368. "- 分配了一個已啟用的擠出機\n"
  2369. "- 沒有全部設定成修改網格"
  2370. msgctxt "@label"
  2371. msgid "Please select any upgrades made to this UltiMaker Original"
  2372. msgstr "請選擇適用於 UltiMaker Original 的更新檔案"
  2373. msgctxt "@description"
  2374. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  2375. msgstr "請登入以取得 UltiMaker Cura Enterprise 驗証的外掛及線材"
  2376. msgctxt "@info:tooltip"
  2377. msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data."
  2378. msgstr ""
  2379. msgctxt "@action:button"
  2380. msgid "Please sync the material profiles with your printers before starting to print."
  2381. msgstr "再列印前請先同步線材資料."
  2382. msgctxt "@info"
  2383. msgid "Please update your printer's firmware to manage the queue remotely."
  2384. msgstr "請更新你印表機的韌體以便遠端管理工作隊列。"
  2385. msgctxt "@info:status"
  2386. msgid "Please wait until the current job has been sent."
  2387. msgstr "請等待目前作業傳送完成。"
  2388. msgctxt "@title:window"
  2389. msgid "Plugin License Agreement"
  2390. msgstr "外掛授權協議"
  2391. msgctxt "@button"
  2392. msgid "Plugin license agreement"
  2393. msgstr ""
  2394. msgctxt "@backuplist:label"
  2395. msgid "Plugins"
  2396. msgstr "外掛"
  2397. msgctxt "@button"
  2398. msgid "Plugins"
  2399. msgstr ""
  2400. msgctxt "@label Description for application dependency"
  2401. msgid "Polygon clipping library"
  2402. msgstr "多邊形剪輯函式庫"
  2403. msgctxt "@label Description for application component"
  2404. msgid "Polygon packing library, developed by Prusa Research"
  2405. msgstr "多邊形包裝函式庫,由 Prusa Research 開發"
  2406. msgctxt "@item:inmenu"
  2407. msgid "Post Processing"
  2408. msgstr "後處理"
  2409. msgctxt "name"
  2410. msgid "Post Processing"
  2411. msgstr "後處理"
  2412. msgctxt "@title:window"
  2413. msgid "Post Processing Plugin"
  2414. msgstr "後處理外掛"
  2415. msgctxt "@label"
  2416. msgid "Post Processing Scripts"
  2417. msgstr "後處理腳本"
  2418. msgctxt "@button"
  2419. msgid "Pre-heat"
  2420. msgstr "預熱"
  2421. msgctxt "@item:inmenu"
  2422. msgid "Prepare"
  2423. msgstr "準備"
  2424. msgctxt "name"
  2425. msgid "Prepare Stage"
  2426. msgstr "準備介面"
  2427. msgctxt "@label:MonitorStatus"
  2428. msgid "Preparing..."
  2429. msgstr "準備中..."
  2430. msgctxt "@label:status"
  2431. msgid "Preparing..."
  2432. msgstr "正在準備..."
  2433. msgctxt "@label"
  2434. msgid "Preset printers"
  2435. msgstr "預設印表機"
  2436. msgctxt "@button"
  2437. msgid "Preview"
  2438. msgstr "預覽"
  2439. msgctxt "@item:inmenu"
  2440. msgid "Preview"
  2441. msgstr "預覽"
  2442. msgctxt "name"
  2443. msgid "Preview Stage"
  2444. msgstr "預覽介面"
  2445. msgctxt "@tooltip"
  2446. msgid "Prime Tower"
  2447. msgstr "裝填塔"
  2448. msgctxt "@action:button"
  2449. msgid "Print"
  2450. msgstr "列印"
  2451. msgctxt "@action:inmenu menubar:edit"
  2452. msgid "Print After"
  2453. msgstr "列印後"
  2454. msgctxt "@action:inmenu menubar:edit"
  2455. msgid "Print Before"
  2456. msgstr "列印前"
  2457. msgctxt "@label"
  2458. msgid "Print Selected Model With:"
  2459. msgid_plural "Print Selected Models With:"
  2460. msgstr[0] "列印所選模型:"
  2461. msgctxt "@label %1 is filled in with the name of an extruder"
  2462. msgid "Print Selected Model with %1"
  2463. msgid_plural "Print Selected Models with %1"
  2464. msgstr[0] "用 %1 列印所選模型"
  2465. msgctxt "@label"
  2466. msgid "Print as support"
  2467. msgstr "做為支撐"
  2468. msgctxt "@info:title"
  2469. msgid "Print error"
  2470. msgstr "列印錯誤"
  2471. msgctxt "@message"
  2472. msgid "Print in Progress"
  2473. msgstr "列印正在進行中"
  2474. msgctxt "@info:status"
  2475. msgid "Print job queue is full. The printer can't accept a new job."
  2476. msgstr "列印作業隊列已滿,印表機無法再接受新的作業。"
  2477. msgctxt "@info:status"
  2478. msgid "Print job was successfully sent to the printer."
  2479. msgstr "列印作業已成功傳送到印表機。"
  2480. msgctxt "@label"
  2481. msgid "Print jobs"
  2482. msgstr "列印作業"
  2483. msgctxt "@label:button"
  2484. msgid "Print jobs"
  2485. msgstr "列印工作"
  2486. msgctxt "@action:button Preceded by 'Ready to'."
  2487. msgid "Print over network"
  2488. msgstr "網路連線列印"
  2489. msgctxt "@properties:tooltip"
  2490. msgid "Print over network"
  2491. msgstr "網路連線列印"
  2492. msgctxt "@title:window"
  2493. msgid "Print over network"
  2494. msgstr "網路連線列印"
  2495. msgctxt "@label"
  2496. msgid "Print settings"
  2497. msgstr "列印設定"
  2498. msgctxt "@label shown when we load a Gcode file"
  2499. msgid "Print setup disabled. G-code file can not be modified."
  2500. msgstr "列印設定已被停用。 G-code 檔案無法修改。"
  2501. msgctxt "@action:button Preceded by 'Ready to'."
  2502. msgid "Print via USB"
  2503. msgstr "透過 USB 連線列印"
  2504. msgctxt "@info:tooltip"
  2505. msgid "Print via USB"
  2506. msgstr "透過 USB 連線列印"
  2507. msgctxt "@action:button"
  2508. msgid "Print via cloud"
  2509. msgstr "透過雲端服務列印"
  2510. msgctxt "@properties:tooltip"
  2511. msgid "Print via cloud"
  2512. msgstr "透過雲端服務列印"
  2513. msgctxt "@action:label"
  2514. msgid "Print with"
  2515. msgstr ""
  2516. msgctxt "@title:tab"
  2517. msgid "Printer"
  2518. msgstr "印表機"
  2519. msgctxt "@title:window"
  2520. msgid "Printer Address"
  2521. msgstr "印表機網路位址"
  2522. msgctxt "@action:label"
  2523. msgid "Printer Group"
  2524. msgstr "印表機群組"
  2525. msgctxt "@title:label"
  2526. msgid "Printer Settings"
  2527. msgstr "印表機設定"
  2528. msgctxt "@label"
  2529. msgid "Printer control"
  2530. msgstr "印表機控制"
  2531. msgctxt "@label:MonitorStatus"
  2532. msgid "Printer does not accept commands"
  2533. msgstr "印表機不接受命令"
  2534. msgctxt "@label"
  2535. msgid "Printer name"
  2536. msgstr "印表機名稱"
  2537. msgctxt "@label"
  2538. msgid "Printer selection"
  2539. msgstr "印表機選擇"
  2540. msgctxt "@action:label"
  2541. msgid "Printer settings"
  2542. msgstr "印表機設定"
  2543. msgctxt "@info:tooltip"
  2544. msgid "Printer settings will be updated to match the settings saved with the project."
  2545. msgstr ""
  2546. msgctxt "@title:tab"
  2547. msgid "Printers"
  2548. msgstr "印表機"
  2549. msgctxt "info:status"
  2550. msgid "Printers added from Digital Factory:"
  2551. msgstr "從 Digital Factory 新增的印表機:"
  2552. msgctxt "@text Asking the user whether printers are missing in a list."
  2553. msgid "Printers missing?"
  2554. msgstr "列印機資訊遺失了?"
  2555. msgctxt "@title:label"
  2556. msgid "Printhead Settings"
  2557. msgstr "列印頭設定"
  2558. msgctxt "@label:status"
  2559. msgid "Printing"
  2560. msgstr "正在列印"
  2561. msgctxt "@label"
  2562. msgid "Printing Time"
  2563. msgstr "列印時間"
  2564. msgctxt "@label:MonitorStatus"
  2565. msgid "Printing..."
  2566. msgstr "列印中..."
  2567. msgctxt "@label"
  2568. msgid "Privacy"
  2569. msgstr "隱私權"
  2570. msgctxt "@button"
  2571. msgid "Processing"
  2572. msgstr "處理中"
  2573. msgctxt "@info:status"
  2574. msgid "Processing Layers"
  2575. msgstr "正在處理層"
  2576. msgctxt "@label"
  2577. msgid "Profile"
  2578. msgstr "參數"
  2579. msgctxt "@title:column"
  2580. msgid "Profile"
  2581. msgstr "列印參數"
  2582. msgctxt "@label"
  2583. msgid "Profile author"
  2584. msgstr "列印參數作者"
  2585. msgctxt "@info:status"
  2586. msgid "Profile is missing a quality type."
  2587. msgstr "列印參數缺少列印品質類型定義。"
  2588. msgctxt "@action:label"
  2589. msgid "Profile settings"
  2590. msgstr "列印參數設定"
  2591. msgctxt "@title:column"
  2592. msgid "Profile settings"
  2593. msgstr "列印參數設定"
  2594. #, python-brace-format
  2595. msgctxt "@info:status"
  2596. msgid "Profile {0} has an unknown file type or is corrupted."
  2597. msgstr "列印參數 {0} 檔案類型未知或已損壞。"
  2598. msgctxt "@backuplist:label"
  2599. msgid "Profiles"
  2600. msgstr "參數"
  2601. msgctxt "@label"
  2602. msgid "Profiles"
  2603. msgstr "列印參數"
  2604. msgctxt "@title:tab"
  2605. msgid "Profiles"
  2606. msgstr "列印參數"
  2607. msgctxt "@label"
  2608. msgid "Profiles compatible with active printer:"
  2609. msgstr ""
  2610. msgctxt "@label Description for application dependency"
  2611. msgid "Programming language"
  2612. msgstr "編程語言"
  2613. #, python-brace-format
  2614. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2615. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  2616. msgstr "專案檔案 <filename>{0}</filename> 包含未知的機器類型 <message>{1}</message>。機器無法被匯入,但模型將被匯入。"
  2617. #, python-brace-format
  2618. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2619. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  2620. msgstr "專案檔案<filename>{0}</filename> 已毀損 : <message>{1}</message>."
  2621. #, python-brace-format
  2622. msgctxt "@info:error Don't translate the XML tag <filename>!"
  2623. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  2624. msgstr "專案檔案 <filename>{0}</filename> 使用了此版本 UltiMaker Cura 未知的參數製作。"
  2625. #, python-brace-format
  2626. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2627. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  2628. msgstr "專案檔案 <filename>{0}</filename> 無法存取:<message>{1}</message>。"
  2629. msgctxt "@label"
  2630. msgid "Properties"
  2631. msgstr "屬性"
  2632. msgctxt "description"
  2633. msgid "Provides a machine actions for updating firmware."
  2634. msgstr "提供升級韌體用的機器操作。"
  2635. msgctxt "description"
  2636. msgid "Provides a monitor stage in Cura."
  2637. msgstr "在 cura 提供一個監控介面。"
  2638. msgctxt "description"
  2639. msgid "Provides a normal solid mesh view."
  2640. msgstr "提供一個基本的實體網格檢視。"
  2641. msgctxt "description"
  2642. msgid "Provides a prepare stage in Cura."
  2643. msgstr "在 cura 提供一個準備介面。"
  2644. msgctxt "description"
  2645. msgid "Provides a preview stage in Cura."
  2646. msgstr "在 Cura 提供一個預覽介面。"
  2647. msgctxt "description"
  2648. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  2649. msgstr "提供更改機器設定的方法(如列印範圍,噴頭大小等)。"
  2650. msgctxt "description"
  2651. msgid "Provides capabilities to read and write XML-based material profiles."
  2652. msgstr "提供讀寫 XML 格式線材參數的功能。"
  2653. msgctxt "description"
  2654. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  2655. msgstr "提供 UltiMaker 機器的操作(例如平台調平精靈,選擇升級等)。"
  2656. msgctxt "description"
  2657. msgid "Provides removable drive hotplugging and writing support."
  2658. msgstr "提供行動裝置熱插拔和寫入檔案的支援。"
  2659. msgctxt "description"
  2660. msgid "Provides support for exporting Cura profiles."
  2661. msgstr "提供匯出 Cura 列印參數的支援。"
  2662. msgctxt "description"
  2663. msgid "Provides support for importing Cura profiles."
  2664. msgstr "提供匯入 Cura 列印參數的支援。"
  2665. msgctxt "description"
  2666. msgid "Provides support for importing profiles from g-code files."
  2667. msgstr "提供匯入 G-code 檔案中列印參數的支援。"
  2668. msgctxt "description"
  2669. msgid "Provides support for importing profiles from legacy Cura versions."
  2670. msgstr "提供匯入 Cura 舊版本列印參數的支援。"
  2671. msgctxt "description"
  2672. msgid "Provides support for reading 3MF files."
  2673. msgstr "提供讀取 3MF 格式檔案的支援。"
  2674. msgctxt "description"
  2675. msgid "Provides support for reading AMF files."
  2676. msgstr "提供對讀取 AMF 格式檔案的支援。"
  2677. msgctxt "description"
  2678. msgid "Provides support for reading Ultimaker Format Packages."
  2679. msgstr ""
  2680. msgctxt "description"
  2681. msgid "Provides support for reading X3D files."
  2682. msgstr "提供讀取 X3D 檔案的支援。"
  2683. msgctxt "description"
  2684. msgid "Provides support for reading model files."
  2685. msgstr "提供讀取模型檔案的支援。"
  2686. msgctxt "description"
  2687. msgid "Provides support for writing 3MF and UCP files."
  2688. msgstr ""
  2689. msgctxt "description"
  2690. msgid "Provides support for writing MakerBot Format Packages."
  2691. msgstr ""
  2692. msgctxt "description"
  2693. msgid "Provides support for writing Ultimaker Format Packages."
  2694. msgstr ""
  2695. msgctxt "description"
  2696. msgid "Provides the Per Model Settings."
  2697. msgstr "提供對每個模型的單獨設定。"
  2698. msgctxt "description"
  2699. msgid "Provides the X-Ray view."
  2700. msgstr "提供透視檢視。"
  2701. msgctxt "description"
  2702. msgid "Provides the link to the CuraEngine slicing backend."
  2703. msgstr "提供連結到 Cura 切片引擎後台。"
  2704. msgctxt "description"
  2705. msgid "Provides the preview of sliced layerdata."
  2706. msgstr ""
  2707. msgctxt "@label"
  2708. msgid "PyQt version"
  2709. msgstr "PyQt 版本"
  2710. msgctxt "@Label Description for application dependency"
  2711. msgid "Python Error tracking library"
  2712. msgstr ""
  2713. msgctxt "@label Description for application dependency"
  2714. msgid "Python bindings for Clipper"
  2715. msgstr ""
  2716. msgctxt "@label Description for application component"
  2717. msgid "Python bindings for libnest2d"
  2718. msgstr ""
  2719. msgctxt "@label"
  2720. msgid "Qt version"
  2721. msgstr "Qt 版本"
  2722. #, python-brace-format
  2723. msgctxt "@info:status"
  2724. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  2725. msgstr "品質類型 '{0}' 與目前的啟用的機器設定 '{1} '不相容。"
  2726. msgctxt "@info:title"
  2727. msgid "Queue Full"
  2728. msgstr "隊列已滿"
  2729. msgctxt "@label"
  2730. msgid "Queued"
  2731. msgstr "已排入隊列"
  2732. msgctxt "@info:button, %1 is the application name"
  2733. msgid "Quit %1"
  2734. msgstr "結束 %1"
  2735. msgctxt "description"
  2736. msgid "Reads g-code from a compressed archive."
  2737. msgstr "從一個壓縮檔案中讀取 G-code。"
  2738. msgctxt "@button"
  2739. msgid "Recommended"
  2740. msgstr "推薦"
  2741. msgctxt "@title:tab"
  2742. msgid "Recommended"
  2743. msgstr "推薦"
  2744. msgctxt "@label"
  2745. msgid "Recommended print settings"
  2746. msgstr ""
  2747. msgctxt "@info %1 is the name of a profile"
  2748. msgid "Recommended settings (for <b>%1</b>) were altered."
  2749. msgstr ""
  2750. msgctxt "@action:button"
  2751. msgid "Refresh"
  2752. msgstr "刷新"
  2753. msgctxt "@button"
  2754. msgid "Refresh"
  2755. msgstr "重新載入"
  2756. msgctxt "@label"
  2757. msgid "Refresh"
  2758. msgstr "更新"
  2759. msgctxt "@button"
  2760. msgid "Refresh List"
  2761. msgstr "重新載入清單"
  2762. msgctxt "@button"
  2763. msgid "Refreshing..."
  2764. msgstr ""
  2765. msgctxt "@label"
  2766. msgid "Release Notes"
  2767. msgstr "發佈通知"
  2768. msgctxt "@action:inmenu menubar:file"
  2769. msgid "Reload All Models"
  2770. msgstr "重新載入所有模型"
  2771. msgctxt "@text:window"
  2772. msgid "Remember my choice"
  2773. msgstr "記住我的選擇"
  2774. msgctxt "@item:intext"
  2775. msgid "Removable Drive"
  2776. msgstr "行動裝置"
  2777. msgctxt "name"
  2778. msgid "Removable Drive Output Device Plugin"
  2779. msgstr "行動裝置輸出設備外掛"
  2780. msgctxt "@action:button"
  2781. msgid "Remove"
  2782. msgstr "移除"
  2783. msgctxt "@action:button"
  2784. msgid "Remove printers"
  2785. msgstr "移除印表機"
  2786. msgctxt "@title:window"
  2787. msgid "Remove printers?"
  2788. msgstr "移除印表機?"
  2789. msgctxt "@action:button"
  2790. msgid "Rename"
  2791. msgstr "重命名"
  2792. msgctxt "@title:window"
  2793. msgid "Rename"
  2794. msgstr ""
  2795. msgctxt "@title:window"
  2796. msgid "Rename Profile"
  2797. msgstr "重命名列印參數"
  2798. msgctxt "@action:inmenu menubar:help"
  2799. msgid "Report a &Bug"
  2800. msgstr "BUG 回報(&B)"
  2801. msgctxt "@label:button"
  2802. msgid "Report a bug"
  2803. msgstr "回報Bug"
  2804. msgctxt "@message:button"
  2805. msgid "Report a bug"
  2806. msgstr "回報問題"
  2807. msgctxt "@message:description"
  2808. msgid "Report a bug on UltiMaker Cura's issue tracker."
  2809. msgstr "於UltiMaker Cura問題追蹤器中回報問題."
  2810. msgctxt "@label:status"
  2811. msgid "Requires configuration changes"
  2812. msgstr "需要修改設定"
  2813. msgctxt "@action:inmenu menubar:edit"
  2814. msgid "Reset All Model Positions"
  2815. msgstr "重置所有模型位置"
  2816. msgctxt "@action:inmenu menubar:edit"
  2817. msgid "Reset All Model Transformations"
  2818. msgstr "重置所有模型旋轉"
  2819. msgctxt "@info"
  2820. msgid "Reset to defaults."
  2821. msgstr ""
  2822. msgctxt "@label"
  2823. msgid "Resolution"
  2824. msgstr ""
  2825. msgctxt "@button"
  2826. msgid "Restore"
  2827. msgstr "復原"
  2828. msgctxt "@dialog:title"
  2829. msgid "Restore Backup"
  2830. msgstr "復原備份"
  2831. msgctxt "@option:check"
  2832. msgid "Restore window position on start"
  2833. msgstr "開啟時復原視窗位置"
  2834. msgctxt "@label"
  2835. msgid "Resume"
  2836. msgstr "繼續"
  2837. msgctxt "@label"
  2838. msgid "Resuming..."
  2839. msgstr "正在繼續..."
  2840. msgctxt "@label:status"
  2841. msgid "Resuming..."
  2842. msgstr "正在繼續..."
  2843. msgctxt "@tooltip"
  2844. msgid "Retractions"
  2845. msgstr "回抽"
  2846. msgctxt "@button"
  2847. msgid "Retry?"
  2848. msgstr ""
  2849. msgctxt "@action:inmenu menubar:view"
  2850. msgid "Right Side View"
  2851. msgstr "右視圖"
  2852. msgctxt "@info:tooltip"
  2853. msgid "Right View"
  2854. msgstr "右視圖"
  2855. msgctxt "@label Description for application dependency"
  2856. msgid "Root Certificates for validating SSL trustworthiness"
  2857. msgstr ""
  2858. msgctxt "@info:title"
  2859. msgid "Safely Remove Hardware"
  2860. msgstr "安全移除硬體"
  2861. msgctxt "@button"
  2862. msgid "Safety datasheet"
  2863. msgstr ""
  2864. msgctxt "@action:button"
  2865. msgid "Save"
  2866. msgstr "儲存"
  2867. msgctxt "@option"
  2868. msgid "Save Cura project"
  2869. msgstr ""
  2870. msgctxt "@option"
  2871. msgid "Save Cura project and .makerbot print file"
  2872. msgstr ""
  2873. msgctxt "@option"
  2874. msgid "Save Cura project and .ufp print file"
  2875. msgstr ""
  2876. msgctxt "@title:window"
  2877. msgid "Save Custom Profile"
  2878. msgstr ""
  2879. msgctxt "@title:window"
  2880. msgid "Save Project"
  2881. msgstr "儲存專案"
  2882. msgctxt "@title:menu menubar:file"
  2883. msgid "Save Project..."
  2884. msgstr "儲存專案."
  2885. msgctxt "@action:button"
  2886. msgid "Save as new custom profile"
  2887. msgstr ""
  2888. msgctxt "@action:button"
  2889. msgid "Save changes"
  2890. msgstr ""
  2891. msgctxt "@button"
  2892. msgid "Save new profile"
  2893. msgstr ""
  2894. msgctxt "@action:button"
  2895. msgid "Save project"
  2896. msgstr ""
  2897. msgctxt "@text"
  2898. msgid "Save the .umm file on a USB stick."
  2899. msgstr "將 .umm 的文件儲存至USB."
  2900. msgctxt "@action:button Preceded by 'Ready to'."
  2901. msgid "Save to Removable Drive"
  2902. msgstr "儲存至行動裝置"
  2903. #, python-brace-format
  2904. msgctxt "@item:inlistbox"
  2905. msgid "Save to Removable Drive {0}"
  2906. msgstr "儲存到行動裝置 {0}"
  2907. #, python-brace-format
  2908. msgctxt "@info:status"
  2909. msgid "Saved to Removable Drive {0} as {1}"
  2910. msgstr "儲存到行動裝置 {0}:{1}"
  2911. msgctxt "@info:title"
  2912. msgid "Saving"
  2913. msgstr "儲存中"
  2914. #, python-brace-format
  2915. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2916. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2917. msgstr "正在儲存到行動裝置 <filename>{0}</filename>"
  2918. msgctxt "@option:check"
  2919. msgid "Scale extremely small models"
  2920. msgstr "放大過小模型"
  2921. msgctxt "@option:check"
  2922. msgid "Scale large models"
  2923. msgstr "縮小過大模型"
  2924. msgctxt "@placeholder"
  2925. msgid "Search"
  2926. msgstr ""
  2927. msgctxt "@info"
  2928. msgid "Search in the browser"
  2929. msgstr ""
  2930. msgctxt "@label:textbox"
  2931. msgid "Search settings"
  2932. msgstr "搜尋設定"
  2933. msgctxt "@action:inmenu menubar:edit"
  2934. msgid "Select All Models"
  2935. msgstr "選擇所有模型"
  2936. msgctxt "@title:window"
  2937. msgid "Select Printer"
  2938. msgstr ""
  2939. msgctxt "@title:window"
  2940. msgid "Select Settings to Customize for this model"
  2941. msgstr "選擇對此模型的自訂設定"
  2942. msgctxt "@text"
  2943. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2944. msgstr ""
  2945. msgctxt "@label"
  2946. msgid "Select configuration"
  2947. msgstr "選擇設定"
  2948. msgctxt "@title:window"
  2949. msgid "Select custom firmware"
  2950. msgstr "選擇自訂韌體"
  2951. msgctxt "@option:check"
  2952. msgid "Select models when loaded"
  2953. msgstr "模型載入後選擇模型"
  2954. msgctxt "@action:button"
  2955. msgid "Select settings"
  2956. msgstr "選擇設定"
  2957. msgctxt "@action"
  2958. msgid "Select upgrades"
  2959. msgstr "選擇升級"
  2960. msgctxt "@label"
  2961. msgid "Select your printer from the list below:"
  2962. msgstr "從下列清單中選擇你的印表機:"
  2963. msgctxt "@option:check"
  2964. msgid "Send (anonymous) print information"
  2965. msgstr "(匿名)發送列印資訊"
  2966. msgctxt "@label"
  2967. msgid "Send G-code"
  2968. msgstr "傳送 G-code"
  2969. msgctxt "@tooltip of G-code command input"
  2970. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2971. msgstr "傳送一個自訂的 G-code 命令到連接中的印表機。按下 Enter 鍵傳送命令。"
  2972. msgctxt "@action:button"
  2973. msgid "Send crash report to UltiMaker"
  2974. msgstr "傳送錯誤報告給 UltiMaker"
  2975. msgctxt "@info:tooltip"
  2976. msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send."
  2977. msgstr ""
  2978. msgctxt "@info:tooltip"
  2979. msgid "Send crash reports without any personally identifiable information or models data to UltiMaker."
  2980. msgstr ""
  2981. msgctxt "@option:check"
  2982. msgid "Send engine crash reports"
  2983. msgstr ""
  2984. msgctxt "@action:button"
  2985. msgid "Send report"
  2986. msgstr "送出報告"
  2987. msgctxt "@info:status"
  2988. msgid "Sending Print Job"
  2989. msgstr "正在傳送列印作業"
  2990. msgctxt "@info:title"
  2991. msgid "Sending materials to printer"
  2992. msgstr "向印表機傳送線材參數中"
  2993. msgctxt "name"
  2994. msgid "Sentry Logger"
  2995. msgstr "哨兵記錄器"
  2996. msgctxt "@label Description for application dependency"
  2997. msgid "Serial communication library"
  2998. msgstr "串口通訊函式庫"
  2999. msgctxt "@action:inmenu"
  3000. msgid "Set as Active Extruder"
  3001. msgstr "設為主要擠出機"
  3002. msgctxt "@title:column"
  3003. msgid "Setting"
  3004. msgstr "設定"
  3005. msgctxt "@title:tab"
  3006. msgid "Setting Visibility"
  3007. msgstr "參數顯示設定"
  3008. msgctxt "@info:progress"
  3009. msgid "Setting up preferences..."
  3010. msgstr "正在設定偏好設定..."
  3011. msgctxt "@info:progress"
  3012. msgid "Setting up scene..."
  3013. msgstr "正在設定場景..."
  3014. msgctxt "@action:label"
  3015. msgid "Setting visibility"
  3016. msgstr "參數顯示設定"
  3017. msgctxt "@label"
  3018. msgid "Settings"
  3019. msgstr "設定"
  3020. msgctxt "@title:tab"
  3021. msgid "Settings"
  3022. msgstr "設定"
  3023. msgctxt "@action:label"
  3024. msgid "Settings Loaded from UCP file"
  3025. msgstr ""
  3026. msgctxt "@info:message Followed by a list of settings."
  3027. msgid "Settings have been changed to match the current availability of extruders:"
  3028. msgstr "設定已被更改為符合目前擠出機:"
  3029. msgctxt "@info:title"
  3030. msgid "Settings updated"
  3031. msgstr "設定更新"
  3032. msgctxt "@text"
  3033. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  3034. msgstr "分享創意並可從UltiMaker社群中超過48000的使用者得到幫助"
  3035. msgctxt "@label"
  3036. msgid "Shell"
  3037. msgstr "外殼"
  3038. msgctxt "@action:label"
  3039. msgid "Shell Thickness"
  3040. msgstr ""
  3041. msgctxt "@info:tooltip"
  3042. msgid "Should Cura check for updates when the program is started?"
  3043. msgstr "當 Cura 啟動時,是否自動檢查更新?"
  3044. msgctxt "@info:tooltip"
  3045. msgid "Should Cura open at the location it was closed?"
  3046. msgstr "Cura 應該開啟在前次關閉時的位置嗎?"
  3047. msgctxt "@info:tooltip"
  3048. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3049. msgstr "是否自動將印表機名稱作為列印作業名稱的前綴?"
  3050. msgctxt "@info:tooltip"
  3051. msgid "Should a summary be shown when saving a project file?"
  3052. msgstr "儲存專案檔案時是否顯示摘要?"
  3053. msgctxt "@info:tooltip"
  3054. 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!"
  3055. msgstr "需要於開啟Cura時自動更新插件嗎? 建議您勿關閉此功能!"
  3056. msgctxt "@info:tooltip"
  3057. 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."
  3058. msgstr "你願意將關於你的列印資料以匿名形式發送到 UltiMaker 嗎?注意:我們不會記錄或發送任何模型、IP 位址或其他私人資料。"
  3059. msgctxt "@info:tooltip"
  3060. msgid "Should layer be forced into compatibility mode?"
  3061. msgstr "分層檢視要強制進入相容模式嗎?"
  3062. msgctxt "@info:tooltip"
  3063. msgid "Should models be scaled to the build volume if they are too large?"
  3064. msgstr "當模型的尺寸過大時,是否將模型自動縮小至列印範圍嗎?"
  3065. msgctxt "@info:tooltip"
  3066. msgid "Should models be selected after they are loaded?"
  3067. msgstr "模型載入後要設為被選擇的狀態嗎?"
  3068. msgctxt "@info:tooltip"
  3069. msgid "Should models on the platform be moved down to touch the build plate?"
  3070. msgstr "要將模型下降到碰觸列印平台嗎?"
  3071. msgctxt "@info:tooltip"
  3072. msgid "Should models on the platform be moved so that they no longer intersect?"
  3073. msgstr "需要移動平台上的模型,使它們不再交錯嗎?"
  3074. msgctxt "@info:tooltip"
  3075. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3076. msgstr "從桌面或外部程式開啟檔案時,使用同一 Cura 視窗嗎?"
  3077. msgctxt "@info:tooltip"
  3078. msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission."
  3079. msgstr ""
  3080. msgctxt "@info:tooltip"
  3081. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  3082. msgstr "需要再載入新模型前清空視窗內之列印平台嗎?"
  3083. msgctxt "@info:tooltip"
  3084. msgid "Should the default zoom behavior of cura be inverted?"
  3085. msgstr "需要讓 Cura 的預設縮放操作反轉嗎?"
  3086. msgctxt "@info:tooltip"
  3087. msgid "Should zooming move in the direction of the mouse?"
  3088. msgstr "是否跟隨滑鼠方向進行縮放?"
  3089. msgctxt "@label"
  3090. msgid "Show 5 Detailed Layers On Top"
  3091. msgstr "顯示頂端 5 層列印細節"
  3092. msgctxt "@action:inmenu menubar:help"
  3093. msgid "Show Configuration Folder"
  3094. msgstr "顯示設定資料夾"
  3095. msgctxt "@button"
  3096. msgid "Show Custom"
  3097. msgstr ""
  3098. msgctxt "@action:inmenu menubar:help"
  3099. msgid "Show Online &Documentation"
  3100. msgstr "顯示線上說明文件(&D)"
  3101. msgctxt "@action:inmenu"
  3102. msgid "Show Online Troubleshooting"
  3103. msgstr ""
  3104. msgctxt "@label:checkbox"
  3105. msgid "Show all"
  3106. msgstr "顯示全部"
  3107. msgctxt "@label"
  3108. msgid "Show all connected printers"
  3109. msgstr ""
  3110. msgctxt "@info:tooltip"
  3111. msgid "Show an icon and notifications in the system notification area."
  3112. msgstr ""
  3113. msgctxt "@info:tooltip"
  3114. msgid "Show caution message in g-code reader."
  3115. msgstr "在 g-code 讀取器中顯示警告訊息。"
  3116. msgctxt "@action:button"
  3117. msgid "Show configuration folder"
  3118. msgstr "顯示設定資料夾"
  3119. msgctxt "@action:button"
  3120. msgid "Show detailed crash report"
  3121. msgstr "顯示詳細的錯誤報告"
  3122. msgctxt "@action:button"
  3123. msgid "Show settings"
  3124. msgstr ""
  3125. msgctxt "@option:check"
  3126. msgid "Show summary dialog when saving project"
  3127. msgstr "儲存專案時顯示摘要對話框"
  3128. msgctxt "@tooltip:button"
  3129. msgid "Show your support for Cura with a donation."
  3130. msgstr ""
  3131. msgctxt "@button"
  3132. msgid "Sign Out"
  3133. msgstr "登出"
  3134. msgctxt "@action:button"
  3135. msgid "Sign in"
  3136. msgstr "登入"
  3137. msgctxt "@button"
  3138. msgid "Sign in"
  3139. msgstr "登入"
  3140. msgctxt "@title:header"
  3141. msgid "Sign in"
  3142. msgstr "登入"
  3143. msgctxt "@info"
  3144. msgid "Sign in into UltiMaker Digital Factory"
  3145. msgstr ""
  3146. msgctxt "@button"
  3147. msgid "Sign in to Digital Factory"
  3148. msgstr ""
  3149. msgctxt "@label"
  3150. msgid "Sign in to the UltiMaker platform"
  3151. msgstr "登入UltiMaker 論壇"
  3152. msgctxt "name"
  3153. msgid "Simulation View"
  3154. msgstr "模擬檢視"
  3155. msgctxt "@tooltip"
  3156. msgid "Skin"
  3157. msgstr "表層"
  3158. msgctxt "@action:button"
  3159. msgid "Skip"
  3160. msgstr "略過"
  3161. msgctxt "@button"
  3162. msgid "Skip"
  3163. msgstr "略過"
  3164. msgctxt "@tooltip"
  3165. msgid "Skirt"
  3166. msgstr "裙邊"
  3167. msgctxt "@button"
  3168. msgid "Slice"
  3169. msgstr "切片"
  3170. msgctxt "@option:check"
  3171. msgid "Slice automatically"
  3172. msgstr "自動切片"
  3173. msgctxt "@info:tooltip"
  3174. msgid "Slice automatically when changing settings."
  3175. msgstr "當設定變更時自動進行切片。"
  3176. msgctxt "name"
  3177. msgid "Slice info"
  3178. msgstr "切片資訊"
  3179. msgctxt "@message:title"
  3180. msgid "Slicing failed"
  3181. msgstr "切片失敗"
  3182. msgctxt "@label:PrintjobStatus"
  3183. msgid "Slicing..."
  3184. msgstr "正在切片..."
  3185. msgctxt "@action:label"
  3186. msgid "Smoothing"
  3187. msgstr "平滑"
  3188. msgctxt "@label"
  3189. msgid "Solid"
  3190. msgstr ""
  3191. msgctxt "name"
  3192. msgid "Solid View"
  3193. msgstr "實體檢視"
  3194. msgctxt "@item:inmenu"
  3195. msgid "Solid view"
  3196. msgstr "實體檢視"
  3197. msgctxt "@label"
  3198. msgid ""
  3199. "Some hidden settings use values different from their normal calculated value.\n"
  3200. "\n"
  3201. "Click to make these settings visible."
  3202. msgstr ""
  3203. "部份隱藏設定使用的值與一般計算所得的值不同。\n"
  3204. "\n"
  3205. "點擊以顯這些設定。"
  3206. msgctxt "@info:status"
  3207. msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace."
  3208. msgstr ""
  3209. msgctxt "@info:title"
  3210. msgid "Some required packages are not installed"
  3211. msgstr ""
  3212. msgctxt "@info %1 is the name of a profile"
  3213. msgid "Some setting-values defined in <b>%1</b> were overridden."
  3214. msgstr ""
  3215. msgctxt "@tooltip"
  3216. msgid ""
  3217. "Some setting/override values are different from the values stored in the profile.\n"
  3218. "\n"
  3219. "Click to open the profile manager."
  3220. msgstr ""
  3221. "部份設定/覆寫值與儲存在列印參數中的值不同。\n"
  3222. "\n"
  3223. "點擊開啟列印參數管理器。"
  3224. msgctxt "@action:label"
  3225. msgid "Some settings from current profile were overwritten."
  3226. msgstr ""
  3227. msgctxt "@message"
  3228. msgid "Something unexpected happened when trying to log in, please try again."
  3229. msgstr "嘗試登入時出現意外狀況,請再試一次。"
  3230. msgctxt "@title:header"
  3231. msgid "Something went wrong when sending the materials to the printers."
  3232. msgstr "再發送線材設定檔至印表機時發生錯誤."
  3233. msgctxt "@label"
  3234. msgid "Something went wrong..."
  3235. msgstr "出了些問題..."
  3236. msgctxt "@label:listbox"
  3237. msgid "Speed"
  3238. msgstr "速度"
  3239. msgctxt "@action:inmenu"
  3240. msgid "Sponsor Cura"
  3241. msgstr ""
  3242. msgctxt "@label:button"
  3243. msgid "Sponsor Cura"
  3244. msgstr ""
  3245. msgctxt "@option:radio"
  3246. msgid "Stable and Beta releases"
  3247. msgstr "正式版本與測試版本發佈"
  3248. msgctxt "@option:radio"
  3249. msgid "Stable releases only"
  3250. msgstr "僅正式版本"
  3251. msgctxt "@item:inlistbox"
  3252. msgid "Stanford Triangle Format"
  3253. msgstr "Stanford 三角形格式"
  3254. msgctxt "@button"
  3255. msgid "Start"
  3256. msgstr "開始"
  3257. msgctxt "@action:button"
  3258. msgid "Start Build Plate Leveling"
  3259. msgstr "開始進行列印平台調平"
  3260. msgctxt "@title:label"
  3261. msgid "Start G-code"
  3262. msgstr "起始 G-code"
  3263. msgctxt "@label"
  3264. msgid "Start the slicing process"
  3265. msgstr "開始切片程序"
  3266. msgctxt "@label"
  3267. msgid "Starts"
  3268. msgstr "啟動"
  3269. msgctxt "@text"
  3270. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  3271. msgstr ""
  3272. msgctxt "@label"
  3273. msgid "Strength"
  3274. msgstr ""
  3275. msgctxt "description"
  3276. msgid "Submits anonymous slice info. Can be disabled through preferences."
  3277. msgstr "提交匿名切片資訊。這項功能可以在偏好設定中關閉。"
  3278. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3279. msgid "Successfully exported material to <filename>%1</filename>"
  3280. msgstr "成功匯出線材至:<filename>%1</filename>"
  3281. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3282. msgid "Successfully imported material <filename>%1</filename>"
  3283. msgstr "成功匯入線材 <filename>%1</filename>"
  3284. #, python-brace-format
  3285. msgctxt "@info:status"
  3286. msgid "Successfully imported profile {0}."
  3287. msgstr "已成功匯入列印參數 {0}。"
  3288. msgctxt "@action:label"
  3289. msgid "Suggested Material settings"
  3290. msgstr ""
  3291. msgctxt "@action:label"
  3292. msgid "Suggested Profile settings"
  3293. msgstr ""
  3294. msgctxt "@action:title"
  3295. msgid "Summary - Cura Project"
  3296. msgstr "摘要 - Cura 專案"
  3297. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  3298. msgid "Summary - Open Universal Cura Project (UCP)"
  3299. msgstr ""
  3300. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  3301. msgid "Summary - Universal Cura Project"
  3302. msgstr ""
  3303. msgctxt "@label"
  3304. msgid "Support"
  3305. msgstr "支撐"
  3306. msgctxt "@tooltip"
  3307. msgid "Support"
  3308. msgstr "支撐"
  3309. msgctxt "@label"
  3310. msgid "Support Blocker"
  3311. msgstr "支撐阻斷器"
  3312. msgctxt "name"
  3313. msgid "Support Eraser"
  3314. msgstr "支援抹除器"
  3315. msgctxt "@tooltip"
  3316. msgid "Support Infill"
  3317. msgstr "支撐填充"
  3318. msgctxt "@tooltip"
  3319. msgid "Support Interface"
  3320. msgstr "支撐介面"
  3321. msgctxt "@action:label"
  3322. msgid "Support Type"
  3323. msgstr ""
  3324. msgctxt "@label Description for application dependency"
  3325. msgid "Support library for faster math"
  3326. msgstr "高速運算函式庫"
  3327. msgctxt "@label Description for application component"
  3328. msgid "Support library for file metadata and streaming"
  3329. msgstr "用於檔案 metadata 和串流的函式庫"
  3330. msgctxt "@label Description for application component"
  3331. msgid "Support library for handling 3MF files"
  3332. msgstr "用於處理 3MF 檔案的函式庫"
  3333. msgctxt "@label Description for application dependency"
  3334. msgid "Support library for handling STL files"
  3335. msgstr "用於處理 STL 檔案的函式庫"
  3336. msgctxt "@label Description for application dependency"
  3337. msgid "Support library for handling triangular meshes"
  3338. msgstr "用於處理三角形網格的函式庫"
  3339. msgctxt "@label Description for application dependency"
  3340. msgid "Support library for scientific computing"
  3341. msgstr "科學計算函式庫"
  3342. msgctxt "@label Description for application dependency"
  3343. msgid "Support library for system keyring access"
  3344. msgstr "存取系統金鑰函式庫"
  3345. msgctxt "@action:button"
  3346. msgid "Sync"
  3347. msgstr "同步"
  3348. msgctxt "@button"
  3349. msgid "Sync"
  3350. msgstr "同步"
  3351. msgctxt "@title:header"
  3352. msgid "Sync material profiles via USB"
  3353. msgstr "透過USB同步您的線材設定檔"
  3354. msgctxt "@action:button"
  3355. msgid "Sync materials"
  3356. msgstr ""
  3357. msgctxt "@button"
  3358. msgid "Sync materials with USB"
  3359. msgstr "從USB進行同步線材設定檔"
  3360. msgctxt "@title:header"
  3361. msgid "Sync materials with printers"
  3362. msgstr "同步印表機線材設定"
  3363. msgctxt "@title:window"
  3364. msgid "Sync materials with printers"
  3365. msgstr "同步印表機線材設定"
  3366. msgctxt "@action:button"
  3367. msgid "Sync with Printers"
  3368. msgstr ""
  3369. msgctxt "@button"
  3370. msgid "Syncing"
  3371. msgstr "同步中"
  3372. msgctxt "@info:generic"
  3373. msgid "Syncing..."
  3374. msgstr "同步中..."
  3375. msgctxt "@title:groupbox"
  3376. msgid "System information"
  3377. msgstr "系統資訊"
  3378. msgctxt "@button"
  3379. msgid "Technical datasheet"
  3380. msgstr ""
  3381. msgctxt "@info:tooltip"
  3382. msgid "The amount of smoothing to apply to the image."
  3383. msgstr "影像平滑程度。"
  3384. msgctxt "@text"
  3385. msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
  3386. msgstr ""
  3387. msgctxt "@label"
  3388. msgid "The assigned printer, %1, requires the following configuration change:"
  3389. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  3390. msgstr[0] "分配的印表機 %1 需要下列的設定更動:"
  3391. msgctxt "@error:file_size"
  3392. msgid "The backup exceeds the maximum file size."
  3393. msgstr "備份超過了最大檔案大小。"
  3394. msgctxt "@text"
  3395. msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy."
  3396. msgstr ""
  3397. msgctxt "@info:tooltip"
  3398. msgid "The base height from the build plate in millimeters."
  3399. msgstr "距離列印平台的底板高度,以毫米為單位。"
  3400. msgctxt "@info:status"
  3401. 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."
  3402. msgstr "由於「列印序列」設定的值,成形列印範圍高度已被減少,以防止龍門與列印模型相衝突。"
  3403. msgctxt "@status"
  3404. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3405. msgstr "雲端服務目前無法使用。請檢查你的網路連線。"
  3406. msgctxt "@status"
  3407. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3408. msgstr "雲端服務目前無法使用。請登入以連接到雲端印表機。"
  3409. msgctxt "@status"
  3410. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3411. msgstr "雲端印表機為離線狀態。請檢查印表機是否已開機並連上網路。"
  3412. msgctxt "@tooltip"
  3413. msgid "The colour of the material in this extruder."
  3414. msgstr "該擠出機中線材的顏色。"
  3415. msgctxt "@tooltip"
  3416. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3417. msgstr "不允許使用此擠出機的配置並禁止切片功能."
  3418. msgctxt "@label"
  3419. msgid "The configurations are not available because the printer is disconnected."
  3420. msgstr "由於印表機已斷線,因此設定無法使用。"
  3421. msgctxt "@tooltip"
  3422. msgid "The current temperature of the heated bed."
  3423. msgstr "熱床目前溫度。"
  3424. msgctxt "@tooltip"
  3425. msgid "The current temperature of this hotend."
  3426. msgstr "此加熱頭的目前溫度。"
  3427. msgctxt "@info:tooltip"
  3428. msgid "The depth in millimeters on the build plate"
  3429. msgstr "列印平台深度,以毫米為單位"
  3430. msgctxt "@text"
  3431. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  3432. msgstr "草稿參數是設計來縮短時間,快速列印初始原型和概念驗證。"
  3433. msgctxt "@text"
  3434. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  3435. msgstr "工程參數是設計來列印較高精度和較小公差的功能性原型和實際使用零件。"
  3436. msgctxt "@label"
  3437. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3438. msgstr ""
  3439. #, python-brace-format
  3440. msgctxt "@label Don't translate the XML tag <filename>!"
  3441. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  3442. msgstr "檔案 <filename>{0}</filename> 已存在。你確定要覆蓋掉它嗎?"
  3443. msgctxt "@label"
  3444. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  3445. msgstr "新印表機出廠配備的韌體完全可以正常使用,但新版本往往具有更多的新功能和改進。"
  3446. msgctxt "@info:backup_failed"
  3447. msgid "The following error occurred while trying to restore a Cura backup:"
  3448. msgstr "恢復Cura備份時,出現下列錯誤:"
  3449. msgctxt "@label"
  3450. msgid "The following packages can not be installed because of an incompatible Cura version:"
  3451. msgstr "下列套件因 Cura 版本不相容,無法安裝:"
  3452. msgctxt "@label"
  3453. msgid "The following packages will be added:"
  3454. msgstr "將新增下列套件:"
  3455. msgctxt "@label"
  3456. msgid "The following printers in your account have been added in Cura:"
  3457. msgstr "下列您帳號中的印表機已新增至 Cura:"
  3458. msgctxt "@title:header"
  3459. msgid "The following printers will receive the new material profiles:"
  3460. msgstr "下述的印表機將新增新的線材設定檔:"
  3461. msgctxt "@info:tooltip"
  3462. msgid "The following script is active:"
  3463. msgid_plural "The following scripts are active:"
  3464. msgstr[0] "下列為啟用中的腳本:"
  3465. msgctxt "@label"
  3466. msgid "The following settings define the strength of your part."
  3467. msgstr ""
  3468. msgctxt "@info:status"
  3469. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  3470. msgstr "模型區域顯示已遺失或突出表面, 請修復您的模型並重新匯入Cura."
  3471. msgctxt "@tooltip"
  3472. msgid "The material in this extruder."
  3473. msgstr "該擠出機中的線材。"
  3474. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3475. 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."
  3476. msgstr ""
  3477. msgctxt "@info:tooltip"
  3478. msgid "The maximum distance of each pixel from \"Base.\""
  3479. msgstr "每個像素與底板的最大距離。"
  3480. msgctxt "@label (%1 is a number)"
  3481. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3482. msgstr "新的線材直徑設定為 %1 mm,這與目前的擠出機不相容。你要繼續嗎?"
  3483. msgctxt "@tooltip"
  3484. msgid "The nozzle inserted in this extruder."
  3485. msgstr "該擠出機所使用的噴頭。"
  3486. msgctxt "@label"
  3487. msgid ""
  3488. "The pattern of the infill material of the print:\n"
  3489. "\n"
  3490. "For quick prints of non functional model choose line, zig zag or lightning infill.\n"
  3491. "\n"
  3492. "For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n"
  3493. "\n"
  3494. "For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  3495. msgstr ""
  3496. msgctxt "@info:tooltip"
  3497. 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."
  3498. msgstr "光線穿透 1mm 厚度列印件的百分比。降低此值可增加暗部的對比度,並降低亮部的對比度。"
  3499. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3500. msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file."
  3501. msgstr ""
  3502. msgctxt "@info:title"
  3503. msgid "The print job was successfully submitted"
  3504. msgstr ""
  3505. msgctxt "@label"
  3506. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  3507. msgstr "已分配到印表機 %1,但列印工作含有未知的線材設定。"
  3508. msgctxt "@label"
  3509. msgid "The printer at this address has not responded yet."
  3510. msgstr "此位址的印表機尚未回應。"
  3511. msgctxt "@label"
  3512. msgid "The printer at this address has not yet responded."
  3513. msgstr "該網路位址的印表機尚無回應。"
  3514. msgctxt "@info:status"
  3515. msgid "The printer is not connected."
  3516. msgstr "尚未連線到印表機。"
  3517. msgctxt "@label"
  3518. msgid "The printer(s) below cannot be connected because they are part of a group"
  3519. msgstr "下列印表機因為是群組的一部份導致無法連接"
  3520. msgctxt "@message"
  3521. msgid "The provided state is not correct."
  3522. msgstr "提供的狀態不正確。"
  3523. msgctxt "@text:window"
  3524. msgid "The release notes could not be opened."
  3525. msgstr "發佈通知無法開啟."
  3526. msgctxt "@text:error"
  3527. msgid "The response from Digital Factory appears to be corrupted."
  3528. msgstr "從Digital Factory的回應似乎已損壞."
  3529. msgctxt "@text:error"
  3530. msgid "The response from Digital Factory is missing important information."
  3531. msgstr "從Digital Factory的回應似乎遺漏重要資訊."
  3532. msgctxt "@tooltip"
  3533. 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."
  3534. msgstr "熱床的目標溫度。熱床將加熱或冷卻至此溫度。若設定為 0,則不使用熱床。"
  3535. msgctxt "@tooltip"
  3536. 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."
  3537. msgstr "加熱頭的目標溫度。加熱頭將加熱或冷卻至此溫度。若設定為 0,則關閉加熱頭的加熱。"
  3538. msgctxt "@tooltip of temperature input"
  3539. msgid "The temperature to pre-heat the bed to."
  3540. msgstr "熱床的預熱溫度。"
  3541. msgctxt "@tooltip of temperature input"
  3542. msgid "The temperature to pre-heat the hotend to."
  3543. msgstr "加熱頭預熱溫度。"
  3544. msgctxt "@text"
  3545. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  3546. msgstr "外觀參數是設計來列印較高品質形狀和表面的視覺性原型和模型。"
  3547. msgctxt "@info:tooltip"
  3548. msgid "The width in millimeters on the build plate"
  3549. msgstr ""
  3550. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3551. msgid "Theme*:"
  3552. msgstr ""
  3553. msgctxt "@info:status"
  3554. msgid "There are no file formats available to write with!"
  3555. msgstr "沒有可供寫入的檔案格式!"
  3556. msgctxt "@label"
  3557. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  3558. msgstr "目前沒有列印作業在隊列中。可透過切片並傳送列印作來增加一個。"
  3559. msgctxt "@tooltip"
  3560. msgid "There are no profiles matching the configuration of this extruder."
  3561. msgstr "目前無對應此擠出機的配置設定."
  3562. msgctxt "@info:status"
  3563. msgid "There is no active printer yet."
  3564. msgstr "尚未啟動列印機."
  3565. msgctxt "@label"
  3566. msgid "There is no printer found over your network."
  3567. msgstr "在你的網路上找不到印表機。"
  3568. msgctxt "@error"
  3569. msgid "There is no workspace yet to write. Please add a printer first."
  3570. msgstr "無工作區可寫入,請先添加一部印表機."
  3571. msgctxt "@info:backup_status"
  3572. msgid "There was an error trying to restore your backup."
  3573. msgstr "嘗試恢復備份時發生錯誤。"
  3574. msgctxt "@info:backup_status"
  3575. msgid "There was an error while creating your backup."
  3576. msgstr "建立備份時發生了錯誤。"
  3577. msgctxt "@info:backup_status"
  3578. msgid "There was an error while uploading your backup."
  3579. msgstr "上傳你的備份時發生錯誤。"
  3580. msgctxt "@label"
  3581. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3582. msgstr "由於無法識別 %1,因此無法使用此設定。 請連上 %2 下載正確的線材參數設定。"
  3583. msgctxt "@text:window"
  3584. msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?"
  3585. msgstr ""
  3586. msgctxt "@text:window"
  3587. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3588. msgstr "這是一個 Cura 專案檔案。你想將其作為一個專案開啟還是從中匯入模型?"
  3589. msgctxt "@label"
  3590. msgid "This material is linked to %1 and shares some of its properties."
  3591. msgstr "此線材與 %1 相關聯,並共享其部份屬性。"
  3592. msgctxt "@label"
  3593. msgid "This package will be installed after restarting."
  3594. msgstr "此套件將在重新啟動後安裝。"
  3595. msgctxt "@label"
  3596. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3597. msgstr "無法添加此印表機,因為它是未知的印表機,或者它不是印表機群組的主機。"
  3598. msgctxt "info:status"
  3599. msgid "This printer is not linked to the Digital Factory:"
  3600. msgid_plural "These printers are not linked to the Digital Factory:"
  3601. msgstr[0] "印表機未連到 Digital Factory:"
  3602. msgctxt "@status"
  3603. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3604. msgstr "此印表機未連接到你的帳號。請前往 Ultimaker Digital Factory 建立連接。"
  3605. msgctxt "@label"
  3606. msgid "This printer is not set up to host a group of printers."
  3607. msgstr "此印表機未被設定為管理印表機群組。"
  3608. msgctxt "@label"
  3609. msgid "This printer is the host for a group of %1 printers."
  3610. msgstr "此印表機為 %1 印表機群組的管理者。"
  3611. #, python-brace-format
  3612. msgctxt "@info:status Don't translate the XML tags <filename>!"
  3613. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  3614. msgstr "列印參數 <filename>{0}</filename> 含有不正確的資料,無法匯入。"
  3615. msgctxt "@action:label"
  3616. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3617. msgstr "此列印參數使用印表機指定的預設值,因此在下面的清單中沒有此設定項。"
  3618. msgctxt "@label"
  3619. msgid "This project contains materials or plugins that are currently not installed in Cura.<br/>Install the missing packages and reopen the project."
  3620. msgstr ""
  3621. msgctxt "@label"
  3622. msgid ""
  3623. "This setting has a value that is different from the profile.\n"
  3624. "\n"
  3625. "Click to restore the value of the profile."
  3626. msgstr ""
  3627. "此設定的值與列印參數不同。\n"
  3628. "\n"
  3629. "單擊以復原列印參數的值。"
  3630. msgctxt "@item:tooltip"
  3631. msgid "This setting has been hidden by the active machine and will not be visible."
  3632. msgstr ""
  3633. msgctxt "@item:tooltip %1 is list of setting names"
  3634. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3635. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3636. msgstr[0] ""
  3637. msgctxt "@label"
  3638. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3639. msgstr "這個設定是所有擠出機共用的。修改它會同時更動到所有擠出機的值。"
  3640. msgctxt "@label"
  3641. msgid ""
  3642. "This setting is normally calculated, but it currently has an absolute value set.\n"
  3643. "\n"
  3644. "Click to restore the calculated value."
  3645. msgstr ""
  3646. "這個設定通常由計算得出,可是它目前被設定為一個數值。\n"
  3647. "\n"
  3648. "點擊以恢復計算得出的數值。"
  3649. msgctxt "@label"
  3650. msgid "This setting is not used because all the settings that it influences are overridden."
  3651. msgstr "此設定未被使用,因為受它影響的設定都被覆寫了。"
  3652. msgctxt "@label"
  3653. msgid "This setting is resolved from conflicting extruder-specific values:"
  3654. msgstr "此設定是透過解決擠出機設定值衝突獲得:"
  3655. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3656. msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk."
  3657. msgstr ""
  3658. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3659. msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk."
  3660. msgstr ""
  3661. msgctxt "@info:warning"
  3662. msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}"
  3663. msgstr ""
  3664. msgctxt "@label"
  3665. msgid "Time estimation"
  3666. msgstr "時間估計"
  3667. msgctxt "@message"
  3668. msgid "Timeout when authenticating with the account server."
  3669. msgstr "在向帳戶伺服器進行身分驗證時逾時."
  3670. msgctxt "@text"
  3671. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3672. msgstr "為了自動將線材設定檔與所有連接到 Digital Factory 的列印機同步,您必須先從Cura進行登入."
  3673. #, python-brace-format
  3674. msgctxt "info:status"
  3675. msgid "To establish a connection, please visit the {website_link}"
  3676. msgstr "要建立連線,請前往 {website_link}"
  3677. msgctxt "@label"
  3678. 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."
  3679. msgstr "為了確保列印品質出色,你現在可以開始調整你的列印平台。當你點擊「移動到下一個位置」時,噴頭將移動到不同的可調節位置。"
  3680. msgctxt "@label"
  3681. 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."
  3682. msgstr "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。"
  3683. #, python-brace-format
  3684. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3685. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3686. msgstr "要永久移除 {printer_name},請前往 {digital_factory_link}"
  3687. msgctxt "@action:inmenu"
  3688. msgid "Toggle Full Screen"
  3689. msgstr "切換全螢幕"
  3690. msgctxt "@label"
  3691. msgid "Top / Bottom"
  3692. msgstr "頂 / 底層"
  3693. msgctxt "@action:inmenu menubar:view"
  3694. msgid "Top View"
  3695. msgstr "上視圖"
  3696. msgctxt "@info:tooltip"
  3697. msgid "Top View"
  3698. msgstr "上視圖"
  3699. msgctxt "@label"
  3700. msgid "Total print time"
  3701. msgstr "總列印時間"
  3702. msgctxt "@action:tooltip"
  3703. msgid "Track the print in Ultimaker Digital Factory"
  3704. msgstr "在Ultimaker Digital Factory中追蹤您的列印"
  3705. msgctxt "@item:inlistbox"
  3706. msgid "Translucency"
  3707. msgstr "半透明"
  3708. msgctxt "@tooltip"
  3709. msgid "Travel"
  3710. msgstr "移動"
  3711. msgctxt "@label"
  3712. msgid "Travels"
  3713. msgstr "移動軌跡"
  3714. msgctxt "@info:backup_failed"
  3715. msgid "Tried to restore a Cura backup that is higher than the current version."
  3716. msgstr "嘗試復原新版本的Cura備份。"
  3717. msgctxt "@info:backup_failed"
  3718. msgid "Tried to restore a Cura backup without having proper data or meta data."
  3719. msgstr "嘗試復原Cura 備份(若無proper data或meta data)。"
  3720. msgctxt "name"
  3721. msgid "Trimesh Reader"
  3722. msgstr "Trimesh 讀取器"
  3723. msgctxt "@button"
  3724. msgid "Troubleshooting"
  3725. msgstr "故障排除"
  3726. msgctxt "@label"
  3727. msgid "Troubleshooting"
  3728. msgstr "故障排除"
  3729. msgctxt "@button"
  3730. msgid "Try again"
  3731. msgstr "再試一次"
  3732. msgctxt "@action:label"
  3733. msgid "Type"
  3734. msgstr "類型"
  3735. msgctxt "@label"
  3736. msgid "Type"
  3737. msgstr "類型"
  3738. msgctxt "name"
  3739. msgid "UFP Reader"
  3740. msgstr "UFP 讀取器"
  3741. msgctxt "name"
  3742. msgid "UFP Writer"
  3743. msgstr "UFP 寫入器"
  3744. msgctxt "@item:inmenu"
  3745. msgid "USB printing"
  3746. msgstr "USB 連線列印"
  3747. msgctxt "name"
  3748. msgid "USB printing"
  3749. msgstr "USB 連線列印"
  3750. msgctxt "@button"
  3751. msgid "UltiMaker Account"
  3752. msgstr "UltiMaker 帳號"
  3753. msgctxt "@info"
  3754. msgid "UltiMaker Certified Material"
  3755. msgstr ""
  3756. msgctxt "@text:window"
  3757. 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:"
  3758. msgstr "UltiMaker Cura 搜集匿名資料以提高列印品質和使用者體驗。以下是共享資料的範例:"
  3759. msgctxt "@item:inlistbox"
  3760. msgid "UltiMaker Format Package"
  3761. msgstr "UltiMaker 格式的封包"
  3762. msgctxt "name"
  3763. msgid "UltiMaker Network Connection"
  3764. msgstr "UltiMaker 網絡連線"
  3765. msgctxt "@info"
  3766. msgid "UltiMaker Verified Package"
  3767. msgstr ""
  3768. msgctxt "@info"
  3769. msgid "UltiMaker Verified Plug-in"
  3770. msgstr ""
  3771. msgctxt "name"
  3772. msgid "UltiMaker machine actions"
  3773. msgstr ""
  3774. msgctxt "@button"
  3775. msgid "UltiMaker printer"
  3776. msgstr ""
  3777. msgctxt "@label:button"
  3778. msgid "UltiMaker support"
  3779. msgstr "UltiMaker 支援"
  3780. msgctxt "info:name"
  3781. msgid "Ultimaker Digital Factory"
  3782. msgstr "Ultimaker Digital Factory"
  3783. msgctxt "name"
  3784. msgid "Ultimaker Digital Library"
  3785. msgstr "UltiMaker 數位博物館"
  3786. msgctxt "@info:status"
  3787. msgid "Unable to add the profile."
  3788. msgstr "無法新增列印參數。"
  3789. msgctxt "@info:status"
  3790. msgid "Unable to find a location within the build volume for all objects"
  3791. msgstr "無法在列印範圍內放下全部物件"
  3792. #, python-brace-format
  3793. msgctxt "@info:plugin_failed"
  3794. msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}"
  3795. msgstr ""
  3796. #, python-brace-format
  3797. msgctxt "@info:plugin_failed"
  3798. msgid ""
  3799. "Unable to kill running EnginePlugin: {self._plugin_id}\n"
  3800. "Access is denied."
  3801. msgstr ""
  3802. msgctxt "@info"
  3803. msgid "Unable to reach the UltiMaker account server."
  3804. msgstr "無法連上 UltiMaker 帳號伺服器。"
  3805. msgctxt "@text"
  3806. msgid "Unable to read example data file."
  3807. msgstr "無法讀取範例資料檔案."
  3808. msgctxt "@info:title"
  3809. msgid "Unable to slice"
  3810. msgstr "無法切片"
  3811. msgctxt "@label:PrintjobStatus"
  3812. msgid "Unable to slice"
  3813. msgstr "無法切片"
  3814. msgctxt "@info:status"
  3815. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  3816. msgstr "無法切片(原因:換料塔或主位置無效)。"
  3817. #, python-format
  3818. msgctxt "@info:status"
  3819. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  3820. msgstr "有物件使用了被停用的擠出機 %s ,因此無法進行切片。"
  3821. #, python-brace-format
  3822. msgctxt "@info:status"
  3823. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  3824. msgstr "因部份模型設定問題無法進行切片。部份模型的下列設定有錯誤:{error_labels}"
  3825. msgctxt "@info:status"
  3826. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  3827. msgstr "無法使用目前線材切片,因為它與所選機器或設定不相容。"
  3828. #, python-brace-format
  3829. msgctxt "@info:status"
  3830. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  3831. msgstr "無法使用目前設定進行切片。以下設定存在錯誤:{0}"
  3832. msgctxt "@info"
  3833. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  3834. msgstr "無法開始新的登入程序。檢查是否有其他登入仍在進行中。"
  3835. #, python-brace-format
  3836. msgctxt "@info:error"
  3837. msgid "Unable to write to file: {0}"
  3838. msgstr ""
  3839. msgctxt "@label:status"
  3840. msgid "Unavailable"
  3841. msgstr "無法使用"
  3842. msgctxt "@label"
  3843. msgid "Unavailable printer"
  3844. msgstr "無法使用的印表機"
  3845. msgctxt "@action:inmenu menubar:edit"
  3846. msgid "Ungroup Models"
  3847. msgstr "取消模型群組"
  3848. msgctxt "@button"
  3849. msgid "Uninstall"
  3850. msgstr ""
  3851. msgctxt "@title:column Unit of measurement"
  3852. msgid "Unit"
  3853. msgstr ""
  3854. msgctxt "@item:inlistbox"
  3855. msgid "Universal Cura Project"
  3856. msgstr ""
  3857. msgctxt "@action:description Don't translate 'Universal Cura Project'"
  3858. msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing."
  3859. msgstr ""
  3860. msgctxt "@label Description for development tool"
  3861. msgid "Universal build system configuration"
  3862. msgstr ""
  3863. msgctxt "@label"
  3864. msgid "Unknown"
  3865. msgstr "未知"
  3866. msgctxt "@label unknown version of Cura"
  3867. msgid "Unknown"
  3868. msgstr "未知"
  3869. msgctxt "@label:property"
  3870. msgid "Unknown Author"
  3871. msgstr ""
  3872. msgctxt "@label:property"
  3873. msgid "Unknown Package"
  3874. msgstr ""
  3875. #, python-brace-format
  3876. msgctxt "@error:send"
  3877. msgid "Unknown error code when uploading print job: {0}"
  3878. msgstr "不明上傳列印作業錯誤代碼:{0}"
  3879. msgctxt "@text"
  3880. msgid "Unknown error."
  3881. msgstr "未知的錯誤."
  3882. msgctxt "@label"
  3883. msgid "Unlink Material"
  3884. msgstr "解除聯結線材"
  3885. msgctxt "@label:status"
  3886. msgid "Unreachable"
  3887. msgstr "無法連接"
  3888. msgctxt "@label"
  3889. msgid "Untitled"
  3890. msgstr "無標題"
  3891. msgctxt "@text Print job name"
  3892. msgid "Untitled"
  3893. msgstr "無標題"
  3894. msgctxt "@button"
  3895. msgid "Update"
  3896. msgstr ""
  3897. msgctxt "@action"
  3898. msgid "Update Firmware"
  3899. msgstr "更新韌體"
  3900. msgctxt "@title"
  3901. msgid "Update Firmware"
  3902. msgstr "更新韌體"
  3903. msgctxt "@action:ComboBox Update/override existing profile"
  3904. msgid "Update existing"
  3905. msgstr "更新已有設定"
  3906. msgctxt "@action:tooltip"
  3907. msgid "Update profile with current settings/overrides"
  3908. msgstr ""
  3909. msgctxt "@action:button"
  3910. msgid "Update profile."
  3911. msgstr ""
  3912. msgctxt "@info:title"
  3913. msgid "Update your printer"
  3914. msgstr "更新你印表機"
  3915. msgctxt "@label"
  3916. msgid "Updates"
  3917. msgstr "更新"
  3918. msgctxt "@label"
  3919. msgid "Updating firmware."
  3920. msgstr "更新韌體中..."
  3921. msgctxt "@button"
  3922. msgid "Updating..."
  3923. msgstr ""
  3924. msgctxt "description"
  3925. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3926. msgstr "將設定從 Cura 2.1 版本升級至 2.2 版本。"
  3927. msgctxt "description"
  3928. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  3929. msgstr "將設定從 Cura 2.2 版本升級至 2.4 版本。"
  3930. msgctxt "description"
  3931. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3932. msgstr "將設定從 Cura 2.5 版本升級至 2.6 版本。"
  3933. msgctxt "description"
  3934. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3935. msgstr "將設定從 Cura 2.6 版本升級至 2.7 版本。"
  3936. msgctxt "description"
  3937. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3938. msgstr "將設定從 Cura 2.7 版本升級至 3.0 版本。"
  3939. msgctxt "description"
  3940. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3941. msgstr "將設定從 Cura 3.0 版本升級至 3.1 版本。"
  3942. msgctxt "description"
  3943. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3944. msgstr "將設定從 Cura 3.2 版本升級至 3.3 版本。"
  3945. msgctxt "description"
  3946. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3947. msgstr "將設定從 Cura 3.3 版本升級至 3.4 版本。"
  3948. msgctxt "description"
  3949. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  3950. msgstr "將設定從 Cura 3.4 版本升級至 3.5 版本。"
  3951. msgctxt "description"
  3952. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3953. msgstr "將設定從 Cura 3.5 版本升級至 4.0 版本。"
  3954. msgctxt "description"
  3955. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3956. msgstr "將設定從 Cura 4.0 版本升級至 4.1 版本。"
  3957. msgctxt "description"
  3958. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3959. msgstr "將設定從 Cura 4.1 版本升級至 4.2 版本。"
  3960. msgctxt "description"
  3961. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3962. msgstr "將設定從 Cura 4.11 版本升級至 4.12 版本。"
  3963. msgctxt "description"
  3964. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  3965. msgstr ""
  3966. msgctxt "description"
  3967. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3968. msgstr "將設定從 Cura 4.2 版本升級至 4.3 版本。"
  3969. msgctxt "description"
  3970. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3971. msgstr "將設定從 Cura 4.3 版本升級至 4.4 版本。"
  3972. msgctxt "description"
  3973. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3974. msgstr "將設定從 Cura 4.4 版本升級至 4.5 版本。"
  3975. msgctxt "description"
  3976. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3977. msgstr "將設定從 Cura 4.5 版本升級至 4.6 版本。"
  3978. msgctxt "description"
  3979. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3980. msgstr "將設定從 Cura 4.6.0 版本升級至 4.6.2 版本。"
  3981. msgctxt "description"
  3982. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  3983. msgstr "將設定從 Cura 4.6.2 版本升級至 4.7 版本。"
  3984. msgctxt "description"
  3985. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3986. msgstr "將設定從 Cura 4.7 版本升級至 4.8 版本。"
  3987. msgctxt "description"
  3988. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3989. msgstr "將設定從 Cura 4.8 版本升級至 4.9 版本。"
  3990. msgctxt "description"
  3991. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3992. msgstr "將設定從 Cura 4.9 版本升級至 4.10 版本。"
  3993. msgctxt "description"
  3994. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3995. msgstr "將設定從 Cura 5.2 版本升級至 5.3 版本。"
  3996. msgctxt "description"
  3997. msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
  3998. msgstr ""
  3999. msgctxt "description"
  4000. msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
  4001. msgstr ""
  4002. msgctxt "description"
  4003. msgid "Upgrades configurations from Cura 5.6 to Cura 5.7."
  4004. msgstr ""
  4005. msgctxt "@action:button"
  4006. msgid "Upload custom Firmware"
  4007. msgstr "上傳自訂韌體"
  4008. msgctxt "@info:status"
  4009. msgid "Uploading print job to printer."
  4010. msgstr "正在上傳列印作業到印表機。"
  4011. msgctxt "@info:backup_status"
  4012. msgid "Uploading your backup..."
  4013. msgstr "正在上傳你的備份..."
  4014. msgctxt "@option:check"
  4015. msgid "Use a single instance of Cura"
  4016. msgstr "使用同一 Cura 視窗"
  4017. msgctxt "@label"
  4018. msgid "Use glue for better adhesion with this material combination."
  4019. msgstr "在此線材組合下,使用膠水以獲得較佳的附著。"
  4020. msgctxt "@label"
  4021. msgid "User Agreement"
  4022. msgstr "使用者授權"
  4023. msgctxt "@label Description for application dependency"
  4024. msgid "Utility functions, including an image loader"
  4025. msgstr ""
  4026. msgctxt "@label Description for application dependency"
  4027. msgid "Utility library, including Voronoi generation"
  4028. msgstr ""
  4029. msgctxt "@title:column"
  4030. msgid "Value"
  4031. msgstr ""
  4032. msgctxt "name"
  4033. msgid "Version Upgrade 2.1 to 2.2"
  4034. msgstr "升級版本 2.1 到 2.2"
  4035. msgctxt "name"
  4036. msgid "Version Upgrade 2.2 to 2.4"
  4037. msgstr "升級版本 2.2 到 2.4"
  4038. msgctxt "name"
  4039. msgid "Version Upgrade 2.5 to 2.6"
  4040. msgstr "升級版本 2.5 到 2.6"
  4041. msgctxt "name"
  4042. msgid "Version Upgrade 2.6 to 2.7"
  4043. msgstr "升級版本 2.6 到 2.7"
  4044. msgctxt "name"
  4045. msgid "Version Upgrade 2.7 to 3.0"
  4046. msgstr "升級版本 2.7 到 3.0"
  4047. msgctxt "name"
  4048. msgid "Version Upgrade 3.0 to 3.1"
  4049. msgstr "升級版本 3.0 到 3.1"
  4050. msgctxt "name"
  4051. msgid "Version Upgrade 3.2 to 3.3"
  4052. msgstr "升級版本 3.2 到 3.3"
  4053. msgctxt "name"
  4054. msgid "Version Upgrade 3.3 to 3.4"
  4055. msgstr "升級版本 3.3 到 3.4"
  4056. msgctxt "name"
  4057. msgid "Version Upgrade 3.4 to 3.5"
  4058. msgstr "升級版本 3.4 到 3.5"
  4059. msgctxt "name"
  4060. msgid "Version Upgrade 3.5 to 4.0"
  4061. msgstr "升級版本 3.5 到 4.0"
  4062. msgctxt "name"
  4063. msgid "Version Upgrade 4.0 to 4.1"
  4064. msgstr "升級版本 4.0 到 4.1"
  4065. msgctxt "name"
  4066. msgid "Version Upgrade 4.1 to 4.2"
  4067. msgstr "升級版本 4.1 到 4.2"
  4068. msgctxt "name"
  4069. msgid "Version Upgrade 4.11 to 4.12"
  4070. msgstr "升級版本 4.11 到 4.12"
  4071. msgctxt "name"
  4072. msgid "Version Upgrade 4.13 to 5.0"
  4073. msgstr ""
  4074. msgctxt "name"
  4075. msgid "Version Upgrade 4.2 to 4.3"
  4076. msgstr "升級版本 4.2 到 4.3"
  4077. msgctxt "name"
  4078. msgid "Version Upgrade 4.3 to 4.4"
  4079. msgstr "升級版本 4.3 到 4.4"
  4080. msgctxt "name"
  4081. msgid "Version Upgrade 4.4 to 4.5"
  4082. msgstr "升級版本 4.4 到 4.5"
  4083. msgctxt "name"
  4084. msgid "Version Upgrade 4.5 to 4.6"
  4085. msgstr "升級版本 4.5 到 4.6"
  4086. msgctxt "name"
  4087. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4088. msgstr "升級版本 4.6.0 到 4.6.2"
  4089. msgctxt "name"
  4090. msgid "Version Upgrade 4.6.2 to 4.7"
  4091. msgstr "升級版本 4.6.2 到 4.7"
  4092. msgctxt "name"
  4093. msgid "Version Upgrade 4.7 to 4.8"
  4094. msgstr "升級版本 4.7 到 4.8"
  4095. msgctxt "name"
  4096. msgid "Version Upgrade 4.8 to 4.9"
  4097. msgstr "升級版本 4.8 到 4.9"
  4098. msgctxt "name"
  4099. msgid "Version Upgrade 4.9 to 4.10"
  4100. msgstr "升級版本 4.9 到 4.10"
  4101. msgctxt "name"
  4102. msgid "Version Upgrade 5.2 to 5.3"
  4103. msgstr "升級版本 5.2 到 5.3"
  4104. msgctxt "name"
  4105. msgid "Version Upgrade 5.3 to 5.4"
  4106. msgstr ""
  4107. msgctxt "name"
  4108. msgid "Version Upgrade 5.4 to 5.5"
  4109. msgstr ""
  4110. msgctxt "name"
  4111. msgid "Version Upgrade 5.6 to 5.7"
  4112. msgstr ""
  4113. msgctxt "@button"
  4114. msgid "View printers in Digital Factory"
  4115. msgstr ""
  4116. msgctxt "@label"
  4117. msgid "View type"
  4118. msgstr "檢示類型"
  4119. msgctxt "@label link to technical assistance"
  4120. msgid "View user manuals online"
  4121. msgstr "查看線上使用者手冊"
  4122. msgctxt "@label"
  4123. msgid "Viewport behavior"
  4124. msgstr "顯示區設定"
  4125. msgctxt "@action:inmenu"
  4126. msgid "Visible Settings"
  4127. msgstr "顯示設定"
  4128. msgctxt "@button"
  4129. msgid "Visit plug-in website"
  4130. msgstr ""
  4131. msgctxt "@tooltip:button"
  4132. msgid "Visit the UltiMaker website."
  4133. msgstr "參觀UltiMaker網站."
  4134. msgctxt "@label"
  4135. msgid "Visual"
  4136. msgstr "外觀"
  4137. msgctxt "@label"
  4138. msgid "Waiting for"
  4139. msgstr "等待"
  4140. msgctxt "@label"
  4141. msgid "Waiting for Cloud response"
  4142. msgstr "等待雲端服務回應"
  4143. msgctxt "@button"
  4144. msgid "Waiting for new printers"
  4145. msgstr ""
  4146. msgctxt "@button"
  4147. msgid "Want more?"
  4148. msgstr "想要更多?"
  4149. msgctxt "@info:title"
  4150. msgid "Warning"
  4151. msgstr "警告"
  4152. #, python-brace-format
  4153. msgctxt "@info:status"
  4154. 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."
  4155. msgstr "警告:列印參數無法顯示,因為它的品質類型 '{0}' 無法在目前設定使用。切換到可使用此品質類型的線材/噴頭組合。"
  4156. msgctxt "@text:window"
  4157. 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."
  4158. msgstr "我們已經在你選擇的檔案中找到一個或多個 G-Code 檔案。你一次只能開啟一個 G-Code 檔案。若需開啟 G-Code 檔案,請僅選擇一個。"
  4159. msgctxt "@text:window"
  4160. 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?"
  4161. msgstr "我們已經在你所選擇的檔案中找到一個或多個專案檔案,但一次只能開啟一個專案檔案。我們建議只從那些檔案中匯入模型而不開啟專案。你要繼續操作嗎?"
  4162. msgctxt "@info"
  4163. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  4164. msgstr "網路攝影機無法從UltiMaker Cura中瀏覽,請點擊\"管理列印機\"並從Ultimaker Digital Factory中瀏覽網路攝影機."
  4165. msgctxt "@button"
  4166. msgid "Website"
  4167. msgstr ""
  4168. msgctxt "@label"
  4169. msgid "What printer would you like to setup?"
  4170. msgstr ""
  4171. msgctxt "@info:tooltip"
  4172. msgid "What type of camera navigation should be used?"
  4173. msgstr ""
  4174. msgctxt "@info:tooltip"
  4175. msgid "What type of camera rendering should be used?"
  4176. msgstr "使用哪種類型的攝影機渲染?"
  4177. msgctxt "@action:inmenu menubar:help"
  4178. msgid "What's New"
  4179. msgstr "新功能"
  4180. msgctxt "@label"
  4181. msgid "What's New"
  4182. msgstr "新功能"
  4183. msgctxt "@title:window"
  4184. msgid "What's New"
  4185. msgstr "新功能"
  4186. msgctxt "@info:tooltip"
  4187. msgid "When checking for updates, check for both stable and for beta releases."
  4188. msgstr "當檢查更新時,同時檢查正式版本與測試版本."
  4189. msgctxt "@info:tooltip"
  4190. msgid "When checking for updates, only check for stable releases."
  4191. msgstr "當檢查更新時,只檢查正式版本."
  4192. msgctxt "@info:tooltip"
  4193. 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."
  4194. msgstr "當你對列印參數進行更改然後切換到其他列印參數時,將顯示一個對話框詢問你是否要保留修改。你也可以選擇預設不顯示該對話框。"
  4195. msgctxt "@button"
  4196. msgid "Why do I need to sync material profiles?"
  4197. msgstr "為何我需要同步線材設定檔?"
  4198. msgctxt "@action:label"
  4199. msgid "Width (mm)"
  4200. msgstr "寬度 (mm)"
  4201. msgctxt "description"
  4202. msgid "Writes g-code to a compressed archive."
  4203. msgstr "將 G-code 寫入壓縮檔案。"
  4204. msgctxt "description"
  4205. msgid "Writes g-code to a file."
  4206. msgstr "將 G-code 寫入檔案。"
  4207. msgctxt "@label"
  4208. msgid "X (Width)"
  4209. msgstr "X (寬度)"
  4210. msgctxt "@label"
  4211. msgid "X max"
  4212. msgstr "X 最大值"
  4213. msgctxt "@label"
  4214. msgid "X min"
  4215. msgstr "X 最小值"
  4216. msgctxt "name"
  4217. msgid "X-Ray View"
  4218. msgstr "透視檢視"
  4219. msgctxt "@item:inlistbox"
  4220. msgid "X-Ray view"
  4221. msgstr "透視檢視"
  4222. msgctxt "@label"
  4223. msgid "X/Y"
  4224. msgstr "X/Y"
  4225. msgctxt "@item:inlistbox"
  4226. msgid "X3D File"
  4227. msgstr "X3D 檔案"
  4228. msgctxt "name"
  4229. msgid "X3D Reader"
  4230. msgstr "X3D 讀取器"
  4231. msgctxt "@label"
  4232. msgid "Y (Depth)"
  4233. msgstr "Y (深度)"
  4234. msgctxt "@label"
  4235. msgid "Y max"
  4236. msgstr "Y 最大值"
  4237. msgctxt "@label"
  4238. msgid "Y min"
  4239. msgstr "Y 最小值"
  4240. msgctxt "@info"
  4241. msgid "Yes"
  4242. msgstr ""
  4243. msgctxt "@label"
  4244. msgid ""
  4245. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  4246. "Are you sure you want to continue?"
  4247. msgstr ""
  4248. "你將從 Cura 移除所有印表機。此動作無法復原。\n"
  4249. "你確定要繼續嗎?"
  4250. #, python-brace-format
  4251. msgctxt "@label"
  4252. msgid ""
  4253. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  4254. "Are you sure you want to continue?"
  4255. msgid_plural ""
  4256. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  4257. "Are you sure you want to continue?"
  4258. msgstr[0] ""
  4259. "你將從 Cura 移除 {0} 印表機。此動作無法復原。\n"
  4260. "你確定要繼續嗎?"
  4261. msgctxt "@info:status"
  4262. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  4263. msgstr "你正在嘗試連接到一台未安裝 UltiMaker Connect 的印表機。請將印表機更新至最新版本的韌體。"
  4264. #, python-brace-format
  4265. msgctxt "@info:status"
  4266. 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."
  4267. msgstr "你正在嘗試連接到 {0},但它不是印表機群組的管理者。你可以透過網頁將其設定為印表機群組的管理者。"
  4268. msgctxt "@empty_state"
  4269. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  4270. msgstr "你目前沒有任何備份。 使用「立即備份」按鈕建立一個。"
  4271. msgctxt "@text:window, %1 is a profile name"
  4272. 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'."
  4273. msgstr ""
  4274. msgctxt "@label"
  4275. msgid "You need to accept the license to install the package"
  4276. msgstr "你必需同意授權協議才能安裝套件"
  4277. msgctxt "@info:generic"
  4278. msgid "You need to quit and restart {} before changes have effect."
  4279. msgstr "你需要結束並重新啟動 {} ,更動才能生效。"
  4280. msgctxt "@dialog:info"
  4281. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  4282. msgstr "在復原備份之前,你需要重新啟動 Cura。 你想要現在關閉 Cura 嗎?"
  4283. msgctxt "@info:status"
  4284. msgid "You will receive a confirmation via email when the print job is approved"
  4285. msgstr ""
  4286. msgctxt "@info:backup_status"
  4287. msgid "Your backup has finished uploading."
  4288. msgstr "你的備份上傳完成。"
  4289. msgctxt "@action:label"
  4290. msgid "Your current settings match the selected profile."
  4291. msgstr "你目前的設定與選定的列印參數相匹配。"
  4292. msgctxt "@info"
  4293. msgid "Your new printer will automatically appear in Cura"
  4294. msgstr ""
  4295. #, python-brace-format
  4296. msgctxt "@info:status"
  4297. msgid ""
  4298. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  4299. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  4300. msgstr ""
  4301. "您的列印機 <b>{printer_name}</b> 可以透過雲端連接.\n"
  4302. "\v透過連接Digital Factory使您可以任意管理列印順序及監控列印"
  4303. msgctxt "@label"
  4304. msgid "Z"
  4305. msgstr "Z"
  4306. msgctxt "@label"
  4307. msgid "Z (Height)"
  4308. msgstr "Z (高度)"
  4309. msgctxt "@label Description for application dependency"
  4310. msgid "ZeroConf discovery library"
  4311. msgstr "ZeroConf 發現函式庫"
  4312. msgctxt "@action:button"
  4313. msgid "Zoom toward mouse direction"
  4314. msgstr "跟隨滑鼠方向縮放"
  4315. msgctxt "@info:tooltip"
  4316. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  4317. msgstr "正交透視不支援游標縮放功能。"
  4318. msgctxt "@text Placeholder for the username if it has been deleted"
  4319. msgid "deleted user"
  4320. msgstr ""
  4321. msgctxt "@item:inlistbox"
  4322. msgid "glTF Binary"
  4323. msgstr "glTF Binary"
  4324. msgctxt "@item:inlistbox"
  4325. msgid "glTF Embedded JSON"
  4326. msgstr "glTF Embedded JSON"
  4327. msgctxt "@label"
  4328. msgid "max"
  4329. msgstr "最大值"
  4330. msgctxt "@label"
  4331. msgid "min"
  4332. msgstr "最小值"
  4333. msgctxt "@label"
  4334. msgid "mm"
  4335. msgstr "mm"
  4336. msgctxt "@label"
  4337. msgid "s"
  4338. msgstr ""
  4339. msgctxt "@info:status"
  4340. msgid "today"
  4341. msgstr "今天"
  4342. msgctxt "@info:status"
  4343. msgid "tomorrow"
  4344. msgstr "明天"
  4345. msgctxt "@label"
  4346. msgid "version: %1"
  4347. msgstr "版本:%1"
  4348. #, python-brace-format
  4349. msgctxt "@message {printer_name} is replaced with the name of the printer"
  4350. msgid "{printer_name} will be removed until the next account sync."
  4351. msgstr "{printer_name} 將被移除,直到下次帳號同步之前。"
  4352. msgctxt "@info:generic"
  4353. msgid "{} plugins failed to download"
  4354. msgstr "下載外掛 {} 失敗"
  4355. #~ msgctxt "@action:label"
  4356. #~ msgid ""
  4357. #~ msgstr "使用 "
  4358. #~ msgctxt "@info:generic"
  4359. #~ msgid ""
  4360. #~ "\n"
  4361. #~ "Do you want to sync material and software packages with your account?"
  4362. #~ msgstr ""
  4363. #~ "\n"
  4364. #~ "你要使用 Ultimaker 帳號同步耗材資料和軟體套件嗎?"
  4365. #~ msgctxt "@info:generic"
  4366. #~ msgid ""
  4367. #~ "\n"
  4368. #~ "Syncing..."
  4369. #~ msgstr ""
  4370. #~ "\n"
  4371. #~ "同步中..."
  4372. #~ msgctxt "@label: arg 1 is group name"
  4373. #~ msgid "%1 is not set up to host a group of connected UltiMaker 3 printers"
  4374. #~ msgstr "%1 未設定成管理一組連線的 UltiMaker 3 印表機的主機"
  4375. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  4376. #~ msgid "%1m / ~ %2g"
  4377. #~ msgstr "%1m / ~ %2g"
  4378. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  4379. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  4380. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  4381. #~ msgctxt "@action:inmenu menubar:view"
  4382. #~ msgid "&Build plate"
  4383. #~ msgstr "列印平台(&B)"
  4384. #~ msgctxt "@title:menu"
  4385. #~ msgid "&Build plate"
  4386. #~ msgstr "列印平台(&B)"
  4387. #~ msgctxt "@action:menu"
  4388. #~ msgid "&Marketplace"
  4389. #~ msgstr "市集(&M)"
  4390. #~ msgctxt "@title:settings"
  4391. #~ msgid "&Profile"
  4392. #~ msgstr "列印參數(&P)"
  4393. #~ msgctxt "@action:inmenu menubar:view"
  4394. #~ msgid "&Reset camera position"
  4395. #~ msgstr "重置視角位置"
  4396. #~ msgctxt "@action:inmenu menubar:file"
  4397. #~ msgid "&Save Selection to File"
  4398. #~ msgstr "儲存到檔案(&S)"
  4399. #~ msgctxt "@title:menu menubar:file"
  4400. #~ msgid "&Save..."
  4401. #~ msgstr "儲存(&S)"
  4402. #~ msgctxt "@title:menu"
  4403. #~ msgid "&Settings"
  4404. #~ msgstr "設定(&S)"
  4405. #~ msgctxt "@title:menu menubar:toplevel"
  4406. #~ msgid "&Toolbox"
  4407. #~ msgstr "工具箱(&T)"
  4408. #~ msgctxt "@title:menu"
  4409. #~ msgid "&View"
  4410. #~ msgstr "檢視(&V)"
  4411. #~ msgctxt "@text"
  4412. #~ msgid "- Customize your experience with more print profiles and plugins"
  4413. #~ msgstr "- 使用更多的列印參數設定和外掛訂做你的使用體驗"
  4414. #~ msgctxt "@text"
  4415. #~ msgid ""
  4416. #~ "- Customize your experience with more print profiles and plugins\n"
  4417. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  4418. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  4419. #~ msgstr ""
  4420. #~ "- 使用更多的列印參數設定和外掛訂做你的使用體驗\n"
  4421. #~ "- 通過同步設定可在任何地方將其載入以保持靈活性\n"
  4422. #~ "- 透過 Ultimaker 印表機上的遠端工作流程提高效率"
  4423. #~ msgctxt "@text"
  4424. #~ msgid "- Get exclusive access to print profiles from leading brands"
  4425. #~ msgstr "- 取得領導品牌的耗材參數設定的獨家存取權限"
  4426. #~ msgctxt "@text"
  4427. #~ msgid "- Increase efficiency with a remote workflow on UltiMaker printers"
  4428. #~ msgstr "- 透過 UltiMaker 印表機上的遠端工作流程提高效率"
  4429. #~ msgctxt "@text"
  4430. #~ msgid "- Send print jobs to UltiMaker printers outside your local network"
  4431. #~ msgstr "- 將列印作業傳送到你區域網路外的 UltiMaker 印表機"
  4432. #~ msgctxt "@text"
  4433. #~ msgid ""
  4434. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  4435. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  4436. #~ "- Get exclusive access to material profiles from leading brands"
  4437. #~ msgstr ""
  4438. #~ "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機\n"
  4439. #~ "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用\n"
  4440. #~ "- 取得領導品牌的耗材參數設定的獨家存取權限"
  4441. #~ msgctxt "@text"
  4442. #~ msgid ""
  4443. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  4444. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  4445. #~ "- Get exclusive access to print profiles from leading brands"
  4446. #~ msgstr ""
  4447. #~ "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機\n"
  4448. #~ "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用\n"
  4449. #~ "- 取得領導品牌的耗材參數設定的獨家存取權限"
  4450. #~ msgctxt "@text"
  4451. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  4452. #~ msgstr "- 通過同步設定可在任何地方將其載入以保持靈活性"
  4453. #~ msgctxt "@text"
  4454. #~ msgid "- Store your UltiMaker Cura settings in the cloud for use anywhere"
  4455. #~ msgstr "- 將你的 UltiMaker Cura 設定儲存在雲端以便隨處使用"
  4456. #, python-brace-format
  4457. #~ msgctxt "info:{0} gets replaced by a number of printers"
  4458. #~ msgid "... and {0} other"
  4459. #~ msgid_plural "... and {0} others"
  4460. #~ msgstr[0] "… 和 {0} 其他"
  4461. #~ msgctxt "@label"
  4462. #~ msgid "0%"
  4463. #~ msgstr "0%"
  4464. #~ msgctxt "@label Hours and minutes"
  4465. #~ msgid "00h 00min"
  4466. #~ msgstr "00 小時 00 分"
  4467. #~ msgctxt "@label"
  4468. #~ msgid "100%"
  4469. #~ msgstr "100%"
  4470. #~ msgctxt "@label"
  4471. #~ msgid "20%"
  4472. #~ msgstr "20%"
  4473. #~ msgctxt "@label"
  4474. #~ msgid "50%"
  4475. #~ msgstr "50%"
  4476. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  4477. #~ msgid "<a href='%1'>Buy material spools</a>"
  4478. #~ msgstr "<a href='%1'>購買線材線軸</a>"
  4479. #~ msgctxt "@label"
  4480. #~ msgid "<a href='%1'>Check compatibility</a>"
  4481. #~ msgstr "<a href='%1'>檢查耗材相容性</a>"
  4482. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  4483. #~ msgid "<a href='%1'>Log in</a> is required to install or update"
  4484. #~ msgstr "需要<a href='%1'>登入</a>才能進行安裝或升級"
  4485. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  4486. #~ msgid "<a href='%1'>Log in</a> is required to update"
  4487. #~ msgstr "需要<a href='%1'>登入</a>才能進行升級"
  4488. #~ msgctxt "@label Cura version"
  4489. #~ msgid "<b>Cura version:</b> {version}<br/>"
  4490. #~ msgstr "<b>Cura 版本:</b> {version}<br/>"
  4491. #~ msgctxt "@tooltip"
  4492. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  4493. #~ msgstr "<b>自訂列印設定</b> <br/>對切片過程中的每一個細節進行精細控制。"
  4494. #~ msgctxt "@label OpenGL"
  4495. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  4496. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  4497. #~ msgctxt "@label Platform"
  4498. #~ msgid "<b>Platform:</b> {platform}<br/>"
  4499. #~ msgstr "<b>平台:</b> {platform}<br/>"
  4500. #~ msgctxt "@label PyQt version"
  4501. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  4502. #~ msgstr "<b>PyQt 版本:</b> {pyqt}<br/>"
  4503. #~ msgctxt "@label Qt version"
  4504. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  4505. #~ msgstr "<b>Qt 版本:</b> {qt}<br/>"
  4506. #~ msgctxt "@tooltip"
  4507. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  4508. #~ msgstr "<b>推薦的列印設定</b> <br/> <br/>使用針對所選印表機、耗材和品質的推薦設定進行列印。"
  4509. #~ msgctxt "@tooltip"
  4510. #~ msgid "<b>Time specification</b><br/><table>"
  4511. #~ msgstr "<b>時間資訊</b><br/><table>"
  4512. #~ msgctxt "info:hidden list items"
  4513. #~ msgid "<li>... and {} others</li>"
  4514. #~ msgstr "<li>... 和 {} 其他</li>"
  4515. #~ msgctxt "@label crash message"
  4516. #~ msgid ""
  4517. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  4518. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  4519. #~ " "
  4520. #~ msgstr ""
  4521. #~ "<p><b>發生致命錯誤。請將錯誤報告傳送給我們以便修正此問題。</p></b>\n"
  4522. #~ " <p>請使用\"送出報告\"按鈕自動發送一份問題報告給我們的伺服器</p>\n"
  4523. #~ " "
  4524. #~ msgctxt "@label crash message"
  4525. #~ msgid ""
  4526. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  4527. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  4528. #~ " "
  4529. #~ msgstr ""
  4530. #~ "<p><b>程式發生了致命異常。請將錯誤報告傳送給我們以解決這個問題</p></b>\n"
  4531. #~ " <p>請使用「送出報告」按鈕將錯誤報告自動發送到我們的伺服器</p>\n"
  4532. #~ " "
  4533. #~ msgctxt "@label"
  4534. #~ msgid ""
  4535. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  4536. #~ " <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"
  4537. #~ " "
  4538. #~ msgstr ""
  4539. #~ "<p>發生了致命錯誤,我們無法繼續!</p>\n"
  4540. #~ " <p>請利用下方資訊回報錯誤到 <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  4541. #~ " "
  4542. #~ msgctxt "info:status"
  4543. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  4544. #~ msgstr "<ul>{}</ul>要建立連線,請前往 <a href='https://mycloud.UltiMaker.com/'>Ultimaker Digital Factory</a>。"
  4545. #~ msgctxt "@tooltip"
  4546. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  4547. #~ msgstr "目前正使用自訂列印參數。若要使用品質滑動條,在自訂分頁中選擇預設的列印參數"
  4548. #~ msgctxt "@action:button"
  4549. #~ msgid "Abort"
  4550. #~ msgstr "取消"
  4551. #~ msgctxt "@label:"
  4552. #~ msgid "Abort Print"
  4553. #~ msgstr "中斷列印"
  4554. #~ msgctxt "@label:MonitorStatus"
  4555. #~ msgid "Aborting print..."
  4556. #~ msgstr "中斷列印..."
  4557. #~ msgctxt "@title:window"
  4558. #~ msgid "About "
  4559. #~ msgstr "關於 "
  4560. #~ msgctxt "@title:window"
  4561. #~ msgid "About Cura"
  4562. #~ msgstr "關於 Cura"
  4563. #~ msgctxt "@action:button"
  4564. #~ msgid "Accept"
  4565. #~ msgstr "接受"
  4566. #~ msgctxt "description"
  4567. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  4568. #~ msgstr "接受 G-Code 並透過 WiFi 將其發送到 Doodle3D 無線網路盒。"
  4569. #~ msgctxt "@info:status"
  4570. #~ msgid "Access request failed due to a timeout."
  4571. #~ msgstr "存取請求超時失敗。"
  4572. #~ msgctxt "@info:status"
  4573. #~ msgid "Access request was denied on the printer."
  4574. #~ msgstr "存取請求被印表機上拒絕。"
  4575. #~ msgctxt "@info:status"
  4576. #~ msgid "Access to the printer accepted"
  4577. #~ msgstr "印表機接受了存取請求"
  4578. #~ msgctxt "@info:status"
  4579. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  4580. #~ msgstr "已發送印表機存取請求,請在印表機上批准該請求"
  4581. #~ msgctxt "@action:button"
  4582. #~ msgid "Activate Configuration"
  4583. #~ msgstr "啟用設定"
  4584. #~ msgctxt "@action:button"
  4585. #~ msgid "Add Printer"
  4586. #~ msgstr "新增印表機"
  4587. #~ msgctxt "@title:tab"
  4588. #~ msgid "Add a printer to Cura"
  4589. #~ msgstr "新增印表機到 Cura"
  4590. #~ msgctxt "@label"
  4591. #~ msgid "Add cloud printer"
  4592. #~ msgstr "新增雲端印表機"
  4593. #~ msgctxt "@label link to connect manager"
  4594. #~ msgid "Add/Remove printers"
  4595. #~ msgstr "新增/移除印表機"
  4596. #~ msgctxt "info:status"
  4597. #~ msgid "Adding printer {} ({}) from your account"
  4598. #~ msgstr "從你的帳號新增印表機 {} ({})"
  4599. #~ msgctxt "@info"
  4600. #~ msgid "All jobs are printed."
  4601. #~ msgstr "所有列印作業已完成。"
  4602. #~ msgctxt "@action:button"
  4603. #~ msgid "Allow"
  4604. #~ msgstr "允許"
  4605. #~ msgctxt "@action:tooltip"
  4606. #~ 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."
  4607. #~ msgstr "允許 Cura 以匿名方式傳送使用狀況統計資料,用來協助 Cura 的未來改善工作。你的部份偏好設定和參數,Cura 的版本及你切片模型的雜湊值會被傳送。"
  4608. #~ msgctxt "@text:window"
  4609. #~ msgid "Allow sending these data to UltiMaker and help us improve Cura"
  4610. #~ msgstr "允許將這些資料傳送給 UltiMaker 並協助我們改進 Cura"
  4611. #~ msgctxt "@text:window"
  4612. #~ msgid "Allow sending this data to UltiMaker and help us improve Cura"
  4613. #~ msgstr "允許將這些資料傳送給 UltiMaker 以協助我們改進 Cura"
  4614. #~ msgctxt "description"
  4615. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  4616. #~ msgstr "允許耗材製造商使用下拉式 UI 建立新的耗材和品質設定參數。"
  4617. #~ msgctxt "description"
  4618. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  4619. #~ msgstr "允許將切片結果儲存為 X3G 檔案,以支援讀取此格式的印表機(Malyan,Makerbot 和其他以 Sailfish 為原型的印表機)。"
  4620. #~ msgctxt "@label"
  4621. #~ msgid "Aluminum"
  4622. #~ msgstr "鋁"
  4623. #~ msgctxt "@option:curaSolidworksStlQuality"
  4624. #~ msgid "Always ask"
  4625. #~ msgstr "總是詢問"
  4626. #~ msgctxt "@option:openProject"
  4627. #~ msgid "Always ask"
  4628. #~ msgstr "總是詢問"
  4629. #~ msgctxt "@option:curaSolidworksStlQuality"
  4630. #~ msgid "Always use Coarse quality"
  4631. #~ msgstr "總是使用粗糙品質"
  4632. #~ msgctxt "@option:curaSolidworksStlQuality"
  4633. #~ msgid "Always use Fine quality"
  4634. #~ msgstr "總是使用精細品質"
  4635. #~ msgctxt "@label"
  4636. #~ msgid "Are you sure you want to exit Cura?"
  4637. #~ msgstr "你確定要結束 Cura 嗎?"
  4638. #~ msgctxt "@label"
  4639. #~ msgid "Are you sure you wish to print with the selected configuration?"
  4640. #~ msgstr "你確定要使用所選設定進行列印嗎?"
  4641. #~ msgctxt "@label ({} is object name)"
  4642. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  4643. #~ msgstr "你確認要移除 {}?此動作無法復原!"
  4644. #~ msgctxt "@action:inmenu menubar:edit"
  4645. #~ msgid "Arrange All Models To All Build Plates"
  4646. #~ msgstr "將所有模型排列到所有列印平台上"
  4647. #~ msgctxt "@action:button"
  4648. #~ msgid "Arrange current build plate"
  4649. #~ msgstr "擺放到目前的列印平台"
  4650. #~ msgctxt "@action:button"
  4651. #~ msgid "Arrange to all build plates"
  4652. #~ msgstr "擺放到所有的列印平台"
  4653. #~ msgctxt "description"
  4654. #~ msgid "Ask the user once if he/she agrees with our license"
  4655. #~ msgstr "詢問使用者是否同意我們的授權協議"
  4656. #~ msgctxt "description"
  4657. #~ msgid "Ask the user once if he/she agrees with our license."
  4658. #~ msgstr "詢問使用者是否同意我們的授權協議。"
  4659. #~ msgctxt "@info:title"
  4660. #~ msgid "Authentication Status"
  4661. #~ msgstr "認証狀態"
  4662. #~ msgctxt "@info:title"
  4663. #~ msgid "Authentication status"
  4664. #~ msgstr "認証狀態"
  4665. #~ msgctxt "@label"
  4666. #~ msgid "Author"
  4667. #~ msgstr "作者"
  4668. #~ msgctxt "name"
  4669. #~ msgid "Auto Save"
  4670. #~ msgstr "自動儲存"
  4671. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  4672. #~ msgid "Automatic: %1"
  4673. #~ msgstr "自動:%1"
  4674. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  4675. #~ msgid "Automatic: %1"
  4676. #~ msgstr "自動: %1"
  4677. #~ msgctxt "@label"
  4678. #~ msgid "Automatically rotate opened file into normed orientation"
  4679. #~ msgstr "自動將開啟的檔案旋轉到正常方向"
  4680. #~ msgctxt "description"
  4681. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  4682. #~ msgstr "偏好設定、機器設定和列印參數修改後自動儲存。"
  4683. #~ msgctxt "@label"
  4684. #~ msgid "Available"
  4685. #~ msgstr "可用"
  4686. #~ msgctxt "@label:status"
  4687. #~ msgid "Available"
  4688. #~ msgstr "可用"
  4689. #~ msgctxt "@label:header configurations"
  4690. #~ msgid "Available configurations"
  4691. #~ msgstr "可用的設定"
  4692. #~ msgctxt "@action:button"
  4693. #~ msgid "Back"
  4694. #~ msgstr "返回"
  4695. #~ msgctxt "@tooltip:button"
  4696. #~ msgid "Become a 3D printing expert with UltiMaker e-learning."
  4697. #~ msgstr "使用UltiMaker e-learning成為一位3D列印專家."
  4698. #~ msgctxt "@label"
  4699. #~ msgid "Bed Temperature: %1/%2°C"
  4700. #~ msgstr "熱床溫度:%1/%2°C"
  4701. #~ msgctxt "name"
  4702. #~ msgid "Blender Integration (experimental)"
  4703. #~ msgstr "Blender 整合(實驗功能)"
  4704. #~ msgctxt "@item:inlistbox"
  4705. #~ msgid "Blender file"
  4706. #~ msgstr "Blender 檔案"
  4707. #~ msgctxt "@label:status"
  4708. #~ msgid "Blocked"
  4709. #~ msgstr "暫停"
  4710. #~ msgctxt "@action:menu"
  4711. #~ msgid "Browse packages..."
  4712. #~ msgstr "瀏覽套件..."
  4713. #~ msgctxt "@menuitem"
  4714. #~ msgid "Browse plugins"
  4715. #~ msgstr "瀏覽外掛"
  4716. #~ msgctxt "@action:menu"
  4717. #~ msgid "Browse plugins..."
  4718. #~ msgstr "瀏覽外掛..."
  4719. #~ msgctxt "@label:table_header"
  4720. #~ msgid "Build Plate"
  4721. #~ msgstr "列印平台"
  4722. #~ msgctxt "@label"
  4723. #~ msgid "Build Plate Adhesion"
  4724. #~ msgstr "列印平台附著"
  4725. #~ msgctxt "@action:label"
  4726. #~ msgid "Build plate"
  4727. #~ msgstr "列印平台"
  4728. #~ msgctxt "@title:tab"
  4729. #~ msgid "Bundled materials"
  4730. #~ msgstr "捆綁式線材"
  4731. #~ msgctxt "@title:tab"
  4732. #~ msgid "Bundled plugins"
  4733. #~ msgstr "捆綁式外掛"
  4734. #~ msgctxt "@info:tooltip"
  4735. #~ 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."
  4736. #~ msgstr "預設情況下,白色像素表示網格上的高點,黑色像素表示網格上的低點。更改此選項將以相反方式呈現,黑色像素表示網格上的高點,白色像素表示網格上的低點。"
  4737. #~ msgctxt "@label"
  4738. #~ msgid "COM service found"
  4739. #~ msgstr "找到 COM 服務"
  4740. #~ msgctxt "@label"
  4741. #~ msgid "COM starting"
  4742. #~ msgstr "COM 啟動中"
  4743. #~ msgctxt "@window:text"
  4744. #~ msgid "Camera rendering: "
  4745. #~ msgstr "攝影機渲染:"
  4746. #~ msgctxt "@label:status"
  4747. #~ msgid "Can't start print"
  4748. #~ msgstr "無法開始列印"
  4749. #~ msgctxt "@label:Printjob"
  4750. #~ msgid "Cancel"
  4751. #~ msgstr "取消"
  4752. #~ msgctxt "@info:tooltip"
  4753. #~ msgid "Cancel slicing process"
  4754. #~ msgstr "取消進行中的切片程序"
  4755. #~ msgctxt "@option:check"
  4756. #~ msgid "Caution message in gcode reader"
  4757. #~ msgstr "G-code 讀取器中的警告資訊"
  4758. #~ msgctxt "@action:inmenu menubar:edit"
  4759. #~ msgid "Center Selected Model"
  4760. #~ msgid_plural "Center Selected Models"
  4761. #~ msgstr[0] "置中所選模型"
  4762. #~ msgctxt "@info:tooltip"
  4763. #~ msgid "Change active post-processing scripts"
  4764. #~ msgstr "更改目前啟用的後處理腳本"
  4765. #~ msgctxt "@label"
  4766. #~ msgid "Change build plate to %1 (This cannot be overridden)."
  4767. #~ msgstr "將列印平台改成 %1(無法覆寫)。"
  4768. #~ msgctxt "@item:inmenu"
  4769. #~ msgid "Changelog"
  4770. #~ msgstr "更新日誌"
  4771. #~ msgctxt "@label"
  4772. #~ msgid "Changelog"
  4773. #~ msgstr "更新日誌"
  4774. #~ msgctxt "name"
  4775. #~ msgid "Changelog"
  4776. #~ msgstr "更新日誌"
  4777. #~ msgctxt "@label"
  4778. #~ msgid "Check compatibility"
  4779. #~ msgstr "檢查相容性"
  4780. #~ msgctxt "@label"
  4781. #~ msgid "Checklist"
  4782. #~ msgstr "檢查清單"
  4783. #~ msgctxt "@label"
  4784. #~ msgid "Clear build plate"
  4785. #~ msgstr "清空列印平台"
  4786. #~ msgctxt "@tooltip"
  4787. #~ msgid "Click to check the material compatibility on UltiMaker.com."
  4788. #~ msgstr "點擊查看 UltiMaker.com 上的耗材相容性。"
  4789. #~ msgctxt "@title:window"
  4790. #~ msgid "Closing Cura"
  4791. #~ msgstr "關閉 Cura 中"
  4792. #~ msgctxt "@info:title"
  4793. #~ msgid "Cloud error"
  4794. #~ msgstr "雲端服務錯誤"
  4795. #~ msgctxt "@option:curaSolidworksStlQuality"
  4796. #~ msgid "Coarse"
  4797. #~ msgstr "粗糙"
  4798. #~ msgctxt "@option:curaSolidworksStlQuality"
  4799. #~ msgid "Coarse (3D-printing)"
  4800. #~ msgstr "粗糙 (3D-printing)"
  4801. #~ msgctxt "@option:curaSolidworksStlQuality"
  4802. #~ msgid "Coarse (SolidWorks)"
  4803. #~ msgstr "粗糙 (SolidWorks)"
  4804. #~ msgctxt "@action:inmenu"
  4805. #~ msgid "Collapse All"
  4806. #~ msgstr "全部折疊"
  4807. #~ msgctxt "@info:title"
  4808. #~ msgid "Collecting Data"
  4809. #~ msgstr "收集資料中"
  4810. #~ msgctxt "@label"
  4811. #~ msgid "Community Contributions"
  4812. #~ msgstr "社群貢獻"
  4813. #~ msgctxt "@label"
  4814. #~ msgid "Community Plugins"
  4815. #~ msgstr "社群外掛"
  4816. #~ msgctxt "@label"
  4817. #~ msgid "Compatibility"
  4818. #~ msgstr "相容性"
  4819. #~ msgctxt "@label"
  4820. #~ msgid "Completed on: "
  4821. #~ msgstr "完成時間:"
  4822. #~ msgctxt "@label"
  4823. #~ msgid "Configuration change"
  4824. #~ msgstr "設定更動"
  4825. #~ msgid "Configure"
  4826. #~ msgstr "設定"
  4827. #~ msgctxt "@action:menu"
  4828. #~ msgid "Configure setting visiblity..."
  4829. #~ msgstr "設定設定可見性..."
  4830. #~ msgctxt "@action:button"
  4831. #~ msgid "Confirm"
  4832. #~ msgstr "確定"
  4833. #~ msgctxt "@title:window"
  4834. #~ msgid "Confirm uninstall"
  4835. #~ msgstr "移除確認"
  4836. #~ msgctxt "@title:window"
  4837. #~ msgid "Confirm uninstall "
  4838. #~ msgstr "移除確認 "
  4839. #~ msgctxt "@info:status"
  4840. #~ msgid "Connect to UltiMaker Cloud"
  4841. #~ msgstr "連接到 UltiMaker Cloud"
  4842. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  4843. #~ msgid "Connect to UltiMaker Cloud"
  4844. #~ msgstr "連接到 UltiMaker Cloud"
  4845. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  4846. #~ msgid "Connect to UltiMaker Cloud"
  4847. #~ msgstr "連接到 UltiMaker Cloud"
  4848. #~ msgctxt "@info:tooltip"
  4849. #~ msgid "Connect to a printer"
  4850. #~ msgstr "連接到印表機"
  4851. #~ msgctxt "@info:status"
  4852. #~ msgid "Connected over the network."
  4853. #~ msgstr "已透過網路連接。"
  4854. #~ msgctxt "@info:status"
  4855. #~ msgid "Connected over the network. No access to control the printer."
  4856. #~ msgstr "已透過網路連接,但沒有印表機的控制權限。"
  4857. #~ msgctxt "@info:status"
  4858. #~ msgid "Connected over the network. Please approve the access request on the printer."
  4859. #~ msgstr "已透過網路連接。請在印表機上接受存取請求。"
  4860. #~ msgctxt "@info:status"
  4861. #~ msgid "Connected via Cloud"
  4862. #~ msgstr "透過雲端服務連接"
  4863. #~ msgctxt "@info:status"
  4864. #~ msgid "Connected!"
  4865. #~ msgstr "已連線!"
  4866. #~ msgctxt "@info:status"
  4867. #~ msgid "Connecting to Doodle3D Connect"
  4868. #~ msgstr "正在連接 Doodle3D Connect"
  4869. #~ msgctxt "@info:title"
  4870. #~ msgid "Connection Status"
  4871. #~ msgstr "連線狀態"
  4872. #~ msgctxt "@info:title"
  4873. #~ msgid "Connection status"
  4874. #~ msgstr "連線狀態"
  4875. #~ msgctxt "@label"
  4876. #~ msgid "Connection:"
  4877. #~ msgstr "連線:"
  4878. #~ msgctxt "@label"
  4879. #~ msgid "Contact"
  4880. #~ msgstr "聯繫"
  4881. #~ msgctxt "@action:button"
  4882. #~ msgid "Continue"
  4883. #~ msgstr "繼續"
  4884. #~ msgctxt "@title:window"
  4885. #~ msgid "Convert Image..."
  4886. #~ msgstr "轉換圖片..."
  4887. #~ msgctxt "@label"
  4888. #~ msgid "Cost specification"
  4889. #~ msgstr "成本明細"
  4890. #~ msgctxt "@info"
  4891. #~ msgid "Could not connect to the Cura Package database. Please check your connection."
  4892. #~ msgstr "無法連上 Cura 套件資料庫。請檢查你的網路連線。"
  4893. #~ msgctxt "@info:status"
  4894. #~ msgid "Could not export print job."
  4895. #~ msgstr "雲端服務未匯出列印作業。"
  4896. #~ msgctxt "@info:status"
  4897. #~ msgid ""
  4898. #~ "Could not export using \"{}\" quality!\n"
  4899. #~ "Felt back to \"{}\"."
  4900. #~ msgstr ""
  4901. #~ "無法使用 \"{}\" 品質導出!\n"
  4902. #~ "覆蓋回 \"{}\"。"
  4903. #~ msgctxt "@info:status"
  4904. #~ msgid "Could not find a quality type {0} for the current configuration."
  4905. #~ msgstr "無法為目前設定找到品質類型 {0}。"
  4906. #~ msgctxt "@info"
  4907. #~ msgid "Could not find firmware required for the printer at %s."
  4908. #~ msgstr "在 %s 無法找到印表機所需的韌體。"
  4909. #~ msgctxt "@action:button"
  4910. #~ msgid "Create"
  4911. #~ msgstr "建立"
  4912. #~ msgctxt "@label"
  4913. #~ msgid "Create"
  4914. #~ msgstr "建立"
  4915. #~ msgctxt "description"
  4916. #~ msgid "Create a flattend quality changes profile."
  4917. #~ msgstr "建立一份合併品質變化列印參數。"
  4918. #~ msgctxt "description"
  4919. #~ msgid "Create a flattened quality changes profile."
  4920. #~ msgstr "建立一個撫平的品質修改參數。"
  4921. #~ msgctxt "@button"
  4922. #~ msgid "Create account"
  4923. #~ msgstr "建立帳號"
  4924. #~ msgctxt "@button"
  4925. #~ msgid "Create an account"
  4926. #~ msgstr "建立帳號"
  4927. #~ msgctxt "@action:ComboBox option"
  4928. #~ msgid "Create new"
  4929. #~ msgstr "新建"
  4930. #~ msgctxt "@title:window"
  4931. #~ msgid "Cura"
  4932. #~ msgstr "Cura"
  4933. #~ msgctxt "@item:inmenu"
  4934. #~ msgid "Cura Settings Guide"
  4935. #~ msgstr "Cura 設定指南"
  4936. #~ msgctxt "@title"
  4937. #~ msgid "Cura Settings Guide"
  4938. #~ msgstr "Cura 設定指南"
  4939. #~ msgctxt "@title:window"
  4940. #~ msgid "Cura SolidWorks Plugin Configuration"
  4941. #~ msgstr "Cura SolidWorks 外掛設定"
  4942. #~ msgctxt "@info"
  4943. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  4944. #~ msgstr "Cura 收集匿名切片統計資料。你可以在偏好設定中關閉此選項。"
  4945. #~ msgctxt "@info"
  4946. #~ msgid "Cura collects anonymized usage statistics."
  4947. #~ msgstr "Cura 以匿名方式蒐集使用狀況統計資料。"
  4948. #~ msgctxt "@info:status"
  4949. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  4950. #~ msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層(Layers)"
  4951. #~ msgctxt "@info:status"
  4952. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled."
  4953. #~ msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層。"
  4954. #~ msgctxt "@text:window"
  4955. #~ 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."
  4956. #~ msgstr "Cura 傳送匿名資料給 UltiMaker 以提高列印品質和使用者體驗。以下是傳送資料的例子。"
  4957. #~ msgctxt "@title:column"
  4958. #~ msgid "Customized"
  4959. #~ msgstr "自訂"
  4960. #~ msgctxt "@text"
  4961. #~ msgid "Data collected by UltiMaker Cura will not contain any personal information."
  4962. #~ msgstr "UltiMaker Cura 收集的資料不包含任何個人資訊。"
  4963. #~ msgctxt "@info:status"
  4964. #~ msgid ""
  4965. #~ "Dear customer,\n"
  4966. #~ "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"
  4967. #~ "\n"
  4968. #~ "With kind regards\n"
  4969. #~ " - Thomas Karl Pietrowski"
  4970. #~ msgstr ""
  4971. #~ "親愛的客戶,\n"
  4972. #~ "我們無法在您的系統上找到有效安裝的 SolidWorks。這表示未安裝 SolidWorks,或者您沒有擁有有效的授權。請確認 SolidWorks 本身是可以正常執行的,或是聯絡您的技術部門處理。\n"
  4973. #~ "\n"
  4974. #~ "順頌 時祺\n"
  4975. #~ " - Thomas Karl Pietrowski"
  4976. #~ msgctxt "@info:status"
  4977. #~ msgid ""
  4978. #~ "Dear customer,\n"
  4979. #~ "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"
  4980. #~ "\n"
  4981. #~ "With kind regards\n"
  4982. #~ " - Thomas Karl Pietrowski"
  4983. #~ msgstr ""
  4984. #~ "親愛的客戶,\n"
  4985. #~ "您目前正在 Windows 以外的作業系統上執行此外掛。此外掛只能在有安裝有效授權 SolidWorks 的 Windows 上執行。請在有安裝 SolidWorks 的 windows 電腦上安裝此外掛。\n"
  4986. #~ "\n"
  4987. #~ "順頌 時祺\n"
  4988. #~ " - Thomas Karl Pietrowski"
  4989. #~ msgctxt "@action:button"
  4990. #~ msgid "Decline"
  4991. #~ msgstr "拒絕"
  4992. #~ msgctxt "@label"
  4993. #~ msgid "Default"
  4994. #~ msgstr "預設值"
  4995. #~ msgctxt "@title:column"
  4996. #~ msgid "Default"
  4997. #~ msgstr "預設"
  4998. #~ msgctxt "@label"
  4999. #~ msgid "Default profiles"
  5000. #~ msgstr "預設參數"
  5001. #~ msgctxt "@action:label"
  5002. #~ msgid "Default quality of the exported STL:"
  5003. #~ msgstr "預設的匯出 STL 品質:"
  5004. #~ msgctxt "@text:menu"
  5005. #~ msgid "Default version"
  5006. #~ msgstr "預設的版本"
  5007. #~ msgctxt "@action:inmenu menubar:edit"
  5008. #~ msgid "Delete Selected Model"
  5009. #~ msgid_plural "Delete Selected Models"
  5010. #~ msgstr[0] "刪除所選模型"
  5011. #~ msgctxt "@label"
  5012. #~ msgid "Dense (50%) infill will give your model an above average strength."
  5013. #~ msgstr "密集(50%)填充將使列印模型高於平均的強度。"
  5014. #~ msgctxt "@label"
  5015. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5016. #~ msgstr "不同的列印頭(Cura:{0},印表機: 為擠出機 {2} 選擇了 {1})"
  5017. #~ msgctxt "@label"
  5018. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5019. #~ msgstr "擠出機 {extruder_id} 選擇了不同的 PrintCore(Cura:{cura_printcore_name},印表機:{remote_printcore_name})"
  5020. #~ msgctxt "@label"
  5021. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5022. #~ msgstr "擠出機 {2} 選擇了不同的耗材(Cura:{0},印表機:{1})"
  5023. #~ msgctxt "@action:button"
  5024. #~ msgid "Disable"
  5025. #~ msgstr "關閉"
  5026. #~ msgctxt "@label:status"
  5027. #~ msgid "Disabled"
  5028. #~ msgstr "已關閉"
  5029. #~ msgctxt "@action:button"
  5030. #~ msgid "Discard"
  5031. #~ msgstr "捨棄"
  5032. #~ msgctxt "@action:button"
  5033. #~ msgid "Dismiss"
  5034. #~ msgstr "關閉此通知"
  5035. #~ msgctxt "@tooltip"
  5036. #~ 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\"."
  5037. #~ msgstr "列印頭前端至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5038. #~ msgctxt "@tooltip"
  5039. #~ 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\"."
  5040. #~ msgstr "列印頭左側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5041. #~ msgctxt "@tooltip"
  5042. #~ 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\"."
  5043. #~ msgstr "列印頭後部至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5044. #~ msgctxt "@tooltip"
  5045. #~ 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\"."
  5046. #~ msgstr "列印頭右側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5047. #~ msgctxt "@option:check"
  5048. #~ msgid "Do not arrange objects on load"
  5049. #~ msgstr "載入時不要擺放物件"
  5050. #~ msgctxt "@action:tooltip"
  5051. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  5052. #~ msgstr "不允許 Cura 傳送匿名的使用狀況統計資料。你可以在偏好設定中再次啟用此功能。"
  5053. #~ msgctxt "@action"
  5054. #~ msgid "Don't ask me again for this printer."
  5055. #~ msgstr "對此印表機不要再次詢問。"
  5056. #~ msgctxt "@label"
  5057. #~ msgid "Don't support overlap with other models"
  5058. #~ msgstr "與模型重疊處不建立支撐"
  5059. #~ msgctxt "@action:button"
  5060. #~ msgid "Done"
  5061. #~ msgstr "完成"
  5062. #~ msgctxt "@label"
  5063. #~ msgid "Doodle3D"
  5064. #~ msgstr "Doodle3D"
  5065. #~ msgctxt "@title:menu"
  5066. #~ msgid "Doodle3D"
  5067. #~ msgstr "Doodle3D 列印"
  5068. #~ msgctxt "@title:window"
  5069. #~ msgid "Doodle3D Settings"
  5070. #~ msgstr "Doodle3D 設定"
  5071. #~ msgctxt "name"
  5072. #~ msgid "Doodle3D WiFi-Box"
  5073. #~ msgstr "Doodle3D 無線網路盒"
  5074. #~ msgctxt "@action:button"
  5075. #~ msgid "Downgrade"
  5076. #~ msgstr "降級版本"
  5077. #~ msgctxt "@action:button"
  5078. #~ msgid "Download"
  5079. #~ msgstr "下載"
  5080. #~ msgctxt "@label"
  5081. #~ msgid "Downloads"
  5082. #~ msgstr "下載"
  5083. #~ msgctxt "description"
  5084. #~ msgid "Dump the contents of all settings to a HTML file."
  5085. #~ msgstr "將所有設定內容轉儲至 HTML 檔案。"
  5086. #~ msgctxt "@label"
  5087. #~ msgid "Duplicate"
  5088. #~ msgstr "複製"
  5089. #~ msgctxt "@label"
  5090. #~ msgid "Email"
  5091. #~ msgstr "電子郵件"
  5092. #~ msgctxt "@label:material"
  5093. #~ msgid "Empty"
  5094. #~ msgstr "空的"
  5095. #~ msgctxt "@label"
  5096. #~ msgid "Empty infill will leave your model hollow with low strength."
  5097. #~ msgstr "無填充將使模型處於低強度且保持空心狀態。"
  5098. #~ msgctxt "@item:inlistbox"
  5099. #~ msgid "Enable Scan devices..."
  5100. #~ msgstr "啟用掃描設備..."
  5101. #~ msgctxt "@label"
  5102. #~ msgid "Enable gradual"
  5103. #~ msgstr "啟用漸層"
  5104. #~ msgctxt "@label"
  5105. #~ 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."
  5106. #~ msgstr "允許列印邊緣或木筏。這將在你的物件周圍或下方添加一個容易切斷的平面區域。"
  5107. #~ msgctxt "@label"
  5108. #~ msgid "End G-code"
  5109. #~ msgstr "結束 G-code"
  5110. #~ msgctxt "@label"
  5111. #~ msgid "End Gcode"
  5112. #~ msgstr "結束 Gcode"
  5113. #~ msgctxt "@title:window"
  5114. #~ msgid "Engine Log"
  5115. #~ msgstr "引擎日誌"
  5116. #~ msgctxt "@alabel"
  5117. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5118. #~ msgstr "輸入印表機在網路上的 IP 位址或主機名。"
  5119. #~ msgctxt "@label"
  5120. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5121. #~ msgstr "輸入印表機在網路上的 IP 位址或主機名稱。"
  5122. #~ msgctxt "@info:status"
  5123. #~ msgid "Error while starting %s!"
  5124. #~ msgstr "啟動 %s 時發生錯誤!"
  5125. #~ msgctxt "@error:zip"
  5126. #~ msgid "Error writing 3mf file."
  5127. #~ msgstr "寫入 3mf 檔案發生錯誤。"
  5128. #~ msgctxt "@info:status"
  5129. #~ 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!"
  5130. #~ msgstr "開啟 SolidWorks 檔案時發生錯誤! 請檢查能否在 SolidWorks 中正常開啟檔案而不出現任何問題!"
  5131. #~ msgctxt "@item:inmenu"
  5132. #~ msgid "Evaluation"
  5133. #~ msgstr "評估"
  5134. #~ msgctxt "@title:groupbox"
  5135. #~ msgid "Exception traceback"
  5136. #~ msgstr "異常追溯"
  5137. #~ msgctxt "@label"
  5138. #~ msgid "Executable found"
  5139. #~ msgstr "找到可執行檔案"
  5140. #~ msgctxt "@window:title"
  5141. #~ msgid "Existing Connection"
  5142. #~ msgstr "目前連線中"
  5143. #~ msgctxt "@action:inmenu"
  5144. #~ msgid "Expand All"
  5145. #~ msgstr "全部展開"
  5146. #~ msgctxt "@action:inmenu menubar:view"
  5147. #~ msgid "Expand/Collapse Sidebar"
  5148. #~ msgstr "展開/收合側邊欄"
  5149. #~ msgctxt "@info:title"
  5150. #~ msgid "Export Details"
  5151. #~ msgstr "匯出細項設定"
  5152. #~ msgctxt "@label:extruder label"
  5153. #~ msgid "Extruder"
  5154. #~ msgstr "擠出機"
  5155. #~ msgctxt "@label"
  5156. #~ msgid "Extruder End G-code"
  5157. #~ msgstr "擠出機結束 G-code"
  5158. #~ msgctxt "@label"
  5159. #~ msgid "Extruder End Gcode"
  5160. #~ msgstr "擠出機結束 Gcode"
  5161. #~ msgctxt "@label"
  5162. #~ msgid "Extruder Start G-code"
  5163. #~ msgstr "擠出機起始 G-code"
  5164. #~ msgctxt "@label"
  5165. #~ msgid "Extruder Start Gcode"
  5166. #~ msgstr "擠出機起始 Gcode"
  5167. #~ msgctxt "@label"
  5168. #~ msgid "Extruder Temperature: %1/%2°C"
  5169. #~ msgstr "列印頭溫度:%1/%2 °C"
  5170. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  5171. #~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR。"
  5172. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  5173. #~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR,它沒有設置到正確的目錄。"
  5174. #~ msgctxt "@info:status"
  5175. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  5176. #~ msgstr "無法從 <filename>{0}</filename> 取得外掛 ID"
  5177. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5178. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5179. #~ msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  5180. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5181. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5182. #~ msgstr "無法從 <filename>{0}</filename> 匯入列印參數:<message>{1}</message>"
  5183. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  5184. #~ msgstr "無法安裝 Siemens NX 外掛。無法為 Siemens NX 設定環境變數 UGII_USER_DIR。"
  5185. #~ msgctxt "@label"
  5186. #~ msgid "Faster"
  5187. #~ msgstr "更快"
  5188. #~ msgctxt "@label"
  5189. #~ msgid "Featured"
  5190. #~ msgstr "精選"
  5191. #~ msgctxt "@label:listbox"
  5192. #~ msgid "Feedrate"
  5193. #~ msgstr "進給率"
  5194. #~ msgctxt "@info"
  5195. #~ msgid "Fetching packages..."
  5196. #~ msgstr "取得套件..."
  5197. #~ msgctxt "@info:status"
  5198. #~ msgid "File sent to Doodle3D Connect"
  5199. #~ msgstr "檔案已被傳送到 Doodle3D Connect"
  5200. #~ msgctxt "@title:window"
  5201. #~ msgid "Find & Update plugins"
  5202. #~ msgstr "查找與更新外掛"
  5203. #~ msgctxt "description"
  5204. #~ msgid "Find, manage and install new Cura packages."
  5205. #~ msgstr "查詢,管理和安裝新的 Cura 套件。"
  5206. #~ msgctxt "description"
  5207. #~ msgid "Find, manage and install new plugins."
  5208. #~ msgstr "尋找、管理和安裝新外掛。"
  5209. #~ msgctxt "@option:curaSolidworksStlQuality"
  5210. #~ msgid "Fine"
  5211. #~ msgstr "精細"
  5212. #~ msgctxt "@option:curaSolidworksStlQuality"
  5213. #~ msgid "Fine (3D-printing)"
  5214. #~ msgstr "精細 (3D-printing)"
  5215. #~ msgctxt "@option:curaSolidworksStlQuality"
  5216. #~ msgid "Fine (SolidWorks)"
  5217. #~ msgstr "精細 (SolidWorks)"
  5218. #~ msgctxt "@button"
  5219. #~ msgid "Finish"
  5220. #~ msgstr "完成"
  5221. #~ msgctxt "@label"
  5222. #~ msgid "Finishes at: "
  5223. #~ msgstr "完成時間:"
  5224. #~ msgctxt "@label"
  5225. #~ msgid "First choice:"
  5226. #~ msgstr "第一選擇:"
  5227. #~ msgctxt "@item:inmenu"
  5228. #~ msgid "Flatten active settings"
  5229. #~ msgstr "合併有效設定"
  5230. #~ msgctxt "@info:status"
  5231. #~ msgid ""
  5232. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  5233. #~ "\n"
  5234. #~ "Sorry!"
  5235. #~ msgstr ""
  5236. #~ "在你的繪圖中發現了超過一個以上的零件或組件。我們目前只支援只有正好一個零件或組件的繪圖。\n"
  5237. #~ "\n"
  5238. #~ "抱歉!"
  5239. #~ msgctxt "@info:status"
  5240. #~ msgid ""
  5241. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  5242. #~ "\n"
  5243. #~ "Sorry!"
  5244. #~ msgstr ""
  5245. #~ "在你的繪圖找到了超過一個的零件或組件。我們目前只支援一個零件或組件的繪圖。\n"
  5246. #~ "\n"
  5247. #~ "抱歉!"
  5248. #~ msgctxt "@info:status"
  5249. #~ msgid ""
  5250. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  5251. #~ "\n"
  5252. #~ " Thanks!."
  5253. #~ msgstr ""
  5254. #~ "在你的繪圖找不到模型。請你再次檢查它的內容並確認裡面有一個零件或組件。\n"
  5255. #~ "\n"
  5256. #~ "謝謝。"
  5257. #~ msgctxt "@info:status"
  5258. #~ msgid ""
  5259. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  5260. #~ "\n"
  5261. #~ "Thanks!"
  5262. #~ msgstr ""
  5263. #~ "在你的繪圖中找不到模型。請你再次檢查它的內容並確認裡面有一個零件或組件。\n"
  5264. #~ "\n"
  5265. #~ "謝謝!"
  5266. #~ msgctxt "@label"
  5267. #~ msgid "Functions available"
  5268. #~ msgstr "可用功能"
  5269. #~ msgctxt "@tooltip"
  5270. #~ msgid "G-code commands to be executed at the very end."
  5271. #~ msgstr "結束前最後執行的 G-code 命令。"
  5272. #~ msgctxt "@tooltip"
  5273. #~ msgid "G-code commands to be executed at the very start."
  5274. #~ msgstr "開始時最先執行的 G-code 命令。"
  5275. #~ msgctxt "@item:inlistbox"
  5276. #~ msgid "GCode File"
  5277. #~ msgstr "GCode 檔案"
  5278. #~ msgctxt "name"
  5279. #~ msgid "GCode Profile Reader"
  5280. #~ msgstr "G-code 列印參數讀取器"
  5281. #~ msgctxt "name"
  5282. #~ msgid "GCode Writer"
  5283. #~ msgstr "GCode 寫入器"
  5284. #~ msgctxt "@label"
  5285. #~ msgid "GCode generator"
  5286. #~ msgstr "GCode 產生器"
  5287. #~ msgctxt "@label"
  5288. #~ msgid "Gantry height"
  5289. #~ msgstr "龍門高度"
  5290. #~ msgctxt "@tooltip"
  5291. #~ msgid "Gcode commands to be executed at the very end."
  5292. #~ msgstr "將在結束時執行的 Gcode 命令。"
  5293. #~ msgctxt "@tooltip"
  5294. #~ msgid "Gcode commands to be executed at the very start."
  5295. #~ msgstr "將在開始時執行的 Gcode 命令。"
  5296. #~ msgctxt "@label"
  5297. #~ msgid "Gcode flavor"
  5298. #~ msgstr "GCode 類型"
  5299. #~ msgctxt "@label"
  5300. #~ msgid "Generate Support"
  5301. #~ msgstr "產生支撐"
  5302. #~ msgctxt "@label"
  5303. #~ msgid "Generic Materials"
  5304. #~ msgstr "通用線材"
  5305. #~ msgctxt "@description"
  5306. #~ msgid "Get plugins and materials verified by UltiMaker"
  5307. #~ msgstr "取得經 UltiMaker 驗証過的外掛和耗材"
  5308. #~ msgctxt "@button"
  5309. #~ msgid "Get started"
  5310. #~ msgstr "開始"
  5311. #~ msgctxt "description"
  5312. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  5313. #~ msgstr "讓你可以使用 SolidWorks 開啟某些檔案。此外掛會完成轉換和最佳化的工作。"
  5314. #~ msgctxt "description"
  5315. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  5316. #~ msgstr "讓你可以透過 SolidWorks 自身開啟特定檔案。隨後會將這些檔案進行轉換並載入 Cura"
  5317. #~ msgctxt "@label"
  5318. #~ msgid "Glass"
  5319. #~ msgstr "玻璃"
  5320. #~ msgctxt "@menuitem"
  5321. #~ msgid "Global"
  5322. #~ msgstr "整體"
  5323. #~ msgctxt "@info:status"
  5324. #~ msgid "Global stack is missing."
  5325. #~ msgstr "全域堆疊遺失。"
  5326. #~ msgctxt "@label link to connect manager"
  5327. #~ msgid "Go to Cura Connect"
  5328. #~ msgstr "前往 Cura Connect"
  5329. #~ msgctxt "@info:tooltip"
  5330. #~ msgid "Go to Web Marketplace"
  5331. #~ msgstr "前往網路市集"
  5332. #~ msgctxt "name"
  5333. #~ msgid "God Mode"
  5334. #~ msgstr "上帝模式"
  5335. #~ msgctxt "@label"
  5336. #~ msgid "Gradual"
  5337. #~ msgstr "漸層填充"
  5338. #~ msgctxt "@label"
  5339. #~ msgid "Gradual infill"
  5340. #~ msgstr "漸近式填充"
  5341. #~ msgctxt "@label"
  5342. #~ msgid "Gradual infill will gradually increase the amount of infill towards the top."
  5343. #~ msgstr "漸近式填充將隨著列印高度的提升而逐漸加大填充密度。"
  5344. #~ msgctxt "@option:check"
  5345. #~ msgid "Heated bed"
  5346. #~ msgstr "熱床"
  5347. #~ msgctxt "@label"
  5348. #~ msgid "Help us to improve UltiMaker Cura"
  5349. #~ msgstr "協助我們改進 UltiMaker Cura"
  5350. #~ msgctxt "description"
  5351. #~ msgid "Helps to open Blender files directly in Cura."
  5352. #~ msgstr "協助你直接在 Cura 中打開 Blender 檔案。"
  5353. #~ msgctxt "description"
  5354. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  5355. #~ msgstr "協助你在 Siemens NX 中安裝一個「匯出到 Cura」按鈕。"
  5356. #~ msgctxt "@label"
  5357. #~ msgid "Here you can find a list of Third Party plugins."
  5358. #~ msgstr "你可以在這裡找到第三方外掛列表。"
  5359. #~ msgctxt "@label"
  5360. #~ msgid "Hi "
  5361. #~ msgstr "嗨 "
  5362. #~ msgctxt "@label The argument is a username."
  5363. #~ msgid "Hi %1"
  5364. #~ msgstr "嗨 %1"
  5365. #~ msgctxt "@label"
  5366. #~ msgid "Hotend"
  5367. #~ msgstr "熱端"
  5368. #~ msgctxt "@info:tooltip"
  5369. #~ msgid "How should the conflict in the machine be resolved?"
  5370. #~ msgstr "如何解決機器的設定衝突?"
  5371. #~ msgctxt "@info:tooltip"
  5372. #~ msgid "How should the conflict in the material be resolved?"
  5373. #~ msgstr "如何解决線材的設定衝突?"
  5374. #~ msgctxt "@info:tooltip"
  5375. #~ msgid "How should the conflict in the profile be resolved?"
  5376. #~ msgstr "如何解决列印參數中的設定衝突?"
  5377. #~ msgctxt "@title:window"
  5378. #~ msgid "How to install Cura SolidWorks macro"
  5379. #~ msgstr "如何安裝 Cura SolidWorks 巨集"
  5380. #~ msgctxt "@text:window"
  5381. #~ msgid "I don't want to send these data"
  5382. #~ msgstr "我不想傳送這些資料"
  5383. #~ msgctxt "@text:window"
  5384. #~ msgid "I don't want to send this data"
  5385. #~ msgstr "我不想傳送這些資料"
  5386. #~ msgctxt "@window:title"
  5387. #~ msgid "Import Profile"
  5388. #~ msgstr "匯入列印參數"
  5389. #~ msgctxt "@title:window"
  5390. #~ msgid "Import SolidWorks File as STL..."
  5391. #~ msgstr "匯入 SolidWorks 檔案為 STL..."
  5392. #~ msgctxt "@info:title"
  5393. #~ msgid "Incompatible Material"
  5394. #~ msgstr "不相容的耗材"
  5395. #~ msgid "Install"
  5396. #~ msgstr "安裝"
  5397. #~ msgctxt "@action:button"
  5398. #~ msgid "Install"
  5399. #~ msgstr "安裝"
  5400. #~ msgctxt "@window:title"
  5401. #~ msgid "Install Plugin"
  5402. #~ msgstr "安裝外掛"
  5403. #~ msgid "Installation guide for SolidWorks macro"
  5404. #~ msgstr "SolidWorks 巨集的安裝指南"
  5405. #~ msgctxt "@title:tab"
  5406. #~ msgid "Installation(s)"
  5407. #~ msgstr "安裝"
  5408. #~ msgctxt "@action:button"
  5409. #~ msgid "Installed"
  5410. #~ msgstr "已安裝"
  5411. #~ msgctxt "@title:tab"
  5412. #~ msgid "Installed"
  5413. #~ msgstr "已安裝"
  5414. #~ msgctxt "@title:tab"
  5415. #~ msgid "Installed materials"
  5416. #~ msgstr "已安裝線材"
  5417. #~ msgctxt "@title:tab"
  5418. #~ msgid "Installed plugins"
  5419. #~ msgstr "已安裝外掛"
  5420. #~ msgctxt "@action:menu"
  5421. #~ msgid "Installed plugins..."
  5422. #~ msgstr "安裝外掛..."
  5423. #~ msgctxt "@description:label"
  5424. #~ msgid "Instructions:"
  5425. #~ msgstr "操作說明:"
  5426. #~ msgctxt "@action:button"
  5427. #~ msgid "Keep"
  5428. #~ msgstr "保留"
  5429. #~ msgctxt "@label"
  5430. #~ msgid "Language:"
  5431. #~ msgstr "語言:"
  5432. #~ msgctxt "@label"
  5433. #~ msgid "Last updated"
  5434. #~ msgstr "最後更新時間"
  5435. #~ msgctxt "@text:menu"
  5436. #~ msgid "Latest installed version (Recommended)"
  5437. #~ msgstr "最新安裝的版本(建議)"
  5438. #~ msgctxt "@label"
  5439. #~ msgid "Layer Height"
  5440. #~ msgstr "層高"
  5441. #~ msgctxt "@info:title"
  5442. #~ msgid "Layer View"
  5443. #~ msgstr "分層檢視"
  5444. #~ msgctxt "name"
  5445. #~ msgid "Layer View"
  5446. #~ msgstr "分層檢視"
  5447. #~ msgctxt "@label:listbox"
  5448. #~ msgid "Layer thickness"
  5449. #~ msgstr "層厚"
  5450. #~ msgctxt "@item:inlistbox"
  5451. #~ msgid "Layers"
  5452. #~ msgstr "層"
  5453. #~ msgctxt "@label"
  5454. #~ msgid "Light (20%) infill will give your model an average strength."
  5455. #~ msgstr "輕度(20%)填充將使列印模型處於中等強度。"
  5456. #~ msgctxt "name"
  5457. #~ msgid "Live scripting tool"
  5458. #~ msgstr "即時描述檔工具"
  5459. #~ msgctxt "@info:tooltip"
  5460. #~ msgid "Load the configuration of the printer into Cura"
  5461. #~ msgstr "將印表機設定載入 Cura"
  5462. #~ msgctxt "@info:title"
  5463. #~ msgid "Local printers"
  5464. #~ msgstr "本機印表機"
  5465. #~ msgctxt "@label:status"
  5466. #~ msgid "Lost connection with the printer"
  5467. #~ msgstr "與印表機失去連線"
  5468. #~ msgctxt "@label:table_header"
  5469. #~ msgid "Machine"
  5470. #~ msgstr "機器"
  5471. #~ msgctxt "@title"
  5472. #~ msgid "Machine Settings"
  5473. #~ msgstr "印表機設定"
  5474. #~ msgctxt "name"
  5475. #~ msgid "Machine Settings action"
  5476. #~ msgstr "印表機設定操作"
  5477. #~ msgctxt "@text"
  5478. #~ msgid "Machine types"
  5479. #~ msgstr "機器類型"
  5480. #~ msgctxt "@label link to connect manager"
  5481. #~ msgid "Manage printers"
  5482. #~ msgstr "管理印表機"
  5483. #~ msgctxt "@label link to connect manager"
  5484. #~ msgid "Manage queue"
  5485. #~ msgstr "管理隊列"
  5486. #~ msgctxt "description"
  5487. #~ msgid "Manages network connections to UltiMaker 3 printers"
  5488. #~ msgstr "管理與 UltiMaker 3 印表機的網路連接"
  5489. #~ msgctxt "description"
  5490. #~ msgid "Manages network connections to UltiMaker 3 printers."
  5491. #~ msgstr "管理與 UltiMaker 3 印表機的網絡連線。"
  5492. #~ msgctxt "@title"
  5493. #~ msgid "Marketplace"
  5494. #~ msgstr "市集"
  5495. #~ msgctxt "@label"
  5496. #~ msgid "Material diameter"
  5497. #~ msgstr "耗材直徑"
  5498. #~ msgctxt "@label"
  5499. #~ msgid "Material specification"
  5500. #~ msgstr "耗材規格"
  5501. #~ msgctxt "@text"
  5502. #~ msgid "Material usage"
  5503. #~ msgstr "線材用法"
  5504. #~ msgctxt "@text:window"
  5505. #~ msgid "Materials"
  5506. #~ msgstr "線材"
  5507. #~ msgctxt "@window:title"
  5508. #~ msgid "Mismatched configuration"
  5509. #~ msgstr "設定不匹配"
  5510. #~ msgctxt "@info:title"
  5511. #~ msgid "Model Checker Warning"
  5512. #~ msgstr "模型檢查器警告"
  5513. #~ msgctxt "@info:title"
  5514. #~ msgid "Model errors"
  5515. #~ msgstr "模型錯誤"
  5516. #~ msgid "Modify G-Code"
  5517. #~ msgstr "修改 G-Code 檔案"
  5518. #~ msgctxt "@label"
  5519. #~ msgid "Modify settings for infill of other models"
  5520. #~ msgstr "修改其他模型的填充設定"
  5521. #~ msgctxt "@label"
  5522. #~ msgid "Modify settings for overlap with other models"
  5523. #~ msgstr "修改與模型重疊處的設定"
  5524. #~ msgctxt "@title:tab"
  5525. #~ msgid "Monitor"
  5526. #~ msgstr "監控"
  5527. #~ msgctxt "@action:button"
  5528. #~ msgid "More info"
  5529. #~ msgstr "更多資訊"
  5530. #~ msgctxt "@action:button"
  5531. #~ msgid "More information"
  5532. #~ msgstr "更多資訊"
  5533. #~ msgctxt "@text"
  5534. #~ msgid "More information"
  5535. #~ msgstr "更多資訊"
  5536. #~ msgctxt "@action:inmenu menubar:edit"
  5537. #~ msgid "Multiply Selected Model"
  5538. #~ msgid_plural "Multiply Selected Models"
  5539. #~ msgstr[0] "複製所選模型"
  5540. #~ msgctxt "@label"
  5541. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>UltiMaker Troubleshooting Guides</a>"
  5542. #~ msgstr "需要幫助改善你的列印?閱讀 <a href=『%1』>UltiMaker 故障排除指南</a>"
  5543. #~ msgctxt "@info:title"
  5544. #~ msgid "Network enabled printers"
  5545. #~ msgstr "網路印表機"
  5546. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5547. #~ msgid "New %s firmware available"
  5548. #~ msgstr "有新 %s 韌體可用"
  5549. #~ msgctxt "@info:title"
  5550. #~ msgid "New cloud printers found"
  5551. #~ msgstr "找到新的雲端印表機"
  5552. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5553. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5554. #~ msgstr "你的 {machine_name} 有新功能可用!建議更新印表機韌體。"
  5555. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5556. #~ 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}."
  5557. #~ msgstr "可能有適用於你的 {machine_name} 的新功能或錯誤修正!假如尚未使用最新版本,建議更新你印表機的韌體到版本 {latest_version}。"
  5558. #~ msgctxt "@info:message"
  5559. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5560. #~ msgstr "新找到的印表機已連接到你的帳戶,你可以在已發現的印表機清單中找到它們。"
  5561. #~ msgctxt "@action:button"
  5562. #~ msgid "Next Step"
  5563. #~ msgstr "下一步"
  5564. #~ msgctxt "@label:extruder label"
  5565. #~ msgid "No"
  5566. #~ msgstr "否"
  5567. #~ msgctxt "@info:status"
  5568. #~ msgid "No Printcore loaded in slot {slot_number}"
  5569. #~ msgstr "Slot {slot_number} 中沒有載入 Printcore"
  5570. #~ msgctxt "@"
  5571. #~ msgid "No Profile Available"
  5572. #~ msgstr "無可用的列印參數"
  5573. #~ msgctxt "@info:status"
  5574. #~ msgid "No access to print with this printer. Unable to send print job."
  5575. #~ msgstr "無法使用本印表機進行列印,無法發送列印作業。"
  5576. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5577. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  5578. #~ msgstr "檔案 <filename>{0}</filename> 內無自訂參數可匯入"
  5579. #~ msgctxt "@info"
  5580. #~ msgid "No material has been installed."
  5581. #~ msgstr "尚未安裝任何線材。"
  5582. #~ msgctxt "@item:material"
  5583. #~ msgid "No material loaded"
  5584. #~ msgstr "未載入耗材"
  5585. #~ msgctxt "@info:status"
  5586. #~ msgid "No material loaded in slot {slot_number}"
  5587. #~ msgstr "Slot {slot_number} 中沒有載入耗材"
  5588. #~ msgctxt "@info"
  5589. #~ msgid "No plugin has been installed."
  5590. #~ msgstr "尚未安裝任何外掛。"
  5591. #~ msgctxt "@label"
  5592. #~ msgid "No print selected"
  5593. #~ msgstr "沒有選擇任何模型"
  5594. #~ msgctxt "@info:status"
  5595. #~ msgid "No printer connected"
  5596. #~ msgstr "沒有連接印表機"
  5597. #~ msgctxt "@label"
  5598. #~ msgid "Not accepting print jobs"
  5599. #~ msgstr "不接受列印作業"
  5600. #~ msgctxt "@label"
  5601. #~ msgid "Not available"
  5602. #~ msgstr "無法使用"
  5603. #~ msgctxt "@label"
  5604. #~ msgid "Not enough material for spool {0}."
  5605. #~ msgstr "線軸 {0} 上沒有足夠的耗材。"
  5606. #~ msgctxt "@label"
  5607. #~ msgid "Not supported"
  5608. #~ msgstr "不支援"
  5609. #~ msgctxt "@label"
  5610. #~ msgid "Not yet initialized<br/>"
  5611. #~ msgstr "尚未初始化<br/>"
  5612. #~ msgctxt "@info:status"
  5613. #~ 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."
  5614. #~ msgstr "因沒有模型符合列印範圍或是被分配到停用的擠出機,無模型可進行切片。請縮放或旋轉模型以符合列印範圍,或是啟用擠出機。"
  5615. #~ msgctxt "@info:status"
  5616. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5617. #~ msgstr "沒有模型可進行切片,因為模型超出了列印範圍。請縮放或旋轉模型, 讓模型可置入列印範圍。"
  5618. #~ msgctxt "@label"
  5619. #~ msgid "Nozzle Settings"
  5620. #~ msgstr "噴頭設定"
  5621. #~ msgctxt "@text"
  5622. #~ msgid "Number of slices"
  5623. #~ msgstr "切片次數"
  5624. #~ msgctxt "@action:button"
  5625. #~ msgid "Ok"
  5626. #~ msgstr "確定"
  5627. #~ msgctxt "@label"
  5628. #~ msgid "Olsson Block"
  5629. #~ msgstr "Olsson Block"
  5630. #~ msgctxt "@item:inlistbox"
  5631. #~ msgid "Open Compressed Triangle Mesh"
  5632. #~ msgstr "Open Compressed Triangle Mesh"
  5633. #~ msgctxt "@action:button"
  5634. #~ msgid "Open Connect..."
  5635. #~ msgstr "開啟連線..."
  5636. #~ msgctxt "@action:button"
  5637. #~ msgid "Open Web Page"
  5638. #~ msgstr "開啟網頁"
  5639. #~ msgctxt "@info:tooltip"
  5640. #~ msgid "Open the Doodle3D Connect web interface"
  5641. #~ msgstr "開啟 Doodle3D Connect 的網路介面"
  5642. #~ msgctxt "@action:button"
  5643. #~ msgid ""
  5644. #~ "Open the directory\n"
  5645. #~ "with macro and icon"
  5646. #~ msgstr ""
  5647. #~ "使用巨集和圖示\n"
  5648. #~ "開啟目錄"
  5649. #~ msgctxt "@info:tooltip"
  5650. #~ msgid "Opens the print jobs interface in your browser."
  5651. #~ msgstr "使用瀏覽器開啟列印作業介面。"
  5652. #~ msgctxt "@info:tooltip"
  5653. #~ msgid "Opens the print jobs page with your default web browser."
  5654. #~ msgstr "使用預設瀏覽器開啟列印作業頁面。"
  5655. #~ msgctxt "@option:check"
  5656. #~ msgid "Origin at center"
  5657. #~ msgstr "原點位於中心"
  5658. #~ msgid "Orthogonal"
  5659. #~ msgstr "正交"
  5660. #~ msgctxt "@label"
  5661. #~ msgid "Override"
  5662. #~ msgstr "覆寫"
  5663. #~ msgctxt "@label"
  5664. #~ msgid "Override Profile"
  5665. #~ msgstr "覆寫列印參數"
  5666. #~ msgctxt "@window:title"
  5667. #~ msgid "Override configuration configuration and start print"
  5668. #~ msgstr "覆寫設定並開始列印"
  5669. #~ msgctxt "@label"
  5670. #~ msgid "Overrides %1 setting."
  5671. #~ msgid_plural "Overrides %1 settings."
  5672. #~ msgstr[0] "覆寫 %1 設定。"
  5673. #~ msgctxt "@title:menu menubar:toplevel"
  5674. #~ msgid "P&lugins"
  5675. #~ msgstr "外掛(&l)"
  5676. #~ msgctxt "@label"
  5677. #~ msgid "PRINTER GROUP"
  5678. #~ msgstr "印表機群組"
  5679. #~ msgctxt "@action:playpause"
  5680. #~ msgid "Pause"
  5681. #~ msgstr "暫停"
  5682. #~ msgctxt "@label:"
  5683. #~ msgid "Pause"
  5684. #~ msgstr "暫停"
  5685. #~ msgctxt "@label:status"
  5686. #~ msgid "Pausing"
  5687. #~ msgstr "暫停中"
  5688. #~ msgctxt "@label:MonitorStatus"
  5689. #~ msgid "Pausing print..."
  5690. #~ msgstr "暫停列印..."
  5691. #~ msgctxt "@text"
  5692. #~ msgid "Place enter your printer's IP address."
  5693. #~ msgstr "輸入印表機的 IP 地址。"
  5694. #~ msgctxt "@action:playpause"
  5695. #~ msgid "Play"
  5696. #~ msgstr "播放"
  5697. #~ msgctxt "@info"
  5698. #~ msgid "Please connect your UltiMaker printer to your local network."
  5699. #~ msgstr "請將你的 UltiMaker 印表機連接到區域網路。"
  5700. #~ msgctxt "@text"
  5701. #~ msgid ""
  5702. #~ "Please follow these steps to set up\n"
  5703. #~ "Ultimaker Cura. This will only take a few moments."
  5704. #~ msgstr ""
  5705. #~ "請按照以下步驟進行設定\n"
  5706. #~ "Ultimaker Cura。這只需要一點時間。"
  5707. #~ msgctxt "@text"
  5708. #~ msgid "Please follow these steps to set up UltiMaker Cura. This will only take a few moments."
  5709. #~ msgstr "請依照步驟安裝UltiMaker Cura. 這會需要幾分鐘的時間."
  5710. #~ msgctxt "@warning:status"
  5711. #~ msgid "Please generate G-code before saving."
  5712. #~ msgstr "請在儲存前產出 G-code。"
  5713. #~ msgctxt "@text"
  5714. #~ msgid "Please give your printer a name"
  5715. #~ msgstr "請為你的印表機取一個名稱"
  5716. #~ msgctxt "@info:status"
  5717. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  5718. #~ msgstr "請注意,重新載入模型功能無法運作!你必須手動重新開啟 SolidWorks 檔案!"
  5719. #~ msgctxt "@label:PrintjobStatus"
  5720. #~ msgid "Please load a 3D model"
  5721. #~ msgstr "請載入一個 3D 模型"
  5722. #~ msgctxt "@info"
  5723. #~ msgid ""
  5724. #~ "Please make sure your printer has a connection:\n"
  5725. #~ "- Check if the printer is turned on.\n"
  5726. #~ "- Check if the printer is connected to the network."
  5727. #~ msgstr ""
  5728. #~ "請確認你的印表機有連接:\n"
  5729. #~ "- 檢查印表機是否已打開。\n"
  5730. #~ "- 檢查印表機是否已連接到網路。"
  5731. #~ msgctxt "@info"
  5732. #~ msgid "Please select a network connected printer to monitor."
  5733. #~ msgstr "請選擇要監控的網絡連線印表機。"
  5734. #~ msgctxt "@label"
  5735. #~ msgid "Please select any upgrades made to this UltiMaker 2."
  5736. #~ msgstr "請選擇適用於 UltiMaker 2 的更新檔案。"
  5737. #~ msgctxt "name"
  5738. #~ msgid "Plugin Browser"
  5739. #~ msgstr "外掛瀏覽器"
  5740. #~ msgctxt "@window:title"
  5741. #~ msgid "Plugin browser"
  5742. #~ msgstr "外掛瀏覽器"
  5743. #~ msgctxt "@title:tab"
  5744. #~ msgid "Plugins"
  5745. #~ msgstr "外掛"
  5746. #~ msgctxt "@label"
  5747. #~ msgid "Pre-sliced file {0}"
  5748. #~ msgstr "預切片檔案 {0}"
  5749. #~ msgctxt "@label"
  5750. #~ msgid "Premium"
  5751. #~ msgstr "付費會員"
  5752. #~ msgctxt "@label:Printjob"
  5753. #~ msgid "Prepare"
  5754. #~ msgstr "準備"
  5755. #~ msgctxt "@title:tab"
  5756. #~ msgid "Prepare"
  5757. #~ msgstr "準備"
  5758. #~ msgctxt "@label:status"
  5759. #~ msgid "Preparing"
  5760. #~ msgstr "正在準備"
  5761. #~ msgctxt "@label"
  5762. #~ msgid "Preparing to print"
  5763. #~ msgstr "準備列印中"
  5764. #~ msgctxt "@label:status"
  5765. #~ msgid "Preparing to print"
  5766. #~ msgstr "準備列印中"
  5767. #~ msgctxt "@action:button"
  5768. #~ msgid "Previous"
  5769. #~ msgstr "前一個"
  5770. #~ msgctxt "@action:button"
  5771. #~ msgid "Previous Step"
  5772. #~ msgstr "前一步"
  5773. #~ msgctxt "@title:tab"
  5774. #~ msgid "Print"
  5775. #~ msgstr "列印"
  5776. #~ msgctxt "@label:table_header"
  5777. #~ msgid "Print Core"
  5778. #~ msgstr "Print Core"
  5779. #~ msgctxt "@info:title"
  5780. #~ msgid "Print Details"
  5781. #~ msgstr "列印細項設定"
  5782. #~ msgctxt "name"
  5783. #~ msgid "Print Profile Assistant"
  5784. #~ msgstr "列印參數設定助手"
  5785. #~ msgctxt "@label:listbox"
  5786. #~ msgid "Print Setup"
  5787. #~ msgstr "列印設定"
  5788. #~ msgctxt "@label:listbox"
  5789. #~ msgid ""
  5790. #~ "Print Setup disabled\n"
  5791. #~ "G-code files cannot be modified"
  5792. #~ msgstr ""
  5793. #~ "列印設定已關閉\n"
  5794. #~ "G-code 檔案無法被修改"
  5795. #~ msgctxt "@label"
  5796. #~ msgid "Print Speed"
  5797. #~ msgstr "列印速度"
  5798. #~ msgctxt "@label:status"
  5799. #~ msgid "Print aborted"
  5800. #~ msgstr "列印已取消"
  5801. #~ msgctxt "@label:MonitorStatus"
  5802. #~ msgid "Print aborted. Please check the printer"
  5803. #~ msgstr "列印已中斷。請檢查印表機"
  5804. #~ msgctxt "@label"
  5805. #~ msgid "Print experiment"
  5806. #~ msgstr "列印實驗"
  5807. #~ msgctxt "@info:status"
  5808. #~ msgid "Print finished"
  5809. #~ msgstr "列印已完成"
  5810. #~ msgctxt "@title"
  5811. #~ msgid "Print jobs"
  5812. #~ msgstr "列印作業"
  5813. #~ msgctxt "@text"
  5814. #~ msgid "Print settings"
  5815. #~ msgstr "列印設定"
  5816. #~ msgctxt "@label shown when we load a Gcode file"
  5817. #~ msgid "Print setup disabled. G code file can not be modified."
  5818. #~ msgstr "列印設定已被停用。 G-code 檔案無法修改。"
  5819. #~ msgctxt "@description"
  5820. #~ msgid "Print time"
  5821. #~ msgstr "列印時間"
  5822. #~ msgctxt "@title:window"
  5823. #~ msgid "Print to: %1"
  5824. #~ msgstr "列印至:%1"
  5825. #~ msgctxt "@action:button"
  5826. #~ msgid "Print via Cloud"
  5827. #~ msgstr "透過雲端服務列印"
  5828. #~ msgctxt "@properties:tooltip"
  5829. #~ msgid "Print via Cloud"
  5830. #~ msgstr "透過雲端服務列印"
  5831. #~ msgctxt "@action:button"
  5832. #~ msgid "Print with Doodle3D WiFi-Box"
  5833. #~ msgstr "使用 Doodle3D 無線網路盒列印"
  5834. #~ msgctxt "@properties:tooltip"
  5835. #~ msgid "Print with Doodle3D WiFi-Box"
  5836. #~ msgstr "使用 Doodle3D 無線網路盒列印"
  5837. #~ msgctxt "@label"
  5838. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  5839. #~ msgstr "列印頭 {0} 未正確校準。需要在印表機上執行 XY 校正。"
  5840. #~ msgctxt "@action:label"
  5841. #~ msgid "Printer"
  5842. #~ msgstr "印表機"
  5843. #~ msgctxt "@label"
  5844. #~ msgid "Printer"
  5845. #~ msgstr "印表機"
  5846. #~ msgctxt "@info:status"
  5847. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5848. #~ msgstr "印表機 '{printer_name}' 已完成列印 '{job_name}'。"
  5849. #~ msgctxt "@info:title"
  5850. #~ msgid "Printer Firmware"
  5851. #~ msgstr "印表機韌體"
  5852. #~ msgctxt "@label"
  5853. #~ msgid "Printer Name"
  5854. #~ msgstr "印表機名稱"
  5855. #~ msgctxt "@label"
  5856. #~ msgid "Printer Name:"
  5857. #~ msgstr "印表機名稱:"
  5858. #~ msgctxt "@label"
  5859. #~ msgid "Printer Settings"
  5860. #~ msgstr "印表機設定"
  5861. #~ msgctxt "@info:title"
  5862. #~ msgid "Printer Status"
  5863. #~ msgstr "印表機狀態"
  5864. #~ msgctxt "@info:title"
  5865. #~ msgid "Printer Unavailable"
  5866. #~ msgstr "印表機無法使用"
  5867. #~ msgctxt "@label"
  5868. #~ msgid "Printer type"
  5869. #~ msgstr "印表機類型"
  5870. #~ msgctxt "@label"
  5871. #~ msgid "Printer type:"
  5872. #~ msgstr "印表機類型:"
  5873. #~ msgctxt "@action:label %1 is printer name"
  5874. #~ msgid "Printer: %1"
  5875. #~ msgstr "印表機:%1"
  5876. #~ msgctxt "@label %1 is printer name"
  5877. #~ msgid "Printer: %1"
  5878. #~ msgstr "印表機:%1"
  5879. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  5880. #~ msgid "Printer: %1, %2: %3"
  5881. #~ msgstr "印表機:%1, %2: %3"
  5882. #~ msgctxt "@label:title"
  5883. #~ msgid "Printers"
  5884. #~ msgstr "印表機"
  5885. #~ msgctxt "info:status"
  5886. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5887. #~ msgstr "從 Digital Factory 新增印表機:<ul>{}</ul>"
  5888. #~ msgctxt "@label"
  5889. #~ msgid "Printhead Settings"
  5890. #~ msgstr "列印頭設定"
  5891. #~ msgctxt "@label"
  5892. #~ msgid "Printing"
  5893. #~ msgstr "列印中"
  5894. #~ msgctxt "@action:label"
  5895. #~ msgid "Printing Guidelines"
  5896. #~ msgstr "列印指南"
  5897. #~ msgctxt "@item:inlistbox"
  5898. #~ msgid "Profile Assistant"
  5899. #~ msgstr "參數助手"
  5900. #~ msgctxt "@item:inmenu"
  5901. #~ msgid "Profile Assistant"
  5902. #~ msgstr "參數助手"
  5903. #~ msgctxt "name"
  5904. #~ msgid "Profile Flattener"
  5905. #~ msgstr "參數撫平器"
  5906. #~ msgctxt "name"
  5907. #~ msgid "Profile flatener"
  5908. #~ msgstr "列印參數合併器"
  5909. #~ msgctxt "@info:status"
  5910. #~ msgid "Profile has been flattened & activated."
  5911. #~ msgstr "列印參數已被合併並啟用。"
  5912. #~ msgctxt "@label"
  5913. #~ msgid "Profile:"
  5914. #~ msgstr "列印參數:"
  5915. #~ msgctxt "@text:window"
  5916. #~ msgid "Profiles"
  5917. #~ msgstr "參數"
  5918. #~ msgctxt "@label"
  5919. #~ msgid "Protected profiles"
  5920. #~ msgstr "受保護的列印參數"
  5921. #~ msgctxt "description"
  5922. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  5923. #~ msgstr "提供更改印表機設定(如成形空間體積、噴頭口徑等)的方法"
  5924. #~ msgctxt "description"
  5925. #~ msgid "Provides an edit window for direct script editing."
  5926. #~ msgstr "提供一個直接編輯描述檔的編輯視窗。"
  5927. #~ msgctxt "description"
  5928. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5929. #~ msgstr "提供關於 Cura 設定額外的圖片動畫資訊和說明。"
  5930. #~ msgctxt "description"
  5931. #~ msgid "Provides machine actions for UltiMaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  5932. #~ msgstr "提供 UltiMaker 印表機專屬功能(如平台調平精靈、選擇升級等)"
  5933. #~ msgctxt "description"
  5934. #~ msgid "Provides support for writing 3MF files."
  5935. #~ msgstr "提供寫入 3MF 檔案的支援。"
  5936. #~ msgctxt "description"
  5937. #~ msgid "Provides support for writing X3G files"
  5938. #~ msgstr "提供寫入 X3G 檔案的支援"
  5939. #~ msgctxt "description"
  5940. #~ msgid "Provides the Layer view."
  5941. #~ msgstr "提供分層檢視。"
  5942. #~ msgctxt "description"
  5943. #~ msgid "Provides the Simulation view."
  5944. #~ msgstr "提供模擬檢視。"
  5945. #~ msgctxt "@label Description for application dependency"
  5946. #~ msgid "Python Error tracking library"
  5947. #~ msgstr "Python 錯誤追蹤函式庫"
  5948. #~ msgctxt "@Label"
  5949. #~ msgid "Python HTTP library"
  5950. #~ msgstr "Python HTTP 函式庫"
  5951. #~ msgctxt "@label"
  5952. #~ msgid "Python extensions for Microsoft Windows"
  5953. #~ msgstr "Python擴充(windows)"
  5954. #~ msgctxt "@action:label"
  5955. #~ msgid "Quality"
  5956. #~ msgstr "品質"
  5957. #~ msgctxt "@label:table_header"
  5958. #~ msgid "Quality"
  5959. #~ msgstr "品質"
  5960. #~ msgctxt "@info:tooltip"
  5961. #~ msgid "Quality of the Exported STL"
  5962. #~ msgstr "匯出 STL 的品質"
  5963. #~ msgctxt "@action:label"
  5964. #~ msgid "Quality:"
  5965. #~ msgstr "品質:"
  5966. #~ msgctxt "@info:button"
  5967. #~ msgid "Quit Cura"
  5968. #~ msgstr "結束 Cura"
  5969. #~ msgctxt "@info:tooltip"
  5970. #~ msgid "Re-send the access request"
  5971. #~ msgstr "重新發送存取請求"
  5972. #~ msgctxt "description"
  5973. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5974. #~ msgstr "讀取 SVG 檔案做為工具路徑,用於印表機移動的除錯。"
  5975. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5976. #~ msgid "Ready to %1"
  5977. #~ msgstr "%1 已準備就緒"
  5978. #~ msgctxt "@label:PrintjobStatus"
  5979. #~ msgid "Ready to slice"
  5980. #~ msgstr "切片已準備就緒"
  5981. #~ msgctxt "@action:button"
  5982. #~ msgid "Request Access"
  5983. #~ msgstr "請求存取"
  5984. #~ msgctxt "@label:status"
  5985. #~ msgid "Reserved"
  5986. #~ msgstr "保留"
  5987. #~ msgctxt "@label:"
  5988. #~ msgid "Resume"
  5989. #~ msgstr "繼續"
  5990. #~ msgctxt "@label:status"
  5991. #~ msgid "Resuming"
  5992. #~ msgstr "繼續"
  5993. #~ msgctxt "@label:MonitorStatus"
  5994. #~ msgid "Resuming print..."
  5995. #~ msgstr "繼續列印..."
  5996. #~ msgctxt "@action:button"
  5997. #~ msgid "Retry"
  5998. #~ msgstr "重試"
  5999. #~ msgctxt "@action"
  6000. #~ msgid "Review your connection"
  6001. #~ msgstr "檢查您的連線"
  6002. #~ msgctxt "@label"
  6003. #~ msgid "Revision number"
  6004. #~ msgstr "版本號碼"
  6005. #~ msgctxt "@Label"
  6006. #~ msgid "Root Certificates for validating SSL trustworthiness"
  6007. #~ msgstr "驗證 SSL 可信度用的根憑證"
  6008. #~ msgctxt "name"
  6009. #~ msgid "SVG Toolpath Reader"
  6010. #~ msgstr "SVG 工具路徑讀取器"
  6011. #~ msgctxt "@label"
  6012. #~ msgid "SVG icons"
  6013. #~ msgstr "SVG 圖標"
  6014. #~ msgctxt "@action:label"
  6015. #~ msgid "Safety Data Sheet"
  6016. #~ msgstr "安全資料表"
  6017. #~ msgctxt "@title:menu menubar:file"
  6018. #~ msgid "Save &As..."
  6019. #~ msgstr "另存為(&A)…"
  6020. #~ msgctxt "@title:menu menubar:file"
  6021. #~ msgid "Save &Project..."
  6022. #~ msgstr "儲存專案...(&P)"
  6023. #~ msgctxt "@title:menu menubar:file"
  6024. #~ msgid "Save project"
  6025. #~ msgstr "儲存專案"
  6026. #~ msgctxt "@label"
  6027. #~ msgid "Search materials"
  6028. #~ msgstr "搜尋線材"
  6029. #~ msgctxt "@label:textbox"
  6030. #~ msgid "Search..."
  6031. #~ msgstr "搜尋..."
  6032. #~ msgctxt "@action:tooltip"
  6033. #~ msgid "See more information on what data Cura sends."
  6034. #~ msgstr "檢視更多關於 Cura 傳送資料的資訊。"
  6035. #~ msgctxt "@option:check"
  6036. #~ msgid "See only current build plate"
  6037. #~ msgstr "只顯示目前的列印平台"
  6038. #~ msgctxt "@label"
  6039. #~ msgid "See the material compatibility chart"
  6040. #~ msgstr "請參閱耗材相容性圖表"
  6041. #~ msgctxt "@title"
  6042. #~ msgid "Select Printer Upgrades"
  6043. #~ msgstr "選擇印表機更新檔案"
  6044. #~ msgctxt "@info:tooltip"
  6045. #~ msgid "Select the active output device"
  6046. #~ msgstr "選擇作用中的輸出裝置"
  6047. #~ msgctxt "@title:tab"
  6048. #~ msgid ""
  6049. #~ "Select the printer you want to use from the list below.\n"
  6050. #~ "\n"
  6051. #~ "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."
  6052. #~ msgstr ""
  6053. #~ "從下面的清單中選擇要使用的印表機。\n"
  6054. #~ "\n"
  6055. #~ "假如你的印表機不在清單上,選擇“Custom”類別中的“Custom FFF Printer”,並在下一個對話窗中調整設定以符合你的印表機。"
  6056. #~ msgctxt "@label"
  6057. #~ 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."
  6058. #~ msgstr "選擇用於支撐的擠出機。該擠出機將在模型之下建立支撐結構,以防止模型下垂或在空中列印。"
  6059. #~ msgctxt "@info:tooltip"
  6060. #~ msgid "Send access request to the printer"
  6061. #~ msgstr "向印表機發送存取請求"
  6062. #~ msgctxt "@info:status"
  6063. #~ msgid "Send and monitor print jobs from anywhere using your UltiMaker account."
  6064. #~ msgstr "利用你的 UltiMaker 帳號在任何地方傳送和監控列印作業。"
  6065. #~ msgctxt "@info:progress"
  6066. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6067. #~ msgstr "傳送 <filename>{file_name}</filename> 到群組 {cluster_name} 中"
  6068. #~ msgctxt "@info:title"
  6069. #~ msgid "Sending Data"
  6070. #~ msgstr "發送資料中"
  6071. #~ msgctxt "@info:status"
  6072. #~ msgid "Sending data to Doodle3D Connect"
  6073. #~ msgstr "正在向 Doodle3D Connect 發送資料"
  6074. #~ msgctxt "@info:status"
  6075. #~ msgid "Sending data to printer"
  6076. #~ msgstr "正在向印表機發送資料"
  6077. #~ msgctxt "@info:status"
  6078. #~ msgid "Sending data to remote cluster"
  6079. #~ msgstr "正在傳送資料到遠端叢集"
  6080. #~ msgctxt "@info:status"
  6081. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  6082. #~ msgstr "前一列印作業傳送中,暫停傳送新列印作業。"
  6083. #~ msgctxt "@info:status"
  6084. #~ msgid "Sent {file_name} to group {cluster_name}."
  6085. #~ msgstr "{file_name} 已傳送到群組 {cluster_name}。"
  6086. #~ msgctxt "name"
  6087. #~ msgid "Settings Guide"
  6088. #~ msgstr "設定指南"
  6089. #~ msgctxt "@info:generic"
  6090. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  6091. #~ msgstr "設定已改為與目前擠出機性能相匹配:[%s]"
  6092. #~ msgctxt "@label"
  6093. #~ msgid "Shared Heater"
  6094. #~ msgstr "共用加熱器"
  6095. #~ msgctxt "@info:tooltip"
  6096. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6097. #~ msgstr "新載入的模型要擺放在列印平台上嗎?必需與多列印平台功能一起使用(實驗功能)"
  6098. #~ msgctxt "@action:inmenu"
  6099. #~ msgid "Show All Settings"
  6100. #~ msgstr "顯示所有設定"
  6101. #~ msgctxt "@item:inmenu"
  6102. #~ msgid "Show Changelog"
  6103. #~ msgstr "顯示更新日誌"
  6104. #~ msgctxt "@action:inmenu menubar:help"
  6105. #~ msgid "Show Engine &Log..."
  6106. #~ msgstr "顯示切片引擎日誌(&L)..."
  6107. #~ msgctxt "@label"
  6108. #~ msgid "Show Helpers"
  6109. #~ msgstr "顯示輔助結構"
  6110. #~ msgctxt "@label"
  6111. #~ msgid "Show Infill"
  6112. #~ msgstr "顯示填充"
  6113. #~ msgctxt "@action:inmenu"
  6114. #~ msgid "Show Online Troubleshooting Guide"
  6115. #~ msgstr "顯示線上故障排除指南"
  6116. #~ msgctxt "@label"
  6117. #~ msgid "Show Shell"
  6118. #~ msgstr "顯示外殼"
  6119. #~ msgctxt "@label"
  6120. #~ msgid "Show Travels"
  6121. #~ msgstr "顯示移動軌跡"
  6122. #~ msgctxt "@info:tooltip"
  6123. #~ msgid "Show caution message in gcode reader."
  6124. #~ msgstr "在 G-code 讀取器中顯示警告資訊。"
  6125. #~ msgctxt "@action:button"
  6126. #~ msgid "Show print jobs"
  6127. #~ msgstr "顯示列印作業"
  6128. #~ msgctxt "@text:window"
  6129. #~ msgid "Show this dialog again"
  6130. #~ msgstr "再次顯示這個對話框"
  6131. #~ msgctxt "@label"
  6132. #~ msgid "Show wizard before opening SolidWorks files"
  6133. #~ msgstr "開啟 SolidWorks 檔案時顯示精靈"
  6134. #~ msgctxt "description"
  6135. #~ msgid "Shows changes since latest checked version."
  6136. #~ msgstr "顯示最新版本更動。"
  6137. #~ msgctxt "name"
  6138. #~ msgid "Siemens NX Integration"
  6139. #~ msgstr "Siemens NX 整合"
  6140. #~ msgctxt "@button"
  6141. #~ msgid "Sign out"
  6142. #~ msgstr "登出"
  6143. #~ msgctxt "@info:title"
  6144. #~ msgid "Simulation View"
  6145. #~ msgstr "模擬檢視"
  6146. #~ msgctxt "@item:inlistbox"
  6147. #~ msgid "Simulation view"
  6148. #~ msgstr "模擬檢視"
  6149. #~ msgctxt "@info:tooltip"
  6150. #~ msgid "Slice current printjob"
  6151. #~ msgstr "對目前列印工作進行切片"
  6152. #~ msgctxt "@message"
  6153. #~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  6154. #~ msgstr "未知問題使切片失敗. 請考慮在我們的問題追蹤器內回報問題."
  6155. #~ msgctxt "@label:PrintjobStatus"
  6156. #~ msgid "Slicing unavailable"
  6157. #~ msgstr "切片無法使用"
  6158. #~ msgctxt "@label"
  6159. #~ msgid "Slower"
  6160. #~ msgstr "更慢"
  6161. #~ msgctxt "@item:inmenu"
  6162. #~ msgid "Solid"
  6163. #~ msgstr "實體"
  6164. #~ msgctxt "@label"
  6165. #~ msgid "Solid (100%) infill will make your model completely solid."
  6166. #~ msgstr "完全(100%)填充將使你的模型處於完全實心狀態。"
  6167. #~ msgctxt "name"
  6168. #~ msgid "SolidWorks Integration"
  6169. #~ msgstr "SolidWorks 整合"
  6170. #~ msgctxt "@item:inlistbox"
  6171. #~ msgid "SolidWorks assembly file"
  6172. #~ msgstr "SolidWorks 組件檔案"
  6173. #~ msgctxt "@item:inlistbox"
  6174. #~ msgid "SolidWorks drawing file"
  6175. #~ msgstr "SolidWorks 繪圖檔案"
  6176. #~ msgctxt "@item:inlistbox"
  6177. #~ msgid "SolidWorks part file"
  6178. #~ msgstr "SolidWorks 零件檔案"
  6179. #~ msgctxt "@title:window"
  6180. #~ msgid "SolidWorks plugin: Configuration"
  6181. #~ msgstr "SolidWorks 外掛:設定"
  6182. #~ msgctxt "@info:status"
  6183. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6184. #~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內解決這些問題。"
  6185. #~ msgctxt "@info:status"
  6186. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6187. #~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內部解決這些問題。"
  6188. #~ msgctxt "@title:window"
  6189. #~ msgid "SolidWorks: Export wizard"
  6190. #~ msgstr "SolidWorks: 導出精靈"
  6191. #~ msgctxt "@info:status"
  6192. #~ msgid ""
  6193. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6194. #~ "Tips that may be useful to improve the print quality:\n"
  6195. #~ "1) Use rounded corners.\n"
  6196. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6197. #~ "3) Use a different material."
  6198. #~ msgstr ""
  6199. #~ "由於物件大小和模型所選用的耗材,某些模型可能無法理想地列印:{model_names}。\n"
  6200. #~ "可能有助於提高列印品質的訣竅:\n"
  6201. #~ "1) 使用圓角。\n"
  6202. #~ "2) 關閉風扇(在模型沒有微小細節的情況下)。\n"
  6203. #~ "3) 使用不同的耗材。"
  6204. #~ msgctxt "@info:tooltip"
  6205. #~ msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  6206. #~ msgstr "此列印可能會有些問題。點擊查看調整提示。"
  6207. #~ msgctxt "@label"
  6208. #~ msgid "Start G-code"
  6209. #~ msgstr "起始 G-code"
  6210. #~ msgctxt "@label"
  6211. #~ msgid "Start Gcode"
  6212. #~ msgstr "起始 Gcode"
  6213. #~ msgctxt "@label"
  6214. #~ 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?"
  6215. #~ msgstr "使用不相容的設定啟動列印工作可能會損壞你的 3D 印表機。你確定要覆寫設定並列印 %1 嗎?"
  6216. #~ msgctxt "@label"
  6217. #~ msgid "Starting firmware update, this may take a while."
  6218. #~ msgstr "正在開始韌體更新。可能需要花費一些時間,請耐心等待。"
  6219. #~ msgctxt "@label"
  6220. #~ msgid "State:"
  6221. #~ msgstr "狀態:"
  6222. #~ msgctxt "@Label"
  6223. #~ msgid "Static type checker for Python"
  6224. #~ msgstr "Python 靜態型別檢查器"
  6225. #~ msgctxt "@description:label"
  6226. #~ msgid "Steps:"
  6227. #~ msgstr "步驟:"
  6228. #~ msgctxt "@info:status"
  6229. #~ msgid "Storing data on Doodle3D Connect"
  6230. #~ msgstr "正在儲存資料到 Doodle3D Connect"
  6231. #~ msgctxt "@info:status"
  6232. #~ msgid "Successfully imported profile {0}"
  6233. #~ msgstr "已成功匯入列印參數 {0}"
  6234. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6235. #~ msgstr "Siemens NX Cura 外掛已成功安裝。"
  6236. #~ msgctxt "@label:table_header"
  6237. #~ msgid "Support"
  6238. #~ msgstr "支撐"
  6239. #~ msgctxt "@label"
  6240. #~ msgid "Support Extruder"
  6241. #~ msgstr "支撐用擠出機"
  6242. #~ msgctxt "@label"
  6243. #~ msgid "Support library for analysis of complex networks"
  6244. #~ msgstr "用於分析複雜網路的函式庫"
  6245. #~ msgctxt "@label"
  6246. #~ msgid "Support library for handling planar objects"
  6247. #~ msgstr "用於處理平面物件的函式庫"
  6248. #~ msgctxt "@action:button"
  6249. #~ msgid "Sync materials with printers"
  6250. #~ msgstr "列印機同步線材資料"
  6251. #~ msgctxt "@action:button Sending materials to printers"
  6252. #~ msgid "Sync with Printers"
  6253. #~ msgstr "同步列印機"
  6254. #~ msgctxt "@window:title"
  6255. #~ msgid "Sync with your printer"
  6256. #~ msgstr "與你的印表機同步"
  6257. #~ msgctxt "@action:label"
  6258. #~ msgid "Technical Data Sheet"
  6259. #~ msgstr "技術資料表"
  6260. #~ msgctxt "@label"
  6261. #~ 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."
  6262. #~ msgstr "印表機上的 PrintCores 和/或耗材與目前專案中的不同。為獲得最佳列印效果,請使用目前印表機的 PrintCores 和耗材設定進行切片。"
  6263. #~ msgctxt "@label"
  6264. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6265. #~ msgstr "分配的印表機 %1 需要下列的設定更動:"
  6266. #~ msgctxt "@info:status"
  6267. #~ msgid "The connection with the network was lost."
  6268. #~ msgstr "網路連接中斷。"
  6269. #~ msgctxt "@info:status"
  6270. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6271. #~ msgstr "與印表機的連接中斷,請檢查印表機是否已連接。"
  6272. #~ msgctxt "@tooltip"
  6273. #~ msgid "The current temperature of this extruder."
  6274. #~ msgstr "該擠出機的目前溫度。"
  6275. #~ msgctxt "@tooltip"
  6276. #~ 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\"."
  6277. #~ msgstr "噴頭尖端與龍門系統(X 軸和 Y 軸)之間的高度差。用於防止「排隊列印」時之前的列印品與龍門發生碰撞。"
  6278. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6279. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6280. #~ msgstr "參數檔案 <filename>{0}</filename> ({1}) 中定義的機器與你目前的機器 ({2}) 不匹配,無法匯入。"
  6281. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  6282. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6283. #~ msgstr "列印參數 <filename>{0}</filename> 內定義的機器({1})與你目前的機器({2})不匹配, 無法匯入。"
  6284. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6285. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6286. #~ msgstr "列印參數 <filename>{0}</filename> 中的機器設定與你目前的機器不相符,無法導入。"
  6287. #~ msgctxt "@label (%1 is object name)"
  6288. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6289. #~ msgstr "新的耗材直徑設定為 %1 mm,這與目前機器不相容。你想繼續嗎?"
  6290. #~ msgctxt "@label"
  6291. #~ msgid "The next generation 3D printing workflow"
  6292. #~ msgstr "下一世代的 3D 列印流程"
  6293. #~ msgctxt "@text"
  6294. #~ msgid "The next generation 3D printing workflow"
  6295. #~ msgstr "下一世代的 3D 列印流程"
  6296. #~ msgctxt "@tooltip"
  6297. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  6298. #~ msgstr "印表機所支援的耗材直徑。實際列印的耗材直徑由耗材和/或列印參數提供。"
  6299. #~ msgctxt "@error:zip"
  6300. #~ msgid "The operating system does not allow saving a project file to this location or with this file name."
  6301. #~ msgstr "操作系統不允許將專案檔案儲存到此位置或儲存為此檔名。"
  6302. #~ msgctxt "@info:status"
  6303. #~ msgid "The print job '{job_name}' was finished."
  6304. #~ msgstr "列印作業 '{job_name}' 已完成。"
  6305. #~ msgctxt "@info:status Has a cancel button next to it."
  6306. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6307. #~ msgstr "所選耗材直徑導致耗材與目前印表機不相容。"
  6308. #~ msgctxt "@info:status"
  6309. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  6310. #~ msgstr "所選耗材與所選機器或設定不相容。"
  6311. #~ msgctxt "@info:status"
  6312. #~ msgid "The selected model was too small to load."
  6313. #~ msgstr "選擇的模型太小無法載入。"
  6314. #~ msgctxt "@label"
  6315. #~ msgid "The value is resolved from per-extruder values "
  6316. #~ msgstr "這個數值是由每個擠出機的設定值解析出來的 "
  6317. #~ msgctxt "@info"
  6318. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  6319. #~ msgstr "由於你正在監控一台雲端印表機,因此無法使用網路攝影機。"
  6320. #~ msgctxt "@info:tooltip"
  6321. #~ msgid "The width in millimeters on the build plate."
  6322. #~ msgstr "列印平台寬度,以毫米為單位。"
  6323. #~ msgctxt "@label"
  6324. #~ msgid "Theme:"
  6325. #~ msgstr "主題:"
  6326. #~ msgctxt "@label"
  6327. #~ 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."
  6328. #~ msgstr "印表機的設定或校正與 Cura 之間不匹配。為了獲得最佳列印效果,請使用印表機的 PrintCores 和耗材設定進行切片。"
  6329. #~ msgctxt "@label"
  6330. #~ 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."
  6331. #~ msgstr "UltiMaker 的設定有問題導致無法開始列印。請在繼續之前解決這個問題。"
  6332. #~ 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')"
  6333. #~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  6334. #~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  6335. #~ msgstr[0] "沒有擠出機 %2 用的 %1 參數。將使用預設參數"
  6336. #~ msgctxt "@info:description"
  6337. #~ msgid "There was an error connecting to the cloud."
  6338. #~ msgstr "連接到雲端服務時發生錯誤。"
  6339. #~ msgctxt "@info:backup_status"
  6340. #~ msgid "There was an error listing your backups."
  6341. #~ msgstr "列出備份時發生錯誤。"
  6342. #~ msgctxt "@info"
  6343. #~ msgid "These options are not available because you are monitoring a cloud printer."
  6344. #~ msgstr "由於你正在監控一台雲端印表機,因此無法使用這些選項。"
  6345. #~ msgctxt "@label"
  6346. #~ msgid ""
  6347. #~ "This plugin contains a license.\n"
  6348. #~ "You need to accept this license to install this plugin.\n"
  6349. #~ "Do you agree with the terms below?"
  6350. #~ msgstr ""
  6351. #~ "外掛內含一份授權協議。\n"
  6352. #~ "你必需同意此份授權協議才能安裝此外掛。\n"
  6353. #~ "是否同意下列條款?"
  6354. #~ msgctxt "@info:status"
  6355. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6356. #~ msgstr "此印表機不支援透過 USB 連線列印,因為其使用 UltiGCode 類型的 G-code 檔案。"
  6357. #~ msgctxt "@label"
  6358. #~ msgid "This printer is not set up to host a group of UltiMaker 3 printers."
  6359. #~ msgstr "這台印表機未設定成管理一組 UltiMaker 3 印表機的主機。"
  6360. #~ msgctxt "@label"
  6361. #~ msgid "This printer is not set up to host a group of connected UltiMaker 3 printers"
  6362. #~ msgstr "這台印表機未設定成管理一組連線的 UltiMaker 3 印表機的主機"
  6363. #~ msgid "This printer is not set up to host a group of connected UltiMaker 3 printers."
  6364. #~ msgstr "這台印表機未設定成管理一組連線的 UltiMaker 3 印表機的主機。"
  6365. #~ msgctxt "@label"
  6366. #~ msgid "This printer is the host for a group of %1 UltiMaker 3 printers."
  6367. #~ msgstr "這台印表機是 %1 台 UltiMaker 3 印表機群組的主機。"
  6368. #~ msgctxt "@label"
  6369. #~ msgid "This printer is the host for a group of %1 connected UltiMaker 3 printers"
  6370. #~ msgstr "這台印表機是 %1 台 UltiMaker 3 印表機群組的主機"
  6371. #~ msgctxt "Count is number of printers."
  6372. #~ msgid "This printer is the host for a group of {count} connected UltiMaker 3 printers."
  6373. #~ msgstr "這台印表機是 {count} 台連線的 UltiMaker 3 印表機群組的主機。"
  6374. #~ msgctxt "@message:text"
  6375. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  6376. #~ msgstr "此印表機/群組已加入 Cura。請選擇另一個印表機/群組。"
  6377. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6378. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6379. #~ msgstr "此列印參數 <filename>{0}</filename> 含有錯誤的資料,無法導入。"
  6380. #~ msgctxt "@tooltip"
  6381. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6382. #~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請變更這些設定以啟用此品質參數"
  6383. #~ msgctxt "@tooltip"
  6384. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  6385. #~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數"
  6386. #~ msgctxt "@tooltip"
  6387. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  6388. #~ msgstr "品質參數無法用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數。"
  6389. #~ msgctxt "@label"
  6390. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6391. #~ msgstr "這個設定由全部的擠出機共享,變更這個設定將改變全部擠出機的設定值"
  6392. #~ msgctxt "@label"
  6393. #~ msgid "Time specification"
  6394. #~ msgstr "時間規格"
  6395. #~ msgctxt "@tooltip"
  6396. #~ msgid "Time specification"
  6397. #~ msgstr "時間規格"
  6398. #~ msgctxt "@label"
  6399. #~ msgid "Tip"
  6400. #~ msgstr "提示"
  6401. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6402. #~ 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."
  6403. #~ msgstr "為了確保您的 {machine_name} 配備了最新功能,建議定期更新韌體。 這可以在 {machine_name} 上完成(有連接到網絡時)或透過 USB 完成。"
  6404. #~ msgctxt "@label"
  6405. #~ msgid ""
  6406. #~ "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"
  6407. #~ "\n"
  6408. #~ "Select your printer from the list below:"
  6409. #~ msgstr ""
  6410. #~ "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。\n"
  6411. #~ "\n"
  6412. #~ "從以下清單中選擇你的印表機:"
  6413. #~ msgctxt "@title"
  6414. #~ msgid "Toolbox"
  6415. #~ msgstr "工具箱"
  6416. #~ msgctxt "name"
  6417. #~ msgid "Toolbox"
  6418. #~ msgstr "工具箱"
  6419. #~ msgctxt "@label"
  6420. #~ msgid "Total:"
  6421. #~ msgstr "總共:"
  6422. #~ msgctxt "@info:backup_failed"
  6423. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  6424. #~ msgstr "嘗試復原版本不符的 Cura 備份。"
  6425. #~ msgctxt "name"
  6426. #~ msgid "UM3 Network Connection"
  6427. #~ msgstr "UM3 網路連線"
  6428. #~ msgctxt "name"
  6429. #~ msgid "UM3 Network Connection (Cluster)"
  6430. #~ msgstr "UM3 網路連接(叢集)"
  6431. #~ msgctxt "@info:title"
  6432. #~ msgid "USB Printing"
  6433. #~ msgstr "USB 連線列印"
  6434. #~ msgctxt "@label"
  6435. #~ msgid "UltiMaker 3"
  6436. #~ msgstr "UltiMaker 3"
  6437. #~ msgctxt "@label Printer name"
  6438. #~ msgid "UltiMaker 3"
  6439. #~ msgstr "UltiMaker 3"
  6440. #~ msgctxt "@label"
  6441. #~ msgid "UltiMaker 3 Extended"
  6442. #~ msgstr "UltiMaker 3 Extended"
  6443. #~ msgctxt "@label Printer name"
  6444. #~ msgid "UltiMaker 3 Extended"
  6445. #~ msgstr "UltiMaker 3 Extended"
  6446. #~ msgctxt "@label"
  6447. #~ msgid "UltiMaker Account"
  6448. #~ msgstr "UltiMaker 帳號"
  6449. #~ msgctxt "@label"
  6450. #~ msgid "UltiMaker Cloud"
  6451. #~ msgstr "UltiMaker Cloud"
  6452. #~ msgctxt "@title:window"
  6453. #~ msgid "UltiMaker Cura"
  6454. #~ msgstr "UltiMaker Cura"
  6455. #~ msgctxt "@text"
  6456. #~ msgid "UltiMaker Cura collects anonymous data to improve print quality and user experience, including:"
  6457. #~ msgstr "UltiMaker Cura 搜集匿名資料以提高列印品質和使用者體驗,包含:"
  6458. #~ msgctxt "@button"
  6459. #~ msgid "UltiMaker account"
  6460. #~ msgstr "UltiMaker 帳號"
  6461. #~ msgctxt "@label:PrintjobStatus"
  6462. #~ msgid "Unable to Slice"
  6463. #~ msgstr "無法切片"
  6464. #~ msgctxt "@info:status"
  6465. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6466. #~ msgstr "無法向 Doodle3D Connect 發送資料。請確認是否有另一項列印作業正在進行?"
  6467. #~ msgctxt "@info:status"
  6468. #~ msgid "Unable to send data to printer. Is another job still active?"
  6469. #~ msgstr "無法向印表機發送資料。請確認是否有另一項列印作業正在進行?"
  6470. #~ msgctxt "@info:status"
  6471. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected UltiMaker 3 printers."
  6472. #~ msgstr "無法傳送新的列印作業:這台印表機尚未設定成管理一組連線的 UltiMaker 3 印表機的主機。"
  6473. #~ msgctxt "@info:status"
  6474. #~ msgid "Unable to send print job to group {cluster_name}."
  6475. #~ msgstr "無法傳送列印作業到群組 {cluster_name}。"
  6476. #~ msgctxt "@info:status"
  6477. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6478. #~ msgstr "無法啟動新作業,因為該印表機不支援 USB 連線列印。"
  6479. #~ msgctxt "@info:status"
  6480. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6481. #~ msgstr "無法啟動新作業,因為印表機處於忙碌狀態或未連接。"
  6482. #~ msgctxt "@info:status"
  6483. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6484. #~ msgstr "印表機無法啟動新的列印作業,目前的印表機狀態為 %s。"
  6485. #~ msgctxt "@label"
  6486. #~ msgid "Unable to start a new print job."
  6487. #~ msgstr "無法開始新的列印作業。"
  6488. #~ msgctxt "@info:status"
  6489. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6490. #~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入列印頭。"
  6491. #~ msgctxt "@info:status"
  6492. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6493. #~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入耗材。"
  6494. #~ msgctxt "@info"
  6495. #~ msgid "Unable to update firmware because there are no printers connected."
  6496. #~ msgstr "無法更新韌體,因為沒有連接印表機。"
  6497. #~ msgctxt "@action:button"
  6498. #~ msgid "Undo"
  6499. #~ msgstr "復原"
  6500. #~ msgctxt "@action"
  6501. #~ msgid "Undo changing the material diameter."
  6502. #~ msgstr "復原更改耗材直徑。"
  6503. #~ msgctxt "@action:button"
  6504. #~ msgid "Uninstall"
  6505. #~ msgstr "移除"
  6506. #~ msgctxt "@title:column"
  6507. #~ msgid "Unit"
  6508. #~ msgstr "單位"
  6509. #~ msgctxt "@label Printer name"
  6510. #~ msgid "Unknown"
  6511. #~ msgstr "未知"
  6512. #~ msgctxt "@label Printer status"
  6513. #~ msgid "Unknown"
  6514. #~ msgstr "未知"
  6515. #~ msgctxt "@label unknown material"
  6516. #~ msgid "Unknown"
  6517. #~ msgstr "未知"
  6518. #~ msgctxt "@label:material"
  6519. #~ msgid "Unknown"
  6520. #~ msgstr "未知"
  6521. #~ msgctxt "@label:status"
  6522. #~ msgid "Unknown"
  6523. #~ msgstr "未知"
  6524. #~ msgctxt "@label"
  6525. #~ msgid "Unknown error code: %1"
  6526. #~ msgstr "未知錯誤代碼: %1"
  6527. #~ msgctxt "@item:material"
  6528. #~ msgid "Unknown material"
  6529. #~ msgstr "未知耗材"
  6530. #~ msgctxt "@label"
  6531. #~ msgid "Unreachable"
  6532. #~ msgstr "無法連接"
  6533. #~ msgctxt "@action:ComboBox option"
  6534. #~ msgid "Update"
  6535. #~ msgstr "更新"
  6536. #~ msgctxt "@action:button"
  6537. #~ msgid "Update"
  6538. #~ msgstr "更新"
  6539. #~ msgctxt "@action:ComboBox option"
  6540. #~ msgid "Update existing"
  6541. #~ msgstr "更新已有設定"
  6542. #~ msgctxt "@action:button"
  6543. #~ msgid "Update profile with current settings/overrides"
  6544. #~ msgstr "使用目前設定 / 覆寫值更新列印參數"
  6545. #~ msgctxt "@action:button"
  6546. #~ msgid "Updated"
  6547. #~ msgstr "更新完成"
  6548. #~ msgctxt "@action:button"
  6549. #~ msgid "Updating"
  6550. #~ msgstr "更新中"
  6551. #~ msgctxt "@action:button"
  6552. #~ msgid "Upgrade"
  6553. #~ msgstr "升級"
  6554. #~ msgctxt "@action"
  6555. #~ msgid "Upgrade Firmware"
  6556. #~ msgstr "升級韌體"
  6557. #~ msgctxt "@title"
  6558. #~ msgid "Upgrade Firmware"
  6559. #~ msgstr "升級韌體"
  6560. #~ msgctxt "@info:status"
  6561. #~ msgid "Uploading via UltiMaker Cloud"
  6562. #~ msgstr "透過 UltiMaker Cloud 上傳"
  6563. # Added after the string freeze.
  6564. #~ msgctxt "@label"
  6565. #~ msgid "Use adhesion sheet or glue with this material combination"
  6566. #~ msgstr "在此耗材組合下使用膠水或是附著墊片"
  6567. #~ msgctxt "@label"
  6568. #~ msgid "Use glue with this material combination"
  6569. #~ msgstr "此耗材使用膠水組合"
  6570. #~ msgctxt "@info:tooltip"
  6571. #~ msgid "Use multi build plate functionality"
  6572. #~ msgstr "使用多列印平台功能"
  6573. #~ msgctxt "@option:check"
  6574. #~ msgid "Use multi build plate functionality (restart required)"
  6575. #~ msgstr "使用多列印平台功能(需重啟軟體)"
  6576. #~ msgctxt "@title:window"
  6577. #~ msgid "User Agreement"
  6578. #~ msgstr "使用者授權"
  6579. #~ msgctxt "@title:groupbox"
  6580. #~ msgid "User description"
  6581. #~ msgstr "使用者描述"
  6582. #~ msgctxt "@title:groupbox"
  6583. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  6584. #~ msgstr "使用者描述(注意:開發人員可能不會說您的語言,請盡可能使用英語)"
  6585. #~ msgctxt "name"
  6586. #~ msgid "UserAgreement"
  6587. #~ msgstr "使用者授權"
  6588. #~ msgctxt "@label"
  6589. #~ msgid "Version"
  6590. #~ msgstr "版本"
  6591. #~ msgctxt "@action:button"
  6592. #~ msgid "View Mode"
  6593. #~ msgstr "檢視模式"
  6594. #~ msgctxt "@label"
  6595. #~ msgid "View Mode: Layers"
  6596. #~ msgstr "檢視模式:分層"
  6597. #~ msgctxt "@action:button"
  6598. #~ msgid "View in Monitor"
  6599. #~ msgstr "使用監控觀看"
  6600. #~ msgctxt "@label link to connect manager"
  6601. #~ msgid "View print history"
  6602. #~ msgstr "檢視列印歷史記錄"
  6603. #~ msgctxt "@action:button"
  6604. #~ msgid "View print jobs"
  6605. #~ msgstr "檢視列印作業"
  6606. #~ msgctxt "@action:button"
  6607. #~ msgid "View printers"
  6608. #~ msgstr "檢視印表機"
  6609. #~ msgctxt "@label"
  6610. #~ msgid "View types"
  6611. #~ msgstr "檢示類型"
  6612. #~ msgctxt "@action:label"
  6613. #~ msgid "Visible settings:"
  6614. #~ msgstr "顯示設定:"
  6615. #~ msgctxt "@label:MonitorStatus"
  6616. #~ msgid "Waiting for a printjob"
  6617. #~ msgstr "等待列印作業"
  6618. #~ msgctxt "@label"
  6619. #~ msgid "Waiting for configuration change"
  6620. #~ msgstr "等待設定更動"
  6621. #~ msgctxt "@label:MonitorStatus"
  6622. #~ msgid "Waiting for someone to clear the build plate"
  6623. #~ msgstr "等待清空列印平台"
  6624. #~ msgctxt "@label"
  6625. #~ msgid "Waiting for: "
  6626. #~ msgstr "等待: "
  6627. #~ msgctxt "@label"
  6628. #~ msgid "Waiting for: First available"
  6629. #~ msgstr "等待:第一可用"
  6630. #~ msgctxt "@info:tile"
  6631. #~ msgid "Warning"
  6632. #~ msgstr "警告"
  6633. #~ msgctxt "@info"
  6634. #~ msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura."
  6635. #~ msgstr "無法從UltiMaker Cura中查看你的雲端列印機."
  6636. #~ msgctxt "@action:label"
  6637. #~ msgid "Website"
  6638. #~ msgstr "網站"
  6639. #~ msgctxt "@label"
  6640. #~ msgid "Website"
  6641. #~ msgstr "網站"
  6642. #~ msgctxt "@label"
  6643. #~ msgid "Welcome to UltiMaker Cura"
  6644. #~ msgstr "歡迎來到 UltiMaker Cura"
  6645. #~ msgctxt "@label"
  6646. #~ msgid "What's new in UltiMaker Cura"
  6647. #~ msgstr "UltiMaker Cura 新功能"
  6648. #~ msgctxt "@label"
  6649. #~ msgid "Will install upon restarting"
  6650. #~ msgstr "將在重新啟動時安裝"
  6651. #~ msgctxt "@label"
  6652. #~ msgid "Would you like to use your current printer configuration in Cura?"
  6653. #~ msgstr "你想在 Cura 中使用目前的印表機設定嗎?"
  6654. #~ msgctxt "description"
  6655. #~ msgid "Writes GCode to a file."
  6656. #~ msgstr "將 GCode 寫入至檔案。"
  6657. #~ msgctxt "X3g Writer Plugin Description"
  6658. #~ msgid "Writes X3g to files"
  6659. #~ msgstr "將 X3g 寫入檔案"
  6660. #~ msgctxt "@item:inlistbox"
  6661. #~ msgid "X-Ray"
  6662. #~ msgstr "透視"
  6663. #~ msgctxt "X3G Writer File Description"
  6664. #~ msgid "X3G File"
  6665. #~ msgstr "X3G 檔案"
  6666. #~ msgctxt "name"
  6667. #~ msgid "X3G Writer"
  6668. #~ msgstr "X3G 寫入器"
  6669. #~ msgctxt "name"
  6670. #~ msgid "X3GWriter"
  6671. #~ msgstr "X3G 寫入器"
  6672. #~ msgctxt "X3g Writer File Description"
  6673. #~ msgid "X3g File"
  6674. #~ msgstr "X3g 檔案"
  6675. #~ msgctxt "@label:extruder label"
  6676. #~ msgid "Yes"
  6677. #~ msgstr "是"
  6678. #~ msgctxt "@label"
  6679. #~ msgid ""
  6680. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  6681. #~ "Are you sure you want to continue?"
  6682. #~ msgstr ""
  6683. #~ "你將從 Cura 移除所有印表機。此動作無法復原。\n"
  6684. #~ "你確定要繼續嗎?"
  6685. #~ msgctxt "@label"
  6686. #~ msgid ""
  6687. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  6688. #~ "Are you sure you want to continue?"
  6689. #~ msgstr ""
  6690. #~ "你將從 Cura 移除 {} 印表機。此動作無法復原。\n"
  6691. #~ "你確定要繼續嗎?"
  6692. #~ msgctxt "@text:window"
  6693. #~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  6694. #~ msgstr "你正在移除仍被使用的線材/列印設定。確認後會將下列耗材/列印設定重設為預設值。"
  6695. #~ msgctxt "@info:status"
  6696. #~ msgid "You can now send and monitor print jobs from anywhere using your UltiMaker account."
  6697. #~ msgstr "現在你可以利用你的 UltiMaker 帳號在任何地方傳送和監控列印作業。"
  6698. #~ msgctxt "@text:window, %1 is a profile name"
  6699. #~ msgid ""
  6700. #~ "You have customized some profile settings.\n"
  6701. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  6702. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  6703. #~ msgstr ""
  6704. #~ "你修改了一些參數設定。\n"
  6705. #~ "你要在切換參數後保留這些更動?\n"
  6706. #~ "或者你也可以忽略這些更動,從 '%1' 載入預設值。"
  6707. #~ msgctxt "@text:window, %1 is a profile name"
  6708. #~ msgid ""
  6709. #~ "You have customized some profile settings.\n"
  6710. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  6711. #~ "Alternatively, you can discard the changes to load the defaults from '%1'."
  6712. #~ msgstr ""
  6713. #~ "你修改了一些參數設定。\n"
  6714. #~ "你要在切換參數後保留這些更動嗎?\n"
  6715. #~ "或者你也可以忽略這些更動,從 '%1' 載入預設值。"
  6716. #~ msgctxt "@text:window"
  6717. #~ msgid ""
  6718. #~ "You have customized some profile settings.\n"
  6719. #~ "Would you like to keep or discard those settings?"
  6720. #~ msgstr ""
  6721. #~ "你已自訂部份列印參數設定。\n"
  6722. #~ "你想保留或捨棄這些設定嗎?"
  6723. #~ msgctxt "@tooltip"
  6724. #~ msgid "You have modified some profile settings. If you want to change these go to custom mode."
  6725. #~ msgstr "你修改過部份列印參數設定。如果你想改變這些設定,請切換到自訂模式。"
  6726. #~ msgctxt "@label"
  6727. #~ msgid "You need to install the package before you can rate"
  6728. #~ msgstr "你需要先安裝套件才能進行評分"
  6729. #~ msgctxt "@label"
  6730. #~ msgid "You need to login first before you can rate"
  6731. #~ msgstr "你需要先登入才能進行評分"
  6732. #~ msgctxt "@info"
  6733. #~ msgid "You will need to restart Cura before changes in packages have effect."
  6734. #~ msgstr "需重新啟動 Cura,套件的更動才能生效。"
  6735. #~ msgctxt "@label"
  6736. #~ msgid "You will need to restart the application for these changes to have effect."
  6737. #~ msgstr "需重新啟動 Cura,新的設定才能生效。"
  6738. #~ msgctxt "@label"
  6739. #~ msgid "Your key to connected 3D printing"
  6740. #~ msgstr "連線 3D 列印的金鑰"
  6741. #~ msgctxt "@text"
  6742. #~ msgid "Your key to connected 3D printing"
  6743. #~ msgstr "連線 3D 列印的金鑰"
  6744. #~ msgctxt "@info:status"
  6745. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  6746. #~ msgstr "模型沒有封閉,標示的區域有缺少或多餘的表面。"
  6747. #~ msgctxt "@label"
  6748. #~ msgid "Your rating"
  6749. #~ msgstr "你的評分"
  6750. #~ msgctxt "@info:tooltip"
  6751. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  6752. #~ msgstr "正交透視不支援游標縮放功能。"
  6753. #~ msgctxt "@label"
  6754. #~ msgid "not yet initialised<br/>"
  6755. #~ msgstr "尚未初始化<br/>"
  6756. #~ msgctxt "@label"
  6757. #~ msgid "ratings"
  6758. #~ msgstr "評分"
  6759. #~ msgctxt "@label:textbox"
  6760. #~ msgid "search settings"
  6761. #~ msgstr "搜尋設定"
  6762. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6763. #~ msgstr "{printer_name} 已完成列印 '{job_name}'。請收起列印件並確認清空列印平台。"
  6764. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6765. #~ msgstr "{printer_name} 已為了列印 '{job_name}' 保留。請更改印表機設定配合此列印作業,以便開始列印。"
  6766. #~ msgctxt "@label ({} is printer name)"
  6767. #~ 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?"
  6768. #~ msgstr "直到下次帳號同步前 {} 將被移除。<br>要永久移除 {},請前往 <a href='https://mycloud.UltiMaker.com/'>Ultimaker Digital Factory</a>。<br><br>你確定要暫時移除 {} 嗎?"