cura.po 325 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089
  1. # Cura
  2. # Copyright (C) 2021 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2021.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 4.13\n"
  9. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  10. "POT-Creation-Date: 2021-12-10 12:00+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. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115
  21. msgctxt "@info:backup_failed"
  22. msgid "Could not create archive from user data directory: {}"
  23. msgstr "無法從使用者資料目錄建立備份檔:{}"
  24. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  25. msgctxt "@info:title"
  26. msgid "Backup"
  27. msgstr "備份"
  28. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134
  29. msgctxt "@info:backup_failed"
  30. msgid "Tried to restore a Cura backup without having proper data or meta data."
  31. msgstr "嘗試復原Cura 備份(若無proper data或meta data)。"
  32. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145
  33. msgctxt "@info:backup_failed"
  34. msgid "Tried to restore a Cura backup that is higher than the current version."
  35. msgstr "嘗試復原新版本的Cura備份。"
  36. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158
  37. msgctxt "@info:backup_failed"
  38. msgid "The following error occurred while trying to restore a Cura backup:"
  39. msgstr "恢復Cura備份時,出現下列錯誤:"
  40. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55
  41. msgctxt "@action:button"
  42. msgid "Please sync the material profiles with your printers before starting to print."
  43. msgstr "再列印前請先同步線材資料."
  44. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56
  45. msgctxt "@action:button"
  46. msgid "New materials installed"
  47. msgstr "新線材資料安裝"
  48. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63
  49. msgctxt "@action:button"
  50. msgid "Sync materials with printers"
  51. msgstr "列印機同步線材資料"
  52. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80
  53. msgctxt "@action:button"
  54. msgid "Learn more"
  55. msgstr "學習更多"
  56. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  57. msgctxt "@message:text"
  58. msgid "Could not save material archive to {}:"
  59. msgstr "無法儲存線材資料至{}:"
  60. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  61. msgctxt "@message:title"
  62. msgid "Failed to save material archive"
  63. msgstr "線材資料儲存失敗"
  64. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  65. msgctxt "@text"
  66. msgid "Unknown error."
  67. msgstr "未知的錯誤."
  68. #: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99
  69. msgctxt "@info:status"
  70. 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."
  71. msgstr "由於「列印序列」設定的值,成形列印範圍高度已被減少,以防止龍門與列印模型相衝突。"
  72. #: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102
  73. msgctxt "@info:title"
  74. msgid "Build Volume"
  75. msgstr "列印範圍"
  76. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143
  77. #, python-brace-format
  78. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  79. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  80. msgstr "你確定要移除 {0} 嗎?這動作無法復原!"
  81. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219
  82. msgctxt "@menuitem"
  83. msgid "Not overridden"
  84. msgstr "不覆寫"
  85. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614
  86. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  87. msgctxt "@label"
  88. msgid "Unknown"
  89. msgstr "未知"
  90. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  91. msgctxt "@label"
  92. msgid "The printer(s) below cannot be connected because they are part of a group"
  93. msgstr "下列印表機因為是群組的一部份導致無法連接"
  94. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  95. msgctxt "@label"
  96. msgid "Available networked printers"
  97. msgstr "可用的網路印表機"
  98. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11
  99. msgctxt "@label"
  100. msgid "Default"
  101. msgstr "預設值"
  102. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390
  103. msgctxt "@label"
  104. msgid "Custom profiles"
  105. msgstr "自訂列印參數"
  106. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425
  107. #, python-brace-format
  108. msgctxt "@item:inlistbox"
  109. msgid "All Supported Types ({0})"
  110. msgstr "所有支援的類型 ({0})"
  111. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426
  112. msgctxt "@item:inlistbox"
  113. msgid "All Files (*)"
  114. msgstr "所有檔案 (*)"
  115. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14
  116. msgctxt "@label"
  117. msgid "Visual"
  118. msgstr "外觀"
  119. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15
  120. msgctxt "@text"
  121. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  122. msgstr "外觀參數是設計來列印較高品質形狀和表面的視覺性原型和模型。"
  123. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18
  124. msgctxt "@label"
  125. msgid "Engineering"
  126. msgstr "工程"
  127. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19
  128. msgctxt "@text"
  129. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  130. msgstr "工程參數是設計來列印較高精度和較小公差的功能性原型和實際使用零件。"
  131. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22
  132. msgctxt "@label"
  133. msgid "Draft"
  134. msgstr "草稿"
  135. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23
  136. msgctxt "@text"
  137. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  138. msgstr "草稿參數是設計來縮短時間,快速列印初始原型和概念驗證。"
  139. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288
  140. msgctxt "@label"
  141. msgid "Custom Material"
  142. msgstr "自訂線材資料"
  143. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346
  144. msgctxt "@label"
  145. msgid "Custom"
  146. msgstr "自訂"
  147. #: /home/clamboo/Desktop/Cura/cura/API/Account.py:190
  148. msgctxt "@info:title"
  149. msgid "Login failed"
  150. msgstr "登入失敗"
  151. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  152. msgctxt "@info:status"
  153. msgid "Finding new location for objects"
  154. msgstr "正在為物件尋找新位置"
  155. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  156. msgctxt "@info:title"
  157. msgid "Finding Location"
  158. msgstr "尋找位置中"
  159. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99
  160. msgctxt "@info:status"
  161. msgid "Unable to find a location within the build volume for all objects"
  162. msgstr "無法在列印範圍內放下全部物件"
  163. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152
  164. msgctxt "@info:title"
  165. msgid "Can't Find Location"
  166. msgstr "無法找到位置"
  167. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  168. msgctxt "@text:error"
  169. msgid "Failed to create archive of materials to sync with printers."
  170. msgstr "無法建立與印表機同步的材料檔案."
  171. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  172. msgctxt "@text:error"
  173. msgid "Failed to load the archive of materials to sync it with printers."
  174. msgstr "無法載入與印表機同步的材料檔案."
  175. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  176. msgctxt "@text:error"
  177. msgid "The response from Digital Factory appears to be corrupted."
  178. msgstr "從Digital Factory的回應似乎已損壞."
  179. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155
  180. msgctxt "@text:error"
  181. msgid "The response from Digital Factory is missing important information."
  182. msgstr "從Digital Factory的回應似乎遺漏重要資訊."
  183. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  184. msgctxt "@text:error"
  185. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  186. msgstr "在連接至Digital Factory去同步材料的過程中失敗."
  187. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  188. msgctxt "@text:error"
  189. msgid "Failed to connect to Digital Factory."
  190. msgstr "在連接至Digital Factory的過程中失敗."
  191. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530
  192. msgctxt "@info:progress"
  193. msgid "Loading machines..."
  194. msgstr "正在載入印表機..."
  195. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537
  196. msgctxt "@info:progress"
  197. msgid "Setting up preferences..."
  198. msgstr "正在設定偏好設定..."
  199. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675
  200. msgctxt "@info:progress"
  201. msgid "Initializing Active Machine..."
  202. msgstr "正在初始化啟用的機器..."
  203. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811
  204. msgctxt "@info:progress"
  205. msgid "Initializing machine manager..."
  206. msgstr "正在初始化機器管理員..."
  207. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825
  208. msgctxt "@info:progress"
  209. msgid "Initializing build volume..."
  210. msgstr "正在初始化列印範圍..."
  211. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896
  212. msgctxt "@info:progress"
  213. msgid "Setting up scene..."
  214. msgstr "正在設定場景..."
  215. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932
  216. msgctxt "@info:progress"
  217. msgid "Loading interface..."
  218. msgstr "正在載入介面..."
  219. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937
  220. msgctxt "@info:progress"
  221. msgid "Initializing engine..."
  222. msgstr "正在初始化引擎..."
  223. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254
  224. #, python-format
  225. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  226. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  227. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  228. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807
  229. #, python-brace-format
  230. msgctxt "@info:status"
  231. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  232. msgstr "一次只能載入一個 G-code 檔案。{0} 已跳過匯入"
  233. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177
  234. msgctxt "@info:title"
  235. msgid "Warning"
  236. msgstr "警告"
  237. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819
  238. #, python-brace-format
  239. msgctxt "@info:status"
  240. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  241. msgstr "如果載入 G-code,則無法開啟其他任何檔案。{0} 已跳過匯入"
  242. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141
  243. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  244. msgctxt "@info:title"
  245. msgid "Error"
  246. msgstr "錯誤"
  247. #: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286
  248. msgctxt "@action:button"
  249. msgid "Skip"
  250. msgstr "略過"
  251. #: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  252. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127
  253. msgctxt "@action:button"
  254. msgid "Close"
  255. msgstr "關閉"
  256. #: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277
  257. msgctxt "@action:button"
  258. msgid "Next"
  259. msgstr "下一步"
  260. #: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26
  261. msgctxt "@action:button"
  262. msgid "Finish"
  263. msgstr "完成"
  264. #: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48
  265. msgctxt "@action:button"
  266. msgid "Add"
  267. msgstr "增加"
  268. #: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  269. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44
  270. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
  271. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  272. msgctxt "@action:button"
  273. msgid "Cancel"
  274. msgstr "取消"
  275. #: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69
  276. #, python-brace-format
  277. msgctxt "@label"
  278. msgid "Group #{group_nr}"
  279. msgstr "群組 #{group_nr}"
  280. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85
  281. msgctxt "@tooltip"
  282. msgid "Outer Wall"
  283. msgstr "外壁"
  284. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86
  285. msgctxt "@tooltip"
  286. msgid "Inner Walls"
  287. msgstr "內壁"
  288. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87
  289. msgctxt "@tooltip"
  290. msgid "Skin"
  291. msgstr "表層"
  292. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88
  293. msgctxt "@tooltip"
  294. msgid "Infill"
  295. msgstr "填充"
  296. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89
  297. msgctxt "@tooltip"
  298. msgid "Support Infill"
  299. msgstr "支撐填充"
  300. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90
  301. msgctxt "@tooltip"
  302. msgid "Support Interface"
  303. msgstr "支撐介面"
  304. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91
  305. msgctxt "@tooltip"
  306. msgid "Support"
  307. msgstr "支撐"
  308. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92
  309. msgctxt "@tooltip"
  310. msgid "Skirt"
  311. msgstr "裙邊"
  312. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93
  313. msgctxt "@tooltip"
  314. msgid "Prime Tower"
  315. msgstr "裝填塔"
  316. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94
  317. msgctxt "@tooltip"
  318. msgid "Travel"
  319. msgstr "移動"
  320. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95
  321. msgctxt "@tooltip"
  322. msgid "Retractions"
  323. msgstr "回抽"
  324. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96
  325. msgctxt "@tooltip"
  326. msgid "Other"
  327. msgstr "其它"
  328. #: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61
  329. msgctxt "@text:window"
  330. msgid "The release notes could not be opened."
  331. msgstr "發佈通知無法開啟."
  332. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107
  333. msgctxt "@title:window"
  334. msgid "Cura can't start"
  335. msgstr "Cura 無法啟動"
  336. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113
  337. msgctxt "@label crash message"
  338. msgid ""
  339. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  340. " <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"
  341. " <p>Backups can be found in the configuration folder.</p>\n"
  342. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  343. " "
  344. msgstr ""
  345. "<p><b>糟糕,Ultimaker Cura 遇到了一些似乎不正常的事情。</p></b>\n"
  346. " <p>我們在啟動過程中遇到了無法修正的錯誤。這可能是由一些不正確的設定檔造成的。我們建議備份並重置您的設定。</p>\n"
  347. " <p>備份檔案可在設定資料夾中找到。</p>\n"
  348. " <p>請將錯誤報告傳送給我們以修正此問題。</p>\n"
  349. " "
  350. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122
  351. msgctxt "@action:button"
  352. msgid "Send crash report to Ultimaker"
  353. msgstr "傳送錯誤報告給 Ultimaker"
  354. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125
  355. msgctxt "@action:button"
  356. msgid "Show detailed crash report"
  357. msgstr "顯示詳細的錯誤報告"
  358. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129
  359. msgctxt "@action:button"
  360. msgid "Show configuration folder"
  361. msgstr "顯示設定資料夾"
  362. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140
  363. msgctxt "@action:button"
  364. msgid "Backup and Reset Configuration"
  365. msgstr "備份和重置設定"
  366. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171
  367. msgctxt "@title:window"
  368. msgid "Crash Report"
  369. msgstr "錯誤報告"
  370. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190
  371. msgctxt "@label crash message"
  372. msgid ""
  373. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  374. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  375. " "
  376. msgstr ""
  377. "<p><b>Cura 發生了一個嚴重的錯誤。請將錯誤報告傳送給我們以修正此問題</p></b>\n"
  378. " <p>請用\"送出報告\"按鈕自動發出一份錯誤報告到我們的伺服器</p>\n"
  379. " "
  380. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198
  381. msgctxt "@title:groupbox"
  382. msgid "System information"
  383. msgstr "系統資訊"
  384. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207
  385. msgctxt "@label unknown version of Cura"
  386. msgid "Unknown"
  387. msgstr "未知"
  388. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228
  389. msgctxt "@label Cura version number"
  390. msgid "Cura version"
  391. msgstr "Cura 版本"
  392. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229
  393. msgctxt "@label"
  394. msgid "Cura language"
  395. msgstr "Cura 語言"
  396. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230
  397. msgctxt "@label"
  398. msgid "OS language"
  399. msgstr "作業系統語言"
  400. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231
  401. msgctxt "@label Type of platform"
  402. msgid "Platform"
  403. msgstr "平台"
  404. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232
  405. msgctxt "@label"
  406. msgid "Qt version"
  407. msgstr "Qt 版本"
  408. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233
  409. msgctxt "@label"
  410. msgid "PyQt version"
  411. msgstr "PyQt 版本"
  412. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234
  413. msgctxt "@label OpenGL version"
  414. msgid "OpenGL"
  415. msgstr "OpenGL"
  416. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264
  417. msgctxt "@label"
  418. msgid "Not yet initialized<br/>"
  419. msgstr "尚未初始化<br/>"
  420. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267
  421. #, python-brace-format
  422. msgctxt "@label OpenGL version"
  423. msgid "<li>OpenGL Version: {version}</li>"
  424. msgstr "<li>OpenGL 版本:{version}</li>"
  425. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268
  426. #, python-brace-format
  427. msgctxt "@label OpenGL vendor"
  428. msgid "<li>OpenGL Vendor: {vendor}</li>"
  429. msgstr "<li>OpenGL 供應商:{vendor}</li>"
  430. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269
  431. #, python-brace-format
  432. msgctxt "@label OpenGL renderer"
  433. msgid "<li>OpenGL Renderer: {renderer}</li>"
  434. msgstr "<li>OpenGL 渲染器:{renderer}</li>"
  435. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303
  436. msgctxt "@title:groupbox"
  437. msgid "Error traceback"
  438. msgstr "錯誤追溯"
  439. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389
  440. msgctxt "@title:groupbox"
  441. msgid "Logs"
  442. msgstr "日誌"
  443. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417
  444. msgctxt "@action:button"
  445. msgid "Send report"
  446. msgstr "送出報告"
  447. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216
  448. msgctxt "@info"
  449. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  450. msgstr "無法開始新的登入程序。檢查是否有其他登入仍在進行中。"
  451. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277
  452. msgctxt "@info"
  453. msgid "Unable to reach the Ultimaker account server."
  454. msgstr "無法連上 Ultimaker 帳號伺服器。"
  455. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278
  456. msgctxt "@info:title"
  457. msgid "Log-in failed"
  458. msgstr "登入失敗"
  459. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  460. msgctxt "@message"
  461. msgid "The provided state is not correct."
  462. msgstr "提供的狀態不正確。"
  463. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  464. msgctxt "@message"
  465. msgid "Timeout when authenticating with the account server."
  466. msgstr "在向帳戶伺服器進行身分驗證時逾時."
  467. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  468. msgctxt "@message"
  469. msgid "Please give the required permissions when authorizing this application."
  470. msgstr "核准此應用程式時,請給予所需的權限。"
  471. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  472. msgctxt "@message"
  473. msgid "Something unexpected happened when trying to log in, please try again."
  474. msgstr "嘗試登入時出現意外狀況,請再試一次。"
  475. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  476. msgctxt "@message"
  477. msgid "Could not read response."
  478. msgstr "雲端沒有讀取回應。"
  479. #: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30
  480. msgctxt "@info:status"
  481. msgid "Multiplying and placing objects"
  482. msgstr "正在複製並放置模型"
  483. #: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32
  484. msgctxt "@info:title"
  485. msgid "Placing Objects"
  486. msgstr "正在放置模型"
  487. #: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100
  488. msgctxt "@info:title"
  489. msgid "Placing Object"
  490. msgstr "擺放物件中"
  491. #: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36
  492. msgctxt "@info:not supported profile"
  493. msgid "Not supported"
  494. msgstr "不支援"
  495. #: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55
  496. msgctxt "@info:No intent profile selected"
  497. msgid "Default"
  498. msgstr "預設值"
  499. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218
  500. msgctxt "@label"
  501. msgid "Nozzle"
  502. msgstr "噴頭"
  503. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857
  504. msgctxt "@info:message Followed by a list of settings."
  505. msgid "Settings have been changed to match the current availability of extruders:"
  506. msgstr "設定已被更改為符合目前擠出機:"
  507. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858
  508. msgctxt "@info:title"
  509. msgid "Settings updated"
  510. msgstr "設定更新"
  511. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480
  512. msgctxt "@info:title"
  513. msgid "Extruder(s) Disabled"
  514. msgstr "擠出機已停用"
  515. #: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140
  516. msgctxt "@title:window"
  517. msgid "File Already Exists"
  518. msgstr "檔案已經存在"
  519. #: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141
  520. #, python-brace-format
  521. msgctxt "@label Don't translate the XML tag <filename>!"
  522. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  523. msgstr "檔案 <filename>{0}</filename> 已存在。你確定要覆蓋掉它嗎?"
  524. #: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462
  525. msgctxt "@info:status"
  526. msgid "Invalid file URL:"
  527. msgstr "無效的檔案網址:"
  528. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153
  529. #, python-brace-format
  530. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  531. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  532. msgstr "無法將列印參數匯出至 <filename>{0}</filename>:<message>{1}</message>"
  533. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163
  534. #, python-brace-format
  535. msgctxt "@info:status Don't translate the XML tag <filename>!"
  536. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  537. msgstr "無法將列印參數匯出至 <filename>{0}</filename>:寫入器外掛報告故障。"
  538. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171
  539. #, python-brace-format
  540. msgctxt "@info:status Don't translate the XML tag <filename>!"
  541. msgid "Exported profile to <filename>{0}</filename>"
  542. msgstr "列印參數已匯出至:<filename>{0}</filename>"
  543. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173
  544. msgctxt "@info:title"
  545. msgid "Export succeeded"
  546. msgstr "匯出成功"
  547. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205
  548. #, python-brace-format
  549. msgctxt "@info:status Don't translate the XML tags <filename>!"
  550. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  551. msgstr "無法從 <filename>{0}</filename> 匯入列印參數:{1}"
  552. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209
  553. #, python-brace-format
  554. msgctxt "@info:status Don't translate the XML tags <filename>!"
  555. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  556. msgstr "在加入印表機前,無法從 <filename>{0}</filename> 匯入列印參數。"
  557. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224
  558. #, python-brace-format
  559. msgctxt "@info:status Don't translate the XML tags <filename>!"
  560. msgid "No custom profile to import in file <filename>{0}</filename>"
  561. msgstr "檔案 <filename>{0}</filename> 內沒有自訂列印參數可匯入"
  562. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228
  563. #, python-brace-format
  564. msgctxt "@info:status Don't translate the XML tags <filename>!"
  565. msgid "Failed to import profile from <filename>{0}</filename>:"
  566. msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  567. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262
  568. #, python-brace-format
  569. msgctxt "@info:status Don't translate the XML tags <filename>!"
  570. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  571. msgstr "列印參數 <filename>{0}</filename> 含有不正確的資料,無法匯入。"
  572. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355
  573. #, python-brace-format
  574. msgctxt "@info:status Don't translate the XML tag <filename>!"
  575. msgid "Failed to import profile from <filename>{0}</filename>:"
  576. msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  577. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359
  578. #, python-brace-format
  579. msgctxt "@info:status"
  580. msgid "Successfully imported profile {0}."
  581. msgstr "已成功匯入列印參數 {0}。"
  582. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366
  583. #, python-brace-format
  584. msgctxt "@info:status"
  585. msgid "File {0} does not contain any valid profile."
  586. msgstr "檔案 {0} 內未含有效的列印參數。"
  587. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369
  588. #, python-brace-format
  589. msgctxt "@info:status"
  590. msgid "Profile {0} has an unknown file type or is corrupted."
  591. msgstr "列印參數 {0} 檔案類型未知或已損壞。"
  592. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443
  593. msgctxt "@label"
  594. msgid "Custom profile"
  595. msgstr "自訂列印參數"
  596. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459
  597. msgctxt "@info:status"
  598. msgid "Profile is missing a quality type."
  599. msgstr "列印參數缺少列印品質類型定義。"
  600. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463
  601. msgctxt "@info:status"
  602. msgid "There is no active printer yet."
  603. msgstr "尚未啟動列印機."
  604. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469
  605. msgctxt "@info:status"
  606. msgid "Unable to add the profile."
  607. msgstr "無法新增列印參數。"
  608. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483
  609. #, python-brace-format
  610. msgctxt "@info:status"
  611. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  612. msgstr "品質類型 '{0}' 與目前的啟用的機器設定 '{1} '不相容。"
  613. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488
  614. #, python-brace-format
  615. msgctxt "@info:status"
  616. 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."
  617. msgstr "警告:列印參數無法顯示,因為它的品質類型 '{0}' 無法在目前設定使用。切換到可使用此品質類型的線材/噴頭組合。"
  618. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  619. msgctxt "@label"
  620. msgid "Per Model Settings"
  621. msgstr "單一模型設定"
  622. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  623. msgctxt "@info:tooltip"
  624. msgid "Configure Per Model Settings"
  625. msgstr "設定對每個模型的單獨設定"
  626. #: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14
  627. msgctxt "@item:inlistbox"
  628. msgid "Cura Profile"
  629. msgstr "Cura 列印參數"
  630. #: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13
  631. msgctxt "@item:inlistbox"
  632. msgid "X3D File"
  633. msgstr "X3D 檔案"
  634. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  635. msgctxt "@info:backup_status"
  636. msgid "There was an error trying to restore your backup."
  637. msgstr "嘗試恢復備份時發生錯誤。"
  638. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  639. msgctxt "@info:title"
  640. msgid "Backups"
  641. msgstr "備份"
  642. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  643. msgctxt "@info:backup_status"
  644. msgid "There was an error while uploading your backup."
  645. msgstr "上傳你的備份時發生錯誤。"
  646. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  647. msgctxt "@info:backup_status"
  648. msgid "Creating your backup..."
  649. msgstr "正在建立備份..."
  650. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  651. msgctxt "@info:backup_status"
  652. msgid "There was an error while creating your backup."
  653. msgstr "建立備份時發生了錯誤。"
  654. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  655. msgctxt "@info:backup_status"
  656. msgid "Uploading your backup..."
  657. msgstr "正在上傳你的備份..."
  658. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  659. msgctxt "@info:backup_status"
  660. msgid "Your backup has finished uploading."
  661. msgstr "你的備份上傳完成。"
  662. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  663. msgctxt "@error:file_size"
  664. msgid "The backup exceeds the maximum file size."
  665. msgstr "備份超過了最大檔案大小。"
  666. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  667. msgctxt "@item:inmenu"
  668. msgid "Manage backups"
  669. msgstr "管理備份"
  670. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  671. msgctxt "@action"
  672. msgid "Machine Settings"
  673. msgstr "印表機設定"
  674. #: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12
  675. msgctxt "@label"
  676. msgid "Support Blocker"
  677. msgstr "支撐阻斷器"
  678. #: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13
  679. msgctxt "@info:tooltip"
  680. msgid "Create a volume in which supports are not printed."
  681. msgstr "建立一塊不列印支撐的空間。"
  682. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  683. msgctxt "@item:intext"
  684. msgid "Removable Drive"
  685. msgstr "行動裝置"
  686. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  687. msgctxt "@action:button Preceded by 'Ready to'."
  688. msgid "Save to Removable Drive"
  689. msgstr "儲存至行動裝置"
  690. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  691. #, python-brace-format
  692. msgctxt "@item:inlistbox"
  693. msgid "Save to Removable Drive {0}"
  694. msgstr "儲存到行動裝置 {0}"
  695. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  696. msgctxt "@info:status"
  697. msgid "There are no file formats available to write with!"
  698. msgstr "沒有可供寫入的檔案格式!"
  699. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97
  700. #, python-brace-format
  701. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  702. msgid "Saving to Removable Drive <filename>{0}</filename>"
  703. msgstr "正在儲存到行動裝置 <filename>{0}</filename>"
  704. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98
  705. msgctxt "@info:title"
  706. msgid "Saving"
  707. msgstr "儲存中"
  708. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111
  709. #, python-brace-format
  710. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  711. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  712. msgstr "無法儲存到 <filename>{0}</filename>:<message>{1}</message>"
  713. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127
  714. #, python-brace-format
  715. msgctxt "@info:status Don't translate the tag {device}!"
  716. msgid "Could not find a file name when trying to write to {device}."
  717. msgstr "嘗試寫入到 {device} 時無法找到檔名。"
  718. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159
  719. #, python-brace-format
  720. msgctxt "@info:status"
  721. msgid "Could not save to removable drive {0}: {1}"
  722. msgstr "無法儲存到行動裝置 {0}:{1}"
  723. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150
  724. #, python-brace-format
  725. msgctxt "@info:status"
  726. msgid "Saved to Removable Drive {0} as {1}"
  727. msgstr "儲存到行動裝置 {0}:{1}"
  728. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  729. msgctxt "@info:title"
  730. msgid "File Saved"
  731. msgstr "檔案已儲存"
  732. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  733. msgctxt "@action:button"
  734. msgid "Eject"
  735. msgstr "卸載"
  736. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  737. #, python-brace-format
  738. msgctxt "@action"
  739. msgid "Eject removable device {0}"
  740. msgstr "卸載行動裝置 {0}"
  741. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172
  742. #, python-brace-format
  743. msgctxt "@info:status"
  744. msgid "Ejected {0}. You can now safely remove the drive."
  745. msgstr "已卸載 {0}。現在你可以安全地移除行動裝置。"
  746. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  747. msgctxt "@info:title"
  748. msgid "Safely Remove Hardware"
  749. msgstr "安全移除硬體"
  750. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176
  751. #, python-brace-format
  752. msgctxt "@info:status"
  753. msgid "Failed to eject {0}. Another program may be using the drive."
  754. msgstr "無法卸載 {0},可能有其它程式正在使用行動裝置。"
  755. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  756. msgctxt "@action"
  757. msgid "Update Firmware"
  758. msgstr "更新韌體"
  759. #: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14
  760. msgctxt "@item:inlistbox"
  761. msgid "Cura 15.04 profiles"
  762. msgstr "Cura 15.04 列印參數"
  763. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  764. msgctxt "@title:tab"
  765. msgid "Recommended"
  766. msgstr "推薦"
  767. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  768. msgctxt "@title:tab"
  769. msgid "Custom"
  770. msgstr "自訂選項"
  771. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542
  772. #, python-brace-format
  773. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  774. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  775. msgstr "專案檔案 <filename>{0}</filename> 包含未知的機器類型 <message>{1}</message>。機器無法被匯入,但模型將被匯入。"
  776. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545
  777. msgctxt "@info:title"
  778. msgid "Open Project File"
  779. msgstr "開啟專案檔案"
  780. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
  781. #, python-brace-format
  782. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  783. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  784. msgstr "專案檔案 <filename>{0}</filename> 無法存取:<message>{1}</message>。"
  785. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651
  786. msgctxt "@info:title"
  787. msgid "Can't Open Project File"
  788. msgstr "無法開啟專案檔案"
  789. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650
  790. #, python-brace-format
  791. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  792. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  793. msgstr "專案檔案<filename>{0}</filename> 已毀損 : <message>{1}</message>."
  794. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703
  795. #, python-brace-format
  796. msgctxt "@info:error Don't translate the XML tag <filename>!"
  797. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  798. msgstr "專案檔案 <filename>{0}</filename> 使用了此版本 Ultimaker Cura 未知的參數製作。"
  799. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33
  800. msgctxt "@item:inlistbox"
  801. msgid "3MF File"
  802. msgstr "3MF 檔案"
  803. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149
  804. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159
  805. msgctxt "@info:error"
  806. msgid "Can't write to UFP file:"
  807. msgstr "無法寫入 UFP 檔案:"
  808. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22
  809. msgctxt "@item:inlistbox"
  810. msgid "Ultimaker Format Package"
  811. msgstr "Ultimaker 格式的封包"
  812. #: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16
  813. msgctxt "@item:inlistbox"
  814. msgid "G-code File"
  815. msgstr "G-code 檔案"
  816. #: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13
  817. msgctxt "@item:inmenu"
  818. msgid "Preview"
  819. msgstr "預覽"
  820. #: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12
  821. msgctxt "@item:inlistbox"
  822. msgid "X-Ray view"
  823. msgstr "透視檢視"
  824. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  825. msgctxt "@info:status"
  826. msgid "Processing Layers"
  827. msgstr "正在處理層"
  828. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  829. msgctxt "@info:title"
  830. msgid "Information"
  831. msgstr "資訊"
  832. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161
  833. msgctxt "@message"
  834. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  835. msgstr "未知問題使切片失敗. 請考慮在我們的問題追蹤器內回報問題."
  836. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  837. msgctxt "@message:title"
  838. msgid "Slicing failed"
  839. msgstr "切片失敗"
  840. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167
  841. msgctxt "@message:button"
  842. msgid "Report a bug"
  843. msgstr "回報問題"
  844. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  845. msgctxt "@message:description"
  846. msgid "Report a bug on Ultimaker Cura's issue tracker."
  847. msgstr "於Ultimaker Cura問題追蹤器中回報問題."
  848. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395
  849. msgctxt "@info:status"
  850. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  851. msgstr "無法使用目前線材切片,因為它與所選機器或設定不相容。"
  852. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456
  853. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493
  854. msgctxt "@info:title"
  855. msgid "Unable to slice"
  856. msgstr "無法切片"
  857. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  858. #, python-brace-format
  859. msgctxt "@info:status"
  860. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  861. msgstr "無法使用目前設定進行切片。以下設定存在錯誤:{0}"
  862. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  863. #, python-brace-format
  864. msgctxt "@info:status"
  865. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  866. msgstr "因部份模型設定問題無法進行切片。部份模型的下列設定有錯誤:{error_labels}"
  867. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  868. msgctxt "@info:status"
  869. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  870. msgstr "無法切片(原因:換料塔或主位置無效)。"
  871. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479
  872. #, python-format
  873. msgctxt "@info:status"
  874. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  875. msgstr "有物件使用了被停用的擠出機 %s ,因此無法進行切片。"
  876. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489
  877. msgctxt "@info:status"
  878. msgid ""
  879. "Please review settings and check if your models:\n"
  880. "- Fit within the build volume\n"
  881. "- Are assigned to an enabled extruder\n"
  882. "- Are not all set as modifier meshes"
  883. msgstr ""
  884. "請檢查設定並檢查你的模型是否:\n"
  885. "- 適合列印範圍\n"
  886. "- 分配了一個已啟用的擠出機\n"
  887. "- 沒有全部設定成修改網格"
  888. #: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15
  889. msgctxt "@item:inlistbox"
  890. msgid "AMF File"
  891. msgstr "AMF 檔案"
  892. #: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17
  893. msgctxt "@item:inlistbox"
  894. msgid "Compressed G-code File"
  895. msgstr "壓縮 G-code 檔案"
  896. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  897. msgctxt "@item:inmenu"
  898. msgid "Post Processing"
  899. msgstr "後處理"
  900. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  901. msgctxt "@item:inmenu"
  902. msgid "Modify G-Code"
  903. msgstr "修改 G-Code 檔案"
  904. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  905. msgctxt "@item:inmenu"
  906. msgid "USB printing"
  907. msgstr "USB 連線列印"
  908. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  909. msgctxt "@action:button Preceded by 'Ready to'."
  910. msgid "Print via USB"
  911. msgstr "透過 USB 連線列印"
  912. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  913. msgctxt "@info:tooltip"
  914. msgid "Print via USB"
  915. msgstr "透過 USB 連線列印"
  916. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  917. msgctxt "@info:status"
  918. msgid "Connected via USB"
  919. msgstr "透過 USB 連接"
  920. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  921. msgctxt "@label"
  922. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  923. msgstr "USB 列印正在進行中,關閉 Cura 將停止此列印工作。你確定要繼續嗎?"
  924. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  925. msgctxt "@message"
  926. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  927. msgstr "列印仍在進行中。列印完成前,Cura 無法透過 USB 開始另一次列印。"
  928. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  929. msgctxt "@message"
  930. msgid "Print in Progress"
  931. msgstr "列印正在進行中"
  932. #: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12
  933. msgctxt "@item:inmenu"
  934. msgid "Prepare"
  935. msgstr "準備"
  936. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347
  937. msgctxt "@info:status"
  938. msgid "Parsing G-code"
  939. msgstr "正在解析 G-code"
  940. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503
  941. msgctxt "@info:title"
  942. msgid "G-code Details"
  943. msgstr "G-code 細項設定"
  944. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501
  945. msgctxt "@info:generic"
  946. 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."
  947. msgstr "發送檔案之前,請確保 G-code 適用於目前印表機和印表機設定。目前 G-code 檔案可能不準確。"
  948. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18
  949. msgctxt "@item:inlistbox"
  950. msgid "G File"
  951. msgstr "G 檔案"
  952. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14
  953. msgctxt "@item:inlistbox"
  954. msgid "JPG Image"
  955. msgstr "JPG 圖片"
  956. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18
  957. msgctxt "@item:inlistbox"
  958. msgid "JPEG Image"
  959. msgstr "JPEG 圖片"
  960. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22
  961. msgctxt "@item:inlistbox"
  962. msgid "PNG Image"
  963. msgstr "PNG 圖片"
  964. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26
  965. msgctxt "@item:inlistbox"
  966. msgid "BMP Image"
  967. msgstr "BMP 圖片"
  968. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30
  969. msgctxt "@item:inlistbox"
  970. msgid "GIF Image"
  971. msgstr "GIF 圖片"
  972. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  973. msgctxt "@action"
  974. msgid "Level build plate"
  975. msgstr "調整列印平台水平"
  976. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  977. msgctxt "@action"
  978. msgid "Select upgrades"
  979. msgstr "選擇升級"
  980. #: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  981. msgctxt "@error:not supported"
  982. msgid "GCodeGzWriter does not support text mode."
  983. msgstr "G-code GZ 寫入器不支援非文字模式。"
  984. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  985. msgctxt "@info"
  986. msgid "Could not access update information."
  987. msgstr "無法存取更新資訊。"
  988. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  989. #, python-brace-format
  990. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  991. 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}."
  992. msgstr "新的問題修復功能適用於您的 {machine_name}! 如果你準備好了,推薦您將列印機的軟體升級至最新版本 {latest_version}."
  993. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  994. #, python-format
  995. msgctxt "@info:title The %s gets replaced with the printer name."
  996. msgid "New %s stable firmware available"
  997. msgstr "新的%s軟體已可使用"
  998. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  999. msgctxt "@action:button"
  1000. msgid "How to update"
  1001. msgstr "如何更新"
  1002. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  1003. msgctxt "@text"
  1004. msgid "Unable to read example data file."
  1005. msgstr "無法讀取範例資料檔案."
  1006. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19
  1007. msgctxt "@info:generic"
  1008. msgid "You need to quit and restart {} before changes have effect."
  1009. msgstr "你需要結束並重新啟動 {} ,更動才能生效。"
  1010. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91
  1011. msgctxt "@info:generic"
  1012. msgid "Syncing..."
  1013. msgstr "同步中..."
  1014. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  1015. msgctxt "@info:title"
  1016. msgid "Changes detected from your Ultimaker account"
  1017. msgstr "從你的 Ultimaker 帳號偵測到資料更動"
  1018. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  1019. msgctxt "@info:generic"
  1020. msgid "Do you want to sync material and software packages with your account?"
  1021. msgstr "你要使用你的帳號同步線材資料和軟體套件嗎?"
  1022. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
  1023. msgctxt "@action:button"
  1024. msgid "Sync"
  1025. msgstr "同步"
  1026. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41
  1027. msgctxt "@button"
  1028. msgid "Decline and remove from account"
  1029. msgstr "拒絕並從帳號中刪除"
  1030. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
  1031. msgctxt "@info:generic"
  1032. msgid "{} plugins failed to download"
  1033. msgstr "下載外掛 {} 失敗"
  1034. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  1035. msgctxt "@button"
  1036. msgid "Decline"
  1037. msgstr "拒絕"
  1038. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  1039. msgctxt "@button"
  1040. msgid "Agree"
  1041. msgstr "同意"
  1042. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  1043. msgctxt "@title:window"
  1044. msgid "Plugin License Agreement"
  1045. msgstr "外掛授權協議"
  1046. #: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  1047. msgctxt "@error:not supported"
  1048. msgid "GCodeWriter does not support non-text mode."
  1049. msgstr "G-code 寫入器不支援非文字模式。"
  1050. #: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  1051. msgctxt "@warning:status"
  1052. msgid "Please prepare G-code before exporting."
  1053. msgstr "匯出前請先將 G-code 準備好。"
  1054. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129
  1055. msgctxt "@info:status"
  1056. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1057. msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層。"
  1058. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130
  1059. msgctxt "@info:title"
  1060. msgid "Simulation View"
  1061. msgstr "模擬檢視"
  1062. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133
  1063. msgctxt "@info:status"
  1064. msgid "Nothing is shown because you need to slice first."
  1065. msgstr "因為你還沒切片,沒有東西可顯示。"
  1066. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134
  1067. msgctxt "@info:title"
  1068. msgid "No layers to show"
  1069. msgstr "沒有列印層可顯示"
  1070. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74
  1071. msgctxt "@info:option_text"
  1072. msgid "Do not show this message again"
  1073. msgstr "不要再顯示這個訊息"
  1074. # Added manually to fix a string that was changed after string freeze.
  1075. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15
  1076. msgctxt "@item:inlistbox"
  1077. msgid "Layer view"
  1078. msgstr "分層檢視"
  1079. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1080. msgctxt "@action:button Preceded by 'Ready to'."
  1081. msgid "Print over network"
  1082. msgstr "網路連線列印"
  1083. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1084. msgctxt "@properties:tooltip"
  1085. msgid "Print over network"
  1086. msgstr "網路連線列印"
  1087. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  1088. msgctxt "@info:status"
  1089. msgid "Connected over the network"
  1090. msgstr "透過網路連接"
  1091. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  1092. msgctxt "@info:status"
  1093. msgid "tomorrow"
  1094. msgstr "明天"
  1095. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  1096. msgctxt "@info:status"
  1097. msgid "today"
  1098. msgstr "今天"
  1099. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  1100. msgctxt "@action"
  1101. msgid "Connect via Network"
  1102. msgstr "透過網路連接"
  1103. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  1104. msgctxt "@info:status"
  1105. msgid "Please wait until the current job has been sent."
  1106. msgstr "請等待目前作業傳送完成。"
  1107. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  1108. msgctxt "@info:title"
  1109. msgid "Print error"
  1110. msgstr "列印錯誤"
  1111. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1112. msgctxt "@info:status"
  1113. msgid "Print job was successfully sent to the printer."
  1114. msgstr "列印作業已成功傳送到印表機。"
  1115. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1116. msgctxt "@info:title"
  1117. msgid "Data Sent"
  1118. msgstr "資料傳送"
  1119. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1120. msgctxt "@info:status"
  1121. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1122. msgstr "你正在嘗試連接到一台未安裝 Ultimaker Connect 的印表機。請將印表機更新至最新版本的韌體。"
  1123. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1124. msgctxt "@info:title"
  1125. msgid "Update your printer"
  1126. msgstr "更新你印表機"
  1127. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  1128. msgctxt "@info:status"
  1129. msgid "Print job queue is full. The printer can't accept a new job."
  1130. msgstr "列印作業隊列已滿,印表機無法再接受新的作業。"
  1131. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  1132. msgctxt "@info:title"
  1133. msgid "Queue Full"
  1134. msgstr "隊列已滿"
  1135. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  1136. msgctxt "@info:status"
  1137. msgid "Sending Print Job"
  1138. msgstr "正在傳送列印作業"
  1139. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  1140. msgctxt "@info:status"
  1141. msgid "Uploading print job to printer."
  1142. msgstr "正在上傳列印作業到印表機。"
  1143. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1144. #, python-brace-format
  1145. msgctxt "@info:status"
  1146. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1147. msgstr "Cura 偵測到群組 {0} 的管理主機上未安裝的線材參數。"
  1148. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1149. msgctxt "@info:title"
  1150. msgid "Sending materials to printer"
  1151. msgstr "向印表機傳送線材參數中"
  1152. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  1153. msgctxt "@info:text"
  1154. msgid "Could not upload the data to the printer."
  1155. msgstr "雲端服務未上傳資料到印表機。"
  1156. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1157. msgctxt "@info:title"
  1158. msgid "Network error"
  1159. msgstr "網路錯誤"
  1160. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  1161. #, python-brace-format
  1162. msgctxt "@info:status"
  1163. 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."
  1164. msgstr "你正在嘗試連接到 {0},但它不是印表機群組的管理者。你可以透過網頁將其設定為印表機群組的管理者。"
  1165. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  1166. msgctxt "@info:title"
  1167. msgid "Not a group host"
  1168. msgstr "不是印表機群組管理者"
  1169. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  1170. msgctxt "@action"
  1171. msgid "Configure group"
  1172. msgstr "設定印表機群組"
  1173. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  1174. #, python-brace-format
  1175. msgctxt "@info:status"
  1176. msgid ""
  1177. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  1178. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  1179. msgstr ""
  1180. "您的列印機 <b>{printer_name}</b> 可以透過雲端連接.\n"
  1181. "\v透過連接Digital Factory使您可以任意管理列印順序及監控列印"
  1182. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  1183. msgctxt "@info:title"
  1184. msgid "Are you ready for cloud printing?"
  1185. msgstr "您準備好雲端列印嗎?"
  1186. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  1187. msgctxt "@action"
  1188. msgid "Get started"
  1189. msgstr "開始"
  1190. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  1191. msgctxt "@action"
  1192. msgid "Learn more"
  1193. msgstr "學習更多"
  1194. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  1195. msgctxt "@action:button"
  1196. msgid "Print via cloud"
  1197. msgstr "透過雲端服務列印"
  1198. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
  1199. msgctxt "@properties:tooltip"
  1200. msgid "Print via cloud"
  1201. msgstr "透過雲端服務列印"
  1202. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
  1203. msgctxt "@info:status"
  1204. msgid "Connected via cloud"
  1205. msgstr "透過雲端服務連接"
  1206. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261
  1207. msgctxt "@action:button"
  1208. msgid "Monitor print"
  1209. msgstr "監控列印"
  1210. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263
  1211. msgctxt "@action:tooltip"
  1212. msgid "Track the print in Ultimaker Digital Factory"
  1213. msgstr "在Ultimaker Digital Factory中追蹤您的列印"
  1214. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279
  1215. #, python-brace-format
  1216. msgctxt "@error:send"
  1217. msgid "Unknown error code when uploading print job: {0}"
  1218. msgstr "不明上傳列印作業錯誤代碼:{0}"
  1219. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229
  1220. msgctxt "info:status"
  1221. msgid "New printer detected from your Ultimaker account"
  1222. msgid_plural "New printers detected from your Ultimaker account"
  1223. msgstr[0] "從你的 Ultimaker 帳號偵測到新的印表機"
  1224. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240
  1225. #, python-brace-format
  1226. msgctxt "info:status Filled in with printer name and printer model."
  1227. msgid "Adding printer {name} ({model}) from your account"
  1228. msgstr "從你的帳號新增印表機 {name} ({model})"
  1229. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257
  1230. #, python-brace-format
  1231. msgctxt "info:{0} gets replaced by a number of printers"
  1232. msgid "... and {0} other"
  1233. msgid_plural "... and {0} others"
  1234. msgstr[0] "… 和 {0} 其他"
  1235. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262
  1236. msgctxt "info:status"
  1237. msgid "Printers added from Digital Factory:"
  1238. msgstr "從 Digital Factory 新增的印表機:"
  1239. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328
  1240. msgctxt "info:status"
  1241. msgid "A cloud connection is not available for a printer"
  1242. msgid_plural "A cloud connection is not available for some printers"
  1243. msgstr[0] "印表機無法使用雲端連接"
  1244. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  1245. msgctxt "info:status"
  1246. msgid "This printer is not linked to the Digital Factory:"
  1247. msgid_plural "These printers are not linked to the Digital Factory:"
  1248. msgstr[0] "印表機未連到 Digital Factory:"
  1249. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432
  1250. msgctxt "info:name"
  1251. msgid "Ultimaker Digital Factory"
  1252. msgstr "Ultimaker Digital Factory"
  1253. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346
  1254. #, python-brace-format
  1255. msgctxt "info:status"
  1256. msgid "To establish a connection, please visit the {website_link}"
  1257. msgstr "要建立連線,請前往 {website_link}"
  1258. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350
  1259. msgctxt "@action:button"
  1260. msgid "Keep printer configurations"
  1261. msgstr "保留印表機設定"
  1262. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355
  1263. msgctxt "@action:button"
  1264. msgid "Remove printers"
  1265. msgstr "移除印表機"
  1266. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434
  1267. #, python-brace-format
  1268. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1269. msgid "{printer_name} will be removed until the next account sync."
  1270. msgstr "{printer_name} 將被移除,直到下次帳號同步之前。"
  1271. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435
  1272. #, python-brace-format
  1273. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1274. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  1275. msgstr "要永久移除 {printer_name},請前往 {digital_factory_link}"
  1276. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436
  1277. #, python-brace-format
  1278. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1279. msgid "Are you sure you want to remove {printer_name} temporarily?"
  1280. msgstr "你確定要暫時移除 {printer_name} 嗎?"
  1281. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473
  1282. msgctxt "@title:window"
  1283. msgid "Remove printers?"
  1284. msgstr "移除印表機?"
  1285. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476
  1286. #, python-brace-format
  1287. msgctxt "@label"
  1288. msgid ""
  1289. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  1290. "Are you sure you want to continue?"
  1291. msgid_plural ""
  1292. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  1293. "Are you sure you want to continue?"
  1294. msgstr[0] ""
  1295. "你將從 Cura 移除 {0} 印表機。此動作無法復原。\n"
  1296. "你確定要繼續嗎?"
  1297. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481
  1298. msgctxt "@label"
  1299. msgid ""
  1300. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  1301. "Are you sure you want to continue?"
  1302. msgstr ""
  1303. "你將從 Cura 移除所有印表機。此動作無法復原。\n"
  1304. "你確定要繼續嗎?"
  1305. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15
  1306. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1307. msgid "Open Compressed Triangle Mesh"
  1308. msgstr "打開壓縮的三角面網格"
  1309. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19
  1310. msgctxt "@item:inlistbox"
  1311. msgid "COLLADA Digital Asset Exchange"
  1312. msgstr "COLLADA Digital Asset Exchange"
  1313. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23
  1314. msgctxt "@item:inlistbox"
  1315. msgid "glTF Binary"
  1316. msgstr "glTF Binary"
  1317. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27
  1318. msgctxt "@item:inlistbox"
  1319. msgid "glTF Embedded JSON"
  1320. msgstr "glTF Embedded JSON"
  1321. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36
  1322. msgctxt "@item:inlistbox"
  1323. msgid "Stanford Triangle Format"
  1324. msgstr "Stanford 三角形格式"
  1325. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40
  1326. msgctxt "@item:inlistbox"
  1327. msgid "Compressed COLLADA Digital Asset Exchange"
  1328. msgstr "Compressed COLLADA Digital Asset Exchange"
  1329. #: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71
  1330. msgctxt "@info:status"
  1331. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1332. msgstr "模型區域顯示已遺失或突出表面, 請修復您的模型並重新匯入Cura."
  1333. #: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73
  1334. msgctxt "@info:title"
  1335. msgid "Model Errors"
  1336. msgstr "模型錯誤"
  1337. #: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12
  1338. msgctxt "@item:inmenu"
  1339. msgid "Solid view"
  1340. msgstr "實體檢視"
  1341. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226
  1342. msgctxt "@error:zip"
  1343. msgid "Error writing 3mf file."
  1344. msgstr "寫入 3mf 檔案發生錯誤。"
  1345. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1346. msgctxt "@error:zip"
  1347. msgid "3MF Writer plug-in is corrupt."
  1348. msgstr "3MF 寫入器外掛已損壞。"
  1349. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  1350. msgctxt "@error"
  1351. msgid "There is no workspace yet to write. Please add a printer first."
  1352. msgstr "無工作區可寫入,請先添加一部印表機."
  1353. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  1354. msgctxt "@error:zip"
  1355. msgid "No permission to write the workspace here."
  1356. msgstr "沒有寫入此處工作區的權限。"
  1357. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  1358. msgctxt "@error:zip"
  1359. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1360. msgstr "操作系統不允許將專案檔案儲存到此位置或儲存為此檔名。"
  1361. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26
  1362. msgctxt "@item:inlistbox"
  1363. msgid "3MF file"
  1364. msgstr "3MF 檔案"
  1365. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34
  1366. msgctxt "@item:inlistbox"
  1367. msgid "Cura Project 3MF file"
  1368. msgstr "Cura 專案 3MF 檔案"
  1369. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14
  1370. msgctxt "@item:inmenu"
  1371. msgid "Monitor"
  1372. msgstr "監控"
  1373. #: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31
  1374. msgctxt "@info:title"
  1375. msgid "3D Model Assistant"
  1376. msgstr "3D 模型助手"
  1377. #: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97
  1378. #, python-brace-format
  1379. msgctxt "@info:status"
  1380. msgid ""
  1381. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1382. "<p>{model_names}</p>\n"
  1383. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1384. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1385. msgstr ""
  1386. "<p>由於模型尺寸和線材設定的原因,一個或多個模型無法在最佳情狀下列印</p>\n"
  1387. "<p>{model_names}</p>\n"
  1388. "<p>了解如何確保最佳的列印品質和可靠性。</p>\n"
  1389. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">閱讀列印品質指南</a></p>"
  1390. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1391. msgctxt "@label"
  1392. msgid "Mesh Type"
  1393. msgstr "網格類型"
  1394. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1395. msgctxt "@label"
  1396. msgid "Normal model"
  1397. msgstr "普通模型"
  1398. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1399. msgctxt "@label"
  1400. msgid "Print as support"
  1401. msgstr "做為支撐"
  1402. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1403. msgctxt "@label"
  1404. msgid "Modify settings for overlaps"
  1405. msgstr "修改重疊處設定"
  1406. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1407. msgctxt "@label"
  1408. msgid "Don't support overlaps"
  1409. msgstr "重疊處不建立支撐"
  1410. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151
  1411. msgctxt "@item:inlistbox"
  1412. msgid "Infill mesh only"
  1413. msgstr "只填充網格"
  1414. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152
  1415. msgctxt "@item:inlistbox"
  1416. msgid "Cutting mesh"
  1417. msgstr "切割網格"
  1418. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382
  1419. msgctxt "@action:button"
  1420. msgid "Select settings"
  1421. msgstr "選擇設定"
  1422. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1423. msgctxt "@title:window"
  1424. msgid "Select Settings to Customize for this model"
  1425. msgstr "選擇對此模型的自訂設定"
  1426. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96
  1427. msgctxt "@label:textbox"
  1428. msgid "Filter..."
  1429. msgstr "篩選..."
  1430. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1431. msgctxt "@label:checkbox"
  1432. msgid "Show all"
  1433. msgstr "顯示全部"
  1434. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25
  1435. msgctxt "@title:window"
  1436. msgid "Cura Backups"
  1437. msgstr "Cura 備份"
  1438. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1439. msgctxt "@backuplist:label"
  1440. msgid "Cura Version"
  1441. msgstr "Cura 版本"
  1442. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1443. msgctxt "@backuplist:label"
  1444. msgid "Machines"
  1445. msgstr "印表機"
  1446. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1447. msgctxt "@backuplist:label"
  1448. msgid "Materials"
  1449. msgstr "線材"
  1450. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1451. msgctxt "@backuplist:label"
  1452. msgid "Profiles"
  1453. msgstr "參數"
  1454. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1455. msgctxt "@backuplist:label"
  1456. msgid "Plugins"
  1457. msgstr "外掛"
  1458. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1459. msgctxt "@button"
  1460. msgid "Want more?"
  1461. msgstr "想要更多?"
  1462. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1463. msgctxt "@button"
  1464. msgid "Backup Now"
  1465. msgstr "立即備份"
  1466. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1467. msgctxt "@checkbox:description"
  1468. msgid "Auto Backup"
  1469. msgstr "自動備份"
  1470. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1471. msgctxt "@checkbox:description"
  1472. msgid "Automatically create a backup each day that Cura is started."
  1473. msgstr "每天啟動 Cura 時自動建立備份。"
  1474. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  1475. msgctxt "@button"
  1476. msgid "Restore"
  1477. msgstr "復原"
  1478. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  1479. msgctxt "@dialog:title"
  1480. msgid "Delete Backup"
  1481. msgstr "刪除備份"
  1482. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101
  1483. msgctxt "@dialog:info"
  1484. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1485. msgstr "你確定要刪除此備份嗎? 這動作無法復原。"
  1486. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  1487. msgctxt "@dialog:title"
  1488. msgid "Restore Backup"
  1489. msgstr "復原備份"
  1490. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110
  1491. msgctxt "@dialog:info"
  1492. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1493. msgstr "在復原備份之前,你需要重新啟動 Cura。 你想要現在關閉 Cura 嗎?"
  1494. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1495. msgctxt "@description"
  1496. msgid "Backup and synchronize your Cura settings."
  1497. msgstr "備份並同步你的 Cura 設定。"
  1498. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225
  1499. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53
  1500. msgctxt "@button"
  1501. msgid "Sign in"
  1502. msgstr "登入"
  1503. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1504. msgctxt "@title"
  1505. msgid "My Backups"
  1506. msgstr "我的備份"
  1507. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  1508. msgctxt "@empty_state"
  1509. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1510. msgstr "你目前沒有任何備份。 使用「立即備份」按鈕建立一個。"
  1511. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  1512. msgctxt "@backup_limit_info"
  1513. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1514. msgstr "在預覽階段限制只能顯示 5 個備份。 刪除備份以顯示較舊的備份。"
  1515. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1516. msgctxt "@title:label"
  1517. msgid "Printer Settings"
  1518. msgstr "印表機設定"
  1519. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  1520. msgctxt "@label"
  1521. msgid "X (Width)"
  1522. msgstr "X (寬度)"
  1523. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  1524. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  1525. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  1526. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  1527. msgctxt "@label"
  1528. msgid "mm"
  1529. msgstr "mm"
  1530. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  1531. msgctxt "@label"
  1532. msgid "Y (Depth)"
  1533. msgstr "Y (深度)"
  1534. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  1535. msgctxt "@label"
  1536. msgid "Z (Height)"
  1537. msgstr "Z (高度)"
  1538. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  1539. msgctxt "@label"
  1540. msgid "Build plate shape"
  1541. msgstr "列印平台形狀"
  1542. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  1543. msgctxt "@label"
  1544. msgid "Origin at center"
  1545. msgstr "原點位於中心"
  1546. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  1547. msgctxt "@label"
  1548. msgid "Heated bed"
  1549. msgstr "熱床"
  1550. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  1551. msgctxt "@label"
  1552. msgid "Heated build volume"
  1553. msgstr "熱箱"
  1554. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  1555. msgctxt "@label"
  1556. msgid "G-code flavor"
  1557. msgstr "G-code 類型"
  1558. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  1559. msgctxt "@title:label"
  1560. msgid "Printhead Settings"
  1561. msgstr "列印頭設定"
  1562. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1563. msgctxt "@label"
  1564. msgid "X min"
  1565. msgstr "X 最小值"
  1566. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1567. msgctxt "@label"
  1568. msgid "Y min"
  1569. msgstr "Y 最小值"
  1570. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1571. msgctxt "@label"
  1572. msgid "X max"
  1573. msgstr "X 最大值"
  1574. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1575. msgctxt "@label"
  1576. msgid "Y max"
  1577. msgstr "Y 最大值"
  1578. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1579. msgctxt "@label"
  1580. msgid "Gantry Height"
  1581. msgstr "吊車高度"
  1582. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  1583. msgctxt "@label"
  1584. msgid "Number of Extruders"
  1585. msgstr "擠出機數目"
  1586. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  1587. msgctxt "@label"
  1588. msgid "Apply Extruder offsets to GCode"
  1589. msgstr "將擠出機偏移設定至Gcode"
  1590. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  1591. msgctxt "@title:label"
  1592. msgid "Start G-code"
  1593. msgstr "起始 G-code"
  1594. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  1595. msgctxt "@title:label"
  1596. msgid "End G-code"
  1597. msgstr "結束 G-code"
  1598. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1599. msgctxt "@title:label"
  1600. msgid "Nozzle Settings"
  1601. msgstr "噴頭設定"
  1602. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  1603. msgctxt "@label"
  1604. msgid "Nozzle size"
  1605. msgstr "噴頭孔徑"
  1606. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  1607. msgctxt "@label"
  1608. msgid "Compatible material diameter"
  1609. msgstr "相容的線材直徑"
  1610. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  1611. msgctxt "@label"
  1612. msgid "Nozzle offset X"
  1613. msgstr "噴頭偏移 X"
  1614. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  1615. msgctxt "@label"
  1616. msgid "Nozzle offset Y"
  1617. msgstr "噴頭偏移 Y"
  1618. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  1619. msgctxt "@label"
  1620. msgid "Cooling Fan Number"
  1621. msgstr "冷卻風扇數量"
  1622. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  1623. msgctxt "@title:label"
  1624. msgid "Extruder Start G-code"
  1625. msgstr "擠出機起始 G-code"
  1626. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  1627. msgctxt "@title:label"
  1628. msgid "Extruder End G-code"
  1629. msgstr "擠出機結束 G-code"
  1630. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1631. msgctxt "@title:tab"
  1632. msgid "Printer"
  1633. msgstr "印表機"
  1634. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1635. msgctxt "@title"
  1636. msgid "Update Firmware"
  1637. msgstr "更新韌體"
  1638. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1639. msgctxt "@label"
  1640. 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."
  1641. msgstr "韌體是直接在 3D 印表機上運行的一個軟體。此韌體控制步進馬達,調節溫度讓印表機正常運作。"
  1642. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1643. msgctxt "@label"
  1644. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1645. msgstr "新印表機出廠配備的韌體完全可以正常使用,但新版本往往具有更多的新功能和改進。"
  1646. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1647. msgctxt "@action:button"
  1648. msgid "Automatically upgrade Firmware"
  1649. msgstr "自動升級韌體"
  1650. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1651. msgctxt "@action:button"
  1652. msgid "Upload custom Firmware"
  1653. msgstr "上傳自訂韌體"
  1654. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1655. msgctxt "@label"
  1656. msgid "Firmware can not be updated because there is no connection with the printer."
  1657. msgstr "因為沒有與印表機連線,無法更新韌體。"
  1658. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1659. msgctxt "@label"
  1660. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1661. msgstr "因為連線的印表機不支援更新韌體,無法更新韌體。"
  1662. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1663. msgctxt "@title:window"
  1664. msgid "Select custom firmware"
  1665. msgstr "選擇自訂韌體"
  1666. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1667. msgctxt "@title:window"
  1668. msgid "Firmware Update"
  1669. msgstr "韌體更新"
  1670. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1671. msgctxt "@label"
  1672. msgid "Updating firmware."
  1673. msgstr "更新韌體中..."
  1674. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1675. msgctxt "@label"
  1676. msgid "Firmware update completed."
  1677. msgstr "韌體更新已完成。"
  1678. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1679. msgctxt "@label"
  1680. msgid "Firmware update failed due to an unknown error."
  1681. msgstr "由於未知錯誤,韌體更新失敗。"
  1682. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1683. msgctxt "@label"
  1684. msgid "Firmware update failed due to an communication error."
  1685. msgstr "由於通訊錯誤,導致韌體更新失敗。"
  1686. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1687. msgctxt "@label"
  1688. msgid "Firmware update failed due to an input/output error."
  1689. msgstr "由於輸入/輸出錯誤,導致韌體更新失敗。"
  1690. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1691. msgctxt "@label"
  1692. msgid "Firmware update failed due to missing firmware."
  1693. msgstr "由於韌體遺失,導致韌體更新失敗。"
  1694. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  1695. msgctxt "@title:window"
  1696. msgid "Open Project"
  1697. msgstr "開啟專案"
  1698. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  1699. msgctxt "@action:ComboBox Update/override existing profile"
  1700. msgid "Update existing"
  1701. msgstr "更新已有設定"
  1702. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
  1703. msgctxt "@action:ComboBox Save settings in a new profile"
  1704. msgid "Create new"
  1705. msgstr "新建設定"
  1706. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70
  1707. msgctxt "@action:title"
  1708. msgid "Summary - Cura Project"
  1709. msgstr "摘要 - Cura 專案"
  1710. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94
  1711. msgctxt "@action:label"
  1712. msgid "Printer settings"
  1713. msgstr "印表機設定"
  1714. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
  1715. msgctxt "@info:tooltip"
  1716. msgid "How should the conflict in the machine be resolved?"
  1717. msgstr "如何解決機器的設定衝突?"
  1718. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103
  1719. msgctxt "@action:label"
  1720. msgid "Type"
  1721. msgstr "類型"
  1722. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118
  1723. msgctxt "@action:label"
  1724. msgid "Printer Group"
  1725. msgstr "印表機群組"
  1726. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219
  1727. msgctxt "@action:label"
  1728. msgid "Profile settings"
  1729. msgstr "列印參數設定"
  1730. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
  1731. msgctxt "@info:tooltip"
  1732. msgid "How should the conflict in the profile be resolved?"
  1733. msgstr "如何解决列印參數中的設定衝突?"
  1734. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243
  1735. msgctxt "@action:label"
  1736. msgid "Name"
  1737. msgstr "名稱"
  1738. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260
  1739. msgctxt "@action:label"
  1740. msgid "Intent"
  1741. msgstr "意圖"
  1742. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227
  1743. msgctxt "@action:label"
  1744. msgid "Not in profile"
  1745. msgstr "不在列印參數中"
  1746. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232
  1747. msgctxt "@action:label"
  1748. msgid "%1 override"
  1749. msgid_plural "%1 overrides"
  1750. msgstr[0] "%1 覆寫"
  1751. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
  1752. msgctxt "@action:label"
  1753. msgid "Derivative from"
  1754. msgstr "衍生自"
  1755. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
  1756. msgctxt "@action:label"
  1757. msgid "%1, %2 override"
  1758. msgid_plural "%1, %2 overrides"
  1759. msgstr[0] "%1, %2 覆寫"
  1760. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  1761. msgctxt "@action:label"
  1762. msgid "Material settings"
  1763. msgstr "線材設定"
  1764. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
  1765. msgctxt "@info:tooltip"
  1766. msgid "How should the conflict in the material be resolved?"
  1767. msgstr "如何解决線材的設定衝突?"
  1768. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
  1769. msgctxt "@action:label"
  1770. msgid "Setting visibility"
  1771. msgstr "參數顯示設定"
  1772. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
  1773. msgctxt "@action:label"
  1774. msgid "Mode"
  1775. msgstr "模式"
  1776. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  1777. msgctxt "@action:label"
  1778. msgid "Visible settings:"
  1779. msgstr "顯示設定:"
  1780. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
  1781. msgctxt "@action:label"
  1782. msgid "%1 out of %2"
  1783. msgstr "%1 / %2"
  1784. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
  1785. msgctxt "@action:warning"
  1786. msgid "Loading a project will clear all models on the build plate."
  1787. msgstr "載入專案時將清除列印平台上的所有模型。"
  1788. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
  1789. msgctxt "@action:button"
  1790. msgid "Open"
  1791. msgstr "開啟"
  1792. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20
  1793. msgctxt "@title:window"
  1794. msgid "Post Processing Plugin"
  1795. msgstr "後處理外掛"
  1796. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59
  1797. msgctxt "@label"
  1798. msgid "Post Processing Scripts"
  1799. msgstr "後處理腳本"
  1800. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235
  1801. msgctxt "@action"
  1802. msgid "Add a script"
  1803. msgstr "添加一個腳本"
  1804. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282
  1805. msgctxt "@label"
  1806. msgid "Settings"
  1807. msgstr "設定"
  1808. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502
  1809. msgctxt "@info:tooltip"
  1810. msgid "Change active post-processing scripts."
  1811. msgstr "更改目前啟用的後處理腳本。"
  1812. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506
  1813. msgctxt "@info:tooltip"
  1814. msgid "The following script is active:"
  1815. msgid_plural "The following scripts are active:"
  1816. msgstr[0] "下列為啟用中的腳本:"
  1817. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19
  1818. msgctxt "@title:window"
  1819. msgid "Convert Image..."
  1820. msgstr "轉換圖片..."
  1821. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33
  1822. msgctxt "@info:tooltip"
  1823. msgid "The maximum distance of each pixel from \"Base.\""
  1824. msgstr "每個像素與底板的最大距離。"
  1825. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38
  1826. msgctxt "@action:label"
  1827. msgid "Height (mm)"
  1828. msgstr "高度 (mm)"
  1829. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56
  1830. msgctxt "@info:tooltip"
  1831. msgid "The base height from the build plate in millimeters."
  1832. msgstr "距離列印平台的底板高度,以毫米為單位。"
  1833. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61
  1834. msgctxt "@action:label"
  1835. msgid "Base (mm)"
  1836. msgstr "底板 (mm)"
  1837. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79
  1838. msgctxt "@info:tooltip"
  1839. msgid "The width in millimeters on the build plate."
  1840. msgstr "列印平台寬度,以毫米為單位。"
  1841. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84
  1842. msgctxt "@action:label"
  1843. msgid "Width (mm)"
  1844. msgstr "寬度 (mm)"
  1845. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103
  1846. msgctxt "@info:tooltip"
  1847. msgid "The depth in millimeters on the build plate"
  1848. msgstr "列印平台深度,以毫米為單位"
  1849. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108
  1850. msgctxt "@action:label"
  1851. msgid "Depth (mm)"
  1852. msgstr "深度 (mm)"
  1853. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126
  1854. msgctxt "@info:tooltip"
  1855. 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."
  1856. msgstr "若要列印浮雕,深色像素應該對應到較厚的位置,以阻擋更多的光通過。若要列印高度圖,淺色像素表示較高的地形,因此淺色像素應對應於產生的 3D 模型中較厚的位置。"
  1857. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139
  1858. msgctxt "@item:inlistbox"
  1859. msgid "Darker is higher"
  1860. msgstr "顏色越深高度越高"
  1861. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139
  1862. msgctxt "@item:inlistbox"
  1863. msgid "Lighter is higher"
  1864. msgstr "顏色越淺高度越高"
  1865. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149
  1866. msgctxt "@info:tooltip"
  1867. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1868. msgstr "若要列印浮雕,使用一個簡易的對數模型計算半透明效果。若要列印高度圖,將像素值線性對應到高度。"
  1869. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161
  1870. msgctxt "@item:inlistbox"
  1871. msgid "Linear"
  1872. msgstr "線性"
  1873. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172
  1874. msgctxt "@item:inlistbox"
  1875. msgid "Translucency"
  1876. msgstr "半透明"
  1877. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171
  1878. msgctxt "@info:tooltip"
  1879. 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."
  1880. msgstr "光線穿透 1mm 厚度列印件的百分比。降低此值可增加暗部的對比度,並降低亮部的對比度。"
  1881. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177
  1882. msgctxt "@action:label"
  1883. msgid "1mm Transmittance (%)"
  1884. msgstr "1mm 透明度"
  1885. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195
  1886. msgctxt "@info:tooltip"
  1887. msgid "The amount of smoothing to apply to the image."
  1888. msgstr "影像平滑程度。"
  1889. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200
  1890. msgctxt "@action:label"
  1891. msgid "Smoothing"
  1892. msgstr "平滑"
  1893. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  1894. msgctxt "@action:button"
  1895. msgid "OK"
  1896. msgstr "確定"
  1897. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  1898. msgctxt "@label"
  1899. msgid "Please select any upgrades made to this Ultimaker Original"
  1900. msgstr "請選擇適用於 Ultimaker Original 的更新檔案"
  1901. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  1902. msgctxt "@label"
  1903. msgid "Heated Build Plate (official kit or self-built)"
  1904. msgstr "熱床(官方版本或自製版本)"
  1905. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  1906. msgctxt "@title"
  1907. msgid "Build Plate Leveling"
  1908. msgstr "列印平台調整水平"
  1909. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  1910. msgctxt "@label"
  1911. 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."
  1912. msgstr "為了確保列印品質出色,你現在可以開始調整你的列印平台。當你點擊「移動到下一個位置」時,噴頭將移動到不同的可調節位置。"
  1913. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  1914. msgctxt "@label"
  1915. 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."
  1916. msgstr "在噴頭停止的每一個位置下方插入一張紙,並調整平台高度。當紙張恰好被噴頭的尖端輕微壓住時,表示列印平台已被校準在正確的高度。"
  1917. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  1918. msgctxt "@action:button"
  1919. msgid "Start Build Plate Leveling"
  1920. msgstr "開始進行列印平台調平"
  1921. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  1922. msgctxt "@action:button"
  1923. msgid "Move to Next Position"
  1924. msgstr "移動到下一個位置"
  1925. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  1926. msgctxt "@title:window"
  1927. msgid "More information on anonymous data collection"
  1928. msgstr "更多關於匿名資料收集的資訊"
  1929. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  1930. msgctxt "@text:window"
  1931. 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:"
  1932. msgstr "Ultimaker Cura 搜集匿名資料以提高列印品質和使用者體驗。以下是共享資料的範例:"
  1933. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  1934. msgctxt "@text:window"
  1935. msgid "I don't want to send anonymous data"
  1936. msgstr "我不想傳送匿名資料"
  1937. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  1938. msgctxt "@text:window"
  1939. msgid "Allow sending anonymous data"
  1940. msgstr "允許傳送匿名資料"
  1941. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  1942. msgctxt "@title"
  1943. msgid "Marketplace"
  1944. msgstr "市集"
  1945. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  1946. msgctxt "@info"
  1947. msgid "You will need to restart Cura before changes in packages have effect."
  1948. msgstr "需重新啟動 Cura,套件的更動才能生效。"
  1949. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  1950. msgctxt "@info:button, %1 is the application name"
  1951. msgid "Quit %1"
  1952. msgstr "結束 %1"
  1953. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  1954. msgctxt "@action:button"
  1955. msgid "Install"
  1956. msgstr "安裝"
  1957. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  1958. msgctxt "@action:button"
  1959. msgid "Installed"
  1960. msgstr "已安裝"
  1961. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  1962. msgctxt "@label"
  1963. msgid "Premium"
  1964. msgstr "付費會員"
  1965. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  1966. msgctxt "@info:tooltip"
  1967. msgid "Go to Web Marketplace"
  1968. msgstr "前往網路市集"
  1969. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  1970. msgctxt "@label"
  1971. msgid "Search materials"
  1972. msgstr "搜尋線材"
  1973. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  1974. msgctxt "@label"
  1975. msgid "Compatibility"
  1976. msgstr "相容性"
  1977. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  1978. msgctxt "@label:table_header"
  1979. msgid "Machine"
  1980. msgstr "機器"
  1981. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  1982. msgctxt "@label:table_header"
  1983. msgid "Build Plate"
  1984. msgstr "列印平台"
  1985. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  1986. msgctxt "@label:table_header"
  1987. msgid "Support"
  1988. msgstr "支撐"
  1989. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  1990. msgctxt "@label:table_header"
  1991. msgid "Quality"
  1992. msgstr "品質"
  1993. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  1994. msgctxt "@action:label"
  1995. msgid "Technical Data Sheet"
  1996. msgstr "技術資料表"
  1997. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  1998. msgctxt "@action:label"
  1999. msgid "Safety Data Sheet"
  2000. msgstr "安全資料表"
  2001. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  2002. msgctxt "@action:label"
  2003. msgid "Printing Guidelines"
  2004. msgstr "列印指南"
  2005. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  2006. msgctxt "@action:label"
  2007. msgid "Website"
  2008. msgstr "網站"
  2009. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  2010. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2011. msgid "<a href='%1'>Log in</a> is required to install or update"
  2012. msgstr "需要<a href='%1'>登入</a>才能進行安裝或升級"
  2013. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  2014. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2015. msgid "<a href='%1'>Buy material spools</a>"
  2016. msgstr "<a href='%1'>購買線材線軸</a>"
  2017. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  2018. msgctxt "@action:button"
  2019. msgid "Update"
  2020. msgstr "更新"
  2021. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  2022. msgctxt "@action:button"
  2023. msgid "Updating"
  2024. msgstr "更新中"
  2025. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  2026. msgctxt "@action:button"
  2027. msgid "Updated"
  2028. msgstr "更新完成"
  2029. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  2030. msgctxt "@action:button"
  2031. msgid "Back"
  2032. msgstr "返回"
  2033. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  2034. msgctxt "@title:tab"
  2035. msgid "Plugins"
  2036. msgstr "外掛"
  2037. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475
  2038. msgctxt "@title:tab"
  2039. msgid "Materials"
  2040. msgstr "線材"
  2041. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  2042. msgctxt "@title:tab"
  2043. msgid "Installed"
  2044. msgstr "已安裝"
  2045. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  2046. msgctxt "@label"
  2047. msgid "Will install upon restarting"
  2048. msgstr "將在重新啟動時安裝"
  2049. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  2050. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2051. msgid "<a href='%1'>Log in</a> is required to update"
  2052. msgstr "需要<a href='%1'>登入</a>才能進行升級"
  2053. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2054. msgctxt "@action:button"
  2055. msgid "Downgrade"
  2056. msgstr "降級版本"
  2057. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2058. msgctxt "@action:button"
  2059. msgid "Uninstall"
  2060. msgstr "移除"
  2061. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2062. msgctxt "@label"
  2063. msgid "Community Contributions"
  2064. msgstr "社群貢獻"
  2065. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2066. msgctxt "@label"
  2067. msgid "Community Plugins"
  2068. msgstr "社群外掛"
  2069. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  2070. msgctxt "@label"
  2071. msgid "Generic Materials"
  2072. msgstr "通用線材"
  2073. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  2074. msgctxt "@info"
  2075. msgid "Fetching packages..."
  2076. msgstr "取得套件..."
  2077. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  2078. msgctxt "@label"
  2079. msgid "Website"
  2080. msgstr "網站"
  2081. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  2082. msgctxt "@label"
  2083. msgid "Email"
  2084. msgstr "電子郵件"
  2085. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  2086. msgctxt "@description"
  2087. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  2088. msgstr "請登入以取得 Ultimaker Cura Enterprise 驗証的外掛及線材"
  2089. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  2090. msgctxt "@label"
  2091. msgid "Version"
  2092. msgstr "版本"
  2093. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  2094. msgctxt "@label"
  2095. msgid "Last updated"
  2096. msgstr "最後更新時間"
  2097. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  2098. msgctxt "@label"
  2099. msgid "Brand"
  2100. msgstr "品牌"
  2101. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  2102. msgctxt "@label"
  2103. msgid "Downloads"
  2104. msgstr "下載"
  2105. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  2106. msgctxt "@title:tab"
  2107. msgid "Installed plugins"
  2108. msgstr "已安裝外掛"
  2109. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  2110. msgctxt "@info"
  2111. msgid "No plugin has been installed."
  2112. msgstr "尚未安裝任何外掛。"
  2113. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87
  2114. msgctxt "@title:tab"
  2115. msgid "Installed materials"
  2116. msgstr "已安裝線材"
  2117. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126
  2118. msgctxt "@info"
  2119. msgid "No material has been installed."
  2120. msgstr "尚未安裝任何線材。"
  2121. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141
  2122. msgctxt "@title:tab"
  2123. msgid "Bundled plugins"
  2124. msgstr "捆綁式外掛"
  2125. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186
  2126. msgctxt "@title:tab"
  2127. msgid "Bundled materials"
  2128. msgstr "捆綁式線材"
  2129. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  2130. msgctxt "@info"
  2131. msgid "Could not connect to the Cura Package database. Please check your connection."
  2132. msgstr "無法連上 Cura 套件資料庫。請檢查你的網路連線。"
  2133. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  2134. msgctxt "@label"
  2135. msgid "You need to accept the license to install the package"
  2136. msgstr "你必需同意授權協議才能安裝套件"
  2137. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  2138. msgctxt "@title"
  2139. msgid "Changes from your account"
  2140. msgstr "你帳戶的更動"
  2141. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2142. msgctxt "@button"
  2143. msgid "Dismiss"
  2144. msgstr "捨棄"
  2145. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  2146. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186
  2147. msgctxt "@button"
  2148. msgid "Next"
  2149. msgstr "下一步"
  2150. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  2151. msgctxt "@label"
  2152. msgid "The following packages will be added:"
  2153. msgstr "將新增下列套件:"
  2154. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  2155. msgctxt "@label"
  2156. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2157. msgstr "下列套件因 Cura 版本不相容,無法安裝:"
  2158. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  2159. msgctxt "@title:window"
  2160. msgid "Confirm uninstall"
  2161. msgstr "移除確認"
  2162. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  2163. msgctxt "@text:window"
  2164. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  2165. msgstr "你正在移除仍被使用的線材/列印設定。確認後會將下列耗材/列印設定重設為預設值。"
  2166. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  2167. msgctxt "@text:window"
  2168. msgid "Materials"
  2169. msgstr "線材"
  2170. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  2171. msgctxt "@text:window"
  2172. msgid "Profiles"
  2173. msgstr "參數"
  2174. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  2175. msgctxt "@action:button"
  2176. msgid "Confirm"
  2177. msgstr "確定"
  2178. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  2179. msgctxt "@label"
  2180. msgid "Color scheme"
  2181. msgstr "顏色方案"
  2182. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110
  2183. msgctxt "@label:listbox"
  2184. msgid "Material Color"
  2185. msgstr "線材顏色"
  2186. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114
  2187. msgctxt "@label:listbox"
  2188. msgid "Line Type"
  2189. msgstr "線條類型"
  2190. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118
  2191. msgctxt "@label:listbox"
  2192. msgid "Speed"
  2193. msgstr "速度"
  2194. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122
  2195. msgctxt "@label:listbox"
  2196. msgid "Layer Thickness"
  2197. msgstr "層厚"
  2198. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126
  2199. msgctxt "@label:listbox"
  2200. msgid "Line Width"
  2201. msgstr "線寬"
  2202. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130
  2203. msgctxt "@label:listbox"
  2204. msgid "Flow"
  2205. msgstr "流動"
  2206. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171
  2207. msgctxt "@label"
  2208. msgid "Compatibility Mode"
  2209. msgstr "相容模式"
  2210. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245
  2211. msgctxt "@label"
  2212. msgid "Travels"
  2213. msgstr "移動軌跡"
  2214. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251
  2215. msgctxt "@label"
  2216. msgid "Helpers"
  2217. msgstr "輔助結構"
  2218. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2219. msgctxt "@label"
  2220. msgid "Shell"
  2221. msgstr "外殼"
  2222. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  2223. msgctxt "@label"
  2224. msgid "Infill"
  2225. msgstr "填充"
  2226. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271
  2227. msgctxt "@label"
  2228. msgid "Starts"
  2229. msgstr "啟動"
  2230. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
  2231. msgctxt "@label"
  2232. msgid "Only Show Top Layers"
  2233. msgstr "只顯示頂層"
  2234. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332
  2235. msgctxt "@label"
  2236. msgid "Show 5 Detailed Layers On Top"
  2237. msgstr "顯示頂端 5 層列印細節"
  2238. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346
  2239. msgctxt "@label"
  2240. msgid "Top / Bottom"
  2241. msgstr "頂 / 底層"
  2242. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350
  2243. msgctxt "@label"
  2244. msgid "Inner Wall"
  2245. msgstr "內壁"
  2246. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419
  2247. msgctxt "@label"
  2248. msgid "min"
  2249. msgstr "最小值"
  2250. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488
  2251. msgctxt "@label"
  2252. msgid "max"
  2253. msgstr "最大值"
  2254. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  2255. msgctxt "@label link to Connect and Cloud interfaces"
  2256. msgid "Manage printer"
  2257. msgstr "管理印表機"
  2258. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  2259. msgctxt "@label"
  2260. msgid "Glass"
  2261. msgstr "玻璃"
  2262. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  2263. msgctxt "@info"
  2264. msgid "Please update your printer's firmware to manage the queue remotely."
  2265. msgstr "請更新你印表機的韌體以便遠端管理工作隊列。"
  2266. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288
  2267. msgctxt "@info"
  2268. msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  2269. msgstr "網路攝影機無法從Ultimaker Cura中瀏覽,請點擊\"管理列印機\"並從Ultimaker Digital Factory中瀏覽網路攝影機."
  2270. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2271. msgctxt "@label:status"
  2272. msgid "Loading..."
  2273. msgstr "正在載入..."
  2274. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2275. msgctxt "@label:status"
  2276. msgid "Unavailable"
  2277. msgstr "無法使用"
  2278. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2279. msgctxt "@label:status"
  2280. msgid "Unreachable"
  2281. msgstr "無法連接"
  2282. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2283. msgctxt "@label:status"
  2284. msgid "Idle"
  2285. msgstr "閒置中"
  2286. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2287. msgctxt "@label:status"
  2288. msgid "Preparing..."
  2289. msgstr "正在準備..."
  2290. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
  2291. msgctxt "@label:status"
  2292. msgid "Printing"
  2293. msgstr "正在列印"
  2294. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
  2295. msgctxt "@label"
  2296. msgid "Untitled"
  2297. msgstr "無標題"
  2298. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
  2299. msgctxt "@label"
  2300. msgid "Anonymous"
  2301. msgstr "匿名"
  2302. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
  2303. msgctxt "@label:status"
  2304. msgid "Requires configuration changes"
  2305. msgstr "需要修改設定"
  2306. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
  2307. msgctxt "@action:button"
  2308. msgid "Details"
  2309. msgstr "細項"
  2310. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  2311. msgctxt "@label"
  2312. msgid "Unavailable printer"
  2313. msgstr "無法使用的印表機"
  2314. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  2315. msgctxt "@label"
  2316. msgid "First available"
  2317. msgstr "可用的第一個"
  2318. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  2319. msgctxt "@label"
  2320. msgid "Queued"
  2321. msgstr "已排入隊列"
  2322. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  2323. msgctxt "@label link to connect manager"
  2324. msgid "Manage in browser"
  2325. msgstr "使用瀏覽器管理"
  2326. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2327. msgctxt "@label"
  2328. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2329. msgstr "目前沒有列印作業在隊列中。可透過切片並傳送列印作來增加一個。"
  2330. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  2331. msgctxt "@label"
  2332. msgid "Print jobs"
  2333. msgstr "列印作業"
  2334. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  2335. msgctxt "@label"
  2336. msgid "Total print time"
  2337. msgstr "總列印時間"
  2338. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  2339. msgctxt "@label"
  2340. msgid "Waiting for"
  2341. msgstr "等待"
  2342. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13
  2343. msgctxt "@title:window"
  2344. msgid "Print over network"
  2345. msgstr "網路連線列印"
  2346. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54
  2347. msgctxt "@action:button"
  2348. msgid "Print"
  2349. msgstr "列印"
  2350. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82
  2351. msgctxt "@label"
  2352. msgid "Printer selection"
  2353. msgstr "印表機選擇"
  2354. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2355. msgctxt "@title:window"
  2356. msgid "Configuration Changes"
  2357. msgstr "修改設定"
  2358. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  2359. msgctxt "@action:button"
  2360. msgid "Override"
  2361. msgstr "覆寫"
  2362. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  2363. msgctxt "@label"
  2364. msgid "The assigned printer, %1, requires the following configuration change:"
  2365. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2366. msgstr[0] "分配的印表機 %1 需要下列的設定更動:"
  2367. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  2368. msgctxt "@label"
  2369. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2370. msgstr "已分配到印表機 %1,但列印工作含有未知的線材設定。"
  2371. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  2372. msgctxt "@label"
  2373. msgid "Change material %1 from %2 to %3."
  2374. msgstr "將線材 %1 從 %2 改成 %3。"
  2375. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  2376. msgctxt "@label"
  2377. msgid "Load %3 as material %1 (This cannot be overridden)."
  2378. msgstr "將 %3 做為線材 %1 載入(無法覆寫)。"
  2379. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  2380. msgctxt "@label"
  2381. msgid "Change print core %1 from %2 to %3."
  2382. msgstr "將 print core %1 從 %2 改成 %3。"
  2383. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  2384. msgctxt "@label"
  2385. msgid "Change build plate to %1 (This cannot be overridden)."
  2386. msgstr "將列印平台改成 %1(無法覆寫)。"
  2387. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  2388. msgctxt "@label"
  2389. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2390. msgstr "覆寫會將指定的設定套用在現有的印表機上。這可能導致列印失敗。"
  2391. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  2392. msgctxt "@label"
  2393. msgid "Aluminum"
  2394. msgstr "鋁"
  2395. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2396. msgctxt "@label:status"
  2397. msgid "Finished"
  2398. msgstr "已完成"
  2399. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2400. msgctxt "@label:status"
  2401. msgid "Aborting..."
  2402. msgstr "正在中斷..."
  2403. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2404. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2405. msgctxt "@label:status"
  2406. msgid "Aborted"
  2407. msgstr "已中斷"
  2408. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2409. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2410. msgctxt "@label:status"
  2411. msgid "Failed"
  2412. msgstr "失敗"
  2413. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2414. msgctxt "@label:status"
  2415. msgid "Pausing..."
  2416. msgstr "正在暫停..."
  2417. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2418. msgctxt "@label:status"
  2419. msgid "Paused"
  2420. msgstr "已暫停"
  2421. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2422. msgctxt "@label:status"
  2423. msgid "Resuming..."
  2424. msgstr "正在繼續..."
  2425. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108
  2426. msgctxt "@label:status"
  2427. msgid "Action required"
  2428. msgstr "需要採取的動作"
  2429. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110
  2430. msgctxt "@label:status"
  2431. msgid "Finishes %1 at %2"
  2432. msgstr "在 %2 完成 %1"
  2433. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  2434. msgctxt "@title:window"
  2435. msgid "Connect to Networked Printer"
  2436. msgstr "連接到網路印表機"
  2437. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2438. msgctxt "@label"
  2439. 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."
  2440. msgstr "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。"
  2441. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2442. msgctxt "@label"
  2443. msgid "Select your printer from the list below:"
  2444. msgstr "從下列清單中選擇你的印表機:"
  2445. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  2446. msgctxt "@action:button"
  2447. msgid "Edit"
  2448. msgstr "編輯"
  2449. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  2450. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55
  2451. msgctxt "@action:button"
  2452. msgid "Remove"
  2453. msgstr "移除"
  2454. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  2455. msgctxt "@action:button"
  2456. msgid "Refresh"
  2457. msgstr "刷新"
  2458. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  2459. msgctxt "@label"
  2460. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2461. msgstr "如果你的印表機未被列出,請閱讀<a href='%1'>網路列印故障排除指南</a>"
  2462. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  2463. msgctxt "@label"
  2464. msgid "Type"
  2465. msgstr "類型"
  2466. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  2467. msgctxt "@label"
  2468. msgid "Firmware version"
  2469. msgstr "韌體版本"
  2470. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  2471. msgctxt "@label"
  2472. msgid "Address"
  2473. msgstr "位址"
  2474. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  2475. msgctxt "@label"
  2476. msgid "This printer is not set up to host a group of printers."
  2477. msgstr "此印表機未被設定為管理印表機群組。"
  2478. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  2479. msgctxt "@label"
  2480. msgid "This printer is the host for a group of %1 printers."
  2481. msgstr "此印表機為 %1 印表機群組的管理者。"
  2482. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  2483. msgctxt "@label"
  2484. msgid "The printer at this address has not yet responded."
  2485. msgstr "該網路位址的印表機尚無回應。"
  2486. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  2487. msgctxt "@action:button"
  2488. msgid "Connect"
  2489. msgstr "連接"
  2490. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  2491. msgctxt "@title:window"
  2492. msgid "Invalid IP address"
  2493. msgstr "無效的 IP 位址"
  2494. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  2495. msgctxt "@text"
  2496. msgid "Please enter a valid IP address."
  2497. msgstr "請輸入有效的 IP 位址 。"
  2498. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  2499. msgctxt "@title:window"
  2500. msgid "Printer Address"
  2501. msgstr "印表機網路位址"
  2502. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  2503. msgctxt "@label"
  2504. msgid "Enter the IP address of your printer on the network."
  2505. msgstr "輸入印表機的 IP 位址。"
  2506. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  2507. msgctxt "@label"
  2508. msgid "Move to top"
  2509. msgstr "移至頂端"
  2510. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  2511. msgctxt "@label"
  2512. msgid "Delete"
  2513. msgstr "刪除"
  2514. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290
  2515. msgctxt "@label"
  2516. msgid "Resume"
  2517. msgstr "繼續"
  2518. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  2519. msgctxt "@label"
  2520. msgid "Pausing..."
  2521. msgstr "正在暫停..."
  2522. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  2523. msgctxt "@label"
  2524. msgid "Resuming..."
  2525. msgstr "正在繼續..."
  2526. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294
  2527. msgctxt "@label"
  2528. msgid "Pause"
  2529. msgstr "暫停"
  2530. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2531. msgctxt "@label"
  2532. msgid "Aborting..."
  2533. msgstr "正在中斷..."
  2534. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2535. msgctxt "@label"
  2536. msgid "Abort"
  2537. msgstr "中斷"
  2538. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  2539. msgctxt "@label %1 is the name of a print job."
  2540. msgid "Are you sure you want to move %1 to the top of the queue?"
  2541. msgstr "你確定要將 %1 移至隊列的頂端嗎?"
  2542. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2543. msgctxt "@window:title"
  2544. msgid "Move print job to top"
  2545. msgstr "將列印作業移至最頂端"
  2546. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  2547. msgctxt "@label %1 is the name of a print job."
  2548. msgid "Are you sure you want to delete %1?"
  2549. msgstr "你確定要刪除 %1 嗎?"
  2550. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  2551. msgctxt "@window:title"
  2552. msgid "Delete print job"
  2553. msgstr "刪除列印作業"
  2554. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  2555. msgctxt "@label %1 is the name of a print job."
  2556. msgid "Are you sure you want to abort %1?"
  2557. msgstr "你確定要中斷 %1 嗎?"
  2558. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336
  2559. msgctxt "@window:title"
  2560. msgid "Abort print"
  2561. msgstr "中斷列印"
  2562. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2563. msgctxt "@info"
  2564. msgid ""
  2565. "Please make sure your printer has a connection:\n"
  2566. "- Check if the printer is turned on.\n"
  2567. "- Check if the printer is connected to the network.\n"
  2568. "- Check if you are signed in to discover cloud-connected printers."
  2569. msgstr ""
  2570. "請確認你的印表機有連接:\n"
  2571. "- 檢查印表機是否已打開。\n"
  2572. "- 檢查印表機是否已連接到網路。\n"
  2573. "- 檢查是否已登入以尋找雲端連接的印表機。"
  2574. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117
  2575. msgctxt "@info"
  2576. msgid "Please connect your printer to the network."
  2577. msgstr "請將你的印表機連上網路。"
  2578. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155
  2579. msgctxt "@label link to technical assistance"
  2580. msgid "View user manuals online"
  2581. msgstr "查看線上使用者手冊"
  2582. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172
  2583. msgctxt "@info"
  2584. msgid "In order to monitor your print from Cura, please connect the printer."
  2585. msgstr "為了監控您的印表機,請連結印表機."
  2586. #: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22
  2587. msgctxt "@info:tooltip"
  2588. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  2589. msgstr "此列印可能會有些問題。點擊查看調整提示。"
  2590. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27
  2591. msgctxt "@info:tooltip"
  2592. msgid "3D View"
  2593. msgstr "立體圖"
  2594. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40
  2595. msgctxt "@info:tooltip"
  2596. msgid "Front View"
  2597. msgstr "前視圖"
  2598. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53
  2599. msgctxt "@info:tooltip"
  2600. msgid "Top View"
  2601. msgstr "上視圖"
  2602. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66
  2603. msgctxt "@info:tooltip"
  2604. msgid "Left View"
  2605. msgstr "左視圖"
  2606. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79
  2607. msgctxt "@info:tooltip"
  2608. msgid "Right View"
  2609. msgstr "右視圖"
  2610. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59
  2611. msgctxt "@label"
  2612. msgid "Object list"
  2613. msgstr "物件清單"
  2614. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  2615. msgctxt "@action:button"
  2616. msgid "Marketplace"
  2617. msgstr "市集"
  2618. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13
  2619. msgctxt "@title:menu menubar:toplevel"
  2620. msgid "&File"
  2621. msgstr "檔案(&F)"
  2622. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  2623. msgctxt "@title:menu menubar:toplevel"
  2624. msgid "&Edit"
  2625. msgstr "編輯(&E)"
  2626. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12
  2627. msgctxt "@title:menu menubar:toplevel"
  2628. msgid "&View"
  2629. msgstr "檢視(&V)"
  2630. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2631. msgctxt "@title:menu menubar:toplevel"
  2632. msgid "&Settings"
  2633. msgstr "設定(&S)"
  2634. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66
  2635. msgctxt "@title:menu menubar:toplevel"
  2636. msgid "E&xtensions"
  2637. msgstr "擴充功能(&X)"
  2638. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112
  2639. msgctxt "@title:menu menubar:toplevel"
  2640. msgid "P&references"
  2641. msgstr "偏好設定(&R)"
  2642. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120
  2643. msgctxt "@title:menu menubar:toplevel"
  2644. msgid "&Help"
  2645. msgstr "幫助(&H)"
  2646. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166
  2647. msgctxt "@title:window"
  2648. msgid "New project"
  2649. msgstr "新建專案"
  2650. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167
  2651. msgctxt "@info:question"
  2652. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  2653. msgstr "你確定要開始一個新專案嗎?這將清除列印平台及任何未儲存的設定。"
  2654. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  2655. msgctxt "@label:PrintjobStatus"
  2656. msgid "Slicing..."
  2657. msgstr "正在切片..."
  2658. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82
  2659. msgctxt "@label:PrintjobStatus"
  2660. msgid "Unable to slice"
  2661. msgstr "無法切片"
  2662. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  2663. msgctxt "@button"
  2664. msgid "Processing"
  2665. msgstr "處理中"
  2666. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  2667. msgctxt "@button"
  2668. msgid "Slice"
  2669. msgstr "切片"
  2670. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122
  2671. msgctxt "@label"
  2672. msgid "Start the slicing process"
  2673. msgstr "開始切片程序"
  2674. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136
  2675. msgctxt "@button"
  2676. msgid "Cancel"
  2677. msgstr "取消"
  2678. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  2679. msgctxt "@label"
  2680. msgid "Time estimation"
  2681. msgstr "時間估計"
  2682. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  2683. msgctxt "@label"
  2684. msgid "Material estimation"
  2685. msgstr "線材估計"
  2686. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  2687. msgctxt "@label m for meter"
  2688. msgid "%1m"
  2689. msgstr "%1m"
  2690. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  2691. msgctxt "@label g for grams"
  2692. msgid "%1g"
  2693. msgstr "%1g"
  2694. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  2695. msgctxt "@label"
  2696. msgid "No time estimation available"
  2697. msgstr "沒有時間估計"
  2698. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  2699. msgctxt "@label"
  2700. msgid "No cost estimation available"
  2701. msgstr "沒有成本估算"
  2702. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  2703. msgctxt "@button"
  2704. msgid "Preview"
  2705. msgstr "預覽"
  2706. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  2707. msgctxt "@label"
  2708. msgid "Add a printer"
  2709. msgstr "新增印表機"
  2710. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  2711. msgctxt "@label"
  2712. msgid "Add a networked printer"
  2713. msgstr "新增網路印表機"
  2714. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  2715. msgctxt "@label"
  2716. msgid "Add a non-networked printer"
  2717. msgstr "新增非網路印表機"
  2718. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  2719. msgctxt "@label"
  2720. msgid "Add a Cloud printer"
  2721. msgstr "新增雲端印表機"
  2722. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  2723. msgctxt "@label"
  2724. msgid "Waiting for Cloud response"
  2725. msgstr "等待雲端服務回應"
  2726. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  2727. msgctxt "@label"
  2728. msgid "No printers found in your account?"
  2729. msgstr "在你的帳號未發現任何印表機?"
  2730. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  2731. msgctxt "@label"
  2732. msgid "The following printers in your account have been added in Cura:"
  2733. msgstr "下列您帳號中的印表機已新增至 Cura:"
  2734. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  2735. msgctxt "@button"
  2736. msgid "Add printer manually"
  2737. msgstr "手動新增印表機"
  2738. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  2739. msgctxt "@label"
  2740. msgid "Add printer by IP address"
  2741. msgstr "使用 IP 位址新增印表機"
  2742. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  2743. msgctxt "@text"
  2744. msgid "Enter your printer's IP address."
  2745. msgstr "輸入印表機的 IP 位址。"
  2746. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  2747. msgctxt "@button"
  2748. msgid "Add"
  2749. msgstr "新增"
  2750. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  2751. msgctxt "@label"
  2752. msgid "Could not connect to device."
  2753. msgstr "無法連接到裝置。"
  2754. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  2755. msgctxt "@label"
  2756. msgid "Can't connect to your Ultimaker printer?"
  2757. msgstr "無法連接到 Ultimaker 印表機?"
  2758. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  2759. msgctxt "@label"
  2760. msgid "The printer at this address has not responded yet."
  2761. msgstr "此位址的印表機尚未回應。"
  2762. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  2763. msgctxt "@label"
  2764. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  2765. msgstr "無法添加此印表機,因為它是未知的印表機,或者它不是印表機群組的主機。"
  2766. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707
  2767. msgctxt "@button"
  2768. msgid "Back"
  2769. msgstr "返回"
  2770. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  2771. msgctxt "@button"
  2772. msgid "Connect"
  2773. msgstr "連接"
  2774. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  2775. msgctxt "@label"
  2776. msgid "User Agreement"
  2777. msgstr "使用者授權"
  2778. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  2779. msgctxt "@button"
  2780. msgid "Decline and close"
  2781. msgstr "拒絕並關閉"
  2782. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  2783. msgctxt "@label"
  2784. msgid "Welcome to Ultimaker Cura"
  2785. msgstr "歡迎來到 Ultimaker Cura"
  2786. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  2787. msgctxt "@text"
  2788. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  2789. msgstr "請依照步驟安裝Ultimaker Cura. 這會需要幾分鐘的時間."
  2790. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  2791. msgctxt "@button"
  2792. msgid "Get started"
  2793. msgstr "開始"
  2794. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20
  2795. msgctxt "@label"
  2796. msgid "Sign in to the Ultimaker platform"
  2797. msgstr "登入Ultimaker 論壇"
  2798. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  2799. msgctxt "@text"
  2800. msgid "Add material settings and plugins from the Marketplace"
  2801. msgstr "從市集中加入線材設定或插件"
  2802. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  2803. msgctxt "@text"
  2804. msgid "Backup and sync your material settings and plugins"
  2805. msgstr "備份及同步您的線材設定與插件"
  2806. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  2807. msgctxt "@text"
  2808. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  2809. msgstr "分享創意並可從Ultimaker社群中超過48000的使用者得到幫助"
  2810. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202
  2811. msgctxt "@button"
  2812. msgid "Skip"
  2813. msgstr "略過"
  2814. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214
  2815. msgctxt "@text"
  2816. msgid "Create a free Ultimaker Account"
  2817. msgstr "創建免費的Ultimaker帳戶"
  2818. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234
  2819. msgctxt "@label"
  2820. msgid "Manufacturer"
  2821. msgstr "製造商"
  2822. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251
  2823. msgctxt "@label"
  2824. msgid "Profile author"
  2825. msgstr "列印參數作者"
  2826. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269
  2827. msgctxt "@label"
  2828. msgid "Printer name"
  2829. msgstr "印表機名稱"
  2830. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278
  2831. msgctxt "@text"
  2832. msgid "Please name your printer"
  2833. msgstr "請為你的印表機取一個名稱"
  2834. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  2835. msgctxt "@label"
  2836. msgid "There is no printer found over your network."
  2837. msgstr "在你的網路上找不到印表機。"
  2838. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  2839. msgctxt "@label"
  2840. msgid "Refresh"
  2841. msgstr "更新"
  2842. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  2843. msgctxt "@label"
  2844. msgid "Add printer by IP"
  2845. msgstr "使用 IP 位址新增印表機"
  2846. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  2847. msgctxt "@label"
  2848. msgid "Add cloud printer"
  2849. msgstr "新增雲端印表機"
  2850. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241
  2851. msgctxt "@label"
  2852. msgid "Troubleshooting"
  2853. msgstr "故障排除"
  2854. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  2855. msgctxt "@label"
  2856. msgid "Help us to improve Ultimaker Cura"
  2857. msgstr "協助我們改進 Ultimaker Cura"
  2858. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  2859. msgctxt "@text"
  2860. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  2861. msgstr "Ultimaker Cura 搜集匿名資料以提高列印品質和使用者體驗,包含:"
  2862. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  2863. msgctxt "@text"
  2864. msgid "Machine types"
  2865. msgstr "機器類型"
  2866. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  2867. msgctxt "@text"
  2868. msgid "Material usage"
  2869. msgstr "線材用法"
  2870. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  2871. msgctxt "@text"
  2872. msgid "Number of slices"
  2873. msgstr "切片次數"
  2874. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  2875. msgctxt "@text"
  2876. msgid "Print settings"
  2877. msgstr "列印設定"
  2878. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  2879. msgctxt "@text"
  2880. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  2881. msgstr "Ultimaker Cura 收集的資料不包含任何個人資訊。"
  2882. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  2883. msgctxt "@text"
  2884. msgid "More information"
  2885. msgstr "更多資訊"
  2886. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29
  2887. msgctxt "@label"
  2888. msgid "What's New"
  2889. msgstr "新功能"
  2890. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  2891. msgctxt "@label"
  2892. msgid "Empty"
  2893. msgstr "空的"
  2894. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  2895. msgctxt "@label"
  2896. msgid "Release Notes"
  2897. msgstr "發佈通知"
  2898. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2899. msgctxt "@title:window The argument is the application name."
  2900. msgid "About %1"
  2901. msgstr "關於 %1"
  2902. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2903. msgctxt "@label"
  2904. msgid "version: %1"
  2905. msgstr "版本:%1"
  2906. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2907. msgctxt "@label"
  2908. msgid "End-to-end solution for fused filament 3D printing."
  2909. msgstr "熔絲 3D 列印技術的的端對端解決方案。"
  2910. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2911. msgctxt "@info:credit"
  2912. msgid ""
  2913. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2914. "Cura proudly uses the following open source projects:"
  2915. msgstr ""
  2916. "Cura 由 Ultimaker B.V. 與社群合作開發。\n"
  2917. "Cura 使用以下開源專案:"
  2918. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2919. msgctxt "@label"
  2920. msgid "Graphical user interface"
  2921. msgstr "圖形用戶介面"
  2922. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2923. msgctxt "@label"
  2924. msgid "Application framework"
  2925. msgstr "應用框架"
  2926. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2927. msgctxt "@label"
  2928. msgid "G-code generator"
  2929. msgstr "G-code 產生器"
  2930. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2931. msgctxt "@label"
  2932. msgid "Interprocess communication library"
  2933. msgstr "進程間通訊交互使用庫"
  2934. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2935. msgctxt "@label"
  2936. msgid "Programming language"
  2937. msgstr "編程語言"
  2938. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2939. msgctxt "@label"
  2940. msgid "GUI framework"
  2941. msgstr "GUI 框架"
  2942. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2943. msgctxt "@label"
  2944. msgid "GUI framework bindings"
  2945. msgstr "GUI 框架綁定"
  2946. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2947. msgctxt "@label"
  2948. msgid "C/C++ Binding library"
  2949. msgstr "C / C++ 綁定庫"
  2950. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2951. msgctxt "@label"
  2952. msgid "Data interchange format"
  2953. msgstr "資料交換格式"
  2954. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2955. msgctxt "@label"
  2956. msgid "Support library for scientific computing"
  2957. msgstr "科學計算函式庫"
  2958. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2959. msgctxt "@label"
  2960. msgid "Support library for faster math"
  2961. msgstr "高速運算函式庫"
  2962. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2963. msgctxt "@label"
  2964. msgid "Support library for handling STL files"
  2965. msgstr "用於處理 STL 檔案的函式庫"
  2966. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2967. msgctxt "@label"
  2968. msgid "Support library for handling planar objects"
  2969. msgstr "用於處理平面物件的函式庫"
  2970. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  2971. msgctxt "@label"
  2972. msgid "Support library for handling triangular meshes"
  2973. msgstr "用於處理三角形網格的函式庫"
  2974. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  2975. msgctxt "@label"
  2976. msgid "Support library for handling 3MF files"
  2977. msgstr "用於處理 3MF 檔案的函式庫"
  2978. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  2979. msgctxt "@label"
  2980. msgid "Support library for file metadata and streaming"
  2981. msgstr "用於檔案 metadata 和串流的函式庫"
  2982. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  2983. msgctxt "@label"
  2984. msgid "Serial communication library"
  2985. msgstr "串口通訊函式庫"
  2986. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  2987. msgctxt "@label"
  2988. msgid "ZeroConf discovery library"
  2989. msgstr "ZeroConf 發現函式庫"
  2990. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  2991. msgctxt "@label"
  2992. msgid "Polygon clipping library"
  2993. msgstr "多邊形剪輯函式庫"
  2994. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  2995. msgctxt "@Label"
  2996. msgid "Static type checker for Python"
  2997. msgstr "Python 靜態型別檢查器"
  2998. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  2999. msgctxt "@Label"
  3000. msgid "Root Certificates for validating SSL trustworthiness"
  3001. msgstr "驗證 SSL 可信度用的根憑證"
  3002. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3003. msgctxt "@Label"
  3004. msgid "Python Error tracking library"
  3005. msgstr "Python 錯誤追蹤函式庫"
  3006. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3007. msgctxt "@label"
  3008. msgid "Polygon packing library, developed by Prusa Research"
  3009. msgstr "多邊形包裝函式庫,由 Prusa Research 開發"
  3010. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3011. msgctxt "@label"
  3012. msgid "Python bindings for libnest2d"
  3013. msgstr "Python bindings for libnest2d"
  3014. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  3015. msgctxt "@label"
  3016. msgid "Support library for system keyring access"
  3017. msgstr "存取系統金鑰函式庫"
  3018. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3019. msgctxt "@label"
  3020. msgid "Python extensions for Microsoft Windows"
  3021. msgstr "Python擴充(windows)"
  3022. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3023. msgctxt "@label"
  3024. msgid "Font"
  3025. msgstr "字體"
  3026. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3027. msgctxt "@label"
  3028. msgid "SVG icons"
  3029. msgstr "SVG 圖標"
  3030. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  3031. msgctxt "@label"
  3032. msgid "Linux cross-distribution application deployment"
  3033. msgstr "Linux cross-distribution 應用程式部署"
  3034. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645
  3035. msgctxt "@title:window"
  3036. msgid "Open file(s)"
  3037. msgstr "開啟檔案"
  3038. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  3039. msgctxt "@text:window"
  3040. 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?"
  3041. msgstr "我們已經在你所選擇的檔案中找到一個或多個專案檔案,但一次只能開啟一個專案檔案。我們建議只從那些檔案中匯入模型而不開啟專案。你要繼續操作嗎?"
  3042. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
  3043. msgctxt "@action:button"
  3044. msgid "Import all as models"
  3045. msgstr "匯入所有模型"
  3046. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16
  3047. msgctxt "@title:window"
  3048. msgid "Save Project"
  3049. msgstr "儲存專案"
  3050. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174
  3051. msgctxt "@action:label"
  3052. msgid "Extruder %1"
  3053. msgstr "擠出機 %1"
  3054. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190
  3055. msgctxt "@action:label"
  3056. msgid "%1 & material"
  3057. msgstr "%1 & 線材"
  3058. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192
  3059. msgctxt "@action:label"
  3060. msgid "Material"
  3061. msgstr "線材"
  3062. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282
  3063. msgctxt "@action:label"
  3064. msgid "Don't show project summary on save again"
  3065. msgstr "儲存時不再顯示專案摘要"
  3066. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301
  3067. msgctxt "@action:button"
  3068. msgid "Save"
  3069. msgstr "儲存"
  3070. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16
  3071. msgctxt "@title:window"
  3072. msgid "Discard or Keep changes"
  3073. msgstr "捨棄或保留更改"
  3074. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58
  3075. msgctxt "@text:window, %1 is a profile name"
  3076. msgid ""
  3077. "You have customized some profile settings.\n"
  3078. "Would you like to Keep these changed settings after switching profiles?\n"
  3079. "Alternatively, you can discard the changes to load the defaults from '%1'."
  3080. msgstr ""
  3081. "你修改了一些參數設定。\n"
  3082. "你要在切換參數後保留這些更動嗎?\n"
  3083. "或者你也可以忽略這些更動,從 '%1' 載入預設值。"
  3084. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112
  3085. msgctxt "@title:column"
  3086. msgid "Profile settings"
  3087. msgstr "列印參數設定"
  3088. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126
  3089. msgctxt "@title:column"
  3090. msgid "Current changes"
  3091. msgstr "目前更動"
  3092. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755
  3093. msgctxt "@option:discardOrKeep"
  3094. msgid "Always ask me this"
  3095. msgstr "總是詢問"
  3096. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161
  3097. msgctxt "@option:discardOrKeep"
  3098. msgid "Discard and never ask again"
  3099. msgstr "捨棄更改,並不再詢問此問題"
  3100. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162
  3101. msgctxt "@option:discardOrKeep"
  3102. msgid "Keep and never ask again"
  3103. msgstr "保留更改,並不再詢問此問題"
  3104. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199
  3105. msgctxt "@action:button"
  3106. msgid "Discard changes"
  3107. msgstr "忽略更動"
  3108. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212
  3109. msgctxt "@action:button"
  3110. msgid "Keep changes"
  3111. msgstr "保留更動"
  3112. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3113. msgctxt "@title:window"
  3114. msgid "Open project file"
  3115. msgstr "開啟專案檔案"
  3116. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
  3117. msgctxt "@text:window"
  3118. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3119. msgstr "這是一個 Cura 專案檔案。你想將其作為一個專案開啟還是從中匯入模型?"
  3120. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
  3121. msgctxt "@text:window"
  3122. msgid "Remember my choice"
  3123. msgstr "記住我的選擇"
  3124. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
  3125. msgctxt "@action:button"
  3126. msgid "Open as project"
  3127. msgstr "作為專案開啟"
  3128. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
  3129. msgctxt "@action:button"
  3130. msgid "Import models"
  3131. msgstr "匯入模型"
  3132. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140
  3133. msgctxt "@label"
  3134. msgid "Active print"
  3135. msgstr "正在列印"
  3136. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148
  3137. msgctxt "@label"
  3138. msgid "Job Name"
  3139. msgstr "作業名稱"
  3140. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156
  3141. msgctxt "@label"
  3142. msgid "Printing Time"
  3143. msgstr "列印時間"
  3144. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164
  3145. msgctxt "@label"
  3146. msgid "Estimated time left"
  3147. msgstr "預計剩餘時間"
  3148. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  3149. msgctxt "@status"
  3150. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3151. msgstr "雲端印表機為離線狀態。請檢查印表機是否已開機並連上網路。"
  3152. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  3153. msgctxt "@status"
  3154. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3155. msgstr "此印表機未連接到你的帳號。請前往 Ultimaker Digital Factory 建立連接。"
  3156. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  3157. msgctxt "@status"
  3158. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3159. msgstr "雲端服務目前無法使用。請登入以連接到雲端印表機。"
  3160. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  3161. msgctxt "@status"
  3162. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3163. msgstr "雲端服務目前無法使用。請檢查你的網路連線。"
  3164. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252
  3165. msgctxt "@button"
  3166. msgid "Add printer"
  3167. msgstr "新增印表機"
  3168. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269
  3169. msgctxt "@button"
  3170. msgid "Manage printers"
  3171. msgstr "管理印表機"
  3172. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3173. msgctxt "@label"
  3174. msgid "Connected printers"
  3175. msgstr "已連線印表機"
  3176. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3177. msgctxt "@label"
  3178. msgid "Preset printers"
  3179. msgstr "預設印表機"
  3180. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  3181. msgctxt "@label"
  3182. msgid "Print settings"
  3183. msgstr "列印設定"
  3184. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  3185. msgctxt "@label shown when we load a Gcode file"
  3186. msgid "Print setup disabled. G-code file can not be modified."
  3187. msgstr "列印設定已被停用。 G-code 檔案無法修改。"
  3188. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  3189. msgctxt "@label"
  3190. msgid "Profile"
  3191. msgstr "參數"
  3192. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  3193. msgctxt "@tooltip"
  3194. msgid ""
  3195. "Some setting/override values are different from the values stored in the profile.\n"
  3196. "\n"
  3197. "Click to open the profile manager."
  3198. msgstr ""
  3199. "部份設定/覆寫值與儲存在列印參數中的值不同。\n"
  3200. "\n"
  3201. "點擊開啟列印參數管理器。"
  3202. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  3203. msgctxt "@label:header"
  3204. msgid "Custom profiles"
  3205. msgstr "自訂列印參數"
  3206. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564
  3207. msgctxt "@action:button"
  3208. msgid "Discard current changes"
  3209. msgstr "捨棄目前更改"
  3210. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  3211. msgctxt "@button"
  3212. msgid "Recommended"
  3213. msgstr "推薦"
  3214. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  3215. msgctxt "@button"
  3216. msgid "Custom"
  3217. msgstr "自訂選項"
  3218. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  3219. msgctxt "@label:Should be short"
  3220. msgid "On"
  3221. msgstr "開啟"
  3222. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  3223. msgctxt "@label:Should be short"
  3224. msgid "Off"
  3225. msgstr "關閉"
  3226. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  3227. msgctxt "@label"
  3228. msgid "Experimental"
  3229. msgstr "實驗功能"
  3230. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  3231. 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')"
  3232. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  3233. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  3234. msgstr[0] "沒有擠出機 %2 用的 %1 參數。將使用預設參數"
  3235. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736
  3236. msgctxt "@label"
  3237. msgid "Profiles"
  3238. msgstr "列印參數"
  3239. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82
  3240. msgctxt "@tooltip"
  3241. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  3242. msgstr "你修改過部份列印參數設定。如果你想改變這些設定,請切換到自訂模式。"
  3243. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  3244. msgctxt "@label"
  3245. msgid "Support"
  3246. msgstr "支撐"
  3247. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72
  3248. msgctxt "@label"
  3249. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  3250. msgstr "在模型的突出部分產生支撐結構。若不這樣做,這些部分在列印時將倒塌。"
  3251. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196
  3252. msgctxt "@label"
  3253. msgid "Gradual infill"
  3254. msgstr "漸近式填充"
  3255. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235
  3256. msgctxt "@label"
  3257. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  3258. msgstr "漸近式填充將隨著列印高度的提升而逐漸加大填充密度。"
  3259. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  3260. msgctxt "@label"
  3261. msgid "Adhesion"
  3262. msgstr "附著"
  3263. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75
  3264. msgctxt "@label"
  3265. 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."
  3266. msgstr "允許列印邊緣或木筏。這將在你的物件周圍或下方添加一個容易切斷的平面區域。"
  3267. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  3268. msgctxt "@title:menu menubar:file"
  3269. msgid "Save Project..."
  3270. msgstr "儲存專案."
  3271. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3272. msgctxt "@label:category menu label"
  3273. msgid "Network enabled printers"
  3274. msgstr "支援網路的印表機"
  3275. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3276. msgctxt "@label:category menu label"
  3277. msgid "Local printers"
  3278. msgstr "本機印表機"
  3279. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3280. msgctxt "@label:category menu label"
  3281. msgid "Material"
  3282. msgstr "線材"
  3283. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54
  3284. msgctxt "@label:category menu label"
  3285. msgid "Favorites"
  3286. msgstr "常用"
  3287. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79
  3288. msgctxt "@label:category menu label"
  3289. msgid "Generic"
  3290. msgstr "通用"
  3291. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27
  3292. msgctxt "@label"
  3293. msgid "Print Selected Model With:"
  3294. msgid_plural "Print Selected Models With:"
  3295. msgstr[0] "列印所選模型:"
  3296. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116
  3297. msgctxt "@title:window"
  3298. msgid "Multiply Selected Model"
  3299. msgid_plural "Multiply Selected Models"
  3300. msgstr[0] "複製所選模型"
  3301. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141
  3302. msgctxt "@label"
  3303. msgid "Number of Copies"
  3304. msgstr "複製個數"
  3305. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41
  3306. msgctxt "@title:menu menubar:file"
  3307. msgid "&Save Project..."
  3308. msgstr "儲存專案...(&S)"
  3309. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74
  3310. msgctxt "@title:menu menubar:file"
  3311. msgid "&Export..."
  3312. msgstr "匯出...(&E)"
  3313. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85
  3314. msgctxt "@action:inmenu menubar:file"
  3315. msgid "Export Selection..."
  3316. msgstr "匯出選擇..."
  3317. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3318. msgctxt "@header"
  3319. msgid "Configurations"
  3320. msgstr "設定"
  3321. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  3322. msgctxt "@header"
  3323. msgid "Custom"
  3324. msgstr "自訂選項"
  3325. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  3326. msgctxt "@label"
  3327. msgid "Printer"
  3328. msgstr "印表機"
  3329. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  3330. msgctxt "@label"
  3331. msgid "Enabled"
  3332. msgstr "已啟用"
  3333. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  3334. msgctxt "@label"
  3335. msgid "Material"
  3336. msgstr "線材"
  3337. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407
  3338. msgctxt "@label"
  3339. msgid "Use glue for better adhesion with this material combination."
  3340. msgstr "在此線材組合下,使用膠水以獲得較佳的附著。"
  3341. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102
  3342. msgctxt "@tooltip"
  3343. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3344. msgstr "不允許使用此擠出機的配置並禁止切片功能."
  3345. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  3346. msgctxt "@tooltip"
  3347. msgid "There are no profiles matching the configuration of this extruder."
  3348. msgstr "目前無對應此擠出機的配置設定."
  3349. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253
  3350. msgctxt "@label"
  3351. msgid "Select configuration"
  3352. msgstr "選擇設定"
  3353. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364
  3354. msgctxt "@label"
  3355. msgid "Configurations"
  3356. msgstr "設定"
  3357. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  3358. msgctxt "@label"
  3359. msgid "Loading available configurations from the printer..."
  3360. msgstr "從印表機載入可用的設定..."
  3361. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  3362. msgctxt "@label"
  3363. msgid "The configurations are not available because the printer is disconnected."
  3364. msgstr "由於印表機已斷線,因此設定無法使用。"
  3365. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3366. msgctxt "@label"
  3367. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3368. msgstr "由於無法識別 %1,因此無法使用此設定。 請連上 %2 下載正確的線材參數設定。"
  3369. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3370. msgctxt "@label"
  3371. msgid "Marketplace"
  3372. msgstr "市集"
  3373. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  3374. msgctxt "@title:menu menubar:file"
  3375. msgid "Open File(s)..."
  3376. msgstr "開啟檔案."
  3377. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15
  3378. msgctxt "@title:menu menubar:settings"
  3379. msgid "&Printer"
  3380. msgstr "印表機(&P)"
  3381. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29
  3382. msgctxt "@title:menu"
  3383. msgid "&Material"
  3384. msgstr "線材(&M)"
  3385. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44
  3386. msgctxt "@action:inmenu"
  3387. msgid "Set as Active Extruder"
  3388. msgstr "設為主要擠出機"
  3389. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50
  3390. msgctxt "@action:inmenu"
  3391. msgid "Enable Extruder"
  3392. msgstr "啟用擠出機"
  3393. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57
  3394. msgctxt "@action:inmenu"
  3395. msgid "Disable Extruder"
  3396. msgstr "關閉擠出機"
  3397. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3398. msgctxt "@title:menu menubar:file"
  3399. msgid "Open &Recent"
  3400. msgstr "最近開啟的檔案(&R)"
  3401. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  3402. msgctxt "@action:inmenu"
  3403. msgid "Visible Settings"
  3404. msgstr "顯示設定"
  3405. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
  3406. msgctxt "@action:inmenu"
  3407. msgid "Collapse All Categories"
  3408. msgstr "折疊所有分類"
  3409. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  3410. msgctxt "@action:inmenu"
  3411. msgid "Manage Setting Visibility..."
  3412. msgstr "管理參數顯示..."
  3413. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19
  3414. msgctxt "@action:inmenu menubar:view"
  3415. msgid "&Camera position"
  3416. msgstr "視角位置(&C)"
  3417. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45
  3418. msgctxt "@action:inmenu menubar:view"
  3419. msgid "Camera view"
  3420. msgstr "攝影機檢視"
  3421. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48
  3422. msgctxt "@action:inmenu menubar:view"
  3423. msgid "Perspective"
  3424. msgstr "透視"
  3425. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59
  3426. msgctxt "@action:inmenu menubar:view"
  3427. msgid "Orthographic"
  3428. msgstr "正交"
  3429. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79
  3430. msgctxt "@action:inmenu menubar:view"
  3431. msgid "&Build plate"
  3432. msgstr "列印平台(&B)"
  3433. #: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50
  3434. msgctxt "@label"
  3435. msgid "View type"
  3436. msgstr "檢示類型"
  3437. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112
  3438. msgctxt "@label"
  3439. msgid "Is printed as support."
  3440. msgstr "做為支撐而列印。"
  3441. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115
  3442. msgctxt "@label"
  3443. msgid "Other models overlapping with this model are modified."
  3444. msgstr "與此模型重疊的其他模型已被更改。"
  3445. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118
  3446. msgctxt "@label"
  3447. msgid "Infill overlapping with this model is modified."
  3448. msgstr "與此模型重疊的填充已被更改。"
  3449. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121
  3450. msgctxt "@label"
  3451. msgid "Overlaps with this model are not supported."
  3452. msgstr "與此模型的重疊沒有支撐。"
  3453. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128
  3454. msgctxt "@label %1 is the number of settings it overrides."
  3455. msgid "Overrides %1 setting."
  3456. msgid_plural "Overrides %1 settings."
  3457. msgstr[0] "覆寫 %1 設定。"
  3458. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477
  3459. msgctxt "@title:tab"
  3460. msgid "Profiles"
  3461. msgstr "列印參數"
  3462. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40
  3463. msgctxt "@action:button"
  3464. msgid "Activate"
  3465. msgstr "啟用"
  3466. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3467. msgctxt "@label"
  3468. msgid "Create"
  3469. msgstr "建立"
  3470. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3471. msgctxt "@label"
  3472. msgid "Duplicate"
  3473. msgstr "複製"
  3474. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63
  3475. msgctxt "@action:button"
  3476. msgid "Rename"
  3477. msgstr "重命名"
  3478. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  3479. msgctxt "@action:button"
  3480. msgid "Import"
  3481. msgstr "匯入"
  3482. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  3483. msgctxt "@action:button"
  3484. msgid "Export"
  3485. msgstr "匯出"
  3486. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3487. msgctxt "@title:window"
  3488. msgid "Create Profile"
  3489. msgstr "建立列印參數"
  3490. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3491. msgctxt "@info"
  3492. msgid "Please provide a name for this profile."
  3493. msgstr "請為此參數提供一個名字。"
  3494. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263
  3495. msgctxt "@title:window"
  3496. msgid "Duplicate Profile"
  3497. msgstr "複製列印參數"
  3498. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312
  3499. msgctxt "@title:window"
  3500. msgid "Confirm Remove"
  3501. msgstr "移除確認"
  3502. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
  3503. msgctxt "@label (%1 is object name)"
  3504. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3505. msgstr "你確定要移除 %1 嗎?這動作無法復原!"
  3506. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3507. msgctxt "@title:window"
  3508. msgid "Rename Profile"
  3509. msgstr "重命名列印參數"
  3510. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307
  3511. msgctxt "@title:window"
  3512. msgid "Import Profile"
  3513. msgstr "匯入列印參數"
  3514. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336
  3515. msgctxt "@title:window"
  3516. msgid "Export Profile"
  3517. msgstr "匯出列印參數"
  3518. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399
  3519. msgctxt "@label %1 is printer name"
  3520. msgid "Printer: %1"
  3521. msgstr "印表機:%1"
  3522. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557
  3523. msgctxt "@action:button"
  3524. msgid "Update profile with current settings/overrides"
  3525. msgstr "使用目前設定 / 覆寫值更新列印參數"
  3526. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583
  3527. msgctxt "@action:label"
  3528. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3529. msgstr "此列印參數使用印表機指定的預設值,因此在下面的清單中沒有此設定項。"
  3530. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591
  3531. msgctxt "@action:label"
  3532. msgid "Your current settings match the selected profile."
  3533. msgstr "你目前的設定與選定的列印參數相匹配。"
  3534. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609
  3535. msgctxt "@title:tab"
  3536. msgid "Global Settings"
  3537. msgstr "全局設定"
  3538. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468
  3539. msgctxt "@title:tab"
  3540. msgid "General"
  3541. msgstr "基本"
  3542. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143
  3543. msgctxt "@label"
  3544. msgid "Interface"
  3545. msgstr "介面"
  3546. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215
  3547. msgctxt "@label"
  3548. msgid "Currency:"
  3549. msgstr "貨幣:"
  3550. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228
  3551. msgctxt "@label"
  3552. msgid "Theme:"
  3553. msgstr "主題:"
  3554. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273
  3555. msgctxt "@label"
  3556. msgid "You will need to restart the application for these changes to have effect."
  3557. msgstr "需重新啟動 Cura,新的設定才能生效。"
  3558. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290
  3559. msgctxt "@info:tooltip"
  3560. msgid "Slice automatically when changing settings."
  3561. msgstr "當設定變更時自動進行切片。"
  3562. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298
  3563. msgctxt "@option:check"
  3564. msgid "Slice automatically"
  3565. msgstr "自動切片"
  3566. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312
  3567. msgctxt "@label"
  3568. msgid "Viewport behavior"
  3569. msgstr "顯示區設定"
  3570. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320
  3571. msgctxt "@info:tooltip"
  3572. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3573. msgstr "模型缺少支撐的區域已以紅色標示。如果沒有支撐這些區域將無法正常列印。"
  3574. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329
  3575. msgctxt "@option:check"
  3576. msgid "Display overhang"
  3577. msgstr "顯示突出部分"
  3578. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339
  3579. msgctxt "@info:tooltip"
  3580. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3581. msgstr "模型缺少或多餘的表面已用警告符號標示。工具路徑是將缺少部份補上的型狀。"
  3582. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348
  3583. msgctxt "@option:check"
  3584. msgid "Display model errors"
  3585. msgstr "顯示模型錯誤"
  3586. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356
  3587. msgctxt "@info:tooltip"
  3588. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3589. msgstr "當模型被選中時,視角將自動調整到最合適的觀察位置(模型處於正中央)"
  3590. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361
  3591. msgctxt "@action:button"
  3592. msgid "Center camera when item is selected"
  3593. msgstr "當專案被選中時,自動置中視角"
  3594. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371
  3595. msgctxt "@info:tooltip"
  3596. msgid "Should the default zoom behavior of cura be inverted?"
  3597. msgstr "需要讓 Cura 的預設縮放操作反轉嗎?"
  3598. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376
  3599. msgctxt "@action:button"
  3600. msgid "Invert the direction of camera zoom."
  3601. msgstr "反轉視角縮放方向。"
  3602. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392
  3603. msgctxt "@info:tooltip"
  3604. msgid "Should zooming move in the direction of the mouse?"
  3605. msgstr "是否跟隨滑鼠方向進行縮放?"
  3606. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392
  3607. msgctxt "@info:tooltip"
  3608. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3609. msgstr "正交透視不支援游標縮放功能。"
  3610. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397
  3611. msgctxt "@action:button"
  3612. msgid "Zoom toward mouse direction"
  3613. msgstr "跟隨滑鼠方向縮放"
  3614. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423
  3615. msgctxt "@info:tooltip"
  3616. msgid "Should models on the platform be moved so that they no longer intersect?"
  3617. msgstr "需要移動平台上的模型,使它們不再交錯嗎?"
  3618. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428
  3619. msgctxt "@option:check"
  3620. msgid "Ensure models are kept apart"
  3621. msgstr "確保每個模型都保持分離"
  3622. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437
  3623. msgctxt "@info:tooltip"
  3624. msgid "Should models on the platform be moved down to touch the build plate?"
  3625. msgstr "要將模型下降到碰觸列印平台嗎?"
  3626. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442
  3627. msgctxt "@option:check"
  3628. msgid "Automatically drop models to the build plate"
  3629. msgstr "自動下降模型到列印平台"
  3630. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3631. msgctxt "@info:tooltip"
  3632. msgid "Show caution message in g-code reader."
  3633. msgstr "在 g-code 讀取器中顯示警告訊息。"
  3634. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463
  3635. msgctxt "@option:check"
  3636. msgid "Caution message in g-code reader"
  3637. msgstr "G-code 讀取器中的警告訊息"
  3638. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471
  3639. msgctxt "@info:tooltip"
  3640. msgid "Should layer be forced into compatibility mode?"
  3641. msgstr "分層檢視要強制進入相容模式嗎?"
  3642. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476
  3643. msgctxt "@option:check"
  3644. msgid "Force layer view compatibility mode (restart required)"
  3645. msgstr "強制分層檢視相容模式(需要重新啟動)"
  3646. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486
  3647. msgctxt "@info:tooltip"
  3648. msgid "Should Cura open at the location it was closed?"
  3649. msgstr "Cura 應該開啟在前次關閉時的位置嗎?"
  3650. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491
  3651. msgctxt "@option:check"
  3652. msgid "Restore window position on start"
  3653. msgstr "開啟時復原視窗位置"
  3654. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501
  3655. msgctxt "@info:tooltip"
  3656. msgid "What type of camera rendering should be used?"
  3657. msgstr "使用哪種類型的攝影機渲染?"
  3658. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508
  3659. msgctxt "@window:text"
  3660. msgid "Camera rendering:"
  3661. msgstr "攝影機渲染:"
  3662. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515
  3663. msgid "Perspective"
  3664. msgstr "透視"
  3665. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516
  3666. msgid "Orthographic"
  3667. msgstr "正交"
  3668. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554
  3669. msgctxt "@label"
  3670. msgid "Opening and saving files"
  3671. msgstr "開啟並儲存檔案"
  3672. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561
  3673. msgctxt "@info:tooltip"
  3674. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3675. msgstr "從桌面或外部程式開啟檔案時,使用同一 Cura 視窗嗎?"
  3676. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566
  3677. msgctxt "@option:check"
  3678. msgid "Use a single instance of Cura"
  3679. msgstr "使用同一 Cura 視窗"
  3680. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576
  3681. msgctxt "@info:tooltip"
  3682. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  3683. msgstr "需要再載入新模型前清空視窗內之列印平台嗎?"
  3684. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582
  3685. msgctxt "@option:check"
  3686. msgid "Clear buildplate before loading model into the single instance"
  3687. msgstr "載入新模型時清空視窗內之列印平台"
  3688. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592
  3689. msgctxt "@info:tooltip"
  3690. msgid "Should models be scaled to the build volume if they are too large?"
  3691. msgstr "當模型的尺寸過大時,是否將模型自動縮小至列印範圍嗎?"
  3692. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597
  3693. msgctxt "@option:check"
  3694. msgid "Scale large models"
  3695. msgstr "縮小過大模型"
  3696. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607
  3697. msgctxt "@info:tooltip"
  3698. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3699. msgstr "部份模型採用較大的單位(例如:公尺),導致模型變得非常小,要將這些模型放大嗎?"
  3700. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612
  3701. msgctxt "@option:check"
  3702. msgid "Scale extremely small models"
  3703. msgstr "放大過小模型"
  3704. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622
  3705. msgctxt "@info:tooltip"
  3706. msgid "Should models be selected after they are loaded?"
  3707. msgstr "模型載入後要設為被選擇的狀態嗎?"
  3708. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627
  3709. msgctxt "@option:check"
  3710. msgid "Select models when loaded"
  3711. msgstr "模型載入後選擇模型"
  3712. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637
  3713. msgctxt "@info:tooltip"
  3714. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3715. msgstr "是否自動將印表機名稱作為列印作業名稱的前綴?"
  3716. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642
  3717. msgctxt "@option:check"
  3718. msgid "Add machine prefix to job name"
  3719. msgstr "將印表機名稱前綴添加到列印作業名稱中"
  3720. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652
  3721. msgctxt "@info:tooltip"
  3722. msgid "Should a summary be shown when saving a project file?"
  3723. msgstr "儲存專案檔案時是否顯示摘要?"
  3724. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656
  3725. msgctxt "@option:check"
  3726. msgid "Show summary dialog when saving project"
  3727. msgstr "儲存專案時顯示摘要對話框"
  3728. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666
  3729. msgctxt "@info:tooltip"
  3730. msgid "Default behavior when opening a project file"
  3731. msgstr "開啟專案檔案時的預設行為"
  3732. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674
  3733. msgctxt "@window:text"
  3734. msgid "Default behavior when opening a project file: "
  3735. msgstr "開啟專案檔案時的預設行為: "
  3736. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688
  3737. msgctxt "@option:openProject"
  3738. msgid "Always ask me this"
  3739. msgstr "每次都向我確認"
  3740. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689
  3741. msgctxt "@option:openProject"
  3742. msgid "Always open as a project"
  3743. msgstr "總是作為一個專案開啟"
  3744. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690
  3745. msgctxt "@option:openProject"
  3746. msgid "Always import models"
  3747. msgstr "總是匯入模型"
  3748. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727
  3749. msgctxt "@info:tooltip"
  3750. 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."
  3751. msgstr "當你對列印參數進行更改然後切換到其他列印參數時,將顯示一個對話框詢問你是否要保留修改。你也可以選擇預設不顯示該對話框。"
  3752. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741
  3753. msgctxt "@window:text"
  3754. msgid "Default behavior for changed setting values when switching to a different profile: "
  3755. msgstr "當切換到另一組列印參數時,對於被修改過的設定的預設行為: "
  3756. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756
  3757. msgctxt "@option:discardOrKeep"
  3758. msgid "Always discard changed settings"
  3759. msgstr "總是放棄修改過的設定"
  3760. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757
  3761. msgctxt "@option:discardOrKeep"
  3762. msgid "Always transfer changed settings to new profile"
  3763. msgstr "總是將修改過的設定轉移至新的列印參數"
  3764. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791
  3765. msgctxt "@label"
  3766. msgid "Privacy"
  3767. msgstr "隱私權"
  3768. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797
  3769. msgctxt "@info:tooltip"
  3770. 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."
  3771. msgstr "你願意將關於你的列印資料以匿名形式發送到 Ultimaker 嗎?注意:我們不會記錄或發送任何模型、IP 位址或其他私人資料。"
  3772. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802
  3773. msgctxt "@option:check"
  3774. msgid "Send (anonymous) print information"
  3775. msgstr "(匿名)發送列印資訊"
  3776. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811
  3777. msgctxt "@action:button"
  3778. msgid "More information"
  3779. msgstr "更多資訊"
  3780. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829
  3781. msgctxt "@label"
  3782. msgid "Updates"
  3783. msgstr "更新"
  3784. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836
  3785. msgctxt "@info:tooltip"
  3786. msgid "Should Cura check for updates when the program is started?"
  3787. msgstr "當 Cura 啟動時,是否自動檢查更新?"
  3788. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841
  3789. msgctxt "@option:check"
  3790. msgid "Check for updates on start"
  3791. msgstr "啟動時檢查更新"
  3792. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852
  3793. msgctxt "@info:tooltip"
  3794. msgid "When checking for updates, only check for stable releases."
  3795. msgstr "當檢查更新時,只檢查正式版本."
  3796. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857
  3797. msgctxt "@option:radio"
  3798. msgid "Stable releases only"
  3799. msgstr "僅正式版本"
  3800. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868
  3801. msgctxt "@info:tooltip"
  3802. msgid "When checking for updates, check for both stable and for beta releases."
  3803. msgstr "當檢查更新時,同時檢查正式版本與測試版本."
  3804. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873
  3805. msgctxt "@option:radio"
  3806. msgid "Stable and Beta releases"
  3807. msgstr "正式版本與測試版本發佈"
  3808. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884
  3809. msgctxt "@info:tooltip"
  3810. 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!"
  3811. msgstr "需要於開啟Cura時自動更新插件嗎? 建議您勿關閉此功能!"
  3812. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889
  3813. msgctxt "@option:check"
  3814. msgid "Get notifications for plugin updates"
  3815. msgstr "設定插件更新提示"
  3816. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3817. msgctxt "@title"
  3818. msgid "Information"
  3819. msgstr "資訊"
  3820. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3821. msgctxt "@title:window"
  3822. msgid "Confirm Diameter Change"
  3823. msgstr "直徑更改確認"
  3824. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3825. msgctxt "@label (%1 is a number)"
  3826. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3827. msgstr "新的線材直徑設定為 %1 mm,這與目前的擠出機不相容。你要繼續嗎?"
  3828. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3829. msgctxt "@label"
  3830. msgid "Display Name"
  3831. msgstr "顯示名稱"
  3832. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3833. msgctxt "@label"
  3834. msgid "Material Type"
  3835. msgstr "線材類型"
  3836. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3837. msgctxt "@label"
  3838. msgid "Color"
  3839. msgstr "顏色"
  3840. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3841. msgctxt "@label"
  3842. msgid "Properties"
  3843. msgstr "屬性"
  3844. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3845. msgctxt "@label"
  3846. msgid "Density"
  3847. msgstr "密度"
  3848. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3849. msgctxt "@label"
  3850. msgid "Diameter"
  3851. msgstr "直徑"
  3852. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3853. msgctxt "@label"
  3854. msgid "Filament Cost"
  3855. msgstr "線材成本"
  3856. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3857. msgctxt "@label"
  3858. msgid "Filament weight"
  3859. msgstr "線材重量"
  3860. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3861. msgctxt "@label"
  3862. msgid "Filament length"
  3863. msgstr "線材長度"
  3864. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3865. msgctxt "@label"
  3866. msgid "Cost per Meter"
  3867. msgstr "每公尺成本"
  3868. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3869. msgctxt "@label"
  3870. msgid "This material is linked to %1 and shares some of its properties."
  3871. msgstr "此線材與 %1 相關聯,並共享其部份屬性。"
  3872. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  3873. msgctxt "@label"
  3874. msgid "Unlink Material"
  3875. msgstr "解除聯結線材"
  3876. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  3877. msgctxt "@label"
  3878. msgid "Description"
  3879. msgstr "描述"
  3880. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  3881. msgctxt "@label"
  3882. msgid "Adhesion Information"
  3883. msgstr "附著資訊"
  3884. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3885. msgctxt "@action:button"
  3886. msgid "Create"
  3887. msgstr "建立"
  3888. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3889. msgctxt "@action:button"
  3890. msgid "Duplicate"
  3891. msgstr "複製"
  3892. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199
  3893. msgctxt "@action:button Sending materials to printers"
  3894. msgid "Sync with Printers"
  3895. msgstr "同步列印機"
  3896. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248
  3897. msgctxt "@action:label"
  3898. msgid "Printer"
  3899. msgstr "印表機"
  3900. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337
  3901. msgctxt "@title:window"
  3902. msgid "Import Material"
  3903. msgstr "匯入線材設定"
  3904. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338
  3905. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3906. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3907. msgstr "無法匯入線材 <filename>%1</filename>:<message>%2</message>"
  3908. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342
  3909. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3910. msgid "Successfully imported material <filename>%1</filename>"
  3911. msgstr "成功匯入線材 <filename>%1</filename>"
  3912. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368
  3913. msgctxt "@title:window"
  3914. msgid "Export Material"
  3915. msgstr "匯出線材設定"
  3916. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372
  3917. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3918. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3919. msgstr "無法匯出線材至 <filename>%1</filename>:<message>%2</message>"
  3920. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378
  3921. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3922. msgid "Successfully exported material to <filename>%1</filename>"
  3923. msgstr "成功匯出線材至:<filename>%1</filename>"
  3924. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17
  3925. msgctxt "@title:window"
  3926. msgid "Sync materials with printers"
  3927. msgstr "同步印表機線材設定"
  3928. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47
  3929. msgctxt "@title:header"
  3930. msgid "Sync materials with printers"
  3931. msgstr "同步印表機線材設定"
  3932. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53
  3933. msgctxt "@text"
  3934. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  3935. msgstr "依照下述簡單的步驟。您將同步線材設定檔至您的印表機."
  3936. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  3937. msgctxt "@button"
  3938. msgid "Start"
  3939. msgstr "開始"
  3940. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98
  3941. msgctxt "@button"
  3942. msgid "Why do I need to sync material profiles?"
  3943. msgstr "為何我需要同步線材設定檔?"
  3944. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130
  3945. msgctxt "@title:header"
  3946. msgid "Sign in"
  3947. msgstr "登入"
  3948. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137
  3949. msgctxt "@text"
  3950. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3951. msgstr "為了自動將線材設定檔與所有連接到 Digital Factory 的列印機同步,您必須先從Cura進行登入."
  3952. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611
  3953. msgctxt "@button"
  3954. msgid "Sync materials with USB"
  3955. msgstr "從USB進行同步線材設定檔"
  3956. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200
  3957. msgctxt "@title:header"
  3958. msgid "The following printers will receive the new material profiles:"
  3959. msgstr "下述的印表機將新增新的線材設定檔:"
  3960. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  3961. msgctxt "@title:header"
  3962. msgid "Something went wrong when sending the materials to the printers."
  3963. msgstr "再發送線材設定檔至印表機時發生錯誤."
  3964. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  3965. msgctxt "@title:header"
  3966. msgid "Material profiles successfully synced with the following printers:"
  3967. msgstr "線材設定檔成功同步至下述的印表機內:"
  3968. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444
  3969. msgctxt "@button"
  3970. msgid "Troubleshooting"
  3971. msgstr "故障排除"
  3972. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432
  3973. msgctxt "@text Asking the user whether printers are missing in a list."
  3974. msgid "Printers missing?"
  3975. msgstr "列印機資訊遺失了?"
  3976. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434
  3977. msgctxt "@text"
  3978. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  3979. msgstr "確認您的列印機已開機並連接至Digital Factory."
  3980. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457
  3981. msgctxt "@button"
  3982. msgid "Refresh List"
  3983. msgstr "重新載入清單"
  3984. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487
  3985. msgctxt "@button"
  3986. msgid "Try again"
  3987. msgstr "再試一次"
  3988. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716
  3989. msgctxt "@button"
  3990. msgid "Done"
  3991. msgstr "完成"
  3992. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618
  3993. msgctxt "@button"
  3994. msgid "Sync"
  3995. msgstr "同步"
  3996. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549
  3997. msgctxt "@button"
  3998. msgid "Syncing"
  3999. msgstr "同步中"
  4000. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566
  4001. msgctxt "@title:header"
  4002. msgid "No printers found"
  4003. msgstr "未發現任何列印機資訊"
  4004. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582
  4005. msgctxt "@text"
  4006. 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."
  4007. msgstr "您似乎沒有任何兼容的打印機連接至Digital Factory。請確保您的打印機已連接並且安裝最新的軟體."
  4008. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595
  4009. msgctxt "@button"
  4010. msgid "Learn how to connect your printer to Digital Factory"
  4011. msgstr "學習如何連結您的印表機至Digital Factory"
  4012. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625
  4013. msgctxt "@button"
  4014. msgid "Refresh"
  4015. msgstr "重新載入"
  4016. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647
  4017. msgctxt "@title:header"
  4018. msgid "Sync material profiles via USB"
  4019. msgstr "透過USB同步您的線材設定檔"
  4020. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654
  4021. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  4022. msgid "Follow the following steps to load the new material profiles to your printer."
  4023. msgstr "請依照下述步驟載入新的線材設定檔至印表機."
  4024. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  4025. msgctxt "@text"
  4026. msgid "Click the export material archive button."
  4027. msgstr "請點擊輸出材料檔案按鈕."
  4028. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  4029. msgctxt "@text"
  4030. msgid "Save the .umm file on a USB stick."
  4031. msgstr "將 .umm 的文件儲存至USB."
  4032. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  4033. msgctxt "@text"
  4034. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  4035. msgstr "插入USB至您的列印機,並啟動程式去載入新的線材設定檔."
  4036. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692
  4037. msgctxt "@button"
  4038. msgid "How to load new material profiles to my printer"
  4039. msgstr "如何載入新的線材設定檔至我的列印機"
  4040. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716
  4041. msgctxt "@button"
  4042. msgid "Export material archive"
  4043. msgstr "輸出線材設定存檔"
  4044. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753
  4045. msgctxt "@title:window"
  4046. msgid "Export All Materials"
  4047. msgstr "匯出所有線材設定"
  4048. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16
  4049. msgctxt "@title:tab"
  4050. msgid "Setting Visibility"
  4051. msgstr "參數顯示設定"
  4052. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48
  4053. msgctxt "@label:textbox"
  4054. msgid "Check all"
  4055. msgstr "全選"
  4056. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473
  4057. msgctxt "@title:tab"
  4058. msgid "Printers"
  4059. msgstr "印表機"
  4060. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61
  4061. msgctxt "@info:status"
  4062. msgid "Calculated"
  4063. msgstr "已計算"
  4064. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75
  4065. msgctxt "@title:column"
  4066. msgid "Setting"
  4067. msgstr "設定"
  4068. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82
  4069. msgctxt "@title:column"
  4070. msgid "Profile"
  4071. msgstr "列印參數"
  4072. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89
  4073. msgctxt "@title:column"
  4074. msgid "Current"
  4075. msgstr "目前"
  4076. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97
  4077. msgctxt "@title:column"
  4078. msgid "Unit"
  4079. msgstr "單位"
  4080. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119
  4081. msgctxt "@label:MonitorStatus"
  4082. msgid "Not connected to a printer"
  4083. msgstr "未連接至印表機"
  4084. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123
  4085. msgctxt "@label:MonitorStatus"
  4086. msgid "Printer does not accept commands"
  4087. msgstr "印表機不接受命令"
  4088. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133
  4089. msgctxt "@label:MonitorStatus"
  4090. msgid "In maintenance. Please check the printer"
  4091. msgstr "維護中。請檢查印表機"
  4092. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144
  4093. msgctxt "@label:MonitorStatus"
  4094. msgid "Lost connection with the printer"
  4095. msgstr "與印表機的連線中斷"
  4096. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146
  4097. msgctxt "@label:MonitorStatus"
  4098. msgid "Printing..."
  4099. msgstr "列印中..."
  4100. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149
  4101. msgctxt "@label:MonitorStatus"
  4102. msgid "Paused"
  4103. msgstr "已暫停"
  4104. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152
  4105. msgctxt "@label:MonitorStatus"
  4106. msgid "Preparing..."
  4107. msgstr "準備中..."
  4108. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154
  4109. msgctxt "@label:MonitorStatus"
  4110. msgid "Please remove the print"
  4111. msgstr "請取出列印件"
  4112. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326
  4113. msgctxt "@label"
  4114. msgid "Abort Print"
  4115. msgstr "中斷列印"
  4116. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338
  4117. msgctxt "@label"
  4118. msgid "Are you sure you want to abort the print?"
  4119. msgstr "你確定要中斷列印嗎?"
  4120. #: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16
  4121. msgctxt "@label %1 is filled in with the name of an extruder"
  4122. msgid "Print Selected Model with %1"
  4123. msgid_plural "Print Selected Models with %1"
  4124. msgstr[0] "用 %1 列印所選模型"
  4125. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  4126. msgctxt "@label:button"
  4127. msgid "My printers"
  4128. msgstr "我的列印機"
  4129. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  4130. msgctxt "@tooltip:button"
  4131. msgid "Monitor printers in Ultimaker Digital Factory."
  4132. msgstr "從Ultimaker Digital Factory中監控我的列印機."
  4133. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  4134. msgctxt "@tooltip:button"
  4135. msgid "Create print projects in Digital Library."
  4136. msgstr "從 Digital Library中創建列印專案."
  4137. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  4138. msgctxt "@label:button"
  4139. msgid "Print jobs"
  4140. msgstr "列印工作"
  4141. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  4142. msgctxt "@tooltip:button"
  4143. msgid "Monitor print jobs and reprint from your print history."
  4144. msgstr "監控列印工作並於從您的歷史紀錄中再次列印."
  4145. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  4146. msgctxt "@tooltip:button"
  4147. msgid "Extend Ultimaker Cura with plugins and material profiles."
  4148. msgstr "使用插件及線材參數擴充Ultimaker Cura."
  4149. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  4150. msgctxt "@tooltip:button"
  4151. msgid "Become a 3D printing expert with Ultimaker e-learning."
  4152. msgstr "使用Ultimaker e-learning成為一位3D列印專家."
  4153. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  4154. msgctxt "@label:button"
  4155. msgid "Ultimaker support"
  4156. msgstr "Ultimaker 支援"
  4157. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  4158. msgctxt "@tooltip:button"
  4159. msgid "Learn how to get started with Ultimaker Cura."
  4160. msgstr "學習如何開始使用Ultimaker Cura."
  4161. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  4162. msgctxt "@label:button"
  4163. msgid "Ask a question"
  4164. msgstr "提出問題"
  4165. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  4166. msgctxt "@tooltip:button"
  4167. msgid "Consult the Ultimaker Community."
  4168. msgstr "諮詢Ultimaker社群."
  4169. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  4170. msgctxt "@label:button"
  4171. msgid "Report a bug"
  4172. msgstr "回報Bug"
  4173. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  4174. msgctxt "@tooltip:button"
  4175. msgid "Let developers know that something is going wrong."
  4176. msgstr "讓開發者了解您遇到的問題."
  4177. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  4178. msgctxt "@tooltip:button"
  4179. msgid "Visit the Ultimaker website."
  4180. msgstr "參觀Ultimaker網站."
  4181. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  4182. msgctxt "@label"
  4183. msgid "Printer control"
  4184. msgstr "印表機控制"
  4185. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  4186. msgctxt "@label"
  4187. msgid "Jog Position"
  4188. msgstr "輕搖位置"
  4189. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  4190. msgctxt "@label"
  4191. msgid "X/Y"
  4192. msgstr "X/Y"
  4193. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  4194. msgctxt "@label"
  4195. msgid "Z"
  4196. msgstr "Z"
  4197. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4198. msgctxt "@label"
  4199. msgid "Jog Distance"
  4200. msgstr "輕搖距離"
  4201. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  4202. msgctxt "@label"
  4203. msgid "Send G-code"
  4204. msgstr "傳送 G-code"
  4205. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  4206. msgctxt "@tooltip of G-code command input"
  4207. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4208. msgstr "傳送一個自訂的 G-code 命令到連接中的印表機。按下 Enter 鍵傳送命令。"
  4209. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  4210. msgctxt "@label"
  4211. msgid "Extruder"
  4212. msgstr "擠出機"
  4213. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  4214. msgctxt "@tooltip"
  4215. 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."
  4216. msgstr "加熱頭的目標溫度。加熱頭將加熱或冷卻至此溫度。若設定為 0,則關閉加熱頭的加熱。"
  4217. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  4218. msgctxt "@tooltip"
  4219. msgid "The current temperature of this hotend."
  4220. msgstr "此加熱頭的目前溫度。"
  4221. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  4222. msgctxt "@tooltip of temperature input"
  4223. msgid "The temperature to pre-heat the hotend to."
  4224. msgstr "加熱頭預熱溫度。"
  4225. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  4226. msgctxt "@button Cancel pre-heating"
  4227. msgid "Cancel"
  4228. msgstr "取消"
  4229. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  4230. msgctxt "@button"
  4231. msgid "Pre-heat"
  4232. msgstr "預熱"
  4233. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  4234. msgctxt "@tooltip of pre-heat"
  4235. 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."
  4236. msgstr "列印前預先加熱。你可以在加熱時繼續調整你的列印,當你準備好列印時就不需等待加熱頭升溫。"
  4237. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  4238. msgctxt "@tooltip"
  4239. msgid "The colour of the material in this extruder."
  4240. msgstr "該擠出機中線材的顏色。"
  4241. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  4242. msgctxt "@tooltip"
  4243. msgid "The material in this extruder."
  4244. msgstr "該擠出機中的線材。"
  4245. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  4246. msgctxt "@tooltip"
  4247. msgid "The nozzle inserted in this extruder."
  4248. msgstr "該擠出機所使用的噴頭。"
  4249. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4250. msgctxt "@info:status"
  4251. msgid "The printer is not connected."
  4252. msgstr "尚未連線到印表機。"
  4253. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  4254. msgctxt "@label"
  4255. msgid "Build plate"
  4256. msgstr "列印平台"
  4257. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  4258. msgctxt "@tooltip"
  4259. 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."
  4260. msgstr "熱床的目標溫度。熱床將加熱或冷卻至此溫度。若設定為 0,則不使用熱床。"
  4261. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4262. msgctxt "@tooltip"
  4263. msgid "The current temperature of the heated bed."
  4264. msgstr "熱床目前溫度。"
  4265. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  4266. msgctxt "@tooltip of temperature input"
  4267. msgid "The temperature to pre-heat the bed to."
  4268. msgstr "熱床的預熱溫度。"
  4269. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  4270. msgctxt "@tooltip of pre-heat"
  4271. 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."
  4272. msgstr "列印前請預熱熱床。你可以在熱床加熱時繼續調整相關物件,讓你在準備列印時不必等待熱床加熱完畢。"
  4273. #: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24
  4274. msgctxt "@action:button"
  4275. msgid "Sign in"
  4276. msgstr "登入"
  4277. #: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42
  4278. msgctxt "@text"
  4279. msgid ""
  4280. "- Add material profiles and plug-ins from the Marketplace\n"
  4281. "- Back-up and sync your material profiles and plug-ins\n"
  4282. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  4283. msgstr ""
  4284. "- 從市集中加入線材參數及插件\n"
  4285. "-備份及同步您的線材設定與插件 \n"
  4286. "- 分享創意並可從Ultimaker社群中超過48000的使用者得到幫助"
  4287. #: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62
  4288. msgctxt "@button"
  4289. msgid "Create a free Ultimaker account"
  4290. msgstr "創建免費的Ultimaker帳戶"
  4291. #: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82
  4292. msgctxt "@label The argument is a timestamp"
  4293. msgid "Last update: %1"
  4294. msgstr "最後一次更新:%1"
  4295. #: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110
  4296. msgctxt "@button"
  4297. msgid "Ultimaker Account"
  4298. msgstr "Ultimaker 帳號"
  4299. #: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126
  4300. msgctxt "@button"
  4301. msgid "Sign Out"
  4302. msgstr "登出"
  4303. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28
  4304. msgctxt "@label"
  4305. msgid "Checking..."
  4306. msgstr "檢查中..."
  4307. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35
  4308. msgctxt "@label"
  4309. msgid "Account synced"
  4310. msgstr "帳號已同步"
  4311. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42
  4312. msgctxt "@label"
  4313. msgid "Something went wrong..."
  4314. msgstr "出了些問題..."
  4315. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96
  4316. msgctxt "@button"
  4317. msgid "Install pending updates"
  4318. msgstr "安裝待處理的更新"
  4319. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118
  4320. msgctxt "@button"
  4321. msgid "Check for account updates"
  4322. msgstr "檢查帳號更新"
  4323. #: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99
  4324. msgctxt "@text Print job name"
  4325. msgid "Untitled"
  4326. msgstr "無標題"
  4327. #: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18
  4328. msgctxt "@label"
  4329. msgid "No items to select from"
  4330. msgstr "沒有可選取的專案"
  4331. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83
  4332. msgctxt "@action:inmenu"
  4333. msgid "Show Online Troubleshooting Guide"
  4334. msgstr "顯示線上故障排除指南"
  4335. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90
  4336. msgctxt "@action:inmenu"
  4337. msgid "Toggle Full Screen"
  4338. msgstr "切換全螢幕"
  4339. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98
  4340. msgctxt "@action:inmenu"
  4341. msgid "Exit Full Screen"
  4342. msgstr "離開全螢幕"
  4343. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105
  4344. msgctxt "@action:inmenu menubar:edit"
  4345. msgid "&Undo"
  4346. msgstr "復原(&U)"
  4347. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115
  4348. msgctxt "@action:inmenu menubar:edit"
  4349. msgid "&Redo"
  4350. msgstr "取消復原(&R)"
  4351. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133
  4352. msgctxt "@action:inmenu menubar:file"
  4353. msgid "&Quit"
  4354. msgstr "退出(&Q)"
  4355. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141
  4356. msgctxt "@action:inmenu menubar:view"
  4357. msgid "3D View"
  4358. msgstr "立體圖"
  4359. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148
  4360. msgctxt "@action:inmenu menubar:view"
  4361. msgid "Front View"
  4362. msgstr "前視圖"
  4363. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155
  4364. msgctxt "@action:inmenu menubar:view"
  4365. msgid "Top View"
  4366. msgstr "上視圖"
  4367. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162
  4368. msgctxt "@action:inmenu menubar:view"
  4369. msgid "Bottom View"
  4370. msgstr "下視圖"
  4371. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169
  4372. msgctxt "@action:inmenu menubar:view"
  4373. msgid "Left Side View"
  4374. msgstr "左視圖"
  4375. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176
  4376. msgctxt "@action:inmenu menubar:view"
  4377. msgid "Right Side View"
  4378. msgstr "右視圖"
  4379. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190
  4380. msgctxt "@action:inmenu"
  4381. msgid "Configure Cura..."
  4382. msgstr "設定 Cura..."
  4383. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197
  4384. msgctxt "@action:inmenu menubar:printer"
  4385. msgid "&Add Printer..."
  4386. msgstr "新增印表機(&A)..."
  4387. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203
  4388. msgctxt "@action:inmenu menubar:printer"
  4389. msgid "Manage Pr&inters..."
  4390. msgstr "管理印表機(&I)..."
  4391. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210
  4392. msgctxt "@action:inmenu"
  4393. msgid "Manage Materials..."
  4394. msgstr "管理線材..."
  4395. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218
  4396. msgctxt "@action:inmenu"
  4397. msgid "Add more materials from Marketplace"
  4398. msgstr "從市集增加更多線材"
  4399. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225
  4400. msgctxt "@action:inmenu menubar:profile"
  4401. msgid "&Update profile with current settings/overrides"
  4402. msgstr "使用目前設定 / 覆寫更新列印參數(&U)"
  4403. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233
  4404. msgctxt "@action:inmenu menubar:profile"
  4405. msgid "&Discard current changes"
  4406. msgstr "捨棄目前更改(&D)"
  4407. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245
  4408. msgctxt "@action:inmenu menubar:profile"
  4409. msgid "&Create profile from current settings/overrides..."
  4410. msgstr "從目前設定 / 覆寫值建立列印參數(&C)..."
  4411. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251
  4412. msgctxt "@action:inmenu menubar:profile"
  4413. msgid "Manage Profiles..."
  4414. msgstr "管理列印參數.."
  4415. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259
  4416. msgctxt "@action:inmenu menubar:help"
  4417. msgid "Show Online &Documentation"
  4418. msgstr "顯示線上說明文件(&D)"
  4419. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267
  4420. msgctxt "@action:inmenu menubar:help"
  4421. msgid "Report a &Bug"
  4422. msgstr "BUG 回報(&B)"
  4423. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275
  4424. msgctxt "@action:inmenu menubar:help"
  4425. msgid "What's New"
  4426. msgstr "新功能"
  4427. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289
  4428. msgctxt "@action:inmenu menubar:help"
  4429. msgid "About..."
  4430. msgstr "關於..."
  4431. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296
  4432. msgctxt "@action:inmenu menubar:edit"
  4433. msgid "Delete Selected"
  4434. msgstr "刪除選取"
  4435. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306
  4436. msgctxt "@action:inmenu menubar:edit"
  4437. msgid "Center Selected"
  4438. msgstr "置中選取"
  4439. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315
  4440. msgctxt "@action:inmenu menubar:edit"
  4441. msgid "Multiply Selected"
  4442. msgstr "複製選取"
  4443. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324
  4444. msgctxt "@action:inmenu"
  4445. msgid "Delete Model"
  4446. msgstr "刪除模型"
  4447. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332
  4448. msgctxt "@action:inmenu"
  4449. msgid "Ce&nter Model on Platform"
  4450. msgstr "將模型置中(&N)"
  4451. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338
  4452. msgctxt "@action:inmenu menubar:edit"
  4453. msgid "&Group Models"
  4454. msgstr "群組模型(&G)"
  4455. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358
  4456. msgctxt "@action:inmenu menubar:edit"
  4457. msgid "Ungroup Models"
  4458. msgstr "取消模型群組"
  4459. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368
  4460. msgctxt "@action:inmenu menubar:edit"
  4461. msgid "&Merge Models"
  4462. msgstr "結合模型(&M)"
  4463. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378
  4464. msgctxt "@action:inmenu"
  4465. msgid "&Multiply Model..."
  4466. msgstr "複製模型...(&M)"
  4467. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385
  4468. msgctxt "@action:inmenu menubar:edit"
  4469. msgid "Select All Models"
  4470. msgstr "選擇所有模型"
  4471. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395
  4472. msgctxt "@action:inmenu menubar:edit"
  4473. msgid "Clear Build Plate"
  4474. msgstr "清空列印平台"
  4475. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405
  4476. msgctxt "@action:inmenu menubar:file"
  4477. msgid "Reload All Models"
  4478. msgstr "重新載入所有模型"
  4479. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414
  4480. msgctxt "@action:inmenu menubar:edit"
  4481. msgid "Arrange All Models To All Build Plates"
  4482. msgstr "將所有模型排列到所有列印平台上"
  4483. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421
  4484. msgctxt "@action:inmenu menubar:edit"
  4485. msgid "Arrange All Models"
  4486. msgstr "排列所有模型"
  4487. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429
  4488. msgctxt "@action:inmenu menubar:edit"
  4489. msgid "Arrange Selection"
  4490. msgstr "排列所選模型"
  4491. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436
  4492. msgctxt "@action:inmenu menubar:edit"
  4493. msgid "Reset All Model Positions"
  4494. msgstr "重置所有模型位置"
  4495. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443
  4496. msgctxt "@action:inmenu menubar:edit"
  4497. msgid "Reset All Model Transformations"
  4498. msgstr "重置所有模型旋轉"
  4499. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452
  4500. msgctxt "@action:inmenu menubar:file"
  4501. msgid "&Open File(s)..."
  4502. msgstr "開啟檔案(&O)..."
  4503. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462
  4504. msgctxt "@action:inmenu menubar:file"
  4505. msgid "&New Project..."
  4506. msgstr "新建專案(&N)..."
  4507. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469
  4508. msgctxt "@action:inmenu menubar:help"
  4509. msgid "Show Configuration Folder"
  4510. msgstr "顯示設定資料夾"
  4511. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535
  4512. msgctxt "@action:menu"
  4513. msgid "Configure setting visibility..."
  4514. msgstr "參數顯示設定..."
  4515. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483
  4516. msgctxt "@action:menu"
  4517. msgid "&Marketplace"
  4518. msgstr "市集(&M)"
  4519. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81
  4520. msgctxt "@label"
  4521. msgid "This setting is not used because all the settings that it influences are overridden."
  4522. msgstr "此設定未被使用,因為受它影響的設定都被覆寫了。"
  4523. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86
  4524. msgctxt "@label Header for list of settings."
  4525. msgid "Affects"
  4526. msgstr "影響"
  4527. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91
  4528. msgctxt "@label Header for list of settings."
  4529. msgid "Affected By"
  4530. msgstr "影響因素"
  4531. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188
  4532. msgctxt "@label"
  4533. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4534. msgstr "這個設定是所有擠出機共用的。修改它會同時更動到所有擠出機的值。"
  4535. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192
  4536. msgctxt "@label"
  4537. msgid "This setting is resolved from conflicting extruder-specific values:"
  4538. msgstr "此設定是透過解決擠出機設定值衝突獲得:"
  4539. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232
  4540. msgctxt "@label"
  4541. msgid ""
  4542. "This setting has a value that is different from the profile.\n"
  4543. "\n"
  4544. "Click to restore the value of the profile."
  4545. msgstr ""
  4546. "此設定的值與列印參數不同。\n"
  4547. "\n"
  4548. "單擊以復原列印參數的值。"
  4549. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332
  4550. msgctxt "@label"
  4551. msgid ""
  4552. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4553. "\n"
  4554. "Click to restore the calculated value."
  4555. msgstr ""
  4556. "這個設定通常由計算得出,可是它目前被設定為一個數值。\n"
  4557. "\n"
  4558. "點擊以恢復計算得出的數值。"
  4559. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51
  4560. msgctxt "@label:textbox"
  4561. msgid "Search settings"
  4562. msgstr "搜尋設定"
  4563. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453
  4564. msgctxt "@action:menu"
  4565. msgid "Copy value to all extruders"
  4566. msgstr "將設定值複製到所有擠出機"
  4567. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462
  4568. msgctxt "@action:menu"
  4569. msgid "Copy all changed values to all extruders"
  4570. msgstr "複製所有改變的設定值到所有擠出機"
  4571. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499
  4572. msgctxt "@action:menu"
  4573. msgid "Hide this setting"
  4574. msgstr "隱藏此設定"
  4575. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512
  4576. msgctxt "@action:menu"
  4577. msgid "Don't show this setting"
  4578. msgstr "不再顯示此設定"
  4579. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516
  4580. msgctxt "@action:menu"
  4581. msgid "Keep this setting visible"
  4582. msgstr "保持此設定顯示"
  4583. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203
  4584. msgctxt "@label"
  4585. msgid ""
  4586. "Some hidden settings use values different from their normal calculated value.\n"
  4587. "\n"
  4588. "Click to make these settings visible."
  4589. msgstr ""
  4590. "部份隱藏設定使用的值與一般計算所得的值不同。\n"
  4591. "\n"
  4592. "點擊以顯這些設定。"
  4593. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257
  4594. msgctxt "@label"
  4595. msgid "This package will be installed after restarting."
  4596. msgstr "此套件將在重新啟動後安裝。"
  4597. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471
  4598. msgctxt "@title:tab"
  4599. msgid "Settings"
  4600. msgstr "設定"
  4601. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594
  4602. msgctxt "@title:window %1 is the application name"
  4603. msgid "Closing %1"
  4604. msgstr "關閉 %1 中"
  4605. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607
  4606. msgctxt "@label %1 is the application name"
  4607. msgid "Are you sure you want to exit %1?"
  4608. msgstr "是否確定要離開 %1 ?"
  4609. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755
  4610. msgctxt "@window:title"
  4611. msgid "Install Package"
  4612. msgstr "安裝套件"
  4613. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763
  4614. msgctxt "@title:window"
  4615. msgid "Open File(s)"
  4616. msgstr "開啟檔案"
  4617. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766
  4618. msgctxt "@text:window"
  4619. 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."
  4620. msgstr "我們已經在你選擇的檔案中找到一個或多個 G-Code 檔案。你一次只能開啟一個 G-Code 檔案。若需開啟 G-Code 檔案,請僅選擇一個。"
  4621. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875
  4622. msgctxt "@title:window"
  4623. msgid "Add Printer"
  4624. msgstr "新增印表機"
  4625. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883
  4626. msgctxt "@title:window"
  4627. msgid "What's New"
  4628. msgstr "新功能"
  4629. #: PerObjectSettingsTool/plugin.json
  4630. msgctxt "description"
  4631. msgid "Provides the Per Model Settings."
  4632. msgstr "提供對每個模型的單獨設定。"
  4633. #: PerObjectSettingsTool/plugin.json
  4634. msgctxt "name"
  4635. msgid "Per Model Settings Tool"
  4636. msgstr "單一模型設定工具"
  4637. #: CuraProfileReader/plugin.json
  4638. msgctxt "description"
  4639. msgid "Provides support for importing Cura profiles."
  4640. msgstr "提供匯入 Cura 列印參數的支援。"
  4641. #: CuraProfileReader/plugin.json
  4642. msgctxt "name"
  4643. msgid "Cura Profile Reader"
  4644. msgstr "Cura 列印參數讀取器"
  4645. #: X3DReader/plugin.json
  4646. msgctxt "description"
  4647. msgid "Provides support for reading X3D files."
  4648. msgstr "提供讀取 X3D 檔案的支援。"
  4649. #: X3DReader/plugin.json
  4650. msgctxt "name"
  4651. msgid "X3D Reader"
  4652. msgstr "X3D 讀取器"
  4653. #: CuraDrive/plugin.json
  4654. msgctxt "description"
  4655. msgid "Backup and restore your configuration."
  4656. msgstr "備份和復原你的設定。"
  4657. #: CuraDrive/plugin.json
  4658. msgctxt "name"
  4659. msgid "Cura Backups"
  4660. msgstr "Cura 備份"
  4661. #: MachineSettingsAction/plugin.json
  4662. msgctxt "description"
  4663. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4664. msgstr "提供更改機器設定的方法(如列印範圍,噴頭大小等)。"
  4665. #: MachineSettingsAction/plugin.json
  4666. msgctxt "name"
  4667. msgid "Machine Settings Action"
  4668. msgstr "印表機設定操作"
  4669. #: SupportEraser/plugin.json
  4670. msgctxt "description"
  4671. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4672. msgstr "建立一個抹除器網格放在某些地方用來防止列印支撐"
  4673. #: SupportEraser/plugin.json
  4674. msgctxt "name"
  4675. msgid "Support Eraser"
  4676. msgstr "支援抹除器"
  4677. #: RemovableDriveOutputDevice/plugin.json
  4678. msgctxt "description"
  4679. msgid "Provides removable drive hotplugging and writing support."
  4680. msgstr "提供行動裝置熱插拔和寫入檔案的支援。"
  4681. #: RemovableDriveOutputDevice/plugin.json
  4682. msgctxt "name"
  4683. msgid "Removable Drive Output Device Plugin"
  4684. msgstr "行動裝置輸出設備外掛"
  4685. #: FirmwareUpdater/plugin.json
  4686. msgctxt "description"
  4687. msgid "Provides a machine actions for updating firmware."
  4688. msgstr "提供升級韌體用的機器操作。"
  4689. #: FirmwareUpdater/plugin.json
  4690. msgctxt "name"
  4691. msgid "Firmware Updater"
  4692. msgstr "韌體更新器"
  4693. #: LegacyProfileReader/plugin.json
  4694. msgctxt "description"
  4695. msgid "Provides support for importing profiles from legacy Cura versions."
  4696. msgstr "提供匯入 Cura 舊版本列印參數的支援。"
  4697. #: LegacyProfileReader/plugin.json
  4698. msgctxt "name"
  4699. msgid "Legacy Cura Profile Reader"
  4700. msgstr "舊版 Cura 列印參數讀取器"
  4701. #: 3MFReader/plugin.json
  4702. msgctxt "description"
  4703. msgid "Provides support for reading 3MF files."
  4704. msgstr "提供讀取 3MF 格式檔案的支援。"
  4705. #: 3MFReader/plugin.json
  4706. msgctxt "name"
  4707. msgid "3MF Reader"
  4708. msgstr "3MF 讀取器"
  4709. #: UFPWriter/plugin.json
  4710. msgctxt "description"
  4711. msgid "Provides support for writing Ultimaker Format Packages."
  4712. msgstr "提供寫入 Ultimaker 格式封包的支援。"
  4713. #: UFPWriter/plugin.json
  4714. msgctxt "name"
  4715. msgid "UFP Writer"
  4716. msgstr "UFP 寫入器"
  4717. #: SentryLogger/plugin.json
  4718. msgctxt "description"
  4719. msgid "Logs certain events so that they can be used by the crash reporter"
  4720. msgstr "記錄某些事件以便在錯誤報告中使用"
  4721. #: SentryLogger/plugin.json
  4722. msgctxt "name"
  4723. msgid "Sentry Logger"
  4724. msgstr "哨兵記錄器"
  4725. #: GCodeProfileReader/plugin.json
  4726. msgctxt "description"
  4727. msgid "Provides support for importing profiles from g-code files."
  4728. msgstr "提供匯入 G-code 檔案中列印參數的支援。"
  4729. #: GCodeProfileReader/plugin.json
  4730. msgctxt "name"
  4731. msgid "G-code Profile Reader"
  4732. msgstr "G-code 列印參數讀取器"
  4733. #: PreviewStage/plugin.json
  4734. msgctxt "description"
  4735. msgid "Provides a preview stage in Cura."
  4736. msgstr "在 Cura 提供一個預覽介面。"
  4737. #: PreviewStage/plugin.json
  4738. msgctxt "name"
  4739. msgid "Preview Stage"
  4740. msgstr "預覽介面"
  4741. #: XRayView/plugin.json
  4742. msgctxt "description"
  4743. msgid "Provides the X-Ray view."
  4744. msgstr "提供透視檢視。"
  4745. #: XRayView/plugin.json
  4746. msgctxt "name"
  4747. msgid "X-Ray View"
  4748. msgstr "透視檢視"
  4749. #: CuraEngineBackend/plugin.json
  4750. msgctxt "description"
  4751. msgid "Provides the link to the CuraEngine slicing backend."
  4752. msgstr "提供連結到 Cura 切片引擎後台。"
  4753. #: CuraEngineBackend/plugin.json
  4754. msgctxt "name"
  4755. msgid "CuraEngine Backend"
  4756. msgstr "Cura 引擎後台"
  4757. #: AMFReader/plugin.json
  4758. msgctxt "description"
  4759. msgid "Provides support for reading AMF files."
  4760. msgstr "提供對讀取 AMF 格式檔案的支援。"
  4761. #: AMFReader/plugin.json
  4762. msgctxt "name"
  4763. msgid "AMF Reader"
  4764. msgstr "AMF 讀取器"
  4765. #: GCodeGzReader/plugin.json
  4766. msgctxt "description"
  4767. msgid "Reads g-code from a compressed archive."
  4768. msgstr "從一個壓縮檔案中讀取 G-code。"
  4769. #: GCodeGzReader/plugin.json
  4770. msgctxt "name"
  4771. msgid "Compressed G-code Reader"
  4772. msgstr "壓縮檔案 G-code 讀取器"
  4773. #: PostProcessingPlugin/plugin.json
  4774. msgctxt "description"
  4775. msgid "Extension that allows for user created scripts for post processing"
  4776. msgstr "擴充程式(允許用戶建立腳本進行後處理)"
  4777. #: PostProcessingPlugin/plugin.json
  4778. msgctxt "name"
  4779. msgid "Post Processing"
  4780. msgstr "後處理"
  4781. #: CuraProfileWriter/plugin.json
  4782. msgctxt "description"
  4783. msgid "Provides support for exporting Cura profiles."
  4784. msgstr "提供匯出 Cura 列印參數的支援。"
  4785. #: CuraProfileWriter/plugin.json
  4786. msgctxt "name"
  4787. msgid "Cura Profile Writer"
  4788. msgstr "Cura 列印參數寫入器"
  4789. #: USBPrinting/plugin.json
  4790. msgctxt "description"
  4791. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4792. msgstr "接受 G-Code 並且傳送到印表機。此外掛也可以更新韌體。"
  4793. #: USBPrinting/plugin.json
  4794. msgctxt "name"
  4795. msgid "USB printing"
  4796. msgstr "USB 連線列印"
  4797. #: PrepareStage/plugin.json
  4798. msgctxt "description"
  4799. msgid "Provides a prepare stage in Cura."
  4800. msgstr "在 cura 提供一個準備介面。"
  4801. #: PrepareStage/plugin.json
  4802. msgctxt "name"
  4803. msgid "Prepare Stage"
  4804. msgstr "準備介面"
  4805. #: GCodeReader/plugin.json
  4806. msgctxt "description"
  4807. msgid "Allows loading and displaying G-code files."
  4808. msgstr "允許載入和顯示 G-code 檔案。"
  4809. #: GCodeReader/plugin.json
  4810. msgctxt "name"
  4811. msgid "G-code Reader"
  4812. msgstr "G-code 讀取器"
  4813. #: ImageReader/plugin.json
  4814. msgctxt "description"
  4815. msgid "Enables ability to generate printable geometry from 2D image files."
  4816. msgstr "支援從 2D 圖片檔案產生可列印 3D 模型的能力。"
  4817. #: ImageReader/plugin.json
  4818. msgctxt "name"
  4819. msgid "Image Reader"
  4820. msgstr "圖片讀取器"
  4821. #: UltimakerMachineActions/plugin.json
  4822. msgctxt "description"
  4823. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4824. msgstr "提供 Ultimaker 機器的操作(例如平台調平精靈,選擇升級等)。"
  4825. #: UltimakerMachineActions/plugin.json
  4826. msgctxt "name"
  4827. msgid "Ultimaker machine actions"
  4828. msgstr "Ultimaker 印表機操作"
  4829. #: GCodeGzWriter/plugin.json
  4830. msgctxt "description"
  4831. msgid "Writes g-code to a compressed archive."
  4832. msgstr "將 G-code 寫入壓縮檔案。"
  4833. #: GCodeGzWriter/plugin.json
  4834. msgctxt "name"
  4835. msgid "Compressed G-code Writer"
  4836. msgstr "壓縮檔案 G-code 寫入器"
  4837. #: FirmwareUpdateChecker/plugin.json
  4838. msgctxt "description"
  4839. msgid "Checks for firmware updates."
  4840. msgstr "檢查是否有韌體更新。"
  4841. #: FirmwareUpdateChecker/plugin.json
  4842. msgctxt "name"
  4843. msgid "Firmware Update Checker"
  4844. msgstr "韌體更新檢查"
  4845. #: SliceInfoPlugin/plugin.json
  4846. msgctxt "description"
  4847. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4848. msgstr "提交匿名切片資訊。這項功能可以在偏好設定中關閉。"
  4849. #: SliceInfoPlugin/plugin.json
  4850. msgctxt "name"
  4851. msgid "Slice info"
  4852. msgstr "切片資訊"
  4853. #: XmlMaterialProfile/plugin.json
  4854. msgctxt "description"
  4855. msgid "Provides capabilities to read and write XML-based material profiles."
  4856. msgstr "提供讀寫 XML 格式線材參數的功能。"
  4857. #: XmlMaterialProfile/plugin.json
  4858. msgctxt "name"
  4859. msgid "Material Profiles"
  4860. msgstr "線材參數"
  4861. #: DigitalLibrary/plugin.json
  4862. msgctxt "description"
  4863. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4864. msgstr "連結至\"數位博物館\",允許Cura從\"數位博物館\"打開或保存文件."
  4865. #: DigitalLibrary/plugin.json
  4866. msgctxt "name"
  4867. msgid "Ultimaker Digital Library"
  4868. msgstr "Ultimaker 數位博物館"
  4869. #: Toolbox/plugin.json
  4870. msgctxt "description"
  4871. msgid "Find, manage and install new Cura packages."
  4872. msgstr "查詢,管理和安裝新的 Cura 套件。"
  4873. #: Toolbox/plugin.json
  4874. msgctxt "name"
  4875. msgid "Toolbox"
  4876. msgstr "工具箱"
  4877. #: GCodeWriter/plugin.json
  4878. msgctxt "description"
  4879. msgid "Writes g-code to a file."
  4880. msgstr "將 G-code 寫入檔案。"
  4881. #: GCodeWriter/plugin.json
  4882. msgctxt "name"
  4883. msgid "G-code Writer"
  4884. msgstr "G-code 寫入器"
  4885. #: SimulationView/plugin.json
  4886. msgctxt "description"
  4887. msgid "Provides the Simulation view."
  4888. msgstr "提供模擬檢視。"
  4889. #: SimulationView/plugin.json
  4890. msgctxt "name"
  4891. msgid "Simulation View"
  4892. msgstr "模擬檢視"
  4893. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4894. msgctxt "description"
  4895. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4896. msgstr "將設定從 Cura 4.5 版本升級至 4.6 版本。"
  4897. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4898. msgctxt "name"
  4899. msgid "Version Upgrade 4.5 to 4.6"
  4900. msgstr "升級版本 4.5 到 4.6"
  4901. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4902. msgctxt "description"
  4903. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4904. msgstr "將設定從 Cura 2.5 版本升級至 2.6 版本。"
  4905. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4906. msgctxt "name"
  4907. msgid "Version Upgrade 2.5 to 2.6"
  4908. msgstr "升級版本 2.5 到 2.6"
  4909. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4910. msgctxt "description"
  4911. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  4912. msgstr "將設定從 Cura 4.6.0 版本升級至 4.6.2 版本。"
  4913. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4914. msgctxt "name"
  4915. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4916. msgstr "升級版本 4.6.0 到 4.6.2"
  4917. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4918. msgctxt "description"
  4919. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  4920. msgstr "將設定從 Cura 4.7 版本升級至 4.8 版本。"
  4921. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4922. msgctxt "name"
  4923. msgid "Version Upgrade 4.7 to 4.8"
  4924. msgstr "升級版本 4.7 到 4.8"
  4925. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4926. msgctxt "description"
  4927. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4928. msgstr "將設定從 Cura 3.4 版本升級至 3.5 版本。"
  4929. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4930. msgctxt "name"
  4931. msgid "Version Upgrade 3.4 to 3.5"
  4932. msgstr "升級版本 3.4 到 3.5"
  4933. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4934. msgctxt "description"
  4935. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4936. msgstr "將設定從 Cura 2.1 版本升級至 2.2 版本。"
  4937. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4938. msgctxt "name"
  4939. msgid "Version Upgrade 2.1 to 2.2"
  4940. msgstr "升級版本 2.1 到 2.2"
  4941. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4942. msgctxt "description"
  4943. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4944. msgstr "將設定從 Cura 3.2 版本升級至 3.3 版本。"
  4945. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4946. msgctxt "name"
  4947. msgid "Version Upgrade 3.2 to 3.3"
  4948. msgstr "升級版本 3.2 到 3.3"
  4949. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  4950. msgctxt "description"
  4951. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  4952. msgstr "將設定從 Cura 4.8 版本升級至 4.9 版本。"
  4953. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  4954. msgctxt "name"
  4955. msgid "Version Upgrade 4.8 to 4.9"
  4956. msgstr "升級版本 4.8 到 4.9"
  4957. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4958. msgctxt "description"
  4959. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4960. msgstr "將設定從 Cura 4.6.2 版本升級至 4.7 版本。"
  4961. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4962. msgctxt "name"
  4963. msgid "Version Upgrade 4.6.2 to 4.7"
  4964. msgstr "升級版本 4.6.2 到 4.7"
  4965. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4966. msgctxt "description"
  4967. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4968. msgstr "將設定從 Cura 4.2 版本升級至 4.3 版本。"
  4969. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4970. msgctxt "name"
  4971. msgid "Version Upgrade 4.2 to 4.3"
  4972. msgstr "升級版本 4.2 到 4.3"
  4973. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4974. msgctxt "description"
  4975. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4976. msgstr "將設定從 Cura 4.3 版本升級至 4.4 版本。"
  4977. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4978. msgctxt "name"
  4979. msgid "Version Upgrade 4.3 to 4.4"
  4980. msgstr "升級版本 4.3 到 4.4"
  4981. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  4982. msgctxt "description"
  4983. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  4984. msgstr "將設定從 Cura 4.9 版本升級至 4.10 版本。"
  4985. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  4986. msgctxt "name"
  4987. msgid "Version Upgrade 4.9 to 4.10"
  4988. msgstr "升級版本 4.9 到 4.10"
  4989. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4990. msgctxt "description"
  4991. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4992. msgstr "將設定從 Cura 2.7 版本升級至 3.0 版本。"
  4993. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4994. msgctxt "name"
  4995. msgid "Version Upgrade 2.7 to 3.0"
  4996. msgstr "升級版本 2.7 到 3.0"
  4997. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4998. msgctxt "description"
  4999. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  5000. msgstr "將設定從 Cura 2.6 版本升級至 2.7 版本。"
  5001. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5002. msgctxt "name"
  5003. msgid "Version Upgrade 2.6 to 2.7"
  5004. msgstr "升級版本 2.6 到 2.7"
  5005. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5006. msgctxt "description"
  5007. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5008. msgstr "將設定從 Cura 4.11 版本升級至 4.12 版本。"
  5009. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5010. msgctxt "name"
  5011. msgid "Version Upgrade 4.11 to 4.12"
  5012. msgstr "升級版本 4.11 到 4.12"
  5013. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5014. msgctxt "description"
  5015. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  5016. msgstr "將設定從 Cura 3.3 版本升級至 3.4 版本。"
  5017. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5018. msgctxt "name"
  5019. msgid "Version Upgrade 3.3 to 3.4"
  5020. msgstr "升級版本 3.3 到 3.4"
  5021. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5022. msgctxt "description"
  5023. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  5024. msgstr "將設定從 Cura 3.0 版本升級至 3.1 版本。"
  5025. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5026. msgctxt "name"
  5027. msgid "Version Upgrade 3.0 to 3.1"
  5028. msgstr "升級版本 3.0 到 3.1"
  5029. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5030. msgctxt "description"
  5031. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  5032. msgstr "將設定從 Cura 4.0 版本升級至 4.1 版本。"
  5033. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5034. msgctxt "name"
  5035. msgid "Version Upgrade 4.0 to 4.1"
  5036. msgstr "升級版本 4.0 到 4.1"
  5037. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5038. msgctxt "description"
  5039. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5040. msgstr "將設定從 Cura 4.4 版本升級至 4.5 版本。"
  5041. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5042. msgctxt "name"
  5043. msgid "Version Upgrade 4.4 to 4.5"
  5044. msgstr "升級版本 4.4 到 4.5"
  5045. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5046. msgctxt "description"
  5047. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5048. msgstr "將設定從 Cura 2.2 版本升級至 2.4 版本。"
  5049. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5050. msgctxt "name"
  5051. msgid "Version Upgrade 2.2 to 2.4"
  5052. msgstr "升級版本 2.2 到 2.4"
  5053. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5054. msgctxt "description"
  5055. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  5056. msgstr "將設定從 Cura 4.1 版本升級至 4.2 版本。"
  5057. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5058. msgctxt "name"
  5059. msgid "Version Upgrade 4.1 to 4.2"
  5060. msgstr "升級版本 4.1 到 4.2"
  5061. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5062. msgctxt "description"
  5063. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5064. msgstr "將設定從 Cura 3.5 版本升級至 4.0 版本。"
  5065. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5066. msgctxt "name"
  5067. msgid "Version Upgrade 3.5 to 4.0"
  5068. msgstr "升級版本 3.5 到 4.0"
  5069. #: UM3NetworkPrinting/plugin.json
  5070. msgctxt "description"
  5071. msgid "Manages network connections to Ultimaker networked printers."
  5072. msgstr "管理與 Ultimaker 網絡印表機的網絡連線。"
  5073. #: UM3NetworkPrinting/plugin.json
  5074. msgctxt "name"
  5075. msgid "Ultimaker Network Connection"
  5076. msgstr "Ultimaker 網絡連線"
  5077. #: TrimeshReader/plugin.json
  5078. msgctxt "description"
  5079. msgid "Provides support for reading model files."
  5080. msgstr "提供讀取模型檔案的支援。"
  5081. #: TrimeshReader/plugin.json
  5082. msgctxt "name"
  5083. msgid "Trimesh Reader"
  5084. msgstr "Trimesh 讀取器"
  5085. #: UFPReader/plugin.json
  5086. msgctxt "description"
  5087. msgid "Provides support for reading Ultimaker Format Packages."
  5088. msgstr "提供讀取 Ultimaker 格式封包的支援。"
  5089. #: UFPReader/plugin.json
  5090. msgctxt "name"
  5091. msgid "UFP Reader"
  5092. msgstr "UFP 讀取器"
  5093. #: SolidView/plugin.json
  5094. msgctxt "description"
  5095. msgid "Provides a normal solid mesh view."
  5096. msgstr "提供一個基本的實體網格檢視。"
  5097. #: SolidView/plugin.json
  5098. msgctxt "name"
  5099. msgid "Solid View"
  5100. msgstr "實體檢視"
  5101. #: 3MFWriter/plugin.json
  5102. msgctxt "description"
  5103. msgid "Provides support for writing 3MF files."
  5104. msgstr "提供寫入 3MF 檔案的支援。"
  5105. #: 3MFWriter/plugin.json
  5106. msgctxt "name"
  5107. msgid "3MF Writer"
  5108. msgstr "3MF 寫入器"
  5109. #: MonitorStage/plugin.json
  5110. msgctxt "description"
  5111. msgid "Provides a monitor stage in Cura."
  5112. msgstr "在 cura 提供一個監控介面。"
  5113. #: MonitorStage/plugin.json
  5114. msgctxt "name"
  5115. msgid "Monitor Stage"
  5116. msgstr "監控介面"
  5117. #: ModelChecker/plugin.json
  5118. msgctxt "description"
  5119. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  5120. msgstr "檢查模型和列印設定以了解可能發生的問題並給出建議。"
  5121. #: ModelChecker/plugin.json
  5122. msgctxt "name"
  5123. msgid "Model Checker"
  5124. msgstr "模器檢查器"
  5125. #~ msgctxt "@info:status"
  5126. #~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  5127. #~ msgstr "利用你的 Ultimaker 帳號在任何地方傳送和監控列印作業。"
  5128. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5129. #~ msgid "Connect to Ultimaker Digital Factory"
  5130. #~ msgstr "連接到 Ultimaker Digital Factory"
  5131. #~ msgctxt "@info"
  5132. #~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura."
  5133. #~ msgstr "無法從Ultimaker Cura中查看你的雲端列印機."
  5134. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5135. #~ 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}."
  5136. #~ msgstr "可能有適用於你的 {machine_name} 的新功能或錯誤修正!假如尚未使用最新版本,建議更新你印表機的韌體到版本 {latest_version}。"
  5137. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5138. #~ msgid "New %s firmware available"
  5139. #~ msgstr "有新 %s 韌體可用"
  5140. #~ msgctxt "@info:status"
  5141. #~ msgid "Global stack is missing."
  5142. #~ msgstr "全域堆疊遺失。"
  5143. #~ msgctxt "@info:status"
  5144. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  5145. #~ msgstr "模型沒有封閉,標示的區域有缺少或多餘的表面。"
  5146. #~ msgctxt "@info:title"
  5147. #~ msgid "Model errors"
  5148. #~ msgstr "模型錯誤"
  5149. #~ msgctxt "@label:listbox"
  5150. #~ msgid "Layer thickness"
  5151. #~ msgstr "層厚"
  5152. #~ msgctxt "@label"
  5153. #~ msgid "Your key to connected 3D printing"
  5154. #~ msgstr "連線 3D 列印的金鑰"
  5155. #~ msgctxt "@text"
  5156. #~ msgid ""
  5157. #~ "- Customize your experience with more print profiles and plugins\n"
  5158. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5159. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5160. #~ msgstr ""
  5161. #~ "- 使用更多的列印參數設定和外掛訂做你的使用體驗\n"
  5162. #~ "- 通過同步設定可在任何地方將其載入以保持靈活性\n"
  5163. #~ "- 透過 Ultimaker 印表機上的遠端工作流程提高效率"
  5164. #~ msgctxt "@button"
  5165. #~ msgid "Create account"
  5166. #~ msgstr "建立帳號"
  5167. #~ msgctxt "@action:inmenu menubar:edit"
  5168. #~ msgid "Delete Selected Model"
  5169. #~ msgid_plural "Delete Selected Models"
  5170. #~ msgstr[0] "刪除所選模型"
  5171. #~ msgctxt "@action:inmenu menubar:edit"
  5172. #~ msgid "Center Selected Model"
  5173. #~ msgid_plural "Center Selected Models"
  5174. #~ msgstr[0] "置中所選模型"
  5175. #~ msgctxt "@action:inmenu menubar:edit"
  5176. #~ msgid "Multiply Selected Model"
  5177. #~ msgid_plural "Multiply Selected Models"
  5178. #~ msgstr[0] "複製所選模型"
  5179. #~ msgctxt "@button"
  5180. #~ msgid "Finish"
  5181. #~ msgstr "完成"
  5182. #~ msgctxt "@label"
  5183. #~ msgid "Ultimaker Account"
  5184. #~ msgstr "Ultimaker 帳號"
  5185. #~ msgctxt "@text"
  5186. #~ msgid "Your key to connected 3D printing"
  5187. #~ msgstr "連線 3D 列印的金鑰"
  5188. #~ msgctxt "@text"
  5189. #~ msgid "- Customize your experience with more print profiles and plugins"
  5190. #~ msgstr "- 使用更多的列印參數設定和外掛訂做你的使用體驗"
  5191. #~ msgctxt "@text"
  5192. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5193. #~ msgstr "- 通過同步設定可在任何地方將其載入以保持靈活性"
  5194. #~ msgctxt "@text"
  5195. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  5196. #~ msgstr "- 透過 Ultimaker 印表機上的遠端工作流程提高效率"
  5197. #~ msgctxt "@text"
  5198. #~ msgid ""
  5199. #~ "Please follow these steps to set up\n"
  5200. #~ "Ultimaker Cura. This will only take a few moments."
  5201. #~ msgstr ""
  5202. #~ "請按照以下步驟進行設定\n"
  5203. #~ "Ultimaker Cura。這只需要一點時間。"
  5204. #~ msgctxt "@label"
  5205. #~ msgid "What's new in Ultimaker Cura"
  5206. #~ msgstr "Ultimaker Cura 新功能"
  5207. #~ msgctxt "@label ({} is object name)"
  5208. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5209. #~ msgstr "你確認要移除 {}?此動作無法復原!"
  5210. #~ msgctxt "@info:status"
  5211. #~ msgid "The selected model was too small to load."
  5212. #~ msgstr "選擇的模型太小無法載入。"
  5213. #~ msgctxt "@info:status"
  5214. #~ msgid "Successfully imported profile {0}"
  5215. #~ msgstr "已成功匯入列印參數 {0}"
  5216. #~ msgctxt "@info:status"
  5217. #~ msgid "Could not find a quality type {0} for the current configuration."
  5218. #~ msgstr "無法為目前設定找到品質類型 {0}。"
  5219. #~ msgctxt "info:status"
  5220. #~ msgid "Adding printer {} ({}) from your account"
  5221. #~ msgstr "從你的帳號新增印表機 {} ({})"
  5222. #~ msgctxt "info:hidden list items"
  5223. #~ msgid "<li>... and {} others</li>"
  5224. #~ msgstr "<li>... 和 {} 其他</li>"
  5225. #~ msgctxt "info:status"
  5226. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5227. #~ msgstr "從 Digital Factory 新增印表機:<ul>{}</ul>"
  5228. #~ msgctxt "info:status"
  5229. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5230. #~ msgstr "<ul>{}</ul>要建立連線,請前往 <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>。"
  5231. #~ msgctxt "@label ({} is printer name)"
  5232. #~ 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?"
  5233. #~ msgstr "直到下次帳號同步前 {} 將被移除。<br>要永久移除 {},請前往 <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>。<br><br>你確定要暫時移除 {} 嗎?"
  5234. #~ msgctxt "@label"
  5235. #~ msgid ""
  5236. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5237. #~ "Are you sure you want to continue?"
  5238. #~ msgstr ""
  5239. #~ "你將從 Cura 移除 {} 印表機。此動作無法復原。\n"
  5240. #~ "你確定要繼續嗎?"
  5241. #~ msgctxt "@label"
  5242. #~ msgid ""
  5243. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5244. #~ "Are you sure you want to continue?"
  5245. #~ msgstr ""
  5246. #~ "你將從 Cura 移除所有印表機。此動作無法復原。\n"
  5247. #~ "你確定要繼續嗎?"
  5248. #~ msgctxt "@action:ComboBox option"
  5249. #~ msgid "Update"
  5250. #~ msgstr "更新"
  5251. #~ msgctxt "@action:ComboBox option"
  5252. #~ msgid "Create new"
  5253. #~ msgstr "新建"
  5254. #~ msgctxt "@label"
  5255. #~ msgid "Shared Heater"
  5256. #~ msgstr "共用加熱器"
  5257. #~ msgctxt "@info"
  5258. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5259. #~ msgstr "由於你正在監控一台雲端印表機,因此無法使用網路攝影機。"
  5260. #~ msgctxt "@button"
  5261. #~ msgid "Ultimaker Digital Factory"
  5262. #~ msgstr "Ultimaker Digital Factory"
  5263. #~ msgctxt "@text:window, %1 is a profile name"
  5264. #~ msgid ""
  5265. #~ "You have customized some profile settings.\n"
  5266. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5267. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5268. #~ msgstr ""
  5269. #~ "你修改了一些參數設定。\n"
  5270. #~ "你要在切換參數後保留這些更動?\n"
  5271. #~ "或者你也可以忽略這些更動,從 '%1' 載入預設值。"
  5272. #~ msgctxt "@label"
  5273. #~ msgid "Overrides %1 setting."
  5274. #~ msgid_plural "Overrides %1 settings."
  5275. #~ msgstr[0] "覆寫 %1 設定。"
  5276. #~ msgctxt "@text"
  5277. #~ msgid "Please give your printer a name"
  5278. #~ msgstr "請為你的印表機取一個名稱"
  5279. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5280. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5281. #~ msgstr "你的 {machine_name} 有新功能可用!建議更新印表機韌體。"
  5282. #~ msgctxt "@action:button"
  5283. #~ msgid "Print via Cloud"
  5284. #~ msgstr "透過雲端服務列印"
  5285. #~ msgctxt "@properties:tooltip"
  5286. #~ msgid "Print via Cloud"
  5287. #~ msgstr "透過雲端服務列印"
  5288. #~ msgctxt "@info:status"
  5289. #~ msgid "Connected via Cloud"
  5290. #~ msgstr "透過雲端服務連接"
  5291. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5292. #~ msgid "Connect to Ultimaker Cloud"
  5293. #~ msgstr "連接到 Ultimaker Cloud"
  5294. #~ msgctxt "@label"
  5295. #~ msgid "You need to login first before you can rate"
  5296. #~ msgstr "你需要先登入才能進行評分"
  5297. #~ msgctxt "@label"
  5298. #~ msgid "You need to install the package before you can rate"
  5299. #~ msgstr "你需要先安裝套件才能進行評分"
  5300. #~ msgctxt "@label"
  5301. #~ msgid "ratings"
  5302. #~ msgstr "評分"
  5303. #~ msgctxt "@label"
  5304. #~ msgid "Featured"
  5305. #~ msgstr "精選"
  5306. #~ msgctxt "@label"
  5307. #~ msgid "Your rating"
  5308. #~ msgstr "你的評分"
  5309. #~ msgctxt "@label"
  5310. #~ msgid "Author"
  5311. #~ msgstr "作者"
  5312. #~ msgctxt "@description"
  5313. #~ msgid "Get plugins and materials verified by Ultimaker"
  5314. #~ msgstr "取得經 Ultimaker 驗証過的外掛和耗材"
  5315. #~ msgctxt "@label The argument is a username."
  5316. #~ msgid "Hi %1"
  5317. #~ msgstr "嗨 %1"
  5318. #~ msgctxt "@button"
  5319. #~ msgid "Ultimaker account"
  5320. #~ msgstr "Ultimaker 帳號"
  5321. #~ msgctxt "@button"
  5322. #~ msgid "Sign out"
  5323. #~ msgstr "登出"
  5324. #~ msgctxt "@label"
  5325. #~ msgid "Support library for analysis of complex networks"
  5326. #~ msgstr "用於分析複雜網路的函式庫"
  5327. #~ msgctxt "@Label"
  5328. #~ msgid "Python HTTP library"
  5329. #~ msgstr "Python HTTP 函式庫"
  5330. #~ msgctxt "@text:window"
  5331. #~ msgid ""
  5332. #~ "You have customized some profile settings.\n"
  5333. #~ "Would you like to keep or discard those settings?"
  5334. #~ msgstr ""
  5335. #~ "你已自訂部份列印參數設定。\n"
  5336. #~ "你想保留或捨棄這些設定嗎?"
  5337. #~ msgctxt "@title:column"
  5338. #~ msgid "Default"
  5339. #~ msgstr "預設"
  5340. #~ msgctxt "@title:column"
  5341. #~ msgid "Customized"
  5342. #~ msgstr "自訂"
  5343. #~ msgctxt "@action:button"
  5344. #~ msgid "Discard"
  5345. #~ msgstr "捨棄"
  5346. #~ msgctxt "@action:button"
  5347. #~ msgid "Keep"
  5348. #~ msgstr "保留"
  5349. #~ msgctxt "@action:button"
  5350. #~ msgid "Create New Profile"
  5351. #~ msgstr "建立新的列印參數"
  5352. #~ msgctxt "@title:menu menubar:file"
  5353. #~ msgid "&Save..."
  5354. #~ msgstr "儲存(&S)"
  5355. #~ msgctxt "@text"
  5356. #~ msgid "Place enter your printer's IP address."
  5357. #~ msgstr "輸入印表機的 IP 地址。"
  5358. #~ msgctxt "@button"
  5359. #~ msgid "Create an account"
  5360. #~ msgstr "建立帳號"
  5361. #~ msgctxt "@info:generic"
  5362. #~ msgid ""
  5363. #~ "\n"
  5364. #~ "Do you want to sync material and software packages with your account?"
  5365. #~ msgstr ""
  5366. #~ "\n"
  5367. #~ "你要使用 Ultimaker 帳號同步耗材資料和軟體套件嗎?"
  5368. #~ msgctxt "@info:generic"
  5369. #~ msgid ""
  5370. #~ "\n"
  5371. #~ "Syncing..."
  5372. #~ msgstr ""
  5373. #~ "\n"
  5374. #~ "同步中..."
  5375. #~ msgctxt "@info:status"
  5376. #~ 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."
  5377. #~ msgstr "因沒有模型符合列印範圍或是被分配到停用的擠出機,無模型可進行切片。請縮放或旋轉模型以符合列印範圍,或是啟用擠出機。"
  5378. #~ msgctxt "@info:backup_status"
  5379. #~ msgid "There was an error listing your backups."
  5380. #~ msgstr "列出備份時發生錯誤。"
  5381. #~ msgctxt "@title:groupbox"
  5382. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5383. #~ msgstr "使用者描述(注意:開發人員可能不會說您的語言,請盡可能使用英語)"
  5384. #~ msgctxt "@title:window"
  5385. #~ msgid "Closing Cura"
  5386. #~ msgstr "關閉 Cura 中"
  5387. #~ msgctxt "@label"
  5388. #~ msgid "Are you sure you want to exit Cura?"
  5389. #~ msgstr "你確定要結束 Cura 嗎?"
  5390. #~ msgctxt "@label"
  5391. #~ msgid "Language:"
  5392. #~ msgstr "語言:"
  5393. #~ msgctxt "@label"
  5394. #~ msgid "Ultimaker Cloud"
  5395. #~ msgstr "Ultimaker Cloud"
  5396. #~ msgctxt "@text"
  5397. #~ msgid "The next generation 3D printing workflow"
  5398. #~ msgstr "下一世代的 3D 列印流程"
  5399. #~ msgctxt "@text"
  5400. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5401. #~ msgstr "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機"
  5402. #~ msgctxt "@text"
  5403. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5404. #~ msgstr "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用"
  5405. #~ msgctxt "@text"
  5406. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5407. #~ msgstr "- 取得領導品牌的耗材參數設定的獨家存取權限"
  5408. #~ msgctxt "@label"
  5409. #~ msgid "The value is resolved from per-extruder values "
  5410. #~ msgstr "這個數值是由每個擠出機的設定值解析出來的 "
  5411. #~ msgctxt "@label"
  5412. #~ msgid "The next generation 3D printing workflow"
  5413. #~ msgstr "下一世代的 3D 列印流程"
  5414. #~ msgctxt "@text"
  5415. #~ msgid ""
  5416. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5417. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5418. #~ "- Get exclusive access to print profiles from leading brands"
  5419. #~ msgstr ""
  5420. #~ "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機\n"
  5421. #~ "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用\n"
  5422. #~ "- 取得領導品牌的耗材參數設定的獨家存取權限"
  5423. #~ msgctxt "@title:window"
  5424. #~ msgid "About "
  5425. #~ msgstr "關於 "
  5426. #~ msgctxt "@info:button"
  5427. #~ msgid "Quit Cura"
  5428. #~ msgstr "結束 Cura"
  5429. #~ msgctxt "@action:checkbox"
  5430. #~ msgid "Infill only"
  5431. #~ msgstr "只有填充"
  5432. #~ msgctxt "@info:tooltip"
  5433. #~ msgid "Change active post-processing scripts"
  5434. #~ msgstr "更改目前啟用的後處理腳本"
  5435. #~ msgctxt "@label:listbox"
  5436. #~ msgid "Feedrate"
  5437. #~ msgstr "進給率"
  5438. #~ msgctxt "name"
  5439. #~ msgid "Machine Settings action"
  5440. #~ msgstr "印表機設定操作"
  5441. #~ msgctxt "@info:title"
  5442. #~ msgid "New cloud printers found"
  5443. #~ msgstr "找到新的雲端印表機"
  5444. #~ msgctxt "@info:message"
  5445. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5446. #~ msgstr "新找到的印表機已連接到你的帳戶,你可以在已發現的印表機清單中找到它們。"
  5447. #~ msgctxt "@info:status"
  5448. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5449. #~ msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層(Layers)"
  5450. #~ msgctxt "@label"
  5451. #~ msgid "Pre-sliced file {0}"
  5452. #~ msgstr "預切片檔案 {0}"
  5453. #~ msgctxt "@label"
  5454. #~ msgid ""
  5455. #~ "This plugin contains a license.\n"
  5456. #~ "You need to accept this license to install this plugin.\n"
  5457. #~ "Do you agree with the terms below?"
  5458. #~ msgstr ""
  5459. #~ "外掛內含一份授權協議。\n"
  5460. #~ "你必需同意此份授權協議才能安裝此外掛。\n"
  5461. #~ "是否同意下列條款?"
  5462. #~ msgctxt "@action:button"
  5463. #~ msgid "Accept"
  5464. #~ msgstr "接受"
  5465. #~ msgctxt "@action:button"
  5466. #~ msgid "Decline"
  5467. #~ msgstr "拒絕"
  5468. #~ msgctxt "@action:inmenu"
  5469. #~ msgid "Show All Settings"
  5470. #~ msgstr "顯示所有設定"
  5471. #~ msgctxt "@title:window"
  5472. #~ msgid "Ultimaker Cura"
  5473. #~ msgstr "Ultimaker Cura"
  5474. #~ msgctxt "@title:window"
  5475. #~ msgid "About Cura"
  5476. #~ msgstr "關於 Cura"
  5477. #~ msgctxt "@item:inmenu"
  5478. #~ msgid "Flatten active settings"
  5479. #~ msgstr "合併有效設定"
  5480. #~ msgctxt "@info:status"
  5481. #~ msgid "Profile has been flattened & activated."
  5482. #~ msgstr "列印參數已被合併並啟用。"
  5483. #~ msgctxt "X3g Writer Plugin Description"
  5484. #~ msgid "Writes X3g to files"
  5485. #~ msgstr "將 X3g 寫入檔案"
  5486. #~ msgctxt "X3g Writer File Description"
  5487. #~ msgid "X3g File"
  5488. #~ msgstr "X3g 檔案"
  5489. #~ msgctxt "X3G Writer File Description"
  5490. #~ msgid "X3G File"
  5491. #~ msgstr "X3G 檔案"
  5492. #~ msgctxt "@item:inlistbox"
  5493. #~ msgid "Open Compressed Triangle Mesh"
  5494. #~ msgstr "Open Compressed Triangle Mesh"
  5495. #~ msgctxt "@item:inmenu"
  5496. #~ msgid "Profile Assistant"
  5497. #~ msgstr "參數助手"
  5498. #~ msgctxt "@item:inlistbox"
  5499. #~ msgid "Profile Assistant"
  5500. #~ msgstr "參數助手"
  5501. #~ msgctxt "@action:button"
  5502. #~ msgid "Retry"
  5503. #~ msgstr "重試"
  5504. #~ msgctxt "@label:table_header"
  5505. #~ msgid "Print Core"
  5506. #~ msgstr "Print Core"
  5507. #~ msgctxt "@label"
  5508. #~ msgid "Don't support overlap with other models"
  5509. #~ msgstr "與模型重疊處不建立支撐"
  5510. #~ msgctxt "@label"
  5511. #~ msgid "Modify settings for overlap with other models"
  5512. #~ msgstr "修改與模型重疊處的設定"
  5513. #~ msgctxt "@label"
  5514. #~ msgid "Modify settings for infill of other models"
  5515. #~ msgstr "修改其他模型的填充設定"
  5516. #~ msgctxt "@action:ComboBox option"
  5517. #~ msgid "Update existing"
  5518. #~ msgstr "更新已有設定"
  5519. #~ msgctxt "@label"
  5520. #~ msgid "Not supported"
  5521. #~ msgstr "不支援"
  5522. #~ msgctxt "@action:button"
  5523. #~ msgid "Previous"
  5524. #~ msgstr "前一個"
  5525. #~ msgctxt "@label"
  5526. #~ msgid "Tip"
  5527. #~ msgstr "提示"
  5528. #~ msgctxt "@label"
  5529. #~ msgid "Print experiment"
  5530. #~ msgstr "列印實驗"
  5531. #~ msgctxt "@label"
  5532. #~ msgid "Checklist"
  5533. #~ msgstr "檢查清單"
  5534. #~ msgctxt "@label"
  5535. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5536. #~ msgstr "請選擇適用於 Ultimaker 2 的更新檔案。"
  5537. #~ msgctxt "@label"
  5538. #~ msgid "Olsson Block"
  5539. #~ msgstr "Olsson Block"
  5540. #~ msgctxt "@window:text"
  5541. #~ msgid "Camera rendering: "
  5542. #~ msgstr "攝影機渲染:"
  5543. #~ msgctxt "@info:tooltip"
  5544. #~ msgid "Use multi build plate functionality"
  5545. #~ msgstr "使用多列印平台功能"
  5546. #~ msgctxt "@option:check"
  5547. #~ msgid "Use multi build plate functionality (restart required)"
  5548. #~ msgstr "使用多列印平台功能(需重啟軟體)"
  5549. #~ msgctxt "@label"
  5550. #~ msgid "Default profiles"
  5551. #~ msgstr "預設參數"
  5552. #~ msgctxt "@label:textbox"
  5553. #~ msgid "search settings"
  5554. #~ msgstr "搜尋設定"
  5555. #~ msgctxt "@label"
  5556. #~ msgid "Layer Height"
  5557. #~ msgstr "層高"
  5558. #~ msgctxt "@tooltip"
  5559. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5560. #~ msgstr "品質參數無法用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數。"
  5561. #~ msgctxt "@tooltip"
  5562. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5563. #~ msgstr "目前正使用自訂列印參數。若要使用品質滑動條,在自訂分頁中選擇預設的列印參數"
  5564. #~ msgctxt "@title:menu"
  5565. #~ msgid "&Build plate"
  5566. #~ msgstr "列印平台(&B)"
  5567. #~ msgctxt "@title:settings"
  5568. #~ msgid "&Profile"
  5569. #~ msgstr "列印參數(&P)"
  5570. #~ msgctxt "@action:label"
  5571. #~ msgid "Build plate"
  5572. #~ msgstr "列印平台"
  5573. #~ msgctxt "description"
  5574. #~ msgid "Dump the contents of all settings to a HTML file."
  5575. #~ msgstr "將所有設定內容轉儲至 HTML 檔案。"
  5576. #~ msgctxt "name"
  5577. #~ msgid "God Mode"
  5578. #~ msgstr "上帝模式"
  5579. #~ msgctxt "description"
  5580. #~ msgid "Create a flattened quality changes profile."
  5581. #~ msgstr "建立一個撫平的品質修改參數。"
  5582. #~ msgctxt "name"
  5583. #~ msgid "Profile Flattener"
  5584. #~ msgstr "參數撫平器"
  5585. #~ msgctxt "description"
  5586. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5587. #~ msgstr "允許耗材製造商使用下拉式 UI 建立新的耗材和品質設定參數。"
  5588. #~ msgctxt "name"
  5589. #~ msgid "Print Profile Assistant"
  5590. #~ msgstr "列印參數設定助手"
  5591. #~ msgctxt "@info:status"
  5592. #~ msgid "Connected over the network."
  5593. #~ msgstr "已透過網路連接。"
  5594. #~ msgctxt "@info:status"
  5595. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5596. #~ msgstr "已透過網路連接。請在印表機上接受存取請求。"
  5597. #~ msgctxt "@info:status"
  5598. #~ msgid "Connected over the network. No access to control the printer."
  5599. #~ msgstr "已透過網路連接,但沒有印表機的控制權限。"
  5600. #~ msgctxt "@info:status"
  5601. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5602. #~ msgstr "已發送印表機存取請求,請在印表機上批准該請求"
  5603. #~ msgctxt "@info:title"
  5604. #~ msgid "Authentication status"
  5605. #~ msgstr "認証狀態"
  5606. #~ msgctxt "@info:title"
  5607. #~ msgid "Authentication Status"
  5608. #~ msgstr "認証狀態"
  5609. #~ msgctxt "@info:tooltip"
  5610. #~ msgid "Re-send the access request"
  5611. #~ msgstr "重新發送存取請求"
  5612. #~ msgctxt "@info:status"
  5613. #~ msgid "Access to the printer accepted"
  5614. #~ msgstr "印表機接受了存取請求"
  5615. #~ msgctxt "@info:status"
  5616. #~ msgid "No access to print with this printer. Unable to send print job."
  5617. #~ msgstr "無法使用本印表機進行列印,無法發送列印作業。"
  5618. #~ msgctxt "@action:button"
  5619. #~ msgid "Request Access"
  5620. #~ msgstr "請求存取"
  5621. #~ msgctxt "@info:tooltip"
  5622. #~ msgid "Send access request to the printer"
  5623. #~ msgstr "向印表機發送存取請求"
  5624. #~ msgctxt "@label"
  5625. #~ msgid "Unable to start a new print job."
  5626. #~ msgstr "無法開始新的列印作業。"
  5627. #~ msgctxt "@label"
  5628. #~ 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."
  5629. #~ msgstr "Ultimaker 的設定有問題導致無法開始列印。請在繼續之前解決這個問題。"
  5630. #~ msgctxt "@window:title"
  5631. #~ msgid "Mismatched configuration"
  5632. #~ msgstr "設定不匹配"
  5633. #~ msgctxt "@label"
  5634. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5635. #~ msgstr "你確定要使用所選設定進行列印嗎?"
  5636. #~ msgctxt "@label"
  5637. #~ 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."
  5638. #~ msgstr "印表機的設定或校正與 Cura 之間不匹配。為了獲得最佳列印效果,請使用印表機的 PrintCores 和耗材設定進行切片。"
  5639. #~ msgctxt "@info:status"
  5640. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5641. #~ msgstr "前一列印作業傳送中,暫停傳送新列印作業。"
  5642. #~ msgctxt "@info:status"
  5643. #~ msgid "Sending data to printer"
  5644. #~ msgstr "正在向印表機發送資料"
  5645. #~ msgctxt "@info:title"
  5646. #~ msgid "Sending Data"
  5647. #~ msgstr "發送資料中"
  5648. #~ msgctxt "@info:status"
  5649. #~ msgid "No Printcore loaded in slot {slot_number}"
  5650. #~ msgstr "Slot {slot_number} 中沒有載入 Printcore"
  5651. #~ msgctxt "@info:status"
  5652. #~ msgid "No material loaded in slot {slot_number}"
  5653. #~ msgstr "Slot {slot_number} 中沒有載入耗材"
  5654. #~ msgctxt "@label"
  5655. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5656. #~ msgstr "擠出機 {extruder_id} 選擇了不同的 PrintCore(Cura:{cura_printcore_name},印表機:{remote_printcore_name})"
  5657. #~ msgctxt "@label"
  5658. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5659. #~ msgstr "擠出機 {2} 選擇了不同的耗材(Cura:{0},印表機:{1})"
  5660. #~ msgctxt "@window:title"
  5661. #~ msgid "Sync with your printer"
  5662. #~ msgstr "與你的印表機同步"
  5663. #~ msgctxt "@label"
  5664. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5665. #~ msgstr "你想在 Cura 中使用目前的印表機設定嗎?"
  5666. #~ msgctxt "@label"
  5667. #~ 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."
  5668. #~ msgstr "印表機上的 PrintCores 和/或耗材與目前專案中的不同。為獲得最佳列印效果,請使用目前印表機的 PrintCores 和耗材設定進行切片。"
  5669. #~ msgctxt "@action:button"
  5670. #~ msgid "View in Monitor"
  5671. #~ msgstr "使用監控觀看"
  5672. #~ msgctxt "@info:status"
  5673. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5674. #~ msgstr "印表機 '{printer_name}' 已完成列印 '{job_name}'。"
  5675. #~ msgctxt "@info:status"
  5676. #~ msgid "The print job '{job_name}' was finished."
  5677. #~ msgstr "列印作業 '{job_name}' 已完成。"
  5678. #~ msgctxt "@info:status"
  5679. #~ msgid "Print finished"
  5680. #~ msgstr "列印已完成"
  5681. #~ msgctxt "@label:material"
  5682. #~ msgid "Empty"
  5683. #~ msgstr "空的"
  5684. #~ msgctxt "@label:material"
  5685. #~ msgid "Unknown"
  5686. #~ msgstr "未知"
  5687. #~ msgctxt "@info:title"
  5688. #~ msgid "Cloud error"
  5689. #~ msgstr "雲端服務錯誤"
  5690. #~ msgctxt "@info:status"
  5691. #~ msgid "Could not export print job."
  5692. #~ msgstr "雲端服務未匯出列印作業。"
  5693. #~ msgctxt "@info:description"
  5694. #~ msgid "There was an error connecting to the cloud."
  5695. #~ msgstr "連接到雲端服務時發生錯誤。"
  5696. #~ msgctxt "@info:status"
  5697. #~ msgid "Uploading via Ultimaker Cloud"
  5698. #~ msgstr "透過 Ultimaker Cloud 上傳"
  5699. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5700. #~ msgid "Connect to Ultimaker Cloud"
  5701. #~ msgstr "連接到 Ultimaker Cloud"
  5702. #~ msgctxt "@action"
  5703. #~ msgid "Don't ask me again for this printer."
  5704. #~ msgstr "對此印表機不要再次詢問。"
  5705. #~ msgctxt "@info:status"
  5706. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5707. #~ msgstr "現在你可以利用你的 Ultimaker 帳號在任何地方傳送和監控列印作業。"
  5708. #~ msgctxt "@info:status"
  5709. #~ msgid "Connected!"
  5710. #~ msgstr "已連線!"
  5711. #~ msgctxt "@action"
  5712. #~ msgid "Review your connection"
  5713. #~ msgstr "檢查您的連線"
  5714. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5715. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5716. #~ msgstr "列印參數 <filename>{0}</filename> 內定義的機器({1})與你目前的機器({2})不匹配, 無法匯入。"
  5717. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5718. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5719. #~ msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  5720. #~ msgctxt "@window:title"
  5721. #~ msgid "Existing Connection"
  5722. #~ msgstr "目前連線中"
  5723. #~ msgctxt "@message:text"
  5724. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5725. #~ msgstr "此印表機/群組已加入 Cura。請選擇另一個印表機/群組。"
  5726. #~ msgctxt "@label"
  5727. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5728. #~ msgstr "輸入印表機在網路上的 IP 位址或主機名稱。"
  5729. #~ msgctxt "@info:tooltip"
  5730. #~ msgid "Connect to a printer"
  5731. #~ msgstr "連接到印表機"
  5732. #~ msgctxt "@title"
  5733. #~ msgid "Cura Settings Guide"
  5734. #~ msgstr "Cura 設定指南"
  5735. #~ msgctxt "@info:tooltip"
  5736. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  5737. #~ msgstr "正交透視不支援游標縮放功能。"
  5738. #~ msgid "Orthogonal"
  5739. #~ msgstr "正交"
  5740. #~ msgctxt "description"
  5741. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5742. #~ msgstr "管理與 Ultimaker 3 印表機的網絡連線。"
  5743. #~ msgctxt "name"
  5744. #~ msgid "UM3 Network Connection"
  5745. #~ msgstr "UM3 網路連線"
  5746. #~ msgctxt "description"
  5747. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5748. #~ msgstr "提供關於 Cura 設定額外的圖片動畫資訊和說明。"
  5749. #~ msgctxt "name"
  5750. #~ msgid "Settings Guide"
  5751. #~ msgstr "設定指南"
  5752. #~ msgctxt "@item:inmenu"
  5753. #~ msgid "Cura Settings Guide"
  5754. #~ msgstr "Cura 設定指南"
  5755. #~ msgctxt "@info:generic"
  5756. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5757. #~ msgstr "設定已改為與目前擠出機性能相匹配:[%s]"
  5758. #~ msgctxt "@title:groupbox"
  5759. #~ msgid "User description"
  5760. #~ msgstr "使用者描述"
  5761. #~ msgctxt "@info"
  5762. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5763. #~ msgstr "由於你正在監控一台雲端印表機,因此無法使用這些選項。"
  5764. #~ msgctxt "@label link to connect manager"
  5765. #~ msgid "Go to Cura Connect"
  5766. #~ msgstr "前往 Cura Connect"
  5767. #~ msgctxt "@info"
  5768. #~ msgid "All jobs are printed."
  5769. #~ msgstr "所有列印作業已完成。"
  5770. #~ msgctxt "@label link to connect manager"
  5771. #~ msgid "View print history"
  5772. #~ msgstr "檢視列印歷史記錄"
  5773. #~ msgctxt "@label"
  5774. #~ msgid ""
  5775. #~ "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"
  5776. #~ "\n"
  5777. #~ "Select your printer from the list below:"
  5778. #~ msgstr ""
  5779. #~ "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。\n"
  5780. #~ "\n"
  5781. #~ "從以下清單中選擇你的印表機:"
  5782. #~ msgctxt "@info"
  5783. #~ msgid ""
  5784. #~ "Please make sure your printer has a connection:\n"
  5785. #~ "- Check if the printer is turned on.\n"
  5786. #~ "- Check if the printer is connected to the network."
  5787. #~ msgstr ""
  5788. #~ "請確認你的印表機有連接:\n"
  5789. #~ "- 檢查印表機是否已打開。\n"
  5790. #~ "- 檢查印表機是否已連接到網路。"
  5791. #~ msgctxt "@option:check"
  5792. #~ msgid "See only current build plate"
  5793. #~ msgstr "只顯示目前的列印平台"
  5794. #~ msgctxt "@action:button"
  5795. #~ msgid "Arrange to all build plates"
  5796. #~ msgstr "擺放到所有的列印平台"
  5797. #~ msgctxt "@action:button"
  5798. #~ msgid "Arrange current build plate"
  5799. #~ msgstr "擺放到目前的列印平台"
  5800. #~ msgctxt "description"
  5801. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5802. #~ msgstr "允許將切片結果儲存為 X3G 檔案,以支援讀取此格式的印表機(Malyan,Makerbot 和其他以 Sailfish 為原型的印表機)。"
  5803. #~ msgctxt "name"
  5804. #~ msgid "X3GWriter"
  5805. #~ msgstr "X3G 寫入器"
  5806. #~ msgctxt "description"
  5807. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5808. #~ msgstr "讀取 SVG 檔案做為工具路徑,用於印表機移動的除錯。"
  5809. #~ msgctxt "name"
  5810. #~ msgid "SVG Toolpath Reader"
  5811. #~ msgstr "SVG 工具路徑讀取器"
  5812. #~ msgctxt "@item:inmenu"
  5813. #~ msgid "Changelog"
  5814. #~ msgstr "更新日誌"
  5815. #~ msgctxt "@item:inmenu"
  5816. #~ msgid "Show Changelog"
  5817. #~ msgstr "顯示更新日誌"
  5818. #~ msgctxt "@info:status"
  5819. #~ msgid "Sending data to remote cluster"
  5820. #~ msgstr "正在傳送資料到遠端叢集"
  5821. #~ msgctxt "@info:status"
  5822. #~ msgid "Connect to Ultimaker Cloud"
  5823. #~ msgstr "連接到 Ultimaker Cloud"
  5824. #~ msgctxt "@info"
  5825. #~ msgid "Cura collects anonymized usage statistics."
  5826. #~ msgstr "Cura 以匿名方式蒐集使用狀況統計資料。"
  5827. #~ msgctxt "@info:title"
  5828. #~ msgid "Collecting Data"
  5829. #~ msgstr "收集資料中"
  5830. #~ msgctxt "@action:button"
  5831. #~ msgid "More info"
  5832. #~ msgstr "更多資訊"
  5833. #~ msgctxt "@action:tooltip"
  5834. #~ msgid "See more information on what data Cura sends."
  5835. #~ msgstr "檢視更多關於 Cura 傳送資料的資訊。"
  5836. #~ msgctxt "@action:button"
  5837. #~ msgid "Allow"
  5838. #~ msgstr "允許"
  5839. #~ msgctxt "@action:tooltip"
  5840. #~ 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."
  5841. #~ msgstr "允許 Cura 以匿名方式傳送使用狀況統計資料,用來協助 Cura 的未來改善工作。你的部份偏好設定和參數,Cura 的版本及你切片模型的雜湊值會被傳送。"
  5842. #~ msgctxt "@item:inmenu"
  5843. #~ msgid "Evaluation"
  5844. #~ msgstr "評估"
  5845. #~ msgctxt "@info:title"
  5846. #~ msgid "Network enabled printers"
  5847. #~ msgstr "網路印表機"
  5848. #~ msgctxt "@info:title"
  5849. #~ msgid "Local printers"
  5850. #~ msgstr "本機印表機"
  5851. #~ msgctxt "@info:backup_failed"
  5852. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  5853. #~ msgstr "嘗試復原版本不符的 Cura 備份。"
  5854. #~ msgctxt "@title"
  5855. #~ msgid "Machine Settings"
  5856. #~ msgstr "印表機設定"
  5857. #~ msgctxt "@label"
  5858. #~ msgid "Printer Settings"
  5859. #~ msgstr "印表機設定"
  5860. #~ msgctxt "@option:check"
  5861. #~ msgid "Origin at center"
  5862. #~ msgstr "原點位於中心"
  5863. #~ msgctxt "@option:check"
  5864. #~ msgid "Heated bed"
  5865. #~ msgstr "熱床"
  5866. #~ msgctxt "@label"
  5867. #~ msgid "Printhead Settings"
  5868. #~ msgstr "列印頭設定"
  5869. #~ msgctxt "@tooltip"
  5870. #~ 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\"."
  5871. #~ msgstr "列印頭左側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5872. #~ msgctxt "@tooltip"
  5873. #~ 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\"."
  5874. #~ msgstr "列印頭前端至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5875. #~ msgctxt "@tooltip"
  5876. #~ 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\"."
  5877. #~ msgstr "列印頭右側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5878. #~ msgctxt "@tooltip"
  5879. #~ 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\"."
  5880. #~ msgstr "列印頭後部至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5881. #~ msgctxt "@label"
  5882. #~ msgid "Gantry height"
  5883. #~ msgstr "龍門高度"
  5884. #~ msgctxt "@tooltip"
  5885. #~ 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\"."
  5886. #~ msgstr "噴頭尖端與龍門系統(X 軸和 Y 軸)之間的高度差。用於防止「排隊列印」時之前的列印品與龍門發生碰撞。"
  5887. #~ msgctxt "@label"
  5888. #~ msgid "Start G-code"
  5889. #~ msgstr "起始 G-code"
  5890. #~ msgctxt "@tooltip"
  5891. #~ msgid "G-code commands to be executed at the very start."
  5892. #~ msgstr "開始時最先執行的 G-code 命令。"
  5893. #~ msgctxt "@label"
  5894. #~ msgid "End G-code"
  5895. #~ msgstr "結束 G-code"
  5896. #~ msgctxt "@tooltip"
  5897. #~ msgid "G-code commands to be executed at the very end."
  5898. #~ msgstr "結束前最後執行的 G-code 命令。"
  5899. #~ msgctxt "@label"
  5900. #~ msgid "Nozzle Settings"
  5901. #~ msgstr "噴頭設定"
  5902. #~ msgctxt "@tooltip"
  5903. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5904. #~ msgstr "印表機所支援的耗材直徑。實際列印的耗材直徑由耗材和/或列印參數提供。"
  5905. #~ msgctxt "@label"
  5906. #~ msgid "Extruder Start G-code"
  5907. #~ msgstr "擠出機起始 G-code"
  5908. #~ msgctxt "@label"
  5909. #~ msgid "Extruder End G-code"
  5910. #~ msgstr "擠出機結束 G-code"
  5911. #~ msgctxt "@label"
  5912. #~ msgid "Changelog"
  5913. #~ msgstr "更新日誌"
  5914. #~ msgctxt "@title:window"
  5915. #~ msgid "User Agreement"
  5916. #~ msgstr "使用者授權"
  5917. #~ msgctxt "@alabel"
  5918. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5919. #~ msgstr "輸入印表機在網路上的 IP 位址或主機名。"
  5920. #~ msgctxt "@info"
  5921. #~ msgid "Please select a network connected printer to monitor."
  5922. #~ msgstr "請選擇要監控的網絡連線印表機。"
  5923. #~ msgctxt "@info"
  5924. #~ msgid "Please connect your Ultimaker printer to your local network."
  5925. #~ msgstr "請將你的 Ultimaker 印表機連接到區域網路。"
  5926. #~ msgctxt "@text:window"
  5927. #~ 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."
  5928. #~ msgstr "Cura 傳送匿名資料給 Ultimaker 以提高列印品質和使用者體驗。以下是傳送資料的例子。"
  5929. #~ msgctxt "@text:window"
  5930. #~ msgid "I don't want to send this data"
  5931. #~ msgstr "我不想傳送這些資料"
  5932. #~ msgctxt "@text:window"
  5933. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5934. #~ msgstr "允許將這些資料傳送給 Ultimaker 以協助我們改進 Cura"
  5935. #~ msgctxt "@label"
  5936. #~ msgid "No print selected"
  5937. #~ msgstr "沒有選擇任何模型"
  5938. #~ msgctxt "@info:tooltip"
  5939. #~ 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."
  5940. #~ msgstr "預設情況下,白色像素表示網格上的高點,黑色像素表示網格上的低點。更改此選項將以相反方式呈現,黑色像素表示網格上的高點,白色像素表示網格上的低點。"
  5941. #~ msgctxt "@title"
  5942. #~ msgid "Select Printer Upgrades"
  5943. #~ msgstr "選擇印表機更新檔案"
  5944. #~ msgctxt "@label"
  5945. #~ 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."
  5946. #~ msgstr "選擇用於支撐的擠出機。該擠出機將在模型之下建立支撐結構,以防止模型下垂或在空中列印。"
  5947. #~ msgctxt "@tooltip"
  5948. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5949. #~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數"
  5950. #~ msgctxt "@label shown when we load a Gcode file"
  5951. #~ msgid "Print setup disabled. G code file can not be modified."
  5952. #~ msgstr "列印設定已被停用。 G-code 檔案無法修改。"
  5953. #~ msgctxt "@label"
  5954. #~ msgid "See the material compatibility chart"
  5955. #~ msgstr "請參閱耗材相容性圖表"
  5956. #~ msgctxt "@label"
  5957. #~ msgid "View types"
  5958. #~ msgstr "檢示類型"
  5959. #~ msgctxt "@label"
  5960. #~ msgid "Hi "
  5961. #~ msgstr "嗨 "
  5962. #~ msgctxt "@text"
  5963. #~ msgid ""
  5964. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5965. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5966. #~ "- Get exclusive access to material profiles from leading brands"
  5967. #~ msgstr ""
  5968. #~ "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機\n"
  5969. #~ "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用\n"
  5970. #~ "- 取得領導品牌的耗材參數設定的獨家存取權限"
  5971. #~ msgctxt "@label:PrintjobStatus"
  5972. #~ msgid "Unable to Slice"
  5973. #~ msgstr "無法切片"
  5974. #~ msgctxt "@label"
  5975. #~ msgid "Time specification"
  5976. #~ msgstr "時間規格"
  5977. #~ msgctxt "@label"
  5978. #~ msgid "Material specification"
  5979. #~ msgstr "耗材規格"
  5980. #~ msgctxt "@title:tab"
  5981. #~ msgid "Add a printer to Cura"
  5982. #~ msgstr "新增印表機到 Cura"
  5983. #~ msgctxt "@title:tab"
  5984. #~ msgid ""
  5985. #~ "Select the printer you want to use from the list below.\n"
  5986. #~ "\n"
  5987. #~ "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."
  5988. #~ msgstr ""
  5989. #~ "從下面的清單中選擇要使用的印表機。\n"
  5990. #~ "\n"
  5991. #~ "假如你的印表機不在清單上,選擇“Custom”類別中的“Custom FFF Printer”,並在下一個對話窗中調整設定以符合你的印表機。"
  5992. #~ msgctxt "@label"
  5993. #~ msgid "Printer Name"
  5994. #~ msgstr "印表機名稱"
  5995. #~ msgctxt "@action:button"
  5996. #~ msgid "Add Printer"
  5997. #~ msgstr "新增印表機"
  5998. #~ msgid "Modify G-Code"
  5999. #~ msgstr "修改 G-Code 檔案"
  6000. #~ msgctxt "@info:status"
  6001. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  6002. #~ msgstr "沒有模型可進行切片,因為模型超出了列印範圍。請縮放或旋轉模型, 讓模型可置入列印範圍。"
  6003. #~ msgctxt "@info:status"
  6004. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  6005. #~ msgstr "所選耗材與所選機器或設定不相容。"
  6006. #~ msgctxt "@info:title"
  6007. #~ msgid "Incompatible Material"
  6008. #~ msgstr "不相容的耗材"
  6009. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6010. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6011. #~ msgstr "無法從 <filename>{0}</filename> 匯入列印參數:<message>{1}</message>"
  6012. #~ msgctxt "@title"
  6013. #~ msgid "Toolbox"
  6014. #~ msgstr "工具箱"
  6015. #~ msgctxt "@label"
  6016. #~ msgid "Not available"
  6017. #~ msgstr "無法使用"
  6018. #~ msgctxt "@label"
  6019. #~ msgid "Unreachable"
  6020. #~ msgstr "無法連接"
  6021. #~ msgctxt "@label"
  6022. #~ msgid "Available"
  6023. #~ msgstr "可用"
  6024. #~ msgctxt "@label:status"
  6025. #~ msgid "Preparing"
  6026. #~ msgstr "正在準備"
  6027. #~ msgctxt "@label:status"
  6028. #~ msgid "Pausing"
  6029. #~ msgstr "暫停中"
  6030. #~ msgctxt "@label:status"
  6031. #~ msgid "Resuming"
  6032. #~ msgstr "繼續"
  6033. #~ msgctxt "@label"
  6034. #~ msgid "Waiting for: Unavailable printer"
  6035. #~ msgstr "等待:印表機無法使用"
  6036. #~ msgctxt "@label"
  6037. #~ msgid "Waiting for: First available"
  6038. #~ msgstr "等待:第一可用"
  6039. #~ msgctxt "@label"
  6040. #~ msgid "Waiting for: "
  6041. #~ msgstr "等待: "
  6042. #~ msgctxt "@label"
  6043. #~ msgid "Configuration change"
  6044. #~ msgstr "設定更動"
  6045. #~ msgctxt "@label"
  6046. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6047. #~ msgstr "分配的印表機 %1 需要下列的設定更動:"
  6048. #~ msgctxt "@label"
  6049. #~ msgid "Override"
  6050. #~ msgstr "覆寫"
  6051. #~ msgctxt "@label"
  6052. #~ 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?"
  6053. #~ msgstr "使用不相容的設定啟動列印工作可能會損壞你的 3D 印表機。你確定要覆寫設定並列印 %1 嗎?"
  6054. #~ msgctxt "@window:title"
  6055. #~ msgid "Override configuration configuration and start print"
  6056. #~ msgstr "覆寫設定並開始列印"
  6057. #~ msgctxt "@label link to connect manager"
  6058. #~ msgid "Manage queue"
  6059. #~ msgstr "管理隊列"
  6060. #~ msgctxt "@label"
  6061. #~ msgid "Printing"
  6062. #~ msgstr "列印中"
  6063. #~ msgctxt "@label link to connect manager"
  6064. #~ msgid "Manage printers"
  6065. #~ msgstr "管理印表機"
  6066. #~ msgctxt "@action:button"
  6067. #~ msgid "Activate Configuration"
  6068. #~ msgstr "啟用設定"
  6069. #~ msgctxt "@info:tooltip"
  6070. #~ msgid "Load the configuration of the printer into Cura"
  6071. #~ msgstr "將印表機設定載入 Cura"
  6072. #~ msgctxt "@label"
  6073. #~ msgid "Show Travels"
  6074. #~ msgstr "顯示移動軌跡"
  6075. #~ msgctxt "@label"
  6076. #~ msgid "Show Helpers"
  6077. #~ msgstr "顯示輔助結構"
  6078. #~ msgctxt "@label"
  6079. #~ msgid "Show Shell"
  6080. #~ msgstr "顯示外殼"
  6081. #~ msgctxt "@label"
  6082. #~ msgid "Show Infill"
  6083. #~ msgstr "顯示填充"
  6084. #~ msgctxt "@text:window"
  6085. #~ msgid "I don't want to send these data"
  6086. #~ msgstr "我不想傳送這些資料"
  6087. #~ msgctxt "@text:window"
  6088. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  6089. #~ msgstr "允許將這些資料傳送給 Ultimaker 並協助我們改進 Cura"
  6090. #~ msgctxt "@label"
  6091. #~ msgid "Printer type:"
  6092. #~ msgstr "印表機類型:"
  6093. #~ msgctxt "@label"
  6094. #~ msgid "Connection:"
  6095. #~ msgstr "連線:"
  6096. #~ msgctxt "@label"
  6097. #~ msgid "State:"
  6098. #~ msgstr "狀態:"
  6099. #~ msgctxt "@label:MonitorStatus"
  6100. #~ msgid "Waiting for a printjob"
  6101. #~ msgstr "等待列印作業"
  6102. #~ msgctxt "@label:MonitorStatus"
  6103. #~ msgid "Waiting for someone to clear the build plate"
  6104. #~ msgstr "等待清空列印平台"
  6105. #~ msgctxt "@label:MonitorStatus"
  6106. #~ msgid "Aborting print..."
  6107. #~ msgstr "中斷列印..."
  6108. #~ msgctxt "@label"
  6109. #~ msgid "Protected profiles"
  6110. #~ msgstr "受保護的列印參數"
  6111. #~ msgctxt "@label"
  6112. #~ msgid "Printer Name:"
  6113. #~ msgstr "印表機名稱:"
  6114. #~ msgctxt "@label"
  6115. #~ msgid "Profile:"
  6116. #~ msgstr "列印參數:"
  6117. #~ msgctxt "@label:textbox"
  6118. #~ msgid "Search..."
  6119. #~ msgstr "搜尋..."
  6120. #~ msgctxt "@action:inmenu"
  6121. #~ msgid "Collapse All"
  6122. #~ msgstr "全部折疊"
  6123. #~ msgctxt "@action:inmenu"
  6124. #~ msgid "Expand All"
  6125. #~ msgstr "全部展開"
  6126. #~ msgctxt "@label:header configurations"
  6127. #~ msgid "Available configurations"
  6128. #~ msgstr "可用的設定"
  6129. #~ msgctxt "@label:extruder label"
  6130. #~ msgid "Extruder"
  6131. #~ msgstr "擠出機"
  6132. #~ msgctxt "@label:extruder label"
  6133. #~ msgid "Yes"
  6134. #~ msgstr "是"
  6135. #~ msgctxt "@label:extruder label"
  6136. #~ msgid "No"
  6137. #~ msgstr "否"
  6138. #~ msgctxt "@label:listbox"
  6139. #~ msgid "Print Setup"
  6140. #~ msgstr "列印設定"
  6141. #~ msgctxt "@label:listbox"
  6142. #~ msgid ""
  6143. #~ "Print Setup disabled\n"
  6144. #~ "G-code files cannot be modified"
  6145. #~ msgstr ""
  6146. #~ "列印設定已關閉\n"
  6147. #~ "G-code 檔案無法被修改"
  6148. #~ msgctxt "@label Hours and minutes"
  6149. #~ msgid "00h 00min"
  6150. #~ msgstr "00 小時 00 分"
  6151. #~ msgctxt "@tooltip"
  6152. #~ msgid "Time specification"
  6153. #~ msgstr "時間規格"
  6154. #~ msgctxt "@label"
  6155. #~ msgid "Cost specification"
  6156. #~ msgstr "成本明細"
  6157. #~ msgctxt "@label"
  6158. #~ msgid "Total:"
  6159. #~ msgstr "總共:"
  6160. #~ msgctxt "@tooltip"
  6161. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  6162. #~ msgstr "<b>推薦的列印設定</b> <br/> <br/>使用針對所選印表機、耗材和品質的推薦設定進行列印。"
  6163. #~ msgctxt "@tooltip"
  6164. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  6165. #~ msgstr "<b>自訂列印設定</b> <br/>對切片過程中的每一個細節進行精細控制。"
  6166. #~ msgctxt "@action:inmenu menubar:help"
  6167. #~ msgid "Show Engine &Log..."
  6168. #~ msgstr "顯示切片引擎日誌(&L)..."
  6169. #~ msgctxt "@action:menu"
  6170. #~ msgid "Browse packages..."
  6171. #~ msgstr "瀏覽套件..."
  6172. #~ msgctxt "@action:inmenu menubar:view"
  6173. #~ msgid "Expand/Collapse Sidebar"
  6174. #~ msgstr "展開/收合側邊欄"
  6175. #~ msgctxt "@label:PrintjobStatus"
  6176. #~ msgid "Please load a 3D model"
  6177. #~ msgstr "請載入一個 3D 模型"
  6178. #~ msgctxt "@label:PrintjobStatus"
  6179. #~ msgid "Ready to slice"
  6180. #~ msgstr "切片已準備就緒"
  6181. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  6182. #~ msgid "Ready to %1"
  6183. #~ msgstr "%1 已準備就緒"
  6184. #~ msgctxt "@label:PrintjobStatus"
  6185. #~ msgid "Slicing unavailable"
  6186. #~ msgstr "切片無法使用"
  6187. #~ msgctxt "@info:tooltip"
  6188. #~ msgid "Slice current printjob"
  6189. #~ msgstr "對目前列印工作進行切片"
  6190. #~ msgctxt "@info:tooltip"
  6191. #~ msgid "Cancel slicing process"
  6192. #~ msgstr "取消進行中的切片程序"
  6193. #~ msgctxt "@label:Printjob"
  6194. #~ msgid "Prepare"
  6195. #~ msgstr "準備"
  6196. #~ msgctxt "@label:Printjob"
  6197. #~ msgid "Cancel"
  6198. #~ msgstr "取消"
  6199. #~ msgctxt "@info:tooltip"
  6200. #~ msgid "Select the active output device"
  6201. #~ msgstr "選擇作用中的輸出裝置"
  6202. #~ msgctxt "@title:menu"
  6203. #~ msgid "&View"
  6204. #~ msgstr "檢視(&V)"
  6205. #~ msgctxt "@title:menu"
  6206. #~ msgid "&Settings"
  6207. #~ msgstr "設定(&S)"
  6208. #~ msgctxt "@title:menu menubar:toplevel"
  6209. #~ msgid "&Toolbox"
  6210. #~ msgstr "工具箱(&T)"
  6211. #~ msgctxt "@action:button"
  6212. #~ msgid "Open File"
  6213. #~ msgstr "開啟檔案"
  6214. #~ msgctxt "@tooltip"
  6215. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6216. #~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請變更這些設定以啟用此品質參數"
  6217. #~ msgctxt "@label"
  6218. #~ msgid "Print Speed"
  6219. #~ msgstr "列印速度"
  6220. #~ msgctxt "@label"
  6221. #~ msgid "Slower"
  6222. #~ msgstr "更慢"
  6223. #~ msgctxt "@label"
  6224. #~ msgid "Faster"
  6225. #~ msgstr "更快"
  6226. #~ msgctxt "@label"
  6227. #~ msgid "Enable gradual"
  6228. #~ msgstr "啟用漸層"
  6229. #~ msgctxt "@label"
  6230. #~ msgid "Generate Support"
  6231. #~ msgstr "產生支撐"
  6232. #~ msgctxt "@label"
  6233. #~ msgid "Build Plate Adhesion"
  6234. #~ msgstr "列印平台附著"
  6235. #~ msgctxt "@label"
  6236. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6237. #~ msgstr "需要幫助改善你的列印?閱讀 <a href=『%1』>Ultimaker 故障排除指南</a>"
  6238. #~ msgctxt "@title:window"
  6239. #~ msgid "Engine Log"
  6240. #~ msgstr "引擎日誌"
  6241. #~ msgctxt "@label"
  6242. #~ msgid "Printer type"
  6243. #~ msgstr "印表機類型"
  6244. #~ msgctxt "@label"
  6245. #~ msgid "Use glue with this material combination"
  6246. #~ msgstr "此耗材使用膠水組合"
  6247. #~ msgctxt "@label"
  6248. #~ msgid "Check compatibility"
  6249. #~ msgstr "檢查相容性"
  6250. #~ msgctxt "@tooltip"
  6251. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6252. #~ msgstr "點擊查看 Ultimaker.com 上的耗材相容性。"
  6253. #~ msgctxt "description"
  6254. #~ msgid "Shows changes since latest checked version."
  6255. #~ msgstr "顯示最新版本更動。"
  6256. #~ msgctxt "name"
  6257. #~ msgid "Changelog"
  6258. #~ msgstr "更新日誌"
  6259. #~ msgctxt "description"
  6260. #~ msgid "Create a flattend quality changes profile."
  6261. #~ msgstr "建立一份合併品質變化列印參數。"
  6262. #~ msgctxt "name"
  6263. #~ msgid "Profile flatener"
  6264. #~ msgstr "列印參數合併器"
  6265. #~ msgctxt "description"
  6266. #~ msgid "Ask the user once if he/she agrees with our license."
  6267. #~ msgstr "詢問使用者是否同意我們的授權協議。"
  6268. #~ msgctxt "name"
  6269. #~ msgid "UserAgreement"
  6270. #~ msgstr "使用者授權"
  6271. #~ msgctxt "@warning:status"
  6272. #~ msgid "Please generate G-code before saving."
  6273. #~ msgstr "請在儲存前產出 G-code。"
  6274. #~ msgctxt "@action"
  6275. #~ msgid "Upgrade Firmware"
  6276. #~ msgstr "升級韌體"
  6277. #~ msgctxt "@label unknown material"
  6278. #~ msgid "Unknown"
  6279. #~ msgstr "未知"
  6280. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6281. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6282. #~ msgstr "檔案 <filename>{0}</filename> 內無自訂參數可匯入"
  6283. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6284. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6285. #~ msgstr "此列印參數 <filename>{0}</filename> 含有錯誤的資料,無法導入。"
  6286. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6287. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6288. #~ msgstr "參數檔案 <filename>{0}</filename> ({1}) 中定義的機器與你目前的機器 ({2}) 不匹配,無法匯入。"
  6289. #~ msgctxt "@title:window"
  6290. #~ msgid "Confirm uninstall "
  6291. #~ msgstr "移除確認 "
  6292. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  6293. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6294. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6295. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  6296. #~ msgid "%1m / ~ %2g"
  6297. #~ msgstr "%1m / ~ %2g"
  6298. #~ msgctxt "@title"
  6299. #~ msgid "Upgrade Firmware"
  6300. #~ msgstr "升級韌體"
  6301. #~ msgctxt "@action:button"
  6302. #~ msgid "Print with Doodle3D WiFi-Box"
  6303. #~ msgstr "使用 Doodle3D 無線網路盒列印"
  6304. #~ msgctxt "@properties:tooltip"
  6305. #~ msgid "Print with Doodle3D WiFi-Box"
  6306. #~ msgstr "使用 Doodle3D 無線網路盒列印"
  6307. #~ msgctxt "@info:status"
  6308. #~ msgid "Connecting to Doodle3D Connect"
  6309. #~ msgstr "正在連接 Doodle3D Connect"
  6310. #~ msgctxt "@info:status"
  6311. #~ msgid "Sending data to Doodle3D Connect"
  6312. #~ msgstr "正在向 Doodle3D Connect 發送資料"
  6313. #~ msgctxt "@info:status"
  6314. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6315. #~ msgstr "無法向 Doodle3D Connect 發送資料。請確認是否有另一項列印作業正在進行?"
  6316. #~ msgctxt "@info:status"
  6317. #~ msgid "Storing data on Doodle3D Connect"
  6318. #~ msgstr "正在儲存資料到 Doodle3D Connect"
  6319. #~ msgctxt "@info:status"
  6320. #~ msgid "File sent to Doodle3D Connect"
  6321. #~ msgstr "檔案已被傳送到 Doodle3D Connect"
  6322. #~ msgctxt "@action:button"
  6323. #~ msgid "Open Connect..."
  6324. #~ msgstr "開啟連線..."
  6325. #~ msgctxt "@info:tooltip"
  6326. #~ msgid "Open the Doodle3D Connect web interface"
  6327. #~ msgstr "開啟 Doodle3D Connect 的網路介面"
  6328. #~ msgctxt "@item:inlistbox"
  6329. #~ msgid "Blender file"
  6330. #~ msgstr "Blender 檔案"
  6331. #~ msgctxt "@info:status"
  6332. #~ msgid ""
  6333. #~ "Could not export using \"{}\" quality!\n"
  6334. #~ "Felt back to \"{}\"."
  6335. #~ msgstr ""
  6336. #~ "無法使用 \"{}\" 品質導出!\n"
  6337. #~ "覆蓋回 \"{}\"。"
  6338. #~ msgctxt "@label"
  6339. #~ msgid "Contact"
  6340. #~ msgstr "聯繫"
  6341. #~ msgctxt "@label"
  6342. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  6343. #~ msgstr "這台印表機未設定成管理一組 Ultimaker 3 印表機的主機。"
  6344. #~ msgctxt "@label"
  6345. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  6346. #~ msgstr "這台印表機是 %1 台 Ultimaker 3 印表機群組的主機。"
  6347. #~ msgctxt "@label: arg 1 is group name"
  6348. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  6349. #~ msgstr "%1 未設定成管理一組連線的 Ultimaker 3 印表機的主機"
  6350. #~ msgctxt "@label link to connect manager"
  6351. #~ msgid "Add/Remove printers"
  6352. #~ msgstr "新增/移除印表機"
  6353. #~ msgctxt "@info:tooltip"
  6354. #~ msgid "Opens the print jobs page with your default web browser."
  6355. #~ msgstr "使用預設瀏覽器開啟列印作業頁面。"
  6356. #~ msgctxt "@action:button"
  6357. #~ msgid "View print jobs"
  6358. #~ msgstr "檢視列印作業"
  6359. #~ msgctxt "@label:status"
  6360. #~ msgid "Preparing to print"
  6361. #~ msgstr "準備列印中"
  6362. #~ msgctxt "@label:status"
  6363. #~ msgid "Available"
  6364. #~ msgstr "可用"
  6365. #~ msgctxt "@label:status"
  6366. #~ msgid "Lost connection with the printer"
  6367. #~ msgstr "與印表機失去連線"
  6368. #~ msgctxt "@label:status"
  6369. #~ msgid "Unknown"
  6370. #~ msgstr "未知"
  6371. #~ msgctxt "@label:status"
  6372. #~ msgid "Disabled"
  6373. #~ msgstr "已關閉"
  6374. #~ msgctxt "@label:status"
  6375. #~ msgid "Reserved"
  6376. #~ msgstr "保留"
  6377. #~ msgctxt "@label"
  6378. #~ msgid "Preparing to print"
  6379. #~ msgstr "準備列印中"
  6380. #~ msgctxt "@label:status"
  6381. #~ msgid "Print aborted"
  6382. #~ msgstr "列印已取消"
  6383. #~ msgctxt "@label"
  6384. #~ msgid "Not accepting print jobs"
  6385. #~ msgstr "不接受列印作業"
  6386. #~ msgctxt "@label"
  6387. #~ msgid "Finishes at: "
  6388. #~ msgstr "完成時間:"
  6389. #~ msgctxt "@label"
  6390. #~ msgid "Clear build plate"
  6391. #~ msgstr "清空列印平台"
  6392. #~ msgctxt "@label"
  6393. #~ msgid "Waiting for configuration change"
  6394. #~ msgstr "等待設定更動"
  6395. #~ msgctxt "@title"
  6396. #~ msgid "Print jobs"
  6397. #~ msgstr "列印作業"
  6398. #~ msgctxt "@label:title"
  6399. #~ msgid "Printers"
  6400. #~ msgstr "印表機"
  6401. #~ msgctxt "@action:button"
  6402. #~ msgid "View printers"
  6403. #~ msgstr "檢視印表機"
  6404. #~ msgctxt "@label:"
  6405. #~ msgid "Pause"
  6406. #~ msgstr "暫停"
  6407. #~ msgctxt "@label:"
  6408. #~ msgid "Resume"
  6409. #~ msgstr "繼續"
  6410. #~ msgctxt "@label:"
  6411. #~ msgid "Abort Print"
  6412. #~ msgstr "中斷列印"
  6413. #~ msgctxt "@option:openProject"
  6414. #~ msgid "Always ask"
  6415. #~ msgstr "總是詢問"
  6416. #~ msgctxt "@label"
  6417. #~ msgid "Override Profile"
  6418. #~ msgstr "覆寫列印參數"
  6419. #~ msgctxt "@info:tooltip"
  6420. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6421. #~ msgstr "新載入的模型要擺放在列印平台上嗎?必需與多列印平台功能一起使用(實驗功能)"
  6422. #~ msgctxt "@option:check"
  6423. #~ msgid "Do not arrange objects on load"
  6424. #~ msgstr "載入時不要擺放物件"
  6425. #~ msgctxt "@action:inmenu menubar:file"
  6426. #~ msgid "&Save Selection to File"
  6427. #~ msgstr "儲存到檔案(&S)"
  6428. #~ msgctxt "@title:menu menubar:file"
  6429. #~ msgid "Save &As..."
  6430. #~ msgstr "另存為(&A)…"
  6431. #~ msgctxt "@title:menu menubar:file"
  6432. #~ msgid "Save &Project..."
  6433. #~ msgstr "儲存專案...(&P)"
  6434. # Added after the string freeze.
  6435. #~ msgctxt "@label"
  6436. #~ msgid "Use adhesion sheet or glue with this material combination"
  6437. #~ msgstr "在此耗材組合下使用膠水或是附著墊片"
  6438. #~ msgctxt "description"
  6439. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6440. #~ msgstr "接受 G-Code 並透過 WiFi 將其發送到 Doodle3D 無線網路盒。"
  6441. #~ msgctxt "name"
  6442. #~ msgid "Doodle3D WiFi-Box"
  6443. #~ msgstr "Doodle3D 無線網路盒"
  6444. #~ msgctxt "description"
  6445. #~ msgid "Provides an edit window for direct script editing."
  6446. #~ msgstr "提供一個直接編輯描述檔的編輯視窗。"
  6447. #~ msgctxt "name"
  6448. #~ msgid "Live scripting tool"
  6449. #~ msgstr "即時描述檔工具"
  6450. #~ msgctxt "description"
  6451. #~ msgid "Helps to open Blender files directly in Cura."
  6452. #~ msgstr "協助你直接在 Cura 中打開 Blender 檔案。"
  6453. #~ msgctxt "name"
  6454. #~ msgid "Blender Integration (experimental)"
  6455. #~ msgstr "Blender 整合(實驗功能)"
  6456. #~ msgctxt "@info:title"
  6457. #~ msgid "Model Checker Warning"
  6458. #~ msgstr "模型檢查器警告"
  6459. #~ msgctxt "@info:status"
  6460. #~ msgid ""
  6461. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6462. #~ "Tips that may be useful to improve the print quality:\n"
  6463. #~ "1) Use rounded corners.\n"
  6464. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6465. #~ "3) Use a different material."
  6466. #~ msgstr ""
  6467. #~ "由於物件大小和模型所選用的耗材,某些模型可能無法理想地列印:{model_names}。\n"
  6468. #~ "可能有助於提高列印品質的訣竅:\n"
  6469. #~ "1) 使用圓角。\n"
  6470. #~ "2) 關閉風扇(在模型沒有微小細節的情況下)。\n"
  6471. #~ "3) 使用不同的耗材。"
  6472. #~ msgctxt "@info:status"
  6473. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6474. #~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內解決這些問題。"
  6475. #~ msgctxt "@info:status"
  6476. #~ msgid ""
  6477. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6478. #~ "\n"
  6479. #~ "Thanks!"
  6480. #~ msgstr ""
  6481. #~ "在你的繪圖中找不到模型。請你再次檢查它的內容並確認裡面有一個零件或組件。\n"
  6482. #~ "\n"
  6483. #~ "謝謝!"
  6484. #~ msgctxt "@info:status"
  6485. #~ msgid ""
  6486. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6487. #~ "\n"
  6488. #~ "Sorry!"
  6489. #~ msgstr ""
  6490. #~ "在你的繪圖中發現了超過一個以上的零件或組件。我們目前只支援只有正好一個零件或組件的繪圖。\n"
  6491. #~ "\n"
  6492. #~ "抱歉!"
  6493. #~ msgctxt "@item:inlistbox"
  6494. #~ msgid "SolidWorks part file"
  6495. #~ msgstr "SolidWorks 零件檔案"
  6496. #~ msgctxt "@item:inlistbox"
  6497. #~ msgid "SolidWorks assembly file"
  6498. #~ msgstr "SolidWorks 組件檔案"
  6499. #~ msgctxt "@item:inlistbox"
  6500. #~ msgid "SolidWorks drawing file"
  6501. #~ msgstr "SolidWorks 繪圖檔案"
  6502. #~ msgctxt "@info:status"
  6503. #~ msgid ""
  6504. #~ "Dear customer,\n"
  6505. #~ "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"
  6506. #~ "\n"
  6507. #~ "With kind regards\n"
  6508. #~ " - Thomas Karl Pietrowski"
  6509. #~ msgstr ""
  6510. #~ "親愛的客戶,\n"
  6511. #~ "我們無法在您的系統上找到有效安裝的 SolidWorks。這表示未安裝 SolidWorks,或者您沒有擁有有效的授權。請確認 SolidWorks 本身是可以正常執行的,或是聯絡您的技術部門處理。\n"
  6512. #~ "\n"
  6513. #~ "順頌 時祺\n"
  6514. #~ " - Thomas Karl Pietrowski"
  6515. #~ msgctxt "@info:status"
  6516. #~ msgid ""
  6517. #~ "Dear customer,\n"
  6518. #~ "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"
  6519. #~ "\n"
  6520. #~ "With kind regards\n"
  6521. #~ " - Thomas Karl Pietrowski"
  6522. #~ msgstr ""
  6523. #~ "親愛的客戶,\n"
  6524. #~ "您目前正在 Windows 以外的作業系統上執行此外掛。此外掛只能在有安裝有效授權 SolidWorks 的 Windows 上執行。請在有安裝 SolidWorks 的 windows 電腦上安裝此外掛。\n"
  6525. #~ "\n"
  6526. #~ "順頌 時祺\n"
  6527. #~ " - Thomas Karl Pietrowski"
  6528. #~ msgid "Configure"
  6529. #~ msgstr "設定"
  6530. #~ msgid "Installation guide for SolidWorks macro"
  6531. #~ msgstr "SolidWorks 巨集的安裝指南"
  6532. #~ msgctxt "@action:button"
  6533. #~ msgid "Disable"
  6534. #~ msgstr "關閉"
  6535. #~ msgctxt "@action:tooltip"
  6536. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6537. #~ msgstr "不允許 Cura 傳送匿名的使用狀況統計資料。你可以在偏好設定中再次啟用此功能。"
  6538. #~ msgid "Install"
  6539. #~ msgstr "安裝"
  6540. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6541. #~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR,它沒有設置到正確的目錄。"
  6542. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6543. #~ msgstr "Siemens NX Cura 外掛已成功安裝。"
  6544. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6545. #~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR。"
  6546. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6547. #~ msgstr "無法安裝 Siemens NX 外掛。無法為 Siemens NX 設定環境變數 UGII_USER_DIR。"
  6548. #~ msgctxt "@info:status"
  6549. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6550. #~ msgstr "無法從 <filename>{0}</filename> 取得外掛 ID"
  6551. #~ msgctxt "@info:tile"
  6552. #~ msgid "Warning"
  6553. #~ msgstr "警告"
  6554. #~ msgctxt "@window:title"
  6555. #~ msgid "Plugin browser"
  6556. #~ msgstr "外掛瀏覽器"
  6557. #~ msgctxt "@label"
  6558. #~ msgid "Ultimaker 3"
  6559. #~ msgstr "Ultimaker 3"
  6560. #~ msgctxt "@label"
  6561. #~ msgid "Ultimaker 3 Extended"
  6562. #~ msgstr "Ultimaker 3 Extended"
  6563. #~ msgctxt "@title:window"
  6564. #~ msgid "SolidWorks: Export wizard"
  6565. #~ msgstr "SolidWorks: 導出精靈"
  6566. #~ msgctxt "@action:label"
  6567. #~ msgid "Quality:"
  6568. #~ msgstr "品質:"
  6569. #~ msgctxt "@option:curaSolidworksStlQuality"
  6570. #~ msgid "Fine (3D-printing)"
  6571. #~ msgstr "精細 (3D-printing)"
  6572. #~ msgctxt "@option:curaSolidworksStlQuality"
  6573. #~ msgid "Coarse (3D-printing)"
  6574. #~ msgstr "粗糙 (3D-printing)"
  6575. #~ msgctxt "@option:curaSolidworksStlQuality"
  6576. #~ msgid "Fine (SolidWorks)"
  6577. #~ msgstr "精細 (SolidWorks)"
  6578. #~ msgctxt "@option:curaSolidworksStlQuality"
  6579. #~ msgid "Coarse (SolidWorks)"
  6580. #~ msgstr "粗糙 (SolidWorks)"
  6581. #~ msgctxt "@text:window"
  6582. #~ msgid "Show this dialog again"
  6583. #~ msgstr "再次顯示這個對話框"
  6584. #~ msgctxt "@action:button"
  6585. #~ msgid "Continue"
  6586. #~ msgstr "繼續"
  6587. #~ msgctxt "@action:button"
  6588. #~ msgid "Abort"
  6589. #~ msgstr "取消"
  6590. #~ msgctxt "@title:window"
  6591. #~ msgid "How to install Cura SolidWorks macro"
  6592. #~ msgstr "如何安裝 Cura SolidWorks 巨集"
  6593. #~ msgctxt "@description:label"
  6594. #~ msgid "Steps:"
  6595. #~ msgstr "步驟:"
  6596. #~ msgctxt "@action:button"
  6597. #~ msgid ""
  6598. #~ "Open the directory\n"
  6599. #~ "with macro and icon"
  6600. #~ msgstr ""
  6601. #~ "使用巨集和圖示\n"
  6602. #~ "開啟目錄"
  6603. #~ msgctxt "@description:label"
  6604. #~ msgid "Instructions:"
  6605. #~ msgstr "操作說明:"
  6606. #~ msgctxt "@action:playpause"
  6607. #~ msgid "Play"
  6608. #~ msgstr "播放"
  6609. #~ msgctxt "@action:playpause"
  6610. #~ msgid "Pause"
  6611. #~ msgstr "暫停"
  6612. #~ msgctxt "@action:button"
  6613. #~ msgid "Previous Step"
  6614. #~ msgstr "前一步"
  6615. #~ msgctxt "@action:button"
  6616. #~ msgid "Done"
  6617. #~ msgstr "完成"
  6618. #~ msgctxt "@action:button"
  6619. #~ msgid "Next Step"
  6620. #~ msgstr "下一步"
  6621. #~ msgctxt "@title:window"
  6622. #~ msgid "SolidWorks plugin: Configuration"
  6623. #~ msgstr "SolidWorks 外掛:設定"
  6624. #~ msgctxt "@title:tab"
  6625. #~ msgid "Conversion settings"
  6626. #~ msgstr "轉換設定"
  6627. #~ msgctxt "@label"
  6628. #~ msgid "First choice:"
  6629. #~ msgstr "第一選擇:"
  6630. #~ msgctxt "@text:menu"
  6631. #~ msgid "Latest installed version (Recommended)"
  6632. #~ msgstr "最新安裝的版本(建議)"
  6633. #~ msgctxt "@text:menu"
  6634. #~ msgid "Default version"
  6635. #~ msgstr "預設的版本"
  6636. #~ msgctxt "@label"
  6637. #~ msgid "Show wizard before opening SolidWorks files"
  6638. #~ msgstr "開啟 SolidWorks 檔案時顯示精靈"
  6639. #~ msgctxt "@label"
  6640. #~ msgid "Automatically rotate opened file into normed orientation"
  6641. #~ msgstr "自動將開啟的檔案旋轉到正常方向"
  6642. #~ msgctxt "@title:tab"
  6643. #~ msgid "Installation(s)"
  6644. #~ msgstr "安裝"
  6645. #~ msgctxt "@label"
  6646. #~ msgid "COM service found"
  6647. #~ msgstr "找到 COM 服務"
  6648. #~ msgctxt "@label"
  6649. #~ msgid "Executable found"
  6650. #~ msgstr "找到可執行檔案"
  6651. #~ msgctxt "@label"
  6652. #~ msgid "COM starting"
  6653. #~ msgstr "COM 啟動中"
  6654. #~ msgctxt "@label"
  6655. #~ msgid "Revision number"
  6656. #~ msgstr "版本號碼"
  6657. #~ msgctxt "@label"
  6658. #~ msgid "Functions available"
  6659. #~ msgstr "可用功能"
  6660. #~ msgctxt "@label (%1 is object name)"
  6661. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6662. #~ msgstr "新的耗材直徑設定為 %1 mm,這與目前機器不相容。你想繼續嗎?"
  6663. #~ msgctxt "@action:menu"
  6664. #~ msgid "Browse plugins..."
  6665. #~ msgstr "瀏覽外掛..."
  6666. #~ msgctxt "@title:menu menubar:toplevel"
  6667. #~ msgid "P&lugins"
  6668. #~ msgstr "外掛(&l)"
  6669. #~ msgctxt "@window:title"
  6670. #~ msgid "Install Plugin"
  6671. #~ msgstr "安裝外掛"
  6672. #~ msgctxt "description"
  6673. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6674. #~ msgstr "提供更改印表機設定(如成形空間體積、噴頭口徑等)的方法"
  6675. #~ msgctxt "description"
  6676. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6677. #~ msgstr "管理與 Ultimaker 3 印表機的網路連接"
  6678. #~ msgctxt "description"
  6679. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6680. #~ msgstr "讓你可以使用 SolidWorks 開啟某些檔案。此外掛會完成轉換和最佳化的工作。"
  6681. #~ msgctxt "name"
  6682. #~ msgid "SolidWorks Integration"
  6683. #~ msgstr "SolidWorks 整合"
  6684. #~ msgctxt "description"
  6685. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6686. #~ msgstr "偏好設定、機器設定和列印參數修改後自動儲存。"
  6687. #~ msgctxt "name"
  6688. #~ msgid "Auto Save"
  6689. #~ msgstr "自動儲存"
  6690. #~ msgctxt "description"
  6691. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6692. #~ msgstr "協助你在 Siemens NX 中安裝一個「匯出到 Cura」按鈕。"
  6693. #~ msgctxt "name"
  6694. #~ msgid "Siemens NX Integration"
  6695. #~ msgstr "Siemens NX 整合"
  6696. #~ msgctxt "description"
  6697. #~ msgid "Find, manage and install new plugins."
  6698. #~ msgstr "尋找、管理和安裝新外掛。"
  6699. #~ msgctxt "name"
  6700. #~ msgid "Plugin Browser"
  6701. #~ msgstr "外掛瀏覽器"
  6702. #~ msgctxt "description"
  6703. #~ msgid "Ask the user once if he/she agrees with our license"
  6704. #~ msgstr "詢問使用者是否同意我們的授權協議"
  6705. #~ msgctxt "description"
  6706. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6707. #~ msgstr "提供 Ultimaker 印表機專屬功能(如平台調平精靈、選擇升級等)"
  6708. #~ msgctxt "@item:inlistbox"
  6709. #~ msgid "GCode File"
  6710. #~ msgstr "GCode 檔案"
  6711. #~ msgctxt "@info:status"
  6712. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6713. #~ msgstr "無法啟動新作業,因為印表機處於忙碌狀態或未連接。"
  6714. #~ msgctxt "@info:title"
  6715. #~ msgid "Printer Unavailable"
  6716. #~ msgstr "印表機無法使用"
  6717. #~ msgctxt "@info:status"
  6718. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6719. #~ msgstr "此印表機不支援透過 USB 連線列印,因為其使用 UltiGCode 類型的 G-code 檔案。"
  6720. #~ msgctxt "@info:title"
  6721. #~ msgid "USB Printing"
  6722. #~ msgstr "USB 連線列印"
  6723. #~ msgctxt "@info:status"
  6724. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6725. #~ msgstr "無法啟動新作業,因為該印表機不支援 USB 連線列印。"
  6726. #~ msgctxt "@info"
  6727. #~ msgid "Unable to update firmware because there are no printers connected."
  6728. #~ msgstr "無法更新韌體,因為沒有連接印表機。"
  6729. #~ msgctxt "@info"
  6730. #~ msgid "Could not find firmware required for the printer at %s."
  6731. #~ msgstr "在 %s 無法找到印表機所需的韌體。"
  6732. #~ msgctxt "@info:title"
  6733. #~ msgid "Printer Firmware"
  6734. #~ msgstr "印表機韌體"
  6735. #~ msgctxt "@info:title"
  6736. #~ msgid "Connection status"
  6737. #~ msgstr "連線狀態"
  6738. #~ msgctxt "@info:title"
  6739. #~ msgid "Connection Status"
  6740. #~ msgstr "連線狀態"
  6741. #~ msgctxt "@info:status"
  6742. #~ msgid "Access request was denied on the printer."
  6743. #~ msgstr "存取請求被印表機上拒絕。"
  6744. #~ msgctxt "@info:status"
  6745. #~ msgid "Access request failed due to a timeout."
  6746. #~ msgstr "存取請求超時失敗。"
  6747. #~ msgctxt "@info:status"
  6748. #~ msgid "The connection with the network was lost."
  6749. #~ msgstr "網路連接中斷。"
  6750. #~ msgctxt "@info:status"
  6751. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6752. #~ msgstr "與印表機的連接中斷,請檢查印表機是否已連接。"
  6753. #~ msgctxt "@info:status"
  6754. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6755. #~ msgstr "印表機無法啟動新的列印作業,目前的印表機狀態為 %s。"
  6756. #~ msgctxt "@info:title"
  6757. #~ msgid "Printer Status"
  6758. #~ msgstr "印表機狀態"
  6759. #~ msgctxt "@info:status"
  6760. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6761. #~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入列印頭。"
  6762. #~ msgctxt "@info:status"
  6763. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6764. #~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入耗材。"
  6765. #~ msgctxt "@label"
  6766. #~ msgid "Not enough material for spool {0}."
  6767. #~ msgstr "線軸 {0} 上沒有足夠的耗材。"
  6768. #~ msgctxt "@label"
  6769. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6770. #~ msgstr "不同的列印頭(Cura:{0},印表機: 為擠出機 {2} 選擇了 {1})"
  6771. #~ msgctxt "@label"
  6772. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6773. #~ msgstr "列印頭 {0} 未正確校準。需要在印表機上執行 XY 校正。"
  6774. #~ msgctxt "@info:status"
  6775. #~ msgid "Unable to send data to printer. Is another job still active?"
  6776. #~ msgstr "無法向印表機發送資料。請確認是否有另一項列印作業正在進行?"
  6777. #~ msgctxt "@label:MonitorStatus"
  6778. #~ msgid "Print aborted. Please check the printer"
  6779. #~ msgstr "列印已中斷。請檢查印表機"
  6780. #~ msgctxt "@label:MonitorStatus"
  6781. #~ msgid "Pausing print..."
  6782. #~ msgstr "暫停列印..."
  6783. #~ msgctxt "@label:MonitorStatus"
  6784. #~ msgid "Resuming print..."
  6785. #~ msgstr "繼續列印..."
  6786. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6787. #~ msgstr "這台印表機未設定成管理一組連線的 Ultimaker 3 印表機的主機。"
  6788. #~ msgctxt "Count is number of printers."
  6789. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6790. #~ msgstr "這台印表機是 {count} 台連線的 Ultimaker 3 印表機群組的主機。"
  6791. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6792. #~ msgstr "{printer_name} 已完成列印 '{job_name}'。請收起列印件並確認清空列印平台。"
  6793. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6794. #~ msgstr "{printer_name} 已為了列印 '{job_name}' 保留。請更改印表機設定配合此列印作業,以便開始列印。"
  6795. #~ msgctxt "@info:status"
  6796. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6797. #~ msgstr "無法傳送新的列印作業:這台印表機尚未設定成管理一組連線的 Ultimaker 3 印表機的主機。"
  6798. #~ msgctxt "@info:status"
  6799. #~ msgid "Unable to send print job to group {cluster_name}."
  6800. #~ msgstr "無法傳送列印作業到群組 {cluster_name}。"
  6801. #~ msgctxt "@info:status"
  6802. #~ msgid "Sent {file_name} to group {cluster_name}."
  6803. #~ msgstr "{file_name} 已傳送到群組 {cluster_name}。"
  6804. #~ msgctxt "@action:button"
  6805. #~ msgid "Show print jobs"
  6806. #~ msgstr "顯示列印作業"
  6807. #~ msgctxt "@info:tooltip"
  6808. #~ msgid "Opens the print jobs interface in your browser."
  6809. #~ msgstr "使用瀏覽器開啟列印作業介面。"
  6810. #~ msgctxt "@label Printer name"
  6811. #~ msgid "Unknown"
  6812. #~ msgstr "未知"
  6813. #~ msgctxt "@info:progress"
  6814. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6815. #~ msgstr "傳送 <filename>{file_name}</filename> 到群組 {cluster_name} 中"
  6816. #~ msgctxt "@info:status"
  6817. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6818. #~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內部解決這些問題。"
  6819. #~ msgctxt "@info:status"
  6820. #~ msgid ""
  6821. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6822. #~ "\n"
  6823. #~ " Thanks!."
  6824. #~ msgstr ""
  6825. #~ "在你的繪圖找不到模型。請你再次檢查它的內容並確認裡面有一個零件或組件。\n"
  6826. #~ "\n"
  6827. #~ "謝謝。"
  6828. #~ msgctxt "@info:status"
  6829. #~ msgid ""
  6830. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6831. #~ "\n"
  6832. #~ "Sorry!"
  6833. #~ msgstr ""
  6834. #~ "在你的繪圖找到了超過一個的零件或組件。我們目前只支援一個零件或組件的繪圖。\n"
  6835. #~ "\n"
  6836. #~ "抱歉!"
  6837. #~ msgctxt "@item:material"
  6838. #~ msgid "No material loaded"
  6839. #~ msgstr "未載入耗材"
  6840. #~ msgctxt "@item:material"
  6841. #~ msgid "Unknown material"
  6842. #~ msgstr "未知耗材"
  6843. #~ msgctxt "@info:status Has a cancel button next to it."
  6844. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6845. #~ msgstr "所選耗材直徑導致耗材與目前印表機不相容。"
  6846. #~ msgctxt "@action:button"
  6847. #~ msgid "Undo"
  6848. #~ msgstr "復原"
  6849. #~ msgctxt "@action"
  6850. #~ msgid "Undo changing the material diameter."
  6851. #~ msgstr "復原更改耗材直徑。"
  6852. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6853. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6854. #~ msgstr "列印參數 <filename>{0}</filename> 中的機器設定與你目前的機器不相符,無法導入。"
  6855. #~ msgctxt "@label crash message"
  6856. #~ msgid ""
  6857. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6858. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6859. #~ " "
  6860. #~ msgstr ""
  6861. #~ "<p><b>發生致命錯誤。請將錯誤報告傳送給我們以便修正此問題。</p></b>\n"
  6862. #~ " <p>請使用\"送出報告\"按鈕自動發送一份問題報告給我們的伺服器</p>\n"
  6863. #~ " "
  6864. #~ msgctxt "@label"
  6865. #~ msgid "not yet initialised<br/>"
  6866. #~ msgstr "尚未初始化<br/>"
  6867. #~ msgctxt "@label"
  6868. #~ msgid "Gcode flavor"
  6869. #~ msgstr "GCode 類型"
  6870. #~ msgctxt "@label"
  6871. #~ msgid "Start Gcode"
  6872. #~ msgstr "起始 Gcode"
  6873. #~ msgctxt "@tooltip"
  6874. #~ msgid "Gcode commands to be executed at the very start."
  6875. #~ msgstr "將在開始時執行的 Gcode 命令。"
  6876. #~ msgctxt "@label"
  6877. #~ msgid "End Gcode"
  6878. #~ msgstr "結束 Gcode"
  6879. #~ msgctxt "@tooltip"
  6880. #~ msgid "Gcode commands to be executed at the very end."
  6881. #~ msgstr "將在結束時執行的 Gcode 命令。"
  6882. #~ msgctxt "@label"
  6883. #~ msgid "Extruder Start Gcode"
  6884. #~ msgstr "擠出機起始 Gcode"
  6885. #~ msgctxt "@label"
  6886. #~ msgid "Extruder End Gcode"
  6887. #~ msgstr "擠出機結束 Gcode"
  6888. #~ msgctxt "@label"
  6889. #~ msgid "Starting firmware update, this may take a while."
  6890. #~ msgstr "正在開始韌體更新。可能需要花費一些時間,請耐心等待。"
  6891. #~ msgctxt "@label"
  6892. #~ msgid "Unknown error code: %1"
  6893. #~ msgstr "未知錯誤代碼: %1"
  6894. #~ msgctxt "@label Printer name"
  6895. #~ msgid "Ultimaker 3"
  6896. #~ msgstr "Ultimaker 3"
  6897. #~ msgctxt "@label Printer name"
  6898. #~ msgid "Ultimaker 3 Extended"
  6899. #~ msgstr "Ultimaker 3 Extended"
  6900. #~ msgctxt "@label Printer status"
  6901. #~ msgid "Unknown"
  6902. #~ msgstr "未知"
  6903. #~ msgctxt "@title:window"
  6904. #~ msgid "Find & Update plugins"
  6905. #~ msgstr "查找與更新外掛"
  6906. #~ msgctxt "@label"
  6907. #~ msgid "Here you can find a list of Third Party plugins."
  6908. #~ msgstr "你可以在這裡找到第三方外掛列表。"
  6909. #~ msgctxt "@action:button"
  6910. #~ msgid "Upgrade"
  6911. #~ msgstr "升級"
  6912. #~ msgctxt "@action:button"
  6913. #~ msgid "Download"
  6914. #~ msgstr "下載"
  6915. #~ msgctxt "@info:tooltip"
  6916. #~ msgid "Show caution message in gcode reader."
  6917. #~ msgstr "在 G-code 讀取器中顯示警告資訊。"
  6918. #~ msgctxt "@option:check"
  6919. #~ msgid "Caution message in gcode reader"
  6920. #~ msgstr "G-code 讀取器中的警告資訊"
  6921. #~ msgctxt "@window:title"
  6922. #~ msgid "Import Profile"
  6923. #~ msgstr "匯入列印參數"
  6924. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6925. #~ msgid "Printer: %1, %2: %3"
  6926. #~ msgstr "印表機:%1, %2: %3"
  6927. #~ msgctxt "@action:label %1 is printer name"
  6928. #~ msgid "Printer: %1"
  6929. #~ msgstr "印表機:%1"
  6930. #~ msgctxt "@label"
  6931. #~ msgid "GCode generator"
  6932. #~ msgstr "GCode 產生器"
  6933. #~ msgctxt "@action:menu"
  6934. #~ msgid "Configure setting visiblity..."
  6935. #~ msgstr "設定設定可見性..."
  6936. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6937. #~ msgid "Automatic: %1"
  6938. #~ msgstr "自動:%1"
  6939. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6940. #~ msgid "Automatic: %1"
  6941. #~ msgstr "自動: %1"
  6942. #~ msgctxt "@info:status"
  6943. #~ msgid "No printer connected"
  6944. #~ msgstr "沒有連接印表機"
  6945. #~ msgctxt "@tooltip"
  6946. #~ msgid "The current temperature of this extruder."
  6947. #~ msgstr "該擠出機的目前溫度。"
  6948. #~ msgctxt "@action:menu"
  6949. #~ msgid "Installed plugins..."
  6950. #~ msgstr "安裝外掛..."
  6951. #~ msgctxt "@label"
  6952. #~ msgid "Support Extruder"
  6953. #~ msgstr "支撐用擠出機"
  6954. #~ msgctxt "description"
  6955. #~ msgid "Writes GCode to a file."
  6956. #~ msgstr "將 GCode 寫入至檔案。"
  6957. #~ msgctxt "name"
  6958. #~ msgid "GCode Writer"
  6959. #~ msgstr "GCode 寫入器"
  6960. #~ msgctxt "name"
  6961. #~ msgid "GCode Profile Reader"
  6962. #~ msgstr "G-code 列印參數讀取器"
  6963. #~ msgctxt "@info:status"
  6964. #~ 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!"
  6965. #~ msgstr "開啟 SolidWorks 檔案時發生錯誤! 請檢查能否在 SolidWorks 中正常開啟檔案而不出現任何問題!"
  6966. #~ msgctxt "@info:status"
  6967. #~ msgid "Error while starting %s!"
  6968. #~ msgstr "啟動 %s 時發生錯誤!"
  6969. #~ msgctxt "@item:inlistbox"
  6970. #~ msgid "Simulation view"
  6971. #~ msgstr "模擬檢視"
  6972. #~ msgctxt "@info"
  6973. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6974. #~ msgstr "Cura 收集匿名切片統計資料。你可以在偏好設定中關閉此選項。"
  6975. #~ msgctxt "@action:button"
  6976. #~ msgid "Dismiss"
  6977. #~ msgstr "關閉此通知"
  6978. #~ msgctxt "@menuitem"
  6979. #~ msgid "Global"
  6980. #~ msgstr "整體"
  6981. #~ msgctxt "@label crash message"
  6982. #~ msgid ""
  6983. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6984. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6985. #~ " "
  6986. #~ msgstr ""
  6987. #~ "<p><b>程式發生了致命異常。請將錯誤報告傳送給我們以解決這個問題</p></b>\n"
  6988. #~ " <p>請使用「送出報告」按鈕將錯誤報告自動發送到我們的伺服器</p>\n"
  6989. #~ " "
  6990. #~ msgctxt "@label Cura version"
  6991. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6992. #~ msgstr "<b>Cura 版本:</b> {version}<br/>"
  6993. #~ msgctxt "@label Platform"
  6994. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6995. #~ msgstr "<b>平台:</b> {platform}<br/>"
  6996. #~ msgctxt "@label Qt version"
  6997. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6998. #~ msgstr "<b>Qt 版本:</b> {qt}<br/>"
  6999. #~ msgctxt "@label PyQt version"
  7000. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  7001. #~ msgstr "<b>PyQt 版本:</b> {pyqt}<br/>"
  7002. #~ msgctxt "@label OpenGL"
  7003. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  7004. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  7005. #~ msgctxt "@title:groupbox"
  7006. #~ msgid "Exception traceback"
  7007. #~ msgstr "異常追溯"
  7008. #~ msgctxt "@label"
  7009. #~ msgid "Material diameter"
  7010. #~ msgstr "耗材直徑"
  7011. #~ msgctxt "@title:window"
  7012. #~ msgid "Cura SolidWorks Plugin Configuration"
  7013. #~ msgstr "Cura SolidWorks 外掛設定"
  7014. #~ msgctxt "@action:label"
  7015. #~ msgid "Default quality of the exported STL:"
  7016. #~ msgstr "預設的匯出 STL 品質:"
  7017. #~ msgctxt "@option:curaSolidworksStlQuality"
  7018. #~ msgid "Always ask"
  7019. #~ msgstr "總是詢問"
  7020. #~ msgctxt "@option:curaSolidworksStlQuality"
  7021. #~ msgid "Always use Fine quality"
  7022. #~ msgstr "總是使用精細品質"
  7023. #~ msgctxt "@option:curaSolidworksStlQuality"
  7024. #~ msgid "Always use Coarse quality"
  7025. #~ msgstr "總是使用粗糙品質"
  7026. #~ msgctxt "@title:window"
  7027. #~ msgid "Import SolidWorks File as STL..."
  7028. #~ msgstr "匯入 SolidWorks 檔案為 STL..."
  7029. #~ msgctxt "@info:tooltip"
  7030. #~ msgid "Quality of the Exported STL"
  7031. #~ msgstr "匯出 STL 的品質"
  7032. #~ msgctxt "@action:label"
  7033. #~ msgid "Quality"
  7034. #~ msgstr "品質"
  7035. #~ msgctxt "@option:curaSolidworksStlQuality"
  7036. #~ msgid "Coarse"
  7037. #~ msgstr "粗糙"
  7038. #~ msgctxt "@option:curaSolidworksStlQuality"
  7039. #~ msgid "Fine"
  7040. #~ msgstr "精細"
  7041. #~ msgctxt "@"
  7042. #~ msgid "No Profile Available"
  7043. #~ msgstr "無可用的列印參數"
  7044. #~ msgctxt "@label"
  7045. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  7046. #~ msgstr "這個設定由全部的擠出機共享,變更這個設定將改變全部擠出機的設定值"
  7047. #~ msgctxt "@tooltip"
  7048. #~ msgid "<b>Time specification</b><br/><table>"
  7049. #~ msgstr "<b>時間資訊</b><br/><table>"
  7050. #~ msgctxt "@action:inmenu menubar:view"
  7051. #~ msgid "&Reset camera position"
  7052. #~ msgstr "重置視角位置"
  7053. #~ msgctxt "@title:menu menubar:file"
  7054. #~ msgid "Save project"
  7055. #~ msgstr "儲存專案"
  7056. #~ msgctxt "@title:tab"
  7057. #~ msgid "Prepare"
  7058. #~ msgstr "準備"
  7059. #~ msgctxt "@title:tab"
  7060. #~ msgid "Monitor"
  7061. #~ msgstr "監控"
  7062. #~ msgctxt "@label"
  7063. #~ msgid "<a href='%1'>Check compatibility</a>"
  7064. #~ msgstr "<a href='%1'>檢查耗材相容性</a>"
  7065. #~ msgctxt "description"
  7066. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  7067. #~ msgstr "讓你可以透過 SolidWorks 自身開啟特定檔案。隨後會將這些檔案進行轉換並載入 Cura"
  7068. #~ msgctxt "@label:status"
  7069. #~ msgid "Blocked"
  7070. #~ msgstr "暫停"
  7071. #~ msgctxt "@label:status"
  7072. #~ msgid "Can't start print"
  7073. #~ msgstr "無法開始列印"
  7074. #~ msgctxt "@info:title"
  7075. #~ msgid "Print Details"
  7076. #~ msgstr "列印細項設定"
  7077. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  7078. #~ 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."
  7079. #~ msgstr "為了確保您的 {machine_name} 配備了最新功能,建議定期更新韌體。 這可以在 {machine_name} 上完成(有連接到網絡時)或透過 USB 完成。"
  7080. #~ msgctxt "@info:title"
  7081. #~ msgid "Layer View"
  7082. #~ msgstr "分層檢視"
  7083. #~ msgctxt "@menuitem"
  7084. #~ msgid "Browse plugins"
  7085. #~ msgstr "瀏覽外掛"
  7086. #~ msgctxt "@info:title"
  7087. #~ msgid "Export Details"
  7088. #~ msgstr "匯出細項設定"
  7089. #~ msgctxt "@label"
  7090. #~ msgid ""
  7091. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7092. #~ " <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"
  7093. #~ " "
  7094. #~ msgstr ""
  7095. #~ "<p>發生了致命錯誤,我們無法繼續!</p>\n"
  7096. #~ " <p>請利用下方資訊回報錯誤到 <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7097. #~ " "
  7098. #~ msgctxt "@action:button"
  7099. #~ msgid "Open Web Page"
  7100. #~ msgstr "開啟網頁"
  7101. #~ msgctxt "@action:button"
  7102. #~ msgid "Ok"
  7103. #~ msgstr "確定"
  7104. #~ msgctxt "@label"
  7105. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  7106. #~ msgstr "這台印表機未設定成管理一組連線的 Ultimaker 3 印表機的主機"
  7107. #~ msgctxt "@label"
  7108. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  7109. #~ msgstr "這台印表機是 %1 台 Ultimaker 3 印表機群組的主機"
  7110. #~ msgctxt "@label"
  7111. #~ msgid "Completed on: "
  7112. #~ msgstr "完成時間:"
  7113. #~ msgctxt "@label"
  7114. #~ msgid "PRINTER GROUP"
  7115. #~ msgstr "印表機群組"
  7116. #~ msgctxt "@description"
  7117. #~ msgid "Print time"
  7118. #~ msgstr "列印時間"
  7119. #~ msgctxt "@title:window"
  7120. #~ msgid "Cura"
  7121. #~ msgstr "Cura"
  7122. #~ msgctxt "name"
  7123. #~ msgid "UM3 Network Connection (Cluster)"
  7124. #~ msgstr "UM3 網路連接(叢集)"
  7125. #~ msgctxt "description"
  7126. #~ msgid "Provides the Layer view."
  7127. #~ msgstr "提供分層檢視。"
  7128. #~ msgctxt "name"
  7129. #~ msgid "Layer View"
  7130. #~ msgstr "分層檢視"
  7131. #~ msgctxt "@item:inlistbox"
  7132. #~ msgid "X-Ray"
  7133. #~ msgstr "透視"
  7134. #~ msgctxt "@label"
  7135. #~ msgid "Doodle3D"
  7136. #~ msgstr "Doodle3D"
  7137. #~ msgctxt "@info:tooltip"
  7138. #~ msgid "Print with "
  7139. #~ msgstr "使用 "
  7140. #~ msgctxt "@title:menu"
  7141. #~ msgid "Doodle3D"
  7142. #~ msgstr "Doodle3D 列印"
  7143. #~ msgctxt "@item:inlistbox"
  7144. #~ msgid "Enable Scan devices..."
  7145. #~ msgstr "啟用掃描設備..."
  7146. #~ msgctxt "@info:status"
  7147. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  7148. #~ msgstr "請注意,重新載入模型功能無法運作!你必須手動重新開啟 SolidWorks 檔案!"
  7149. #~ msgctxt "@item:inlistbox"
  7150. #~ msgid "Layers"
  7151. #~ msgstr "層"
  7152. #~ msgctxt "@item:inmenu"
  7153. #~ msgid "Solid"
  7154. #~ msgstr "實體"
  7155. #~ msgctxt "@title:window"
  7156. #~ msgid "Doodle3D Settings"
  7157. #~ msgstr "Doodle3D 設定"
  7158. #~ msgctxt "@title:window"
  7159. #~ msgid "Print to: %1"
  7160. #~ msgstr "列印至:%1"
  7161. #~ msgctxt "@label"
  7162. #~ msgid "Extruder Temperature: %1/%2°C"
  7163. #~ msgstr "列印頭溫度:%1/%2 °C"
  7164. #~ msgctxt "@label"
  7165. #~ msgid "Bed Temperature: %1/%2°C"
  7166. #~ msgstr "熱床溫度:%1/%2°C"
  7167. #~ msgctxt "@label"
  7168. #~ msgid "View Mode: Layers"
  7169. #~ msgstr "檢視模式:分層"
  7170. #~ msgctxt "@label"
  7171. #~ msgid "Hotend"
  7172. #~ msgstr "熱端"
  7173. #~ msgctxt "@action:button"
  7174. #~ msgid "View Mode"
  7175. #~ msgstr "檢視模式"
  7176. #~ msgctxt "@title:tab"
  7177. #~ msgid "Print"
  7178. #~ msgstr "列印"
  7179. #~ msgctxt "@label"
  7180. #~ msgid "0%"
  7181. #~ msgstr "0%"
  7182. #~ msgctxt "@label"
  7183. #~ msgid "Empty infill will leave your model hollow with low strength."
  7184. #~ msgstr "無填充將使模型處於低強度且保持空心狀態。"
  7185. #~ msgctxt "@label"
  7186. #~ msgid "20%"
  7187. #~ msgstr "20%"
  7188. #~ msgctxt "@label"
  7189. #~ msgid "Light (20%) infill will give your model an average strength."
  7190. #~ msgstr "輕度(20%)填充將使列印模型處於中等強度。"
  7191. #~ msgctxt "@label"
  7192. #~ msgid "50%"
  7193. #~ msgstr "50%"
  7194. #~ msgctxt "@label"
  7195. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7196. #~ msgstr "密集(50%)填充將使列印模型高於平均的強度。"
  7197. #~ msgctxt "@label"
  7198. #~ msgid "100%"
  7199. #~ msgstr "100%"
  7200. #~ msgctxt "@label"
  7201. #~ msgid "Solid (100%) infill will make your model completely solid."
  7202. #~ msgstr "完全(100%)填充將使你的模型處於完全實心狀態。"
  7203. #~ msgctxt "@label"
  7204. #~ msgid "Gradual"
  7205. #~ msgstr "漸層填充"
  7206. #~ msgctxt "description"
  7207. #~ msgid "Provides support for writing X3G files"
  7208. #~ msgstr "提供寫入 X3G 檔案的支援"
  7209. #~ msgctxt "name"
  7210. #~ msgid "X3G Writer"
  7211. #~ msgstr "X3G 寫入器"