cura.po 311 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591
  1. # Cura
  2. # Copyright (C) 2021 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2021.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 4.9\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  10. "POT-Creation-Date: 2021-04-02 16:10+0200\n"
  11. "PO-Revision-Date: 2021-04-16 20:13+0200\n"
  12. "Last-Translator: Valen Chang <carf17771@gmail.com>\n"
  13. "Language-Team: Valen Chang <carf17771@gmail.com>/ Leo Hsu<Hongjhih@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 2.4.1\n"
  20. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
  21. msgctxt "@info:progress"
  22. msgid "Loading machines..."
  23. msgstr "正在載入印表機..."
  24. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
  25. msgctxt "@info:progress"
  26. msgid "Setting up preferences..."
  27. msgstr "正在設定偏好設定..."
  28. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
  29. msgctxt "@info:progress"
  30. msgid "Initializing Active Machine..."
  31. msgstr "正在初始化啟用的機器..."
  32. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
  33. msgctxt "@info:progress"
  34. msgid "Initializing machine manager..."
  35. msgstr "正在初始化機器管理員..."
  36. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
  37. msgctxt "@info:progress"
  38. msgid "Initializing build volume..."
  39. msgstr "正在初始化列印範圍..."
  40. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
  41. msgctxt "@info:progress"
  42. msgid "Setting up scene..."
  43. msgstr "正在設定場景..."
  44. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
  45. msgctxt "@info:progress"
  46. msgid "Loading interface..."
  47. msgstr "正在載入介面..."
  48. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
  49. msgctxt "@info:progress"
  50. msgid "Initializing engine..."
  51. msgstr "正在初始化引擎..."
  52. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
  53. #, python-format
  54. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  55. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  56. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  57. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
  58. #, python-brace-format
  59. msgctxt "@info:status"
  60. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  61. msgstr "一次只能載入一個 G-code 檔案。{0} 已跳過匯入"
  62. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800 /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188 /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
  63. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  64. msgctxt "@info:title"
  65. msgid "Warning"
  66. msgstr "警告"
  67. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
  68. #, python-brace-format
  69. msgctxt "@info:status"
  70. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  71. msgstr "如果載入 G-code,則無法開啟其他任何檔案。{0} 已跳過匯入"
  72. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153
  73. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  74. msgctxt "@info:title"
  75. msgid "Error"
  76. msgstr "錯誤"
  77. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
  78. #, python-brace-format
  79. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  80. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  81. msgstr "你確定要移除 {0} 嗎?這動作無法復原!"
  82. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
  83. msgctxt "@label"
  84. msgid "Custom Material"
  85. msgstr "自訂線材"
  86. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227 /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
  87. msgctxt "@label"
  88. msgid "Custom"
  89. msgstr "自訂"
  90. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  91. msgctxt "@label"
  92. msgid "Default"
  93. msgstr "預設值"
  94. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  95. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  96. msgctxt "@label"
  97. msgid "Unknown"
  98. msgstr "未知"
  99. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
  100. msgctxt "@label"
  101. msgid "Custom profiles"
  102. msgstr "自訂列印參數"
  103. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
  104. #, python-brace-format
  105. msgctxt "@item:inlistbox"
  106. msgid "All Supported Types ({0})"
  107. msgstr "所有支援的類型 ({0})"
  108. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
  109. msgctxt "@item:inlistbox"
  110. msgid "All Files (*)"
  111. msgstr "所有檔案 (*)"
  112. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  113. msgctxt "@label"
  114. msgid "Visual"
  115. msgstr "外觀"
  116. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  117. msgctxt "@text"
  118. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  119. msgstr "外觀參數是設計來列印較高品質形狀和表面的視覺性原型和模型。"
  120. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  121. msgctxt "@label"
  122. msgid "Engineering"
  123. msgstr "工程"
  124. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  125. msgctxt "@text"
  126. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  127. msgstr "工程參數是設計來列印較高精度和較小公差的功能性原型和實際使用零件。"
  128. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  129. msgctxt "@label"
  130. msgid "Draft"
  131. msgstr "草稿"
  132. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  133. msgctxt "@text"
  134. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  135. msgstr "草稿參數是設計來縮短時間,快速列印初始原型和概念驗證。"
  136. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  137. msgctxt "@label"
  138. msgid "The printer(s) below cannot be connected because they are part of a group"
  139. msgstr "下列印表機因為是群組的一部份導致無法連接"
  140. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  141. msgctxt "@label"
  142. msgid "Available networked printers"
  143. msgstr "可用的網路印表機"
  144. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
  145. msgctxt "@menuitem"
  146. msgid "Not overridden"
  147. msgstr "不覆寫"
  148. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
  149. msgctxt "@title:window"
  150. msgid "Cura can't start"
  151. msgstr "Cura 無法啟動"
  152. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
  153. msgctxt "@label crash message"
  154. msgid ""
  155. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  156. " <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"
  157. " <p>Backups can be found in the configuration folder.</p>\n"
  158. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  159. " "
  160. msgstr ""
  161. "<p><b>糟糕,Ultimaker Cura 遇到了一些似乎不正常的事情。</p></b>\n"
  162. " <p>我們在啟動過程中遇到了無法修正的錯誤。這可能是由一些不正確的設定檔造成的。我們建議備份並重置您的設定。</p>\n"
  163. " <p>備份檔案可在設定資料夾中找到。</p>\n"
  164. " <p>請將錯誤報告傳送給我們以修正此問題。</p>\n"
  165. " "
  166. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
  167. msgctxt "@action:button"
  168. msgid "Send crash report to Ultimaker"
  169. msgstr "傳送錯誤報告給 Ultimaker"
  170. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
  171. msgctxt "@action:button"
  172. msgid "Show detailed crash report"
  173. msgstr "顯示詳細的錯誤報告"
  174. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
  175. msgctxt "@action:button"
  176. msgid "Show configuration folder"
  177. msgstr "顯示設定資料夾"
  178. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
  179. msgctxt "@action:button"
  180. msgid "Backup and Reset Configuration"
  181. msgstr "備份和重置設定"
  182. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
  183. msgctxt "@title:window"
  184. msgid "Crash Report"
  185. msgstr "錯誤報告"
  186. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
  187. msgctxt "@label crash message"
  188. msgid ""
  189. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  190. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  191. " "
  192. msgstr ""
  193. "<p><b>Cura 發生了一個嚴重的錯誤。請將錯誤報告傳送給我們以修正此問題</p></b>\n"
  194. " <p>請用\"送出報告\"按鈕自動發出一份錯誤報告到我們的伺服器</p>\n"
  195. " "
  196. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
  197. msgctxt "@title:groupbox"
  198. msgid "System information"
  199. msgstr "系統資訊"
  200. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
  201. msgctxt "@label unknown version of Cura"
  202. msgid "Unknown"
  203. msgstr "未知"
  204. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
  205. msgctxt "@label Cura version number"
  206. msgid "Cura version"
  207. msgstr "Cura 版本"
  208. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
  209. msgctxt "@label"
  210. msgid "Cura language"
  211. msgstr "Cura 語言"
  212. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
  213. msgctxt "@label"
  214. msgid "OS language"
  215. msgstr "作業系統語言"
  216. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
  217. msgctxt "@label Type of platform"
  218. msgid "Platform"
  219. msgstr "平台"
  220. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
  221. msgctxt "@label"
  222. msgid "Qt version"
  223. msgstr "Qt 版本"
  224. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
  225. msgctxt "@label"
  226. msgid "PyQt version"
  227. msgstr "PyQt 版本"
  228. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
  229. msgctxt "@label OpenGL version"
  230. msgid "OpenGL"
  231. msgstr "OpenGL"
  232. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
  233. msgctxt "@label"
  234. msgid "Not yet initialized<br/>"
  235. msgstr "尚未初始化<br/>"
  236. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
  237. #, python-brace-format
  238. msgctxt "@label OpenGL version"
  239. msgid "<li>OpenGL Version: {version}</li>"
  240. msgstr "<li>OpenGL 版本:{version}</li>"
  241. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
  242. #, python-brace-format
  243. msgctxt "@label OpenGL vendor"
  244. msgid "<li>OpenGL Vendor: {vendor}</li>"
  245. msgstr "<li>OpenGL 供應商:{vendor}</li>"
  246. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
  247. #, python-brace-format
  248. msgctxt "@label OpenGL renderer"
  249. msgid "<li>OpenGL Renderer: {renderer}</li>"
  250. msgstr "<li>OpenGL 渲染器:{renderer}</li>"
  251. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
  252. msgctxt "@title:groupbox"
  253. msgid "Error traceback"
  254. msgstr "錯誤追溯"
  255. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
  256. msgctxt "@title:groupbox"
  257. msgid "Logs"
  258. msgstr "日誌"
  259. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
  260. msgctxt "@action:button"
  261. msgid "Send report"
  262. msgstr "送出報告"
  263. #: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
  264. msgctxt "@info:title"
  265. msgid "Login failed"
  266. msgstr "登入失敗"
  267. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
  268. msgctxt "@message"
  269. msgid "Could not read response."
  270. msgstr "雲端沒有讀取回應。"
  271. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
  272. msgctxt "@info"
  273. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  274. msgstr "無法開始新的登入程序。檢查是否有其他登入仍在進行中。"
  275. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
  276. msgctxt "@info"
  277. msgid "Unable to reach the Ultimaker account server."
  278. msgstr "無法連上 Ultimaker 帳號伺服器。"
  279. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
  280. msgctxt "@message"
  281. msgid "The provided state is not correct."
  282. msgstr "提供的狀態不正確。"
  283. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
  284. msgctxt "@message"
  285. msgid "Please give the required permissions when authorizing this application."
  286. msgstr "核准此應用程式時,請給予所需的權限。"
  287. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
  288. msgctxt "@message"
  289. msgid "Something unexpected happened when trying to log in, please try again."
  290. msgstr "嘗試登入時出現意外狀況,請再試一次。"
  291. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
  292. msgctxt "@title:window"
  293. msgid "File Already Exists"
  294. msgstr "檔案已經存在"
  295. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
  296. #, python-brace-format
  297. msgctxt "@label Don't translate the XML tag <filename>!"
  298. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  299. msgstr "檔案 <filename>{0}</filename> 已存在。你確定要覆蓋掉它嗎?"
  300. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456 /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
  301. msgctxt "@info:status"
  302. msgid "Invalid file URL:"
  303. msgstr "無效的檔案網址:"
  304. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
  305. msgctxt "@label"
  306. msgid "Nozzle"
  307. msgstr "噴頭"
  308. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
  309. msgctxt "@info:message Followed by a list of settings."
  310. msgid "Settings have been changed to match the current availability of extruders:"
  311. msgstr "設定已被更改為符合目前擠出機:"
  312. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
  313. msgctxt "@info:title"
  314. msgid "Settings updated"
  315. msgstr "設定更新"
  316. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
  317. msgctxt "@info:title"
  318. msgid "Extruder(s) Disabled"
  319. msgstr "擠出機已停用"
  320. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
  321. #, python-brace-format
  322. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  323. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  324. msgstr "無法將列印參數匯出至 <filename>{0}</filename>:<message>{1}</message>"
  325. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
  326. #, python-brace-format
  327. msgctxt "@info:status Don't translate the XML tag <filename>!"
  328. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  329. msgstr "無法將列印參數匯出至 <filename>{0}</filename>:寫入器外掛報告故障。"
  330. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
  331. #, python-brace-format
  332. msgctxt "@info:status Don't translate the XML tag <filename>!"
  333. msgid "Exported profile to <filename>{0}</filename>"
  334. msgstr "列印參數已匯出至:<filename>{0}</filename>"
  335. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
  336. msgctxt "@info:title"
  337. msgid "Export succeeded"
  338. msgstr "匯出成功"
  339. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
  340. #, python-brace-format
  341. msgctxt "@info:status Don't translate the XML tags <filename>!"
  342. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  343. msgstr "無法從 <filename>{0}</filename> 匯入列印參數:{1}"
  344. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
  345. #, python-brace-format
  346. msgctxt "@info:status Don't translate the XML tags <filename>!"
  347. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  348. msgstr "在加入印表機前,無法從 <filename>{0}</filename> 匯入列印參數。"
  349. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
  350. #, python-brace-format
  351. msgctxt "@info:status Don't translate the XML tags <filename>!"
  352. msgid "No custom profile to import in file <filename>{0}</filename>"
  353. msgstr "檔案 <filename>{0}</filename> 內沒有自訂列印參數可匯入"
  354. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
  355. #, python-brace-format
  356. msgctxt "@info:status Don't translate the XML tags <filename>!"
  357. msgid "Failed to import profile from <filename>{0}</filename>:"
  358. msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  359. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
  360. #, python-brace-format
  361. msgctxt "@info:status Don't translate the XML tags <filename>!"
  362. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  363. msgstr "列印參數 <filename>{0}</filename> 含有不正確的資料,無法匯入。"
  364. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
  365. #, python-brace-format
  366. msgctxt "@info:status Don't translate the XML tag <filename>!"
  367. msgid "Failed to import profile from <filename>{0}</filename>:"
  368. msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  369. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
  370. #, python-brace-format
  371. msgctxt "@info:status"
  372. msgid "Successfully imported profile {0}."
  373. msgstr "已成功匯入列印參數 {0}。"
  374. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
  375. #, python-brace-format
  376. msgctxt "@info:status"
  377. msgid "File {0} does not contain any valid profile."
  378. msgstr "檔案 {0} 內未含有效的列印參數。"
  379. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
  380. #, python-brace-format
  381. msgctxt "@info:status"
  382. msgid "Profile {0} has an unknown file type or is corrupted."
  383. msgstr "列印參數 {0} 檔案類型未知或已損壞。"
  384. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
  385. msgctxt "@label"
  386. msgid "Custom profile"
  387. msgstr "自訂列印參數"
  388. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
  389. msgctxt "@info:status"
  390. msgid "Profile is missing a quality type."
  391. msgstr "列印參數缺少列印品質類型定義。"
  392. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
  393. msgctxt "@info:status"
  394. msgid "There is no active printer yet."
  395. msgstr "尚未啟動列印機."
  396. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
  397. msgctxt "@info:status"
  398. msgid "Unable to add the profile."
  399. msgstr "無法新增列印參數。"
  400. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
  401. #, python-brace-format
  402. msgctxt "@info:status"
  403. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  404. msgstr "品質類型 '{0}' 與目前的啟用的機器設定 '{1} '不相容。"
  405. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
  406. #, python-brace-format
  407. msgctxt "@info:status"
  408. 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."
  409. msgstr "警告:列印參數無法顯示,因為它的品質類型 '{0}' 無法在目前設定使用。切換到可使用此品質類型的線材/噴頭組合。"
  410. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
  411. msgctxt "@info:not supported profile"
  412. msgid "Not supported"
  413. msgstr "不支援"
  414. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
  415. msgctxt "@info:No intent profile selected"
  416. msgid "Default"
  417. msgstr "預設值"
  418. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  419. msgctxt "@info:status"
  420. msgid "Finding new location for objects"
  421. msgstr "正在為物件尋找新位置"
  422. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  423. msgctxt "@info:title"
  424. msgid "Finding Location"
  425. msgstr "尋找位置中"
  426. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
  427. msgctxt "@info:status"
  428. msgid "Unable to find a location within the build volume for all objects"
  429. msgstr "無法在列印範圍內放下全部物件"
  430. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  431. msgctxt "@info:title"
  432. msgid "Can't Find Location"
  433. msgstr "無法找到位置"
  434. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
  435. #, python-brace-format
  436. msgctxt "@label"
  437. msgid "Group #{group_nr}"
  438. msgstr "群組 #{group_nr}"
  439. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55 /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
  440. msgctxt "@action:button"
  441. msgid "Skip"
  442. msgstr "略過"
  443. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60 /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  444. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
  445. msgctxt "@action:button"
  446. msgid "Close"
  447. msgstr "關閉"
  448. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56 /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
  449. msgctxt "@action:button"
  450. msgid "Next"
  451. msgstr "下一步"
  452. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272 /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
  453. msgctxt "@action:button"
  454. msgid "Finish"
  455. msgstr "完成"
  456. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
  457. msgctxt "@tooltip"
  458. msgid "Outer Wall"
  459. msgstr "外壁"
  460. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
  461. msgctxt "@tooltip"
  462. msgid "Inner Walls"
  463. msgstr "內壁"
  464. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
  465. msgctxt "@tooltip"
  466. msgid "Skin"
  467. msgstr "表層"
  468. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
  469. msgctxt "@tooltip"
  470. msgid "Infill"
  471. msgstr "填充"
  472. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
  473. msgctxt "@tooltip"
  474. msgid "Support Infill"
  475. msgstr "支撐填充"
  476. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
  477. msgctxt "@tooltip"
  478. msgid "Support Interface"
  479. msgstr "支撐介面"
  480. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
  481. msgctxt "@tooltip"
  482. msgid "Support"
  483. msgstr "支撐"
  484. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
  485. msgctxt "@tooltip"
  486. msgid "Skirt"
  487. msgstr "外圍"
  488. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
  489. msgctxt "@tooltip"
  490. msgid "Prime Tower"
  491. msgstr "裝填塔"
  492. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
  493. msgctxt "@tooltip"
  494. msgid "Travel"
  495. msgstr "移動"
  496. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
  497. msgctxt "@tooltip"
  498. msgid "Retractions"
  499. msgstr "回抽"
  500. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
  501. msgctxt "@tooltip"
  502. msgid "Other"
  503. msgstr "其它"
  504. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
  505. msgctxt "@action:button"
  506. msgid "Add"
  507. msgstr "增加"
  508. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  509. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  510. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234
  511. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
  512. msgctxt "@action:button"
  513. msgid "Cancel"
  514. msgstr "取消"
  515. #: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
  516. msgctxt "@info:status"
  517. 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."
  518. msgstr "由於「列印序列」設定的值,成形列印範圍高度已被減少,以防止龍門與列印模型相衝突。"
  519. #: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
  520. msgctxt "@info:title"
  521. msgid "Build Volume"
  522. msgstr "列印範圍"
  523. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
  524. msgctxt "@info:backup_failed"
  525. msgid "Could not create archive from user data directory: {}"
  526. msgstr "無法從使用者資料目錄建立備份檔:{}"
  527. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  528. msgctxt "@info:title"
  529. msgid "Backup"
  530. msgstr "備份"
  531. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
  532. msgctxt "@info:backup_failed"
  533. msgid "Tried to restore a Cura backup without having proper data or meta data."
  534. msgstr "嘗試復原沒有正確資料或 meta data 的 Cura 備份。"
  535. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
  536. msgctxt "@info:backup_failed"
  537. msgid "Tried to restore a Cura backup that is higher than the current version."
  538. msgstr "嘗試復原的 Cura 備份的版本比目前的軟體版本新。"
  539. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
  540. msgctxt "@info:status"
  541. msgid "Multiplying and placing objects"
  542. msgstr "正在複製並放置模型"
  543. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
  544. msgctxt "@info:title"
  545. msgid "Placing Objects"
  546. msgstr "正在放置模型"
  547. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
  548. msgctxt "@info:title"
  549. msgid "Placing Object"
  550. msgstr "擺放物件中"
  551. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  552. msgctxt "@action:button Preceded by 'Ready to'."
  553. msgid "Save to Removable Drive"
  554. msgstr "儲存至行動裝置"
  555. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  556. #, python-brace-format
  557. msgctxt "@item:inlistbox"
  558. msgid "Save to Removable Drive {0}"
  559. msgstr "儲存到行動裝置 {0}"
  560. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  561. msgctxt "@info:status"
  562. msgid "There are no file formats available to write with!"
  563. msgstr "沒有可供寫入的檔案格式!"
  564. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  565. #, python-brace-format
  566. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  567. msgid "Saving to Removable Drive <filename>{0}</filename>"
  568. msgstr "正在儲存到行動裝置 <filename>{0}</filename>"
  569. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  570. msgctxt "@info:title"
  571. msgid "Saving"
  572. msgstr "儲存中"
  573. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  574. #, python-brace-format
  575. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  576. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  577. msgstr "無法儲存到 <filename>{0}</filename>:<message>{1}</message>"
  578. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
  579. #, python-brace-format
  580. msgctxt "@info:status Don't translate the tag {device}!"
  581. msgid "Could not find a file name when trying to write to {device}."
  582. msgstr "嘗試寫入到 {device} 時無法找到檔名。"
  583. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  584. #, python-brace-format
  585. msgctxt "@info:status"
  586. msgid "Could not save to removable drive {0}: {1}"
  587. msgstr "無法儲存到行動裝置 {0}:{1}"
  588. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  589. #, python-brace-format
  590. msgctxt "@info:status"
  591. msgid "Saved to Removable Drive {0} as {1}"
  592. msgstr "儲存到行動裝置 {0}:{1}"
  593. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  594. msgctxt "@info:title"
  595. msgid "File Saved"
  596. msgstr "檔案已儲存"
  597. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  598. msgctxt "@action:button"
  599. msgid "Eject"
  600. msgstr "卸載"
  601. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  602. #, python-brace-format
  603. msgctxt "@action"
  604. msgid "Eject removable device {0}"
  605. msgstr "卸載行動裝置 {0}"
  606. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  607. #, python-brace-format
  608. msgctxt "@info:status"
  609. msgid "Ejected {0}. You can now safely remove the drive."
  610. msgstr "已卸載 {0}。現在你可以安全地移除行動裝置。"
  611. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  612. msgctxt "@info:title"
  613. msgid "Safely Remove Hardware"
  614. msgstr "安全移除硬體"
  615. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  616. #, python-brace-format
  617. msgctxt "@info:status"
  618. msgid "Failed to eject {0}. Another program may be using the drive."
  619. msgstr "無法卸載 {0},可能有其它程式正在使用行動裝置。"
  620. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  621. msgctxt "@item:intext"
  622. msgid "Removable Drive"
  623. msgstr "行動裝置"
  624. #: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
  625. msgctxt "@item:inlistbox"
  626. msgid "AMF File"
  627. msgstr "AMF 檔案"
  628. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
  629. msgctxt "@item:inlistbox"
  630. msgid "G-code File"
  631. msgstr "G-code 檔案"
  632. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  633. msgctxt "@action"
  634. msgid "Update Firmware"
  635. msgstr "更新韌體"
  636. #: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
  637. msgctxt "@item:inlistbox"
  638. msgid "X3D File"
  639. msgstr "X3D 檔案"
  640. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  641. msgctxt "@button"
  642. msgid "Decline"
  643. msgstr "拒絕"
  644. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  645. msgctxt "@button"
  646. msgid "Agree"
  647. msgstr "同意"
  648. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  649. msgctxt "@title:window"
  650. msgid "Plugin License Agreement"
  651. msgstr "外掛授權協議"
  652. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
  653. msgctxt "@button"
  654. msgid "Decline and remove from account"
  655. msgstr "拒絕並從帳號中刪除"
  656. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
  657. msgctxt "@info:generic"
  658. msgid "{} plugins failed to download"
  659. msgstr "下載外掛 {} 失敗"
  660. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
  661. msgctxt "@info:generic"
  662. msgid "Syncing..."
  663. msgstr "同步中..."
  664. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  665. msgctxt "@info:title"
  666. msgid "Changes detected from your Ultimaker account"
  667. msgstr "從你的 Ultimaker 帳號偵測到資料更動"
  668. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
  669. msgctxt "@info:generic"
  670. msgid "You need to quit and restart {} before changes have effect."
  671. msgstr "你需要結束並重新啟動 {} ,更動才能生效。"
  672. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  673. msgctxt "@info:generic"
  674. msgid "Do you want to sync material and software packages with your account?"
  675. msgstr "你要使用你的帳號同步線材資料和軟體套件嗎?"
  676. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
  677. msgctxt "@action:button"
  678. msgid "Sync"
  679. msgstr "同步"
  680. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  681. msgctxt "@label"
  682. msgid "Per Model Settings"
  683. msgstr "單一模型設定"
  684. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  685. msgctxt "@info:tooltip"
  686. msgid "Configure Per Model Settings"
  687. msgstr "設定對每個模型的單獨設定"
  688. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  689. msgctxt "@item:inmenu"
  690. msgid "Post Processing"
  691. msgstr "後處理"
  692. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  693. msgctxt "@item:inmenu"
  694. msgid "Modify G-Code"
  695. msgstr "修改 G-Code 檔案"
  696. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
  697. msgctxt "@info:status"
  698. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  699. msgstr "無法使用目前線材切片,因為它與所選機器或設定不相容。"
  700. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
  701. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  702. msgctxt "@info:title"
  703. msgid "Unable to slice"
  704. msgstr "無法切片"
  705. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
  706. #, python-brace-format
  707. msgctxt "@info:status"
  708. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  709. msgstr "無法使用目前設定進行切片。以下設定存在錯誤:{0}"
  710. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
  711. #, python-brace-format
  712. msgctxt "@info:status"
  713. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  714. msgstr "因部份模型設定問題無法進行切片。部份模型的下列設定有錯誤:{error_labels}"
  715. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
  716. msgctxt "@info:status"
  717. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  718. msgstr "無法切片(原因:換料塔或主位置無效)。"
  719. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
  720. #, python-format
  721. msgctxt "@info:status"
  722. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  723. msgstr "有物件使用了被停用的擠出機 %s ,因此無法進行切片。"
  724. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
  725. msgctxt "@info:status"
  726. msgid ""
  727. "Please review settings and check if your models:\n"
  728. "- Fit within the build volume\n"
  729. "- Are assigned to an enabled extruder\n"
  730. "- Are not all set as modifier meshes"
  731. msgstr ""
  732. "請檢查設定並檢查你的模型是否:\n"
  733. "- 適合列印範圍\n"
  734. "- 分配了一個已啟用的擠出機\n"
  735. "- 沒有全部設定成修改網格"
  736. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  737. msgctxt "@info:status"
  738. msgid "Processing Layers"
  739. msgstr "正在處理層"
  740. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  741. msgctxt "@info:title"
  742. msgid "Information"
  743. msgstr "資訊"
  744. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  745. msgctxt "@item:inmenu"
  746. msgid "USB printing"
  747. msgstr "USB 連線列印"
  748. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  749. msgctxt "@action:button Preceded by 'Ready to'."
  750. msgid "Print via USB"
  751. msgstr "透過 USB 連線列印"
  752. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  753. msgctxt "@info:tooltip"
  754. msgid "Print via USB"
  755. msgstr "透過 USB 連線列印"
  756. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  757. msgctxt "@info:status"
  758. msgid "Connected via USB"
  759. msgstr "透過 USB 連接"
  760. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  761. msgctxt "@label"
  762. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  763. msgstr "USB 列印正在進行中,關閉 Cura 將停止此列印工作。你確定要繼續嗎?"
  764. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  765. msgctxt "@message"
  766. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  767. msgstr "列印仍在進行中。列印完成前,Cura 無法透過 USB 開始另一次列印。"
  768. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  769. msgctxt "@message"
  770. msgid "Print in Progress"
  771. msgstr "列印正在進行中"
  772. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
  773. msgctxt "@item:inlistbox"
  774. msgid "Cura Profile"
  775. msgstr "Cura 列印參數"
  776. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  777. msgctxt "@action"
  778. msgid "Connect via Network"
  779. msgstr "透過網路連接"
  780. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
  781. msgctxt "info:status"
  782. msgid "New printer detected from your Ultimaker account"
  783. msgid_plural "New printers detected from your Ultimaker account"
  784. msgstr[0] "從你的 Ultimaker 帳號偵測到新的印表機"
  785. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
  786. #, python-brace-format
  787. msgctxt "info:status Filled in with printer name and printer model."
  788. msgid "Adding printer {name} ({model}) from your account"
  789. msgstr "從你的帳號新增印表機 {name} ({model})"
  790. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
  791. #, python-brace-format
  792. msgctxt "info:{0} gets replaced by a number of printers"
  793. msgid "... and {0} other"
  794. msgid_plural "... and {0} others"
  795. msgstr[0] "… 和 {0} 其他"
  796. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
  797. msgctxt "info:status"
  798. msgid "Printers added from Digital Factory:"
  799. msgstr "從 Digital Factory 新增的印表機:"
  800. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
  801. msgctxt "info:status"
  802. msgid "A cloud connection is not available for a printer"
  803. msgid_plural "A cloud connection is not available for some printers"
  804. msgstr[0] "印表機無法使用雲端連接"
  805. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
  806. msgctxt "info:status"
  807. msgid "This printer is not linked to the Digital Factory:"
  808. msgid_plural "These printers are not linked to the Digital Factory:"
  809. msgstr[0] "印表機未連到 Digital Factory:"
  810. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
  811. msgctxt "info:name"
  812. msgid "Ultimaker Digital Factory"
  813. msgstr "Ultimaker Digital Factory"
  814. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
  815. #, python-brace-format
  816. msgctxt "info:status"
  817. msgid "To establish a connection, please visit the {website_link}"
  818. msgstr "要建立連線,請前往 {website_link}"
  819. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  820. msgctxt "@action:button"
  821. msgid "Keep printer configurations"
  822. msgstr "保留印表機設定"
  823. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  824. msgctxt "@action:button"
  825. msgid "Remove printers"
  826. msgstr "移除印表機"
  827. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
  828. #, python-brace-format
  829. msgctxt "@message {printer_name} is replaced with the name of the printer"
  830. msgid "{printer_name} will be removed until the next account sync."
  831. msgstr "{printer_name} 將被移除,直到下次帳號同步之前。"
  832. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  833. #, python-brace-format
  834. msgctxt "@message {printer_name} is replaced with the name of the printer"
  835. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  836. msgstr "要永久移除 {printer_name},請前往 {digital_factory_link}"
  837. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
  838. #, python-brace-format
  839. msgctxt "@message {printer_name} is replaced with the name of the printer"
  840. msgid "Are you sure you want to remove {printer_name} temporarily?"
  841. msgstr "你確定要暫時移除 {printer_name} 嗎?"
  842. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
  843. msgctxt "@title:window"
  844. msgid "Remove printers?"
  845. msgstr "移除印表機?"
  846. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
  847. #, python-brace-format
  848. msgctxt "@label"
  849. msgid ""
  850. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  851. "Are you sure you want to continue?"
  852. msgid_plural ""
  853. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  854. "Are you sure you want to continue?"
  855. msgstr[0] ""
  856. "你將從 Cura 移除 {0} 印表機。此動作無法復原。\n"
  857. "你確定要繼續嗎?"
  858. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
  859. msgctxt "@label"
  860. msgid ""
  861. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  862. "Are you sure you want to continue?"
  863. msgstr ""
  864. "你將從 Cura 移除所有印表機。此動作無法復原。\n"
  865. "你確定要繼續嗎?"
  866. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
  867. msgctxt "@action:button"
  868. msgid "Print via cloud"
  869. msgstr "透過雲端服務列印"
  870. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
  871. msgctxt "@properties:tooltip"
  872. msgid "Print via cloud"
  873. msgstr "透過雲端服務列印"
  874. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  875. msgctxt "@info:status"
  876. msgid "Connected via cloud"
  877. msgstr "透過雲端服務連接"
  878. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
  879. #, python-brace-format
  880. msgctxt "@error:send"
  881. msgid "Unknown error code when uploading print job: {0}"
  882. msgstr "不明上傳列印作業錯誤代碼:{0}"
  883. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  884. msgctxt "@info:status"
  885. msgid "tomorrow"
  886. msgstr "明天"
  887. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  888. msgctxt "@info:status"
  889. msgid "today"
  890. msgstr "今天"
  891. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  892. msgctxt "@info:status"
  893. msgid "Sending Print Job"
  894. msgstr "正在傳送列印作業"
  895. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  896. msgctxt "@info:status"
  897. msgid "Uploading print job to printer."
  898. msgstr "正在上傳列印作業到印表機。"
  899. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  900. #, python-brace-format
  901. msgctxt "@info:status"
  902. 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."
  903. msgstr "你正在嘗試連接到 {0},但它不是印表機群組的管理者。你可以透過網頁將其設定為印表機群組的管理者。"
  904. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  905. msgctxt "@info:title"
  906. msgid "Not a group host"
  907. msgstr "不是印表機群組管理者"
  908. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
  909. msgctxt "@action"
  910. msgid "Configure group"
  911. msgstr "設定印表機群組"
  912. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  913. msgctxt "@info:status"
  914. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  915. msgstr "利用你的 Ultimaker 帳號在任何地方傳送和監控列印作業。"
  916. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  917. msgctxt "@info:status Ultimaker Cloud should not be translated."
  918. msgid "Connect to Ultimaker Digital Factory"
  919. msgstr "連接到 Ultimaker Digital Factory"
  920. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  921. msgctxt "@action"
  922. msgid "Get started"
  923. msgstr "開始"
  924. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  925. msgctxt "@info:status"
  926. msgid "Please wait until the current job has been sent."
  927. msgstr "請等待目前作業傳送完成。"
  928. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  929. msgctxt "@info:title"
  930. msgid "Print error"
  931. msgstr "列印錯誤"
  932. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  933. msgctxt "@info:text"
  934. msgid "Could not upload the data to the printer."
  935. msgstr "雲端服務未上傳資料到印表機。"
  936. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  937. msgctxt "@info:title"
  938. msgid "Network error"
  939. msgstr "網路錯誤"
  940. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  941. #, python-brace-format
  942. msgctxt "@info:status"
  943. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  944. msgstr "Cura 偵測到群組 {0} 的管理主機上未安裝的線材參數。"
  945. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  946. msgctxt "@info:title"
  947. msgid "Sending materials to printer"
  948. msgstr "向印表機傳送線材參數中"
  949. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  950. msgctxt "@info:status"
  951. msgid "Print job queue is full. The printer can't accept a new job."
  952. msgstr "列印作業隊列已滿,印表機無法再接受新的作業。"
  953. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  954. msgctxt "@info:title"
  955. msgid "Queue Full"
  956. msgstr "隊列已滿"
  957. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  958. msgctxt "@info:status"
  959. msgid "Print job was successfully sent to the printer."
  960. msgstr "列印作業已成功傳送到印表機。"
  961. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  962. msgctxt "@info:title"
  963. msgid "Data Sent"
  964. msgstr "資料傳送"
  965. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  966. msgctxt "@info:status"
  967. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  968. msgstr "你正在嘗試連接到一台未安裝 Ultimaker Connect 的印表機。請將印表機更新至最新版本的韌體。"
  969. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  970. msgctxt "@info:title"
  971. msgid "Update your printer"
  972. msgstr "更新你印表機"
  973. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  974. msgctxt "@action:button Preceded by 'Ready to'."
  975. msgid "Print over network"
  976. msgstr "網路連線列印"
  977. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  978. msgctxt "@properties:tooltip"
  979. msgid "Print over network"
  980. msgstr "網路連線列印"
  981. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  982. msgctxt "@info:status"
  983. msgid "Connected over the network"
  984. msgstr "透過網路連接"
  985. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  986. msgctxt "@action"
  987. msgid "Select upgrades"
  988. msgstr "選擇升級"
  989. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  990. msgctxt "@action"
  991. msgid "Level build plate"
  992. msgstr "調平列印平台"
  993. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  994. msgctxt "@title:tab"
  995. msgid "Recommended"
  996. msgstr "推薦"
  997. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  998. msgctxt "@title:tab"
  999. msgid "Custom"
  1000. msgstr "自訂選項"
  1001. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
  1002. #, python-brace-format
  1003. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1004. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1005. msgstr "專案檔案 <filename>{0}</filename> 包含未知的機器類型 <message>{1}</message>。機器無法被匯入,但模型將被匯入。"
  1006. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
  1007. msgctxt "@info:title"
  1008. msgid "Open Project File"
  1009. msgstr "開啟專案檔案"
  1010. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
  1011. #, python-brace-format
  1012. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1013. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1014. msgstr "專案檔案 <filename>{0}</filename> 無法存取:<message>{1}</message>。"
  1015. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
  1016. msgctxt "@info:title"
  1017. msgid "Can't Open Project File"
  1018. msgstr "無法開啟專案檔案"
  1019. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
  1020. #, python-brace-format
  1021. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1022. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1023. msgstr "專案檔案<filename>{0}</filename> 已毀損 : <message>{1}</message>."
  1024. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:693
  1025. #, python-brace-format
  1026. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1027. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  1028. msgstr "專案檔案 <filename>{0}</filename> 使用了此版本 Ultimaker Cura 未知的參數製作。"
  1029. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:27 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:33
  1030. msgctxt "@item:inlistbox"
  1031. msgid "3MF File"
  1032. msgstr "3MF 檔案"
  1033. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/__init__.py:17 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzReader/__init__.py:17
  1034. msgctxt "@item:inlistbox"
  1035. msgid "Compressed G-code File"
  1036. msgstr "壓縮 G-code 檔案"
  1037. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1038. msgctxt "@error:not supported"
  1039. msgid "GCodeGzWriter does not support text mode."
  1040. msgstr "G-code GZ 寫入器不支援非文字模式。"
  1041. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:31
  1042. msgctxt "@info:title"
  1043. msgid "3D Model Assistant"
  1044. msgstr "3D 模型助手"
  1045. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:96
  1046. #, python-brace-format
  1047. msgctxt "@info:status"
  1048. msgid ""
  1049. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1050. "<p>{model_names}</p>\n"
  1051. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1052. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1053. msgstr ""
  1054. "<p>由於模型尺寸和線材設定的原因,一個或多個模型無法在最佳情狀下列印</p>\n"
  1055. "<p>{model_names}</p>\n"
  1056. "<p>了解如何確保最佳的列印品質和可靠性。</p>\n"
  1057. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">閱讀列印品質指南</a></p>"
  1058. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1059. msgctxt "@info"
  1060. msgid "Could not access update information."
  1061. msgstr "無法存取更新資訊。"
  1062. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1063. #, python-brace-format
  1064. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1065. 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}."
  1066. msgstr "可能有適用於你的 {machine_name} 的新功能或錯誤修正!假如尚未使用最新版本,建議更新你印表機的韌體到版本 {latest_version}。"
  1067. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1068. #, python-format
  1069. msgctxt "@info:title The %s gets replaced with the printer name."
  1070. msgid "New %s firmware available"
  1071. msgstr "有新 %s 韌體可用"
  1072. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1073. msgctxt "@action:button"
  1074. msgid "How to update"
  1075. msgstr "如何更新"
  1076. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:18
  1077. msgctxt "@item:inlistbox"
  1078. msgid "G File"
  1079. msgstr "G 檔案"
  1080. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:347
  1081. msgctxt "@info:status"
  1082. msgid "Parsing G-code"
  1083. msgstr "正在解析 G-code"
  1084. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:349 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:503
  1085. msgctxt "@info:title"
  1086. msgid "G-code Details"
  1087. msgstr "G-code 細項設定"
  1088. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:501
  1089. msgctxt "@info:generic"
  1090. 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."
  1091. msgstr "發送檔案之前,請確保 G-code 適用於目前印表機和印表機設定。目前 G-code 檔案可能不準確。"
  1092. #: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:12
  1093. msgctxt "@label"
  1094. msgid "Support Blocker"
  1095. msgstr "支撐阻斷器"
  1096. #: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:13
  1097. msgctxt "@info:tooltip"
  1098. msgid "Create a volume in which supports are not printed."
  1099. msgstr "建立一塊不列印支撐的空間。"
  1100. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:15
  1101. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1102. msgid "Open Compressed Triangle Mesh"
  1103. msgstr "Open Compressed Triangle Mesh"
  1104. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:19
  1105. msgctxt "@item:inlistbox"
  1106. msgid "COLLADA Digital Asset Exchange"
  1107. msgstr "COLLADA Digital Asset Exchange"
  1108. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:23
  1109. msgctxt "@item:inlistbox"
  1110. msgid "glTF Binary"
  1111. msgstr "glTF Binary"
  1112. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:27
  1113. msgctxt "@item:inlistbox"
  1114. msgid "glTF Embedded JSON"
  1115. msgstr "glTF Embedded JSON"
  1116. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:36
  1117. msgctxt "@item:inlistbox"
  1118. msgid "Stanford Triangle Format"
  1119. msgstr "Stanford Triangle Format"
  1120. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:40
  1121. msgctxt "@item:inlistbox"
  1122. msgid "Compressed COLLADA Digital Asset Exchange"
  1123. msgstr "Compressed COLLADA Digital Asset Exchange"
  1124. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPReader/__init__.py:22 /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/__init__.py:28
  1125. msgctxt "@item:inlistbox"
  1126. msgid "Ultimaker Format Package"
  1127. msgstr "Ultimaker 格式的封包"
  1128. #: /mnt/projects/ultimaker/cura/Cura/plugins/LegacyProfileReader/__init__.py:14
  1129. msgctxt "@item:inlistbox"
  1130. msgid "Cura 15.04 profiles"
  1131. msgstr "Cura 15.04 列印參數"
  1132. #: /mnt/projects/ultimaker/cura/Cura/plugins/PrepareStage/__init__.py:12
  1133. msgctxt "@item:inmenu"
  1134. msgid "Prepare"
  1135. msgstr "準備"
  1136. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/__init__.py:14
  1137. msgctxt "@item:inmenu"
  1138. msgid "Monitor"
  1139. msgstr "監控"
  1140. #: /mnt/projects/ultimaker/cura/Cura/plugins/XRayView/__init__.py:12
  1141. msgctxt "@item:inlistbox"
  1142. msgid "X-Ray view"
  1143. msgstr "透視檢視"
  1144. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
  1145. msgctxt "@error:zip"
  1146. msgid "Error writing 3mf file."
  1147. msgstr "寫入 3mf 檔案發生錯誤。"
  1148. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:26
  1149. msgctxt "@item:inlistbox"
  1150. msgid "3MF file"
  1151. msgstr "3MF 檔案"
  1152. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:34
  1153. msgctxt "@item:inlistbox"
  1154. msgid "Cura Project 3MF file"
  1155. msgstr "Cura 專案 3MF 檔案"
  1156. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1157. msgctxt "@error:zip"
  1158. msgid "3MF Writer plug-in is corrupt."
  1159. msgstr "3MF 寫入器外掛已損壞。"
  1160. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
  1161. msgctxt "@error:zip"
  1162. msgid "No permission to write the workspace here."
  1163. msgstr "沒有寫入此處工作區的權限。"
  1164. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
  1165. msgctxt "@error:zip"
  1166. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1167. msgstr "操作系統不允許將專案檔案儲存到此位置或儲存為此檔名。"
  1168. #: /mnt/projects/ultimaker/cura/Cura/plugins/PreviewStage/__init__.py:13
  1169. msgctxt "@item:inmenu"
  1170. msgid "Preview"
  1171. msgstr "預覽"
  1172. # Added manually to fix a string that was changed after string freeze.
  1173. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/__init__.py:15
  1174. msgctxt "@item:inlistbox"
  1175. msgid "Layer view"
  1176. msgstr "分層檢視"
  1177. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:124
  1178. msgctxt "@info:status"
  1179. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1180. msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層。"
  1181. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:125
  1182. msgctxt "@info:title"
  1183. msgid "Simulation View"
  1184. msgstr "模擬檢視"
  1185. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
  1186. msgctxt "@info:status"
  1187. msgid "Nothing is shown because you need to slice first."
  1188. msgstr "因為你還沒切片,沒有東西可顯示。"
  1189. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
  1190. msgctxt "@info:title"
  1191. msgid "No layers to show"
  1192. msgstr "沒有列印層可顯示"
  1193. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:127 /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:74
  1194. msgctxt "@info:option_text"
  1195. msgid "Do not show this message again"
  1196. msgstr "不要再顯示這個訊息"
  1197. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1198. msgctxt "@action"
  1199. msgid "Machine Settings"
  1200. msgstr "印表機設定"
  1201. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/__init__.py:12
  1202. msgctxt "@item:inmenu"
  1203. msgid "Solid view"
  1204. msgstr "實體檢視"
  1205. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:71
  1206. msgctxt "@info:status"
  1207. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1208. msgstr "模型區域顯示已遺失或突出表面, 請修復您的模型並重新匯入Cura."
  1209. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:73
  1210. msgctxt "@info:title"
  1211. msgid "Model Errors"
  1212. msgstr "模型錯誤"
  1213. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:79
  1214. msgctxt "@action:button"
  1215. msgid "Learn more"
  1216. msgstr "學習更多"
  1217. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/UFPWriter.py:134
  1218. msgctxt "@info:error"
  1219. msgid "Can't write to UFP file:"
  1220. msgstr "無法寫入 UFP 檔案:"
  1221. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  1222. msgctxt "@error:not supported"
  1223. msgid "GCodeWriter does not support non-text mode."
  1224. msgstr "G-code 寫入器不支援非文字模式。"
  1225. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  1226. msgctxt "@warning:status"
  1227. msgid "Please prepare G-code before exporting."
  1228. msgstr "匯出前請先將 G-code 準備好。"
  1229. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:14
  1230. msgctxt "@item:inlistbox"
  1231. msgid "JPG Image"
  1232. msgstr "JPG 圖片"
  1233. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:18
  1234. msgctxt "@item:inlistbox"
  1235. msgid "JPEG Image"
  1236. msgstr "JPEG 圖片"
  1237. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:22
  1238. msgctxt "@item:inlistbox"
  1239. msgid "PNG Image"
  1240. msgstr "PNG 圖片"
  1241. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:26
  1242. msgctxt "@item:inlistbox"
  1243. msgid "BMP Image"
  1244. msgstr "BMP 圖片"
  1245. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:30
  1246. msgctxt "@item:inlistbox"
  1247. msgid "GIF Image"
  1248. msgstr "GIF 圖片"
  1249. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DriveApiService.py:86 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
  1250. msgctxt "@info:backup_status"
  1251. msgid "There was an error trying to restore your backup."
  1252. msgstr "嘗試恢復備份時發生錯誤。"
  1253. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  1254. msgctxt "@info:title"
  1255. msgid "Backups"
  1256. msgstr "備份"
  1257. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
  1258. msgctxt "@info:backup_status"
  1259. msgid "There was an error while uploading your backup."
  1260. msgstr "上傳你的備份時發生錯誤。"
  1261. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
  1262. msgctxt "@info:backup_status"
  1263. msgid "Creating your backup..."
  1264. msgstr "正在建立備份..."
  1265. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
  1266. msgctxt "@info:backup_status"
  1267. msgid "There was an error while creating your backup."
  1268. msgstr "建立備份時發生了錯誤。"
  1269. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
  1270. msgctxt "@info:backup_status"
  1271. msgid "Uploading your backup..."
  1272. msgstr "正在上傳你的備份..."
  1273. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
  1274. msgctxt "@info:backup_status"
  1275. msgid "Your backup has finished uploading."
  1276. msgstr "你的備份上傳完成。"
  1277. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
  1278. msgctxt "@error:file_size"
  1279. msgid "The backup exceeds the maximum file size."
  1280. msgstr "備份超過了最大檔案大小。"
  1281. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  1282. msgctxt "@item:inmenu"
  1283. msgid "Manage backups"
  1284. msgstr "管理備份"
  1285. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1286. msgctxt "@title"
  1287. msgid "Update Firmware"
  1288. msgstr "更新韌體"
  1289. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1290. msgctxt "@label"
  1291. 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."
  1292. msgstr "韌體是直接在 3D 印表機上運行的一個軟體。此韌體控制步進馬達,調節溫度讓印表機正常運作。"
  1293. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1294. msgctxt "@label"
  1295. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1296. msgstr "新印表機出廠配備的韌體完全可以正常使用,但新版本往往具有更多的新功能和改進。"
  1297. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1298. msgctxt "@action:button"
  1299. msgid "Automatically upgrade Firmware"
  1300. msgstr "自動升級韌體"
  1301. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1302. msgctxt "@action:button"
  1303. msgid "Upload custom Firmware"
  1304. msgstr "上傳自訂韌體"
  1305. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1306. msgctxt "@label"
  1307. msgid "Firmware can not be updated because there is no connection with the printer."
  1308. msgstr "因為沒有與印表機連線,無法更新韌體。"
  1309. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1310. msgctxt "@label"
  1311. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1312. msgstr "因為連線的印表機不支援更新韌體,無法更新韌體。"
  1313. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1314. msgctxt "@title:window"
  1315. msgid "Select custom firmware"
  1316. msgstr "選擇自訂韌體"
  1317. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1318. msgctxt "@title:window"
  1319. msgid "Firmware Update"
  1320. msgstr "韌體更新"
  1321. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1322. msgctxt "@label"
  1323. msgid "Updating firmware."
  1324. msgstr "更新韌體中..."
  1325. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1326. msgctxt "@label"
  1327. msgid "Firmware update completed."
  1328. msgstr "韌體更新已完成。"
  1329. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1330. msgctxt "@label"
  1331. msgid "Firmware update failed due to an unknown error."
  1332. msgstr "由於未知錯誤,韌體更新失敗。"
  1333. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1334. msgctxt "@label"
  1335. msgid "Firmware update failed due to an communication error."
  1336. msgstr "由於通訊錯誤,導致韌體更新失敗。"
  1337. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1338. msgctxt "@label"
  1339. msgid "Firmware update failed due to an input/output error."
  1340. msgstr "由於輸入/輸出錯誤,導致韌體更新失敗。"
  1341. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1342. msgctxt "@label"
  1343. msgid "Firmware update failed due to missing firmware."
  1344. msgstr "由於韌體遺失,導致韌體更新失敗。"
  1345. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  1346. msgctxt "@title"
  1347. msgid "Marketplace"
  1348. msgstr "市集"
  1349. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  1350. msgctxt "@label"
  1351. msgid "You need to accept the license to install the package"
  1352. msgstr "你必需同意授權協議才能安裝套件"
  1353. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  1354. msgctxt "@title"
  1355. msgid "Changes from your account"
  1356. msgstr "你帳戶的更動"
  1357. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  1358. msgctxt "@button"
  1359. msgid "Dismiss"
  1360. msgstr "捨棄"
  1361. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:182
  1362. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  1363. msgctxt "@button"
  1364. msgid "Next"
  1365. msgstr "下一步"
  1366. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  1367. msgctxt "@label"
  1368. msgid "The following packages will be added:"
  1369. msgstr "將新增下列套件:"
  1370. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  1371. msgctxt "@label"
  1372. msgid "The following packages can not be installed because of an incompatible Cura version:"
  1373. msgstr "下列套件因 Cura 版本不相容,無法安裝:"
  1374. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  1375. msgctxt "@title:window"
  1376. msgid "Confirm uninstall"
  1377. msgstr "移除確認"
  1378. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  1379. msgctxt "@text:window"
  1380. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  1381. msgstr "你正在移除仍被使用的線材/列印設定。確認後會將下列耗材/列印設定重設為預設值。"
  1382. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  1383. msgctxt "@text:window"
  1384. msgid "Materials"
  1385. msgstr "線材"
  1386. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  1387. msgctxt "@text:window"
  1388. msgid "Profiles"
  1389. msgstr "參數"
  1390. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  1391. msgctxt "@action:button"
  1392. msgid "Confirm"
  1393. msgstr "確定"
  1394. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  1395. msgctxt "@info"
  1396. msgid "Could not connect to the Cura Package database. Please check your connection."
  1397. msgstr "無法連上 Cura 套件資料庫。請檢查你的網路連線。"
  1398. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  1399. msgctxt "@label"
  1400. msgid "Community Contributions"
  1401. msgstr "社群貢獻"
  1402. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  1403. msgctxt "@label"
  1404. msgid "Community Plugins"
  1405. msgstr "社群外掛"
  1406. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  1407. msgctxt "@label"
  1408. msgid "Generic Materials"
  1409. msgstr "通用線材"
  1410. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  1411. msgctxt "@label"
  1412. msgid "Version"
  1413. msgstr "版本"
  1414. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  1415. msgctxt "@label"
  1416. msgid "Last updated"
  1417. msgstr "最後更新時間"
  1418. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  1419. msgctxt "@label"
  1420. msgid "Brand"
  1421. msgstr "品牌"
  1422. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  1423. msgctxt "@label"
  1424. msgid "Downloads"
  1425. msgstr "下載"
  1426. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  1427. msgctxt "@title:tab"
  1428. msgid "Installed plugins"
  1429. msgstr "已安裝外掛"
  1430. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  1431. msgctxt "@info"
  1432. msgid "No plugin has been installed."
  1433. msgstr "尚未安裝任何外掛。"
  1434. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
  1435. msgctxt "@title:tab"
  1436. msgid "Installed materials"
  1437. msgstr "已安裝線材"
  1438. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
  1439. msgctxt "@info"
  1440. msgid "No material has been installed."
  1441. msgstr "尚未安裝任何線材。"
  1442. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
  1443. msgctxt "@title:tab"
  1444. msgid "Bundled plugins"
  1445. msgstr "捆綁式外掛"
  1446. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
  1447. msgctxt "@title:tab"
  1448. msgid "Bundled materials"
  1449. msgstr "捆綁式線材"
  1450. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  1451. msgctxt "@label"
  1452. msgid "Website"
  1453. msgstr "網站"
  1454. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  1455. msgctxt "@label"
  1456. msgid "Email"
  1457. msgstr "電子郵件"
  1458. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  1459. msgctxt "@description"
  1460. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  1461. msgstr "請登入以取得 Ultimaker Cura Enterprise 驗証的外掛及線材"
  1462. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:199
  1463. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:53
  1464. msgctxt "@button"
  1465. msgid "Sign in"
  1466. msgstr "登入"
  1467. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  1468. msgctxt "@info"
  1469. msgid "Fetching packages..."
  1470. msgstr "取得套件..."
  1471. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  1472. msgctxt "@label"
  1473. msgid "Compatibility"
  1474. msgstr "相容性"
  1475. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  1476. msgctxt "@label:table_header"
  1477. msgid "Machine"
  1478. msgstr "機器"
  1479. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  1480. msgctxt "@label:table_header"
  1481. msgid "Build Plate"
  1482. msgstr "列印平台"
  1483. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  1484. msgctxt "@label:table_header"
  1485. msgid "Support"
  1486. msgstr "支撐"
  1487. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  1488. msgctxt "@label:table_header"
  1489. msgid "Quality"
  1490. msgstr "品質"
  1491. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  1492. msgctxt "@action:label"
  1493. msgid "Technical Data Sheet"
  1494. msgstr "技術資料表"
  1495. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  1496. msgctxt "@action:label"
  1497. msgid "Safety Data Sheet"
  1498. msgstr "安全資料表"
  1499. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  1500. msgctxt "@action:label"
  1501. msgid "Printing Guidelines"
  1502. msgstr "列印指南"
  1503. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  1504. msgctxt "@action:label"
  1505. msgid "Website"
  1506. msgstr "網站"
  1507. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  1508. msgctxt "@title:tab"
  1509. msgid "Plugins"
  1510. msgstr "外掛"
  1511. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:457
  1512. msgctxt "@title:tab"
  1513. msgid "Materials"
  1514. msgstr "線材"
  1515. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  1516. msgctxt "@title:tab"
  1517. msgid "Installed"
  1518. msgstr "已安裝"
  1519. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  1520. msgctxt "@info:tooltip"
  1521. msgid "Go to Web Marketplace"
  1522. msgstr "前往網路市集"
  1523. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  1524. msgctxt "@label"
  1525. msgid "Will install upon restarting"
  1526. msgstr "將在重新啟動時安裝"
  1527. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  1528. msgctxt "@action:button"
  1529. msgid "Update"
  1530. msgstr "更新"
  1531. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  1532. msgctxt "@action:button"
  1533. msgid "Updating"
  1534. msgstr "更新中"
  1535. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  1536. msgctxt "@action:button"
  1537. msgid "Updated"
  1538. msgstr "更新完成"
  1539. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  1540. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1541. msgid "<a href='%1'>Log in</a> is required to update"
  1542. msgstr "需要<a href='%1'>登入</a>才能進行升級"
  1543. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1544. msgctxt "@action:button"
  1545. msgid "Downgrade"
  1546. msgstr "降級版本"
  1547. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1548. msgctxt "@action:button"
  1549. msgid "Uninstall"
  1550. msgstr "移除"
  1551. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  1552. msgctxt "@action:button"
  1553. msgid "Installed"
  1554. msgstr "已安裝"
  1555. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  1556. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1557. msgid "<a href='%1'>Log in</a> is required to install or update"
  1558. msgstr "需要<a href='%1'>登入</a>才能進行安裝或升級"
  1559. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  1560. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1561. msgid "<a href='%1'>Buy material spools</a>"
  1562. msgstr "<a href='%1'>購買線材線軸</a>"
  1563. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  1564. msgctxt "@label"
  1565. msgid "Premium"
  1566. msgstr "付費會員"
  1567. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  1568. msgctxt "@label"
  1569. msgid "Search materials"
  1570. msgstr "搜尋線材"
  1571. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  1572. msgctxt "@info"
  1573. msgid "You will need to restart Cura before changes in packages have effect."
  1574. msgstr "需重新啟動 Cura,套件的更動才能生效。"
  1575. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  1576. msgctxt "@info:button, %1 is the application name"
  1577. msgid "Quit %1"
  1578. msgstr "結束 %1"
  1579. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  1580. msgctxt "@action:button"
  1581. msgid "Back"
  1582. msgstr "返回"
  1583. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  1584. msgctxt "@action:button"
  1585. msgid "Install"
  1586. msgstr "安裝"
  1587. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1588. msgctxt "@label"
  1589. msgid "Mesh Type"
  1590. msgstr "網格類型"
  1591. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1592. msgctxt "@label"
  1593. msgid "Normal model"
  1594. msgstr "普通模型"
  1595. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1596. msgctxt "@label"
  1597. msgid "Print as support"
  1598. msgstr "做為支撐"
  1599. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1600. msgctxt "@label"
  1601. msgid "Modify settings for overlaps"
  1602. msgstr "修改重疊處設定"
  1603. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1604. msgctxt "@label"
  1605. msgid "Don't support overlaps"
  1606. msgstr "重疊處不建立支撐"
  1607. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
  1608. msgctxt "@item:inlistbox"
  1609. msgid "Infill mesh only"
  1610. msgstr "只填充網格"
  1611. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
  1612. msgctxt "@item:inlistbox"
  1613. msgid "Cutting mesh"
  1614. msgstr "切割網格"
  1615. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
  1616. msgctxt "@action:button"
  1617. msgid "Select settings"
  1618. msgstr "選擇設定"
  1619. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1620. msgctxt "@title:window"
  1621. msgid "Select Settings to Customize for this model"
  1622. msgstr "選擇對此模型的自訂設定"
  1623. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  1624. msgctxt "@label:textbox"
  1625. msgid "Filter..."
  1626. msgstr "篩選..."
  1627. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1628. msgctxt "@label:checkbox"
  1629. msgid "Show all"
  1630. msgstr "顯示全部"
  1631. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1632. msgctxt "@title:window"
  1633. msgid "Post Processing Plugin"
  1634. msgstr "後處理外掛"
  1635. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1636. msgctxt "@label"
  1637. msgid "Post Processing Scripts"
  1638. msgstr "後處理腳本"
  1639. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  1640. msgctxt "@action"
  1641. msgid "Add a script"
  1642. msgstr "添加一個腳本"
  1643. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  1644. msgctxt "@label"
  1645. msgid "Settings"
  1646. msgstr "設定"
  1647. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
  1648. msgctxt "@info:tooltip"
  1649. msgid "Change active post-processing scripts."
  1650. msgstr "更改目前啟用的後處理腳本。"
  1651. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
  1652. msgctxt "@info:tooltip"
  1653. msgid "The following script is active:"
  1654. msgid_plural "The following scripts are active:"
  1655. msgstr[0] "下列為啟用中的腳本:"
  1656. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  1657. msgctxt "@label"
  1658. msgid "Queued"
  1659. msgstr "已排入隊列"
  1660. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  1661. msgctxt "@label link to connect manager"
  1662. msgid "Manage in browser"
  1663. msgstr "使用瀏覽器管理"
  1664. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  1665. msgctxt "@label"
  1666. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  1667. msgstr "目前沒有列印作業在隊列中。可透過切片並傳送列印作來增加一個。"
  1668. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  1669. msgctxt "@label"
  1670. msgid "Print jobs"
  1671. msgstr "列印作業"
  1672. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  1673. msgctxt "@label"
  1674. msgid "Total print time"
  1675. msgstr "總列印時間"
  1676. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  1677. msgctxt "@label"
  1678. msgid "Waiting for"
  1679. msgstr "等待"
  1680. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1681. msgctxt "@title:window"
  1682. msgid "Configuration Changes"
  1683. msgstr "修改設定"
  1684. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  1685. msgctxt "@action:button"
  1686. msgid "Override"
  1687. msgstr "覆寫"
  1688. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  1689. msgctxt "@label"
  1690. msgid "The assigned printer, %1, requires the following configuration change:"
  1691. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1692. msgstr[0] "分配的印表機 %1 需要下列的設定更動:"
  1693. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  1694. msgctxt "@label"
  1695. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1696. msgstr "已分配到印表機 %1,但列印工作含有未知的線材設定。"
  1697. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  1698. msgctxt "@label"
  1699. msgid "Change material %1 from %2 to %3."
  1700. msgstr "將線材 %1 從 %2 改成 %3。"
  1701. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  1702. msgctxt "@label"
  1703. msgid "Load %3 as material %1 (This cannot be overridden)."
  1704. msgstr "將 %3 做為線材 %1 載入(無法覆寫)。"
  1705. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  1706. msgctxt "@label"
  1707. msgid "Change print core %1 from %2 to %3."
  1708. msgstr "將 print core %1 從 %2 改成 %3。"
  1709. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  1710. msgctxt "@label"
  1711. msgid "Change build plate to %1 (This cannot be overridden)."
  1712. msgstr "將列印平台改成 %1(無法覆寫)。"
  1713. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  1714. msgctxt "@label"
  1715. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1716. msgstr "覆寫會將指定的設定套用在現有的印表機上。這可能導致列印失敗。"
  1717. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  1718. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  1719. msgctxt "@label"
  1720. msgid "Glass"
  1721. msgstr "玻璃"
  1722. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  1723. msgctxt "@label"
  1724. msgid "Aluminum"
  1725. msgstr "鋁"
  1726. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  1727. msgctxt "@label"
  1728. msgid "Unavailable printer"
  1729. msgstr "無法使用的印表機"
  1730. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  1731. msgctxt "@label"
  1732. msgid "First available"
  1733. msgstr "可用的第一個"
  1734. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
  1735. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
  1736. msgctxt "@info"
  1737. msgid "Please update your printer's firmware to manage the queue remotely."
  1738. msgstr "請更新你印表機的韌體以便遠端管理工作隊列。"
  1739. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  1740. msgctxt "@title:window"
  1741. msgid "Connect to Networked Printer"
  1742. msgstr "連接到網路印表機"
  1743. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1744. msgctxt "@label"
  1745. 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."
  1746. msgstr "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。"
  1747. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1748. msgctxt "@label"
  1749. msgid "Select your printer from the list below:"
  1750. msgstr "從下列清單中選擇你的印表機:"
  1751. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  1752. msgctxt "@action:button"
  1753. msgid "Edit"
  1754. msgstr "編輯"
  1755. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:55
  1756. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  1757. msgctxt "@action:button"
  1758. msgid "Remove"
  1759. msgstr "移除"
  1760. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  1761. msgctxt "@action:button"
  1762. msgid "Refresh"
  1763. msgstr "刷新"
  1764. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  1765. msgctxt "@label"
  1766. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1767. msgstr "如果你的印表機未被列出,請閱讀<a href='%1'>網路列印故障排除指南</a>"
  1768. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  1769. msgctxt "@label"
  1770. msgid "Type"
  1771. msgstr "類型"
  1772. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  1773. msgctxt "@label"
  1774. msgid "Firmware version"
  1775. msgstr "韌體版本"
  1776. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  1777. msgctxt "@label"
  1778. msgid "Address"
  1779. msgstr "位址"
  1780. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  1781. msgctxt "@label"
  1782. msgid "This printer is not set up to host a group of printers."
  1783. msgstr "此印表機未被設定為管理印表機群組。"
  1784. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  1785. msgctxt "@label"
  1786. msgid "This printer is the host for a group of %1 printers."
  1787. msgstr "此印表機為 %1 印表機群組的管理者。"
  1788. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  1789. msgctxt "@label"
  1790. msgid "The printer at this address has not yet responded."
  1791. msgstr "該網路位址的印表機尚無回應。"
  1792. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  1793. msgctxt "@action:button"
  1794. msgid "Connect"
  1795. msgstr "連接"
  1796. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  1797. msgctxt "@title:window"
  1798. msgid "Invalid IP address"
  1799. msgstr "無效的 IP 位址"
  1800. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  1801. msgctxt "@text"
  1802. msgid "Please enter a valid IP address."
  1803. msgstr "請輸入有效的 IP 位址 。"
  1804. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  1805. msgctxt "@title:window"
  1806. msgid "Printer Address"
  1807. msgstr "印表機網路位址"
  1808. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  1809. msgctxt "@label"
  1810. msgid "Enter the IP address of your printer on the network."
  1811. msgstr "輸入印表機的 IP 位址。"
  1812. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:227
  1813. msgctxt "@action:button"
  1814. msgid "OK"
  1815. msgstr "確定"
  1816. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  1817. msgctxt "@title:window"
  1818. msgid "Print over network"
  1819. msgstr "網路連線列印"
  1820. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  1821. msgctxt "@action:button"
  1822. msgid "Print"
  1823. msgstr "列印"
  1824. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  1825. msgctxt "@label"
  1826. msgid "Printer selection"
  1827. msgstr "印表機選擇"
  1828. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1829. msgctxt "@label"
  1830. msgid "Move to top"
  1831. msgstr "移至頂端"
  1832. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1833. msgctxt "@label"
  1834. msgid "Delete"
  1835. msgstr "刪除"
  1836. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:290
  1837. msgctxt "@label"
  1838. msgid "Resume"
  1839. msgstr "繼續"
  1840. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1841. msgctxt "@label"
  1842. msgid "Pausing..."
  1843. msgstr "正在暫停..."
  1844. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1845. msgctxt "@label"
  1846. msgid "Resuming..."
  1847. msgstr "正在繼續..."
  1848. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:285 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:294
  1849. msgctxt "@label"
  1850. msgid "Pause"
  1851. msgstr "暫停"
  1852. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1853. msgctxt "@label"
  1854. msgid "Aborting..."
  1855. msgstr "正在中斷..."
  1856. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1857. msgctxt "@label"
  1858. msgid "Abort"
  1859. msgstr "中斷"
  1860. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1861. msgctxt "@label %1 is the name of a print job."
  1862. msgid "Are you sure you want to move %1 to the top of the queue?"
  1863. msgstr "你確定要將 %1 移至隊列的頂端嗎?"
  1864. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  1865. msgctxt "@window:title"
  1866. msgid "Move print job to top"
  1867. msgstr "將列印作業移至最頂端"
  1868. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  1869. msgctxt "@label %1 is the name of a print job."
  1870. msgid "Are you sure you want to delete %1?"
  1871. msgstr "你確定要刪除 %1 嗎?"
  1872. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  1873. msgctxt "@window:title"
  1874. msgid "Delete print job"
  1875. msgstr "刪除列印作業"
  1876. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  1877. msgctxt "@label %1 is the name of a print job."
  1878. msgid "Are you sure you want to abort %1?"
  1879. msgstr "你確定要中斷 %1 嗎?"
  1880. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:336
  1881. msgctxt "@window:title"
  1882. msgid "Abort print"
  1883. msgstr "中斷列印"
  1884. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  1885. msgctxt "@label:status"
  1886. msgid "Aborted"
  1887. msgstr "已中斷"
  1888. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1889. msgctxt "@label:status"
  1890. msgid "Finished"
  1891. msgstr "已完成"
  1892. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  1893. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
  1894. msgctxt "@label:status"
  1895. msgid "Preparing..."
  1896. msgstr "正在準備..."
  1897. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  1898. msgctxt "@label:status"
  1899. msgid "Aborting..."
  1900. msgstr "正在中斷..."
  1901. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  1902. msgctxt "@label:status"
  1903. msgid "Pausing..."
  1904. msgstr "正在暫停..."
  1905. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  1906. msgctxt "@label:status"
  1907. msgid "Paused"
  1908. msgstr "已暫停"
  1909. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  1910. msgctxt "@label:status"
  1911. msgid "Resuming..."
  1912. msgstr "正在繼續..."
  1913. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  1914. msgctxt "@label:status"
  1915. msgid "Action required"
  1916. msgstr "需要採取的動作"
  1917. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  1918. msgctxt "@label:status"
  1919. msgid "Finishes %1 at %2"
  1920. msgstr "在 %2 完成 %1"
  1921. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  1922. msgctxt "@label link to Connect and Cloud interfaces"
  1923. msgid "Manage printer"
  1924. msgstr "管理印表機"
  1925. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  1926. msgctxt "@label:status"
  1927. msgid "Loading..."
  1928. msgstr "正在載入..."
  1929. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  1930. msgctxt "@label:status"
  1931. msgid "Unavailable"
  1932. msgstr "無法使用"
  1933. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  1934. msgctxt "@label:status"
  1935. msgid "Unreachable"
  1936. msgstr "無法連接"
  1937. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  1938. msgctxt "@label:status"
  1939. msgid "Idle"
  1940. msgstr "閒置中"
  1941. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
  1942. msgctxt "@label:status"
  1943. msgid "Printing"
  1944. msgstr "正在列印"
  1945. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
  1946. msgctxt "@label"
  1947. msgid "Untitled"
  1948. msgstr "無標題"
  1949. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
  1950. msgctxt "@label"
  1951. msgid "Anonymous"
  1952. msgstr "匿名"
  1953. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
  1954. msgctxt "@label:status"
  1955. msgid "Requires configuration changes"
  1956. msgstr "需要修改設定"
  1957. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
  1958. msgctxt "@action:button"
  1959. msgid "Details"
  1960. msgstr "細項"
  1961. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  1962. msgctxt "@label"
  1963. msgid "Please select any upgrades made to this Ultimaker Original"
  1964. msgstr "請選擇適用於 Ultimaker Original 的更新檔案"
  1965. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  1966. msgctxt "@label"
  1967. msgid "Heated Build Plate (official kit or self-built)"
  1968. msgstr "熱床(官方版本或自製版本)"
  1969. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  1970. msgctxt "@title"
  1971. msgid "Build Plate Leveling"
  1972. msgstr "列印平台調平"
  1973. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  1974. msgctxt "@label"
  1975. 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."
  1976. msgstr "為了確保列印品質出色,你現在可以開始調整你的列印平台。當你點擊「移動到下一個位置」時,噴頭將移動到不同的可調節位置。"
  1977. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  1978. msgctxt "@label"
  1979. 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."
  1980. msgstr "在噴頭停止的每一個位置下方插入一張紙,並調整平台高度。當紙張恰好被噴頭的尖端輕微壓住時,表示列印平台已被校準在正確的高度。"
  1981. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  1982. msgctxt "@action:button"
  1983. msgid "Start Build Plate Leveling"
  1984. msgstr "開始進行列印平台調平"
  1985. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  1986. msgctxt "@action:button"
  1987. msgid "Move to Next Position"
  1988. msgstr "移動到下一個位置"
  1989. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  1990. msgctxt "@title:window"
  1991. msgid "Open Project"
  1992. msgstr "開啟專案"
  1993. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  1994. msgctxt "@action:ComboBox Update/override existing profile"
  1995. msgid "Update existing"
  1996. msgstr "更新已有設定"
  1997. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
  1998. msgctxt "@action:ComboBox Save settings in a new profile"
  1999. msgid "Create new"
  2000. msgstr "新建設定"
  2001. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
  2002. msgctxt "@action:title"
  2003. msgid "Summary - Cura Project"
  2004. msgstr "摘要 - Cura 專案"
  2005. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
  2006. msgctxt "@action:label"
  2007. msgid "Printer settings"
  2008. msgstr "印表機設定"
  2009. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
  2010. msgctxt "@info:tooltip"
  2011. msgid "How should the conflict in the machine be resolved?"
  2012. msgstr "如何解決機器的設定衝突?"
  2013. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
  2014. msgctxt "@action:label"
  2015. msgid "Type"
  2016. msgstr "類型"
  2017. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  2018. msgctxt "@action:label"
  2019. msgid "Printer Group"
  2020. msgstr "印表機群組"
  2021. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
  2022. msgctxt "@action:label"
  2023. msgid "Profile settings"
  2024. msgstr "列印參數設定"
  2025. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
  2026. msgctxt "@info:tooltip"
  2027. msgid "How should the conflict in the profile be resolved?"
  2028. msgstr "如何解决列印參數中的設定衝突?"
  2029. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  2030. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
  2031. msgctxt "@action:label"
  2032. msgid "Name"
  2033. msgstr "名稱"
  2034. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
  2035. msgctxt "@action:label"
  2036. msgid "Intent"
  2037. msgstr "意圖"
  2038. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  2039. msgctxt "@action:label"
  2040. msgid "Not in profile"
  2041. msgstr "不在列印參數中"
  2042. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
  2043. msgctxt "@action:label"
  2044. msgid "%1 override"
  2045. msgid_plural "%1 overrides"
  2046. msgstr[0] "%1 覆寫"
  2047. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
  2048. msgctxt "@action:label"
  2049. msgid "Derivative from"
  2050. msgstr "衍生自"
  2051. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
  2052. msgctxt "@action:label"
  2053. msgid "%1, %2 override"
  2054. msgid_plural "%1, %2 overrides"
  2055. msgstr[0] "%1, %2 覆寫"
  2056. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  2057. msgctxt "@action:label"
  2058. msgid "Material settings"
  2059. msgstr "線材設定"
  2060. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
  2061. msgctxt "@info:tooltip"
  2062. msgid "How should the conflict in the material be resolved?"
  2063. msgstr "如何解决線材的設定衝突?"
  2064. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
  2065. msgctxt "@action:label"
  2066. msgid "Setting visibility"
  2067. msgstr "參數顯示設定"
  2068. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
  2069. msgctxt "@action:label"
  2070. msgid "Mode"
  2071. msgstr "模式"
  2072. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  2073. msgctxt "@action:label"
  2074. msgid "Visible settings:"
  2075. msgstr "顯示設定:"
  2076. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
  2077. msgctxt "@action:label"
  2078. msgid "%1 out of %2"
  2079. msgstr "%1 / %2"
  2080. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
  2081. msgctxt "@action:warning"
  2082. msgid "Loading a project will clear all models on the build plate."
  2083. msgstr "載入專案時將清除列印平台上的所有模型。"
  2084. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
  2085. msgctxt "@action:button"
  2086. msgid "Open"
  2087. msgstr "開啟"
  2088. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.qml:22
  2089. msgctxt "@info:tooltip"
  2090. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  2091. msgstr "此列印可能會有些問題。點擊查看調整提示。"
  2092. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2093. msgctxt "@info"
  2094. msgid ""
  2095. "Please make sure your printer has a connection:\n"
  2096. "- Check if the printer is turned on.\n"
  2097. "- Check if the printer is connected to the network.\n"
  2098. "- Check if you are signed in to discover cloud-connected printers."
  2099. msgstr ""
  2100. "請確認你的印表機有連接:\n"
  2101. "- 檢查印表機是否已打開。\n"
  2102. "- 檢查印表機是否已連接到網路。\n"
  2103. "- 檢查是否已登入以尋找雲端連接的印表機。"
  2104. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:117
  2105. msgctxt "@info"
  2106. msgid "Please connect your printer to the network."
  2107. msgstr "請將你的印表機連上網路。"
  2108. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:155
  2109. msgctxt "@label link to technical assistance"
  2110. msgid "View user manuals online"
  2111. msgstr "查看線上使用者手冊"
  2112. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2113. msgctxt "@title:window"
  2114. msgid "More information on anonymous data collection"
  2115. msgstr "更多關於匿名資料收集的資訊"
  2116. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2117. msgctxt "@text:window"
  2118. 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:"
  2119. msgstr "Ultimaker Cura 搜集匿名資料以提高列印品質和使用者體驗。以下是共享資料的範例:"
  2120. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2121. msgctxt "@text:window"
  2122. msgid "I don't want to send anonymous data"
  2123. msgstr "我不想傳送匿名資料"
  2124. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2125. msgctxt "@text:window"
  2126. msgid "Allow sending anonymous data"
  2127. msgstr "允許傳送匿名資料"
  2128. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  2129. msgctxt "@label"
  2130. msgid "Color scheme"
  2131. msgstr "顏色方案"
  2132. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
  2133. msgctxt "@label:listbox"
  2134. msgid "Material Color"
  2135. msgstr "線材顏色"
  2136. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
  2137. msgctxt "@label:listbox"
  2138. msgid "Line Type"
  2139. msgstr "線條類型"
  2140. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
  2141. msgctxt "@label:listbox"
  2142. msgid "Speed"
  2143. msgstr "速度"
  2144. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
  2145. msgctxt "@label:listbox"
  2146. msgid "Layer Thickness"
  2147. msgstr "層厚"
  2148. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
  2149. msgctxt "@label:listbox"
  2150. msgid "Line Width"
  2151. msgstr "線寬"
  2152. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:163
  2153. msgctxt "@label"
  2154. msgid "Compatibility Mode"
  2155. msgstr "相容模式"
  2156. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2157. msgctxt "@label"
  2158. msgid "Travels"
  2159. msgstr "移動軌跡"
  2160. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2161. msgctxt "@label"
  2162. msgid "Helpers"
  2163. msgstr "輔助結構"
  2164. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2165. msgctxt "@label"
  2166. msgid "Shell"
  2167. msgstr "外殼"
  2168. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:255 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  2169. msgctxt "@label"
  2170. msgid "Infill"
  2171. msgstr "填充"
  2172. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
  2173. msgctxt "@label"
  2174. msgid "Starts"
  2175. msgstr "啟動"
  2176. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:314
  2177. msgctxt "@label"
  2178. msgid "Only Show Top Layers"
  2179. msgstr "只顯示頂層"
  2180. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:324
  2181. msgctxt "@label"
  2182. msgid "Show 5 Detailed Layers On Top"
  2183. msgstr "顯示頂端 5 層列印細節"
  2184. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:338
  2185. msgctxt "@label"
  2186. msgid "Top / Bottom"
  2187. msgstr "頂 / 底層"
  2188. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:342
  2189. msgctxt "@label"
  2190. msgid "Inner Wall"
  2191. msgstr "內壁"
  2192. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:405
  2193. msgctxt "@label"
  2194. msgid "min"
  2195. msgstr "最小值"
  2196. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:464
  2197. msgctxt "@label"
  2198. msgid "max"
  2199. msgstr "最大值"
  2200. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  2201. msgctxt "@title:label"
  2202. msgid "Nozzle Settings"
  2203. msgstr "噴頭設定"
  2204. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  2205. msgctxt "@label"
  2206. msgid "Nozzle size"
  2207. msgstr "噴頭孔徑"
  2208. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  2209. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  2210. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  2211. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  2212. msgctxt "@label"
  2213. msgid "mm"
  2214. msgstr "mm"
  2215. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  2216. msgctxt "@label"
  2217. msgid "Compatible material diameter"
  2218. msgstr "相容的線材直徑"
  2219. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  2220. msgctxt "@label"
  2221. msgid "Nozzle offset X"
  2222. msgstr "噴頭偏移 X"
  2223. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  2224. msgctxt "@label"
  2225. msgid "Nozzle offset Y"
  2226. msgstr "噴頭偏移 Y"
  2227. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  2228. msgctxt "@label"
  2229. msgid "Cooling Fan Number"
  2230. msgstr "冷卻風扇數量"
  2231. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  2232. msgctxt "@title:label"
  2233. msgid "Extruder Start G-code"
  2234. msgstr "擠出機起始 G-code"
  2235. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  2236. msgctxt "@title:label"
  2237. msgid "Extruder End G-code"
  2238. msgstr "擠出機結束 G-code"
  2239. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  2240. msgctxt "@title:tab"
  2241. msgid "Printer"
  2242. msgstr "印表機"
  2243. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  2244. msgctxt "@title:label"
  2245. msgid "Printer Settings"
  2246. msgstr "印表機設定"
  2247. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  2248. msgctxt "@label"
  2249. msgid "X (Width)"
  2250. msgstr "X (寬度)"
  2251. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  2252. msgctxt "@label"
  2253. msgid "Y (Depth)"
  2254. msgstr "Y (深度)"
  2255. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  2256. msgctxt "@label"
  2257. msgid "Z (Height)"
  2258. msgstr "Z (高度)"
  2259. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  2260. msgctxt "@label"
  2261. msgid "Build plate shape"
  2262. msgstr "列印平台形狀"
  2263. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  2264. msgctxt "@label"
  2265. msgid "Origin at center"
  2266. msgstr "原點位於中心"
  2267. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  2268. msgctxt "@label"
  2269. msgid "Heated bed"
  2270. msgstr "熱床"
  2271. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  2272. msgctxt "@label"
  2273. msgid "Heated build volume"
  2274. msgstr "熱箱"
  2275. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  2276. msgctxt "@label"
  2277. msgid "G-code flavor"
  2278. msgstr "G-code 類型"
  2279. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  2280. msgctxt "@title:label"
  2281. msgid "Printhead Settings"
  2282. msgstr "列印頭設定"
  2283. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  2284. msgctxt "@label"
  2285. msgid "X min"
  2286. msgstr "X 最小值"
  2287. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  2288. msgctxt "@label"
  2289. msgid "Y min"
  2290. msgstr "Y 最小值"
  2291. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  2292. msgctxt "@label"
  2293. msgid "X max"
  2294. msgstr "X 最大值"
  2295. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  2296. msgctxt "@label"
  2297. msgid "Y max"
  2298. msgstr "Y 最大值"
  2299. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  2300. msgctxt "@label"
  2301. msgid "Gantry Height"
  2302. msgstr "吊車高度"
  2303. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  2304. msgctxt "@label"
  2305. msgid "Number of Extruders"
  2306. msgstr "擠出機數目"
  2307. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  2308. msgctxt "@label"
  2309. msgid "Apply Extruder offsets to GCode"
  2310. msgstr "將擠出機偏移設定至Gcode"
  2311. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  2312. msgctxt "@title:label"
  2313. msgid "Start G-code"
  2314. msgstr "起始 G-code"
  2315. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  2316. msgctxt "@title:label"
  2317. msgid "End G-code"
  2318. msgstr "結束 G-code"
  2319. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:19
  2320. msgctxt "@title:window"
  2321. msgid "Convert Image..."
  2322. msgstr "轉換圖片..."
  2323. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:33
  2324. msgctxt "@info:tooltip"
  2325. msgid "The maximum distance of each pixel from \"Base.\""
  2326. msgstr "每個像素與底板的最大距離。"
  2327. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:38
  2328. msgctxt "@action:label"
  2329. msgid "Height (mm)"
  2330. msgstr "高度 (mm)"
  2331. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:56
  2332. msgctxt "@info:tooltip"
  2333. msgid "The base height from the build plate in millimeters."
  2334. msgstr "距離列印平台的底板高度,以毫米為單位。"
  2335. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:61
  2336. msgctxt "@action:label"
  2337. msgid "Base (mm)"
  2338. msgstr "底板 (mm)"
  2339. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:79
  2340. msgctxt "@info:tooltip"
  2341. msgid "The width in millimeters on the build plate."
  2342. msgstr "列印平台寬度,以毫米為單位。"
  2343. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:84
  2344. msgctxt "@action:label"
  2345. msgid "Width (mm)"
  2346. msgstr "寬度 (mm)"
  2347. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:103
  2348. msgctxt "@info:tooltip"
  2349. msgid "The depth in millimeters on the build plate"
  2350. msgstr "列印平台深度,以毫米為單位"
  2351. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:108
  2352. msgctxt "@action:label"
  2353. msgid "Depth (mm)"
  2354. msgstr "深度 (mm)"
  2355. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:126
  2356. msgctxt "@info:tooltip"
  2357. 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."
  2358. msgstr "若要列印浮雕,深色像素應該對應到較厚的位置,以阻擋更多的光通過。若要列印高度圖,淺色像素表示較高的地形,因此淺色像素應對應於產生的 3D 模型中較厚的位置。"
  2359. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
  2360. msgctxt "@item:inlistbox"
  2361. msgid "Darker is higher"
  2362. msgstr "顏色越深高度越高"
  2363. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
  2364. msgctxt "@item:inlistbox"
  2365. msgid "Lighter is higher"
  2366. msgstr "顏色越淺高度越高"
  2367. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:149
  2368. msgctxt "@info:tooltip"
  2369. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  2370. msgstr "若要列印浮雕,使用一個簡易的對數模型計算半透明效果。若要列印高度圖,將像素值線性對應到高度。"
  2371. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
  2372. msgctxt "@item:inlistbox"
  2373. msgid "Linear"
  2374. msgstr "線性"
  2375. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:172
  2376. msgctxt "@item:inlistbox"
  2377. msgid "Translucency"
  2378. msgstr "半透明"
  2379. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:171
  2380. msgctxt "@info:tooltip"
  2381. 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."
  2382. msgstr "光線穿透 1mm 厚度列印件的百分比。降低此值可增加暗部的對比度,並降低亮部的對比度。"
  2383. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:177
  2384. msgctxt "@action:label"
  2385. msgid "1mm Transmittance (%)"
  2386. msgstr "1mm 透明度"
  2387. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:195
  2388. msgctxt "@info:tooltip"
  2389. msgid "The amount of smoothing to apply to the image."
  2390. msgstr "影像平滑程度。"
  2391. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:200
  2392. msgctxt "@action:label"
  2393. msgid "Smoothing"
  2394. msgstr "平滑"
  2395. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2396. msgctxt "@title"
  2397. msgid "My Backups"
  2398. msgstr "我的備份"
  2399. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2400. msgctxt "@empty_state"
  2401. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2402. msgstr "你目前沒有任何備份。 使用「立即備份」按鈕建立一個。"
  2403. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2404. msgctxt "@backup_limit_info"
  2405. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2406. msgstr "在預覽階段限制只能顯示 5 個備份。 刪除備份以顯示較舊的備份。"
  2407. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2408. msgctxt "@description"
  2409. msgid "Backup and synchronize your Cura settings."
  2410. msgstr "備份並同步你的 Cura 設定。"
  2411. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2412. msgctxt "@button"
  2413. msgid "Want more?"
  2414. msgstr "想要更多?"
  2415. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2416. msgctxt "@button"
  2417. msgid "Backup Now"
  2418. msgstr "立即備份"
  2419. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2420. msgctxt "@checkbox:description"
  2421. msgid "Auto Backup"
  2422. msgstr "自動備份"
  2423. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2424. msgctxt "@checkbox:description"
  2425. msgid "Automatically create a backup each day that Cura is started."
  2426. msgstr "每天啟動 Cura 時自動建立備份。"
  2427. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2428. msgctxt "@backuplist:label"
  2429. msgid "Cura Version"
  2430. msgstr "Cura 版本"
  2431. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2432. msgctxt "@backuplist:label"
  2433. msgid "Machines"
  2434. msgstr "印表機"
  2435. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2436. msgctxt "@backuplist:label"
  2437. msgid "Materials"
  2438. msgstr "線材"
  2439. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2440. msgctxt "@backuplist:label"
  2441. msgid "Profiles"
  2442. msgstr "參數"
  2443. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2444. msgctxt "@backuplist:label"
  2445. msgid "Plugins"
  2446. msgstr "外掛"
  2447. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  2448. msgctxt "@button"
  2449. msgid "Restore"
  2450. msgstr "復原"
  2451. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  2452. msgctxt "@dialog:title"
  2453. msgid "Delete Backup"
  2454. msgstr "刪除備份"
  2455. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  2456. msgctxt "@dialog:info"
  2457. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2458. msgstr "你確定要刪除此備份嗎? 這動作無法復原。"
  2459. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  2460. msgctxt "@dialog:title"
  2461. msgid "Restore Backup"
  2462. msgstr "復原備份"
  2463. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  2464. msgctxt "@dialog:info"
  2465. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2466. msgstr "在復原備份之前,你需要重新啟動 Cura。 你想要現在關閉 Cura 嗎?"
  2467. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2468. msgctxt "@title:window"
  2469. msgid "Cura Backups"
  2470. msgstr "Cura 備份"
  2471. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:13
  2472. msgctxt "@label:category menu label"
  2473. msgid "Material"
  2474. msgstr "線材"
  2475. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:54
  2476. msgctxt "@label:category menu label"
  2477. msgid "Favorites"
  2478. msgstr "常用"
  2479. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:79
  2480. msgctxt "@label:category menu label"
  2481. msgid "Generic"
  2482. msgstr "通用"
  2483. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:13 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  2484. msgctxt "@title:menu menubar:toplevel"
  2485. msgid "&File"
  2486. msgstr "檔案(&F)"
  2487. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:41
  2488. msgctxt "@title:menu menubar:file"
  2489. msgid "&Save Project..."
  2490. msgstr "儲存專案...(&S)"
  2491. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:74
  2492. msgctxt "@title:menu menubar:file"
  2493. msgid "&Export..."
  2494. msgstr "匯出...(&E)"
  2495. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:85
  2496. msgctxt "@action:inmenu menubar:file"
  2497. msgid "Export Selection..."
  2498. msgstr "匯出選擇..."
  2499. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  2500. msgctxt "@title:menu menubar:file"
  2501. msgid "Open &Recent"
  2502. msgstr "最近開啟的檔案(&R)"
  2503. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
  2504. msgctxt "@label"
  2505. msgid "Select configuration"
  2506. msgstr "選擇設定"
  2507. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
  2508. msgctxt "@label"
  2509. msgid "Configurations"
  2510. msgstr "設定"
  2511. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  2512. msgctxt "@header"
  2513. msgid "Configurations"
  2514. msgstr "設定"
  2515. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  2516. msgctxt "@header"
  2517. msgid "Custom"
  2518. msgstr "自訂選項"
  2519. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  2520. msgctxt "@label"
  2521. msgid "Printer"
  2522. msgstr "印表機"
  2523. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  2524. msgctxt "@label"
  2525. msgid "Enabled"
  2526. msgstr "已啟用"
  2527. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  2528. msgctxt "@label"
  2529. msgid "Material"
  2530. msgstr "線材"
  2531. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
  2532. msgctxt "@label"
  2533. msgid "Use glue for better adhesion with this material combination."
  2534. msgstr "在此線材組合下,使用膠水以獲得較佳的附著。"
  2535. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  2536. msgctxt "@label"
  2537. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  2538. msgstr "由於無法識別 %1,因此無法使用此設定。 請連上 %2 下載正確的線材參數設定。"
  2539. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  2540. msgctxt "@label"
  2541. msgid "Marketplace"
  2542. msgstr "市集"
  2543. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  2544. msgctxt "@label"
  2545. msgid "Loading available configurations from the printer..."
  2546. msgstr "從印表機載入可用的設定..."
  2547. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  2548. msgctxt "@label"
  2549. msgid "The configurations are not available because the printer is disconnected."
  2550. msgstr "由於印表機已斷線,因此設定無法使用。"
  2551. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:12 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
  2552. msgctxt "@title:menu menubar:toplevel"
  2553. msgid "&View"
  2554. msgstr "檢視(&V)"
  2555. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:19
  2556. msgctxt "@action:inmenu menubar:view"
  2557. msgid "&Camera position"
  2558. msgstr "視角位置(&C)"
  2559. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:44
  2560. msgctxt "@action:inmenu menubar:view"
  2561. msgid "Camera view"
  2562. msgstr "攝影機檢視"
  2563. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:47
  2564. msgctxt "@action:inmenu menubar:view"
  2565. msgid "Perspective"
  2566. msgstr "透視"
  2567. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:59
  2568. msgctxt "@action:inmenu menubar:view"
  2569. msgid "Orthographic"
  2570. msgstr "正交"
  2571. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:80
  2572. msgctxt "@action:inmenu menubar:view"
  2573. msgid "&Build plate"
  2574. msgstr "列印平台(&B)"
  2575. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:25
  2576. msgctxt "@label:category menu label"
  2577. msgid "Network enabled printers"
  2578. msgstr "支援網路的印表機"
  2579. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:42
  2580. msgctxt "@label:category menu label"
  2581. msgid "Local printers"
  2582. msgstr "本機印表機"
  2583. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  2584. msgctxt "@action:inmenu"
  2585. msgid "Visible Settings"
  2586. msgstr "顯示設定"
  2587. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  2588. msgctxt "@action:inmenu"
  2589. msgid "Collapse All Categories"
  2590. msgstr "折疊所有分類"
  2591. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  2592. msgctxt "@action:inmenu"
  2593. msgid "Manage Setting Visibility..."
  2594. msgstr "管理參數顯示..."
  2595. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:13 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
  2596. msgctxt "@title:menu menubar:toplevel"
  2597. msgid "&Settings"
  2598. msgstr "設定(&S)"
  2599. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:15
  2600. msgctxt "@title:menu menubar:settings"
  2601. msgid "&Printer"
  2602. msgstr "印表機(&P)"
  2603. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:29
  2604. msgctxt "@title:menu"
  2605. msgid "&Material"
  2606. msgstr "線材(&M)"
  2607. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:44
  2608. msgctxt "@action:inmenu"
  2609. msgid "Set as Active Extruder"
  2610. msgstr "設為主要擠出機"
  2611. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:50
  2612. msgctxt "@action:inmenu"
  2613. msgid "Enable Extruder"
  2614. msgstr "啟用擠出機"
  2615. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:57
  2616. msgctxt "@action:inmenu"
  2617. msgid "Disable Extruder"
  2618. msgstr "關閉擠出機"
  2619. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  2620. msgctxt "@title:menu menubar:file"
  2621. msgid "Save Project..."
  2622. msgstr "儲存專案."
  2623. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:27
  2624. msgctxt "@label"
  2625. msgid "Print Selected Model With:"
  2626. msgid_plural "Print Selected Models With:"
  2627. msgstr[0] "列印所選模型:"
  2628. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:116
  2629. msgctxt "@title:window"
  2630. msgid "Multiply Selected Model"
  2631. msgid_plural "Multiply Selected Models"
  2632. msgstr[0] "複製所選模型"
  2633. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:141
  2634. msgctxt "@label"
  2635. msgid "Number of Copies"
  2636. msgstr "複製個數"
  2637. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  2638. msgctxt "@title:menu menubar:file"
  2639. msgid "Open File(s)..."
  2640. msgstr "開啟檔案."
  2641. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  2642. msgctxt "@label:header"
  2643. msgid "Custom profiles"
  2644. msgstr "自訂列印參數"
  2645. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:564
  2646. msgctxt "@action:button"
  2647. msgid "Discard current changes"
  2648. msgstr "捨棄目前更改"
  2649. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  2650. msgctxt "@label"
  2651. msgid "Profile"
  2652. msgstr "參數"
  2653. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  2654. msgctxt "@tooltip"
  2655. msgid ""
  2656. "Some setting/override values are different from the values stored in the profile.\n"
  2657. "\n"
  2658. "Click to open the profile manager."
  2659. msgstr ""
  2660. "部份設定/覆寫值與儲存在列印參數中的值不同。\n"
  2661. "\n"
  2662. "點擊開啟列印參數管理器。"
  2663. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  2664. msgctxt "@label:Should be short"
  2665. msgid "On"
  2666. msgstr "開啟"
  2667. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  2668. msgctxt "@label:Should be short"
  2669. msgid "Off"
  2670. msgstr "關閉"
  2671. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
  2672. msgctxt "@label"
  2673. msgid "Experimental"
  2674. msgstr "實驗功能"
  2675. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  2676. msgctxt "@button"
  2677. msgid "Recommended"
  2678. msgstr "推薦"
  2679. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  2680. msgctxt "@button"
  2681. msgid "Custom"
  2682. msgstr "自訂選項"
  2683. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  2684. msgctxt "@label"
  2685. msgid "Print settings"
  2686. msgstr "列印設定"
  2687. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  2688. msgctxt "@label shown when we load a Gcode file"
  2689. msgid "Print setup disabled. G-code file can not be modified."
  2690. msgstr "列印設定已被停用。 G-code 檔案無法修改。"
  2691. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  2692. msgctxt "@label"
  2693. msgid "Gradual infill"
  2694. msgstr "漸近式填充"
  2695. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  2696. msgctxt "@label"
  2697. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  2698. msgstr "漸近式填充將隨著列印高度的提升而逐漸加大填充密度。"
  2699. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:728
  2700. msgctxt "@label"
  2701. msgid "Profiles"
  2702. msgstr "列印參數"
  2703. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
  2704. msgctxt "@tooltip"
  2705. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  2706. msgstr "你修改過部份列印參數設定。如果你想改變這些設定,請切換到自訂模式。"
  2707. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  2708. msgctxt "@label"
  2709. msgid "Support"
  2710. msgstr "支撐"
  2711. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
  2712. msgctxt "@label"
  2713. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2714. msgstr "在模型的突出部分產生支撐結構。若不這樣做,這些部分在列印時將倒塌。"
  2715. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  2716. msgctxt "@label"
  2717. msgid "Adhesion"
  2718. msgstr "附著"
  2719. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
  2720. msgctxt "@label"
  2721. 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."
  2722. msgstr "允許列印邊緣或木筏。這將在你的物件周圍或下方添加一個容易切斷的平面區域。"
  2723. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  2724. 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')"
  2725. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  2726. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  2727. msgstr[0] "沒有擠出機 %2 用的 %1 參數。將使用預設參數"
  2728. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Widgets/ComboBox.qml:24
  2729. msgctxt "@label"
  2730. msgid "No items to select from"
  2731. msgstr "沒有可選取的專案"
  2732. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:140
  2733. msgctxt "@label"
  2734. msgid "Active print"
  2735. msgstr "正在列印"
  2736. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:148
  2737. msgctxt "@label"
  2738. msgid "Job Name"
  2739. msgstr "作業名稱"
  2740. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:156
  2741. msgctxt "@label"
  2742. msgid "Printing Time"
  2743. msgstr "列印時間"
  2744. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:164
  2745. msgctxt "@label"
  2746. msgid "Estimated time left"
  2747. msgstr "預計剩餘時間"
  2748. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  2749. msgctxt "@title:window"
  2750. msgid "Discard or Keep changes"
  2751. msgstr "捨棄或保留更改"
  2752. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  2753. msgctxt "@text:window, %1 is a profile name"
  2754. msgid ""
  2755. "You have customized some profile settings.\n"
  2756. "Would you like to Keep these changed settings after switching profiles?\n"
  2757. "Alternatively, you can discard the changes to load the defaults from '%1'."
  2758. msgstr ""
  2759. "你修改了一些參數設定。\n"
  2760. "你要在切換參數後保留這些更動嗎?\n"
  2761. "或者你也可以忽略這些更動,從 '%1' 載入預設值。"
  2762. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
  2763. msgctxt "@title:column"
  2764. msgid "Profile settings"
  2765. msgstr "列印參數設定"
  2766. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  2767. msgctxt "@title:column"
  2768. msgid "Current changes"
  2769. msgstr "目前更動"
  2770. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:747
  2771. msgctxt "@option:discardOrKeep"
  2772. msgid "Always ask me this"
  2773. msgstr "總是詢問"
  2774. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
  2775. msgctxt "@option:discardOrKeep"
  2776. msgid "Discard and never ask again"
  2777. msgstr "捨棄更改,並不再詢問此問題"
  2778. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  2779. msgctxt "@option:discardOrKeep"
  2780. msgid "Keep and never ask again"
  2781. msgstr "保留更改,並不再詢問此問題"
  2782. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
  2783. msgctxt "@action:button"
  2784. msgid "Discard changes"
  2785. msgstr "忽略更動"
  2786. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
  2787. msgctxt "@action:button"
  2788. msgid "Keep changes"
  2789. msgstr "保留更動"
  2790. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2791. msgctxt "@title:window The argument is the application name."
  2792. msgid "About %1"
  2793. msgstr "關於 %1"
  2794. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2795. msgctxt "@label"
  2796. msgid "version: %1"
  2797. msgstr "版本:%1"
  2798. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2799. msgctxt "@label"
  2800. msgid "End-to-end solution for fused filament 3D printing."
  2801. msgstr "熔絲 3D 列印技術的的端對端解決方案。"
  2802. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2803. msgctxt "@info:credit"
  2804. msgid ""
  2805. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2806. "Cura proudly uses the following open source projects:"
  2807. msgstr ""
  2808. "Cura 由 Ultimaker B.V. 與社區合作開發。\n"
  2809. "Cura 使用以下開源專案:"
  2810. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2811. msgctxt "@label"
  2812. msgid "Graphical user interface"
  2813. msgstr "圖形用戶介面"
  2814. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2815. msgctxt "@label"
  2816. msgid "Application framework"
  2817. msgstr "應用框架"
  2818. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2819. msgctxt "@label"
  2820. msgid "G-code generator"
  2821. msgstr "G-code 產生器"
  2822. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2823. msgctxt "@label"
  2824. msgid "Interprocess communication library"
  2825. msgstr "進程間通訊交互使用庫"
  2826. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2827. msgctxt "@label"
  2828. msgid "Programming language"
  2829. msgstr "編程語言"
  2830. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2831. msgctxt "@label"
  2832. msgid "GUI framework"
  2833. msgstr "GUI 框架"
  2834. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2835. msgctxt "@label"
  2836. msgid "GUI framework bindings"
  2837. msgstr "GUI 框架綁定"
  2838. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2839. msgctxt "@label"
  2840. msgid "C/C++ Binding library"
  2841. msgstr "C / C++ 綁定庫"
  2842. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2843. msgctxt "@label"
  2844. msgid "Data interchange format"
  2845. msgstr "資料交換格式"
  2846. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2847. msgctxt "@label"
  2848. msgid "Support library for scientific computing"
  2849. msgstr "科學計算函式庫"
  2850. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2851. msgctxt "@label"
  2852. msgid "Support library for faster math"
  2853. msgstr "高速運算函式庫"
  2854. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2855. msgctxt "@label"
  2856. msgid "Support library for handling STL files"
  2857. msgstr "用於處理 STL 檔案的函式庫"
  2858. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2859. msgctxt "@label"
  2860. msgid "Support library for handling planar objects"
  2861. msgstr "用於處理平面物件的函式庫"
  2862. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  2863. msgctxt "@label"
  2864. msgid "Support library for handling triangular meshes"
  2865. msgstr "用於處理三角形網格的函式庫"
  2866. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  2867. msgctxt "@label"
  2868. msgid "Support library for handling 3MF files"
  2869. msgstr "用於處理 3MF 檔案的函式庫"
  2870. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  2871. msgctxt "@label"
  2872. msgid "Support library for file metadata and streaming"
  2873. msgstr "用於檔案 metadata 和串流的函式庫"
  2874. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  2875. msgctxt "@label"
  2876. msgid "Serial communication library"
  2877. msgstr "串口通訊函式庫"
  2878. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  2879. msgctxt "@label"
  2880. msgid "ZeroConf discovery library"
  2881. msgstr "ZeroConf 發現函式庫"
  2882. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  2883. msgctxt "@label"
  2884. msgid "Polygon clipping library"
  2885. msgstr "多邊形剪輯函式庫"
  2886. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  2887. msgctxt "@Label"
  2888. msgid "Static type checker for Python"
  2889. msgstr "Python 靜態型別檢查器"
  2890. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  2891. msgctxt "@Label"
  2892. msgid "Root Certificates for validating SSL trustworthiness"
  2893. msgstr "驗證 SSL 可信度用的根憑證"
  2894. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  2895. msgctxt "@Label"
  2896. msgid "Python Error tracking library"
  2897. msgstr "Python 錯誤追蹤函式庫"
  2898. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  2899. msgctxt "@label"
  2900. msgid "Polygon packing library, developed by Prusa Research"
  2901. msgstr "多邊形包裝函式庫,由 Prusa Research 開發"
  2902. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  2903. msgctxt "@label"
  2904. msgid "Python bindings for libnest2d"
  2905. msgstr "Python bindings for libnest2d"
  2906. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  2907. msgctxt "@label"
  2908. msgid "Support library for system keyring access"
  2909. msgstr "存取系統金鑰函式庫"
  2910. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  2911. msgctxt "@label"
  2912. msgid "Python extensions for Microsoft Windows"
  2913. msgstr "Python擴充(windows)"
  2914. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  2915. msgctxt "@label"
  2916. msgid "Font"
  2917. msgstr "字體"
  2918. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  2919. msgctxt "@label"
  2920. msgid "SVG icons"
  2921. msgstr "SVG 圖標"
  2922. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  2923. msgctxt "@label"
  2924. msgid "Linux cross-distribution application deployment"
  2925. msgstr "Linux cross-distribution 應用程式部署"
  2926. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:627
  2927. msgctxt "@title:window"
  2928. msgid "Open file(s)"
  2929. msgstr "開啟檔案"
  2930. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  2931. msgctxt "@text:window"
  2932. 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?"
  2933. msgstr "我們已經在你所選擇的檔案中找到一個或多個專案檔案,但一次只能開啟一個專案檔案。我們建議只從那些檔案中匯入模型而不開啟專案。你要繼續操作嗎?"
  2934. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
  2935. msgctxt "@action:button"
  2936. msgid "Import all as models"
  2937. msgstr "匯入所有模型"
  2938. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  2939. msgctxt "@title:window"
  2940. msgid "Save Project"
  2941. msgstr "儲存專案"
  2942. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
  2943. msgctxt "@action:label"
  2944. msgid "Extruder %1"
  2945. msgstr "擠出機 %1"
  2946. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
  2947. msgctxt "@action:label"
  2948. msgid "%1 & material"
  2949. msgstr "%1 & 線材"
  2950. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
  2951. msgctxt "@action:label"
  2952. msgid "Material"
  2953. msgstr "線材"
  2954. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
  2955. msgctxt "@action:label"
  2956. msgid "Don't show project summary on save again"
  2957. msgstr "儲存時不再顯示專案摘要"
  2958. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
  2959. msgctxt "@action:button"
  2960. msgid "Save"
  2961. msgstr "儲存"
  2962. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  2963. msgctxt "@title:window"
  2964. msgid "Open project file"
  2965. msgstr "開啟專案檔案"
  2966. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
  2967. msgctxt "@text:window"
  2968. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  2969. msgstr "這是一個 Cura 專案檔案。你想將其作為一個專案開啟還是從中匯入模型?"
  2970. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
  2971. msgctxt "@text:window"
  2972. msgid "Remember my choice"
  2973. msgstr "記住我的選擇"
  2974. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
  2975. msgctxt "@action:button"
  2976. msgid "Open as project"
  2977. msgstr "作為專案開啟"
  2978. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
  2979. msgctxt "@action:button"
  2980. msgid "Import models"
  2981. msgstr "匯入模型"
  2982. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/JobSpecs.qml:99
  2983. msgctxt "@text Print job name"
  2984. msgid "Untitled"
  2985. msgstr "無標題"
  2986. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  2987. msgctxt "@label"
  2988. msgid "Welcome to Ultimaker Cura"
  2989. msgstr "歡迎來到 Ultimaker Cura"
  2990. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  2991. msgctxt "@text"
  2992. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  2993. msgstr "請依照步驟安裝Ultimaker Cura. 這會需要幾分鐘的時間."
  2994. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  2995. msgctxt "@button"
  2996. msgid "Get started"
  2997. msgstr "開始"
  2998. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  2999. msgctxt "@label"
  3000. msgid "Empty"
  3001. msgstr "空的"
  3002. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3003. msgctxt "@label"
  3004. msgid "Help us to improve Ultimaker Cura"
  3005. msgstr "協助我們改進 Ultimaker Cura"
  3006. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  3007. msgctxt "@text"
  3008. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  3009. msgstr "Ultimaker Cura 搜集匿名資料以提高列印品質和使用者體驗,包含:"
  3010. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  3011. msgctxt "@text"
  3012. msgid "Machine types"
  3013. msgstr "機器類型"
  3014. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  3015. msgctxt "@text"
  3016. msgid "Material usage"
  3017. msgstr "線材用法"
  3018. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  3019. msgctxt "@text"
  3020. msgid "Number of slices"
  3021. msgstr "切片次數"
  3022. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  3023. msgctxt "@text"
  3024. msgid "Print settings"
  3025. msgstr "列印設定"
  3026. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  3027. msgctxt "@text"
  3028. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  3029. msgstr "Ultimaker Cura 收集的資料不包含任何個人資訊。"
  3030. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  3031. msgctxt "@text"
  3032. msgid "More information"
  3033. msgstr "更多資訊"
  3034. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  3035. msgctxt "@label"
  3036. msgid "Add printer by IP address"
  3037. msgstr "使用 IP 位址新增印表機"
  3038. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  3039. msgctxt "@text"
  3040. msgid "Enter your printer's IP address."
  3041. msgstr "輸入印表機的 IP 位址。"
  3042. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  3043. msgctxt "@button"
  3044. msgid "Add"
  3045. msgstr "新增"
  3046. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  3047. msgctxt "@label"
  3048. msgid "Could not connect to device."
  3049. msgstr "無法連接到裝置。"
  3050. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  3051. msgctxt "@label"
  3052. msgid "Can't connect to your Ultimaker printer?"
  3053. msgstr "無法連接到 Ultimaker 印表機?"
  3054. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  3055. msgctxt "@label"
  3056. msgid "The printer at this address has not responded yet."
  3057. msgstr "此位址的印表機尚未回應。"
  3058. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  3059. msgctxt "@label"
  3060. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3061. msgstr "無法添加此印表機,因為它是未知的印表機,或者它不是印表機群組的主機。"
  3062. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  3063. msgctxt "@button"
  3064. msgid "Back"
  3065. msgstr "返回"
  3066. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  3067. msgctxt "@button"
  3068. msgid "Connect"
  3069. msgstr "連接"
  3070. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  3071. msgctxt "@label"
  3072. msgid "Add a printer"
  3073. msgstr "新增印表機"
  3074. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  3075. msgctxt "@label"
  3076. msgid "Add a networked printer"
  3077. msgstr "新增網路印表機"
  3078. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  3079. msgctxt "@label"
  3080. msgid "Add a non-networked printer"
  3081. msgstr "新增非網路印表機"
  3082. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
  3083. msgctxt "@label"
  3084. msgid "What's New"
  3085. msgstr "新功能"
  3086. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  3087. msgctxt "@label"
  3088. msgid "Add a Cloud printer"
  3089. msgstr "新增雲端印表機"
  3090. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  3091. msgctxt "@label"
  3092. msgid "Waiting for Cloud response"
  3093. msgstr "等待雲端服務回應"
  3094. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  3095. msgctxt "@label"
  3096. msgid "No printers found in your account?"
  3097. msgstr "在你的帳號未發現任何印表機?"
  3098. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  3099. msgctxt "@label"
  3100. msgid "The following printers in your account have been added in Cura:"
  3101. msgstr "下列你帳號中的印表機已新增至 Cura:"
  3102. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  3103. msgctxt "@button"
  3104. msgid "Add printer manually"
  3105. msgstr "手動新增印表機"
  3106. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:20
  3107. msgctxt "@label"
  3108. msgid "Sign in to the Ultimaker platform"
  3109. msgstr "登入Ultimaker 論壇"
  3110. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  3111. msgctxt "@text"
  3112. msgid "Add material settings and plugins from the Marketplace"
  3113. msgstr "從市集中加入線材設定或插件"
  3114. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  3115. msgctxt "@text"
  3116. msgid "Backup and sync your material settings and plugins"
  3117. msgstr "備份及同步您的線材設定與插件"
  3118. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  3119. msgctxt "@text"
  3120. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  3121. msgstr "分享創意並可從Ultimaker社群中超過48000的使用者得到幫助"
  3122. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:217
  3123. msgctxt "@text"
  3124. msgid "Create a free Ultimaker Account"
  3125. msgstr "創建免費的Ultimaker帳戶"
  3126. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:230
  3127. msgctxt "@button"
  3128. msgid "Skip"
  3129. msgstr "略過"
  3130. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  3131. msgctxt "@label"
  3132. msgid "User Agreement"
  3133. msgstr "使用者授權"
  3134. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  3135. msgctxt "@button"
  3136. msgid "Decline and close"
  3137. msgstr "拒絕並關閉"
  3138. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  3139. msgctxt "@label"
  3140. msgid "Release Notes"
  3141. msgstr "發佈通知"
  3142. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  3143. msgctxt "@label"
  3144. msgid "There is no printer found over your network."
  3145. msgstr "在你的網路上找不到印表機。"
  3146. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  3147. msgctxt "@label"
  3148. msgid "Refresh"
  3149. msgstr "更新"
  3150. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  3151. msgctxt "@label"
  3152. msgid "Add printer by IP"
  3153. msgstr "使用 IP 位址新增印表機"
  3154. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  3155. msgctxt "@label"
  3156. msgid "Add cloud printer"
  3157. msgstr "新增雲端印表機"
  3158. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
  3159. msgctxt "@label"
  3160. msgid "Troubleshooting"
  3161. msgstr "故障排除"
  3162. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
  3163. msgctxt "@label"
  3164. msgid "Manufacturer"
  3165. msgstr "製造商"
  3166. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
  3167. msgctxt "@label"
  3168. msgid "Profile author"
  3169. msgstr "列印參數作者"
  3170. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
  3171. msgctxt "@label"
  3172. msgid "Printer name"
  3173. msgstr "印表機名稱"
  3174. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
  3175. msgctxt "@text"
  3176. msgid "Please name your printer"
  3177. msgstr "請為你的印表機取一個名稱"
  3178. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:81
  3179. msgctxt "@label The argument is a timestamp"
  3180. msgid "Last update: %1"
  3181. msgstr "最後一次更新:%1"
  3182. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:109
  3183. msgctxt "@button"
  3184. msgid "Ultimaker Account"
  3185. msgstr "Ultimaker 帳號"
  3186. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:125
  3187. msgctxt "@button"
  3188. msgid "Sign Out"
  3189. msgstr "登出"
  3190. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:42
  3191. msgctxt "@text"
  3192. msgid ""
  3193. "- Add material profiles and plug-ins from the Marketplace\n"
  3194. "- Back-up and sync your material profiles and plug-ins\n"
  3195. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  3196. msgstr ""
  3197. "- 從市集中加入線材參數及插件\n"
  3198. "-備份及同步您的線材設定與插件 \n"
  3199. "- 分享創意並可從Ultimaker社群中超過48000的使用者得到幫助"
  3200. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:62
  3201. msgctxt "@button"
  3202. msgid "Create a free Ultimaker account"
  3203. msgstr "創建免費的Ultimaker帳戶"
  3204. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/AccountWidget.qml:24
  3205. msgctxt "@action:button"
  3206. msgid "Sign in"
  3207. msgstr "登入"
  3208. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:28
  3209. msgctxt "@label"
  3210. msgid "Checking..."
  3211. msgstr "檢查中..."
  3212. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:35
  3213. msgctxt "@label"
  3214. msgid "Account synced"
  3215. msgstr "帳號已同步"
  3216. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:42
  3217. msgctxt "@label"
  3218. msgid "Something went wrong..."
  3219. msgstr "出了些問題..."
  3220. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:96
  3221. msgctxt "@button"
  3222. msgid "Install pending updates"
  3223. msgstr "安裝待處理的更新"
  3224. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:118
  3225. msgctxt "@button"
  3226. msgid "Check for account updates"
  3227. msgstr "檢查帳號更新"
  3228. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectSelector.qml:59
  3229. msgctxt "@label"
  3230. msgid "Object list"
  3231. msgstr "物件清單"
  3232. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:82
  3233. msgctxt "@action:inmenu"
  3234. msgid "Show Online Troubleshooting Guide"
  3235. msgstr "顯示線上故障排除指南"
  3236. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:89
  3237. msgctxt "@action:inmenu"
  3238. msgid "Toggle Full Screen"
  3239. msgstr "切換全螢幕"
  3240. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:97
  3241. msgctxt "@action:inmenu"
  3242. msgid "Exit Full Screen"
  3243. msgstr "離開全螢幕"
  3244. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:104
  3245. msgctxt "@action:inmenu menubar:edit"
  3246. msgid "&Undo"
  3247. msgstr "復原(&U)"
  3248. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:114
  3249. msgctxt "@action:inmenu menubar:edit"
  3250. msgid "&Redo"
  3251. msgstr "取消復原(&R)"
  3252. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:124
  3253. msgctxt "@action:inmenu menubar:file"
  3254. msgid "&Quit"
  3255. msgstr "退出(&Q)"
  3256. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:132
  3257. msgctxt "@action:inmenu menubar:view"
  3258. msgid "3D View"
  3259. msgstr "立體圖"
  3260. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:139
  3261. msgctxt "@action:inmenu menubar:view"
  3262. msgid "Front View"
  3263. msgstr "前視圖"
  3264. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:146
  3265. msgctxt "@action:inmenu menubar:view"
  3266. msgid "Top View"
  3267. msgstr "上視圖"
  3268. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:153
  3269. msgctxt "@action:inmenu menubar:view"
  3270. msgid "Left Side View"
  3271. msgstr "左視圖"
  3272. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:160
  3273. msgctxt "@action:inmenu menubar:view"
  3274. msgid "Right Side View"
  3275. msgstr "右視圖"
  3276. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:167
  3277. msgctxt "@action:inmenu"
  3278. msgid "Configure Cura..."
  3279. msgstr "設定 Cura..."
  3280. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:174
  3281. msgctxt "@action:inmenu menubar:printer"
  3282. msgid "&Add Printer..."
  3283. msgstr "新增印表機(&A)..."
  3284. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:180
  3285. msgctxt "@action:inmenu menubar:printer"
  3286. msgid "Manage Pr&inters..."
  3287. msgstr "管理印表機(&I)..."
  3288. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:187
  3289. msgctxt "@action:inmenu"
  3290. msgid "Manage Materials..."
  3291. msgstr "管理線材..."
  3292. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:195
  3293. msgctxt "@action:inmenu"
  3294. msgid "Add more materials from Marketplace"
  3295. msgstr "從市集增加更多線材"
  3296. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:202
  3297. msgctxt "@action:inmenu menubar:profile"
  3298. msgid "&Update profile with current settings/overrides"
  3299. msgstr "使用目前設定 / 覆寫更新列印參數(&U)"
  3300. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:210
  3301. msgctxt "@action:inmenu menubar:profile"
  3302. msgid "&Discard current changes"
  3303. msgstr "捨棄目前更改(&D)"
  3304. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:222
  3305. msgctxt "@action:inmenu menubar:profile"
  3306. msgid "&Create profile from current settings/overrides..."
  3307. msgstr "從目前設定 / 覆寫值建立列印參數(&C)..."
  3308. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:228
  3309. msgctxt "@action:inmenu menubar:profile"
  3310. msgid "Manage Profiles..."
  3311. msgstr "管理列印參數.."
  3312. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:236
  3313. msgctxt "@action:inmenu menubar:help"
  3314. msgid "Show Online &Documentation"
  3315. msgstr "顯示線上說明文件(&D)"
  3316. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:244
  3317. msgctxt "@action:inmenu menubar:help"
  3318. msgid "Report a &Bug"
  3319. msgstr "BUG 回報(&B)"
  3320. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:252
  3321. msgctxt "@action:inmenu menubar:help"
  3322. msgid "What's New"
  3323. msgstr "新功能"
  3324. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:258
  3325. msgctxt "@action:inmenu menubar:help"
  3326. msgid "About..."
  3327. msgstr "關於..."
  3328. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:265
  3329. msgctxt "@action:inmenu menubar:edit"
  3330. msgid "Delete Selected"
  3331. msgstr "刪除選取"
  3332. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:275
  3333. msgctxt "@action:inmenu menubar:edit"
  3334. msgid "Center Selected"
  3335. msgstr "置中選取"
  3336. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:284
  3337. msgctxt "@action:inmenu menubar:edit"
  3338. msgid "Multiply Selected"
  3339. msgstr "複製選取"
  3340. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:293
  3341. msgctxt "@action:inmenu"
  3342. msgid "Delete Model"
  3343. msgstr "刪除模型"
  3344. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:301
  3345. msgctxt "@action:inmenu"
  3346. msgid "Ce&nter Model on Platform"
  3347. msgstr "將模型置中(&N)"
  3348. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:307
  3349. msgctxt "@action:inmenu menubar:edit"
  3350. msgid "&Group Models"
  3351. msgstr "群組模型(&G)"
  3352. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:327
  3353. msgctxt "@action:inmenu menubar:edit"
  3354. msgid "Ungroup Models"
  3355. msgstr "取消模型群組"
  3356. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:337
  3357. msgctxt "@action:inmenu menubar:edit"
  3358. msgid "&Merge Models"
  3359. msgstr "結合模型(&M)"
  3360. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:347
  3361. msgctxt "@action:inmenu"
  3362. msgid "&Multiply Model..."
  3363. msgstr "複製模型...(&M)"
  3364. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:354
  3365. msgctxt "@action:inmenu menubar:edit"
  3366. msgid "Select All Models"
  3367. msgstr "選擇所有模型"
  3368. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:364
  3369. msgctxt "@action:inmenu menubar:edit"
  3370. msgid "Clear Build Plate"
  3371. msgstr "清空列印平台"
  3372. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:374
  3373. msgctxt "@action:inmenu menubar:file"
  3374. msgid "Reload All Models"
  3375. msgstr "重新載入所有模型"
  3376. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:383
  3377. msgctxt "@action:inmenu menubar:edit"
  3378. msgid "Arrange All Models To All Build Plates"
  3379. msgstr "將所有模型排列到所有列印平台上"
  3380. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:390
  3381. msgctxt "@action:inmenu menubar:edit"
  3382. msgid "Arrange All Models"
  3383. msgstr "排列所有模型"
  3384. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:398
  3385. msgctxt "@action:inmenu menubar:edit"
  3386. msgid "Arrange Selection"
  3387. msgstr "排列所選模型"
  3388. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:405
  3389. msgctxt "@action:inmenu menubar:edit"
  3390. msgid "Reset All Model Positions"
  3391. msgstr "重置所有模型位置"
  3392. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:412
  3393. msgctxt "@action:inmenu menubar:edit"
  3394. msgid "Reset All Model Transformations"
  3395. msgstr "重置所有模型旋轉"
  3396. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:421
  3397. msgctxt "@action:inmenu menubar:file"
  3398. msgid "&Open File(s)..."
  3399. msgstr "開啟檔案(&O)..."
  3400. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:431
  3401. msgctxt "@action:inmenu menubar:file"
  3402. msgid "&New Project..."
  3403. msgstr "新建專案(&N)..."
  3404. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:438
  3405. msgctxt "@action:inmenu menubar:help"
  3406. msgid "Show Configuration Folder"
  3407. msgstr "顯示設定資料夾"
  3408. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:445 /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:538
  3409. msgctxt "@action:menu"
  3410. msgid "Configure setting visibility..."
  3411. msgstr "參數顯示設定..."
  3412. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:452
  3413. msgctxt "@action:menu"
  3414. msgid "&Marketplace"
  3415. msgstr "市集(&M)"
  3416. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:61
  3417. msgctxt "@info:status"
  3418. msgid "Calculated"
  3419. msgstr "已計算"
  3420. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:75
  3421. msgctxt "@title:column"
  3422. msgid "Setting"
  3423. msgstr "設定"
  3424. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:82
  3425. msgctxt "@title:column"
  3426. msgid "Profile"
  3427. msgstr "列印參數"
  3428. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:89
  3429. msgctxt "@title:column"
  3430. msgid "Current"
  3431. msgstr "目前"
  3432. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:97
  3433. msgctxt "@title:column"
  3434. msgid "Unit"
  3435. msgstr "單位"
  3436. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3437. msgctxt "@title"
  3438. msgid "Information"
  3439. msgstr "資訊"
  3440. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3441. msgctxt "@title:window"
  3442. msgid "Confirm Diameter Change"
  3443. msgstr "直徑更改確認"
  3444. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3445. msgctxt "@label (%1 is a number)"
  3446. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3447. msgstr "新的線材直徑設定為 %1 mm,這與目前的擠出機不相容。你要繼續嗎?"
  3448. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3449. msgctxt "@label"
  3450. msgid "Display Name"
  3451. msgstr "顯示名稱"
  3452. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3453. msgctxt "@label"
  3454. msgid "Material Type"
  3455. msgstr "線材類型"
  3456. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3457. msgctxt "@label"
  3458. msgid "Color"
  3459. msgstr "顏色"
  3460. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3461. msgctxt "@label"
  3462. msgid "Properties"
  3463. msgstr "屬性"
  3464. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3465. msgctxt "@label"
  3466. msgid "Density"
  3467. msgstr "密度"
  3468. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3469. msgctxt "@label"
  3470. msgid "Diameter"
  3471. msgstr "直徑"
  3472. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3473. msgctxt "@label"
  3474. msgid "Filament Cost"
  3475. msgstr "線材成本"
  3476. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3477. msgctxt "@label"
  3478. msgid "Filament weight"
  3479. msgstr "線材重量"
  3480. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3481. msgctxt "@label"
  3482. msgid "Filament length"
  3483. msgstr "線材長度"
  3484. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3485. msgctxt "@label"
  3486. msgid "Cost per Meter"
  3487. msgstr "每公尺成本"
  3488. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3489. msgctxt "@label"
  3490. msgid "This material is linked to %1 and shares some of its properties."
  3491. msgstr "此線材與 %1 相關聯,並共享其部份屬性。"
  3492. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  3493. msgctxt "@label"
  3494. msgid "Unlink Material"
  3495. msgstr "解除聯結線材"
  3496. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  3497. msgctxt "@label"
  3498. msgid "Description"
  3499. msgstr "描述"
  3500. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  3501. msgctxt "@label"
  3502. msgid "Adhesion Information"
  3503. msgstr "附著資訊"
  3504. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:40 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3505. msgctxt "@action:button"
  3506. msgid "Activate"
  3507. msgstr "啟用"
  3508. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3509. msgctxt "@action:button"
  3510. msgid "Create"
  3511. msgstr "建立"
  3512. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3513. msgctxt "@action:button"
  3514. msgid "Duplicate"
  3515. msgstr "複製"
  3516. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3517. msgctxt "@action:button"
  3518. msgid "Import"
  3519. msgstr "匯入"
  3520. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3521. msgctxt "@action:button"
  3522. msgid "Export"
  3523. msgstr "匯出"
  3524. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
  3525. msgctxt "@action:label"
  3526. msgid "Printer"
  3527. msgstr "印表機"
  3528. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  3529. msgctxt "@title:window"
  3530. msgid "Confirm Remove"
  3531. msgstr "移除確認"
  3532. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3533. msgctxt "@label (%1 is object name)"
  3534. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3535. msgstr "你確定要移除 %1 嗎?這動作無法復原!"
  3536. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
  3537. msgctxt "@title:window"
  3538. msgid "Import Material"
  3539. msgstr "匯入線材設定"
  3540. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
  3541. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3542. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3543. msgstr "無法匯入線材 <filename>%1</filename>:<message>%2</message>"
  3544. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
  3545. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3546. msgid "Successfully imported material <filename>%1</filename>"
  3547. msgstr "成功匯入線材 <filename>%1</filename>"
  3548. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
  3549. msgctxt "@title:window"
  3550. msgid "Export Material"
  3551. msgstr "匯出線材設定"
  3552. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
  3553. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3554. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3555. msgstr "無法匯出線材至 <filename>%1</filename>:<message>%2</message>"
  3556. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
  3557. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3558. msgid "Successfully exported material to <filename>%1</filename>"
  3559. msgstr "成功匯出線材至:<filename>%1</filename>"
  3560. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:16 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:455
  3561. msgctxt "@title:tab"
  3562. msgid "Printers"
  3563. msgstr "印表機"
  3564. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:63 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3565. msgctxt "@action:button"
  3566. msgid "Rename"
  3567. msgstr "重命名"
  3568. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:459
  3569. msgctxt "@title:tab"
  3570. msgid "Profiles"
  3571. msgstr "列印參數"
  3572. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3573. msgctxt "@label"
  3574. msgid "Create"
  3575. msgstr "建立"
  3576. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3577. msgctxt "@label"
  3578. msgid "Duplicate"
  3579. msgstr "複製"
  3580. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3581. msgctxt "@title:window"
  3582. msgid "Create Profile"
  3583. msgstr "建立列印參數"
  3584. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3585. msgctxt "@info"
  3586. msgid "Please provide a name for this profile."
  3587. msgstr "請為此參數提供一個名字。"
  3588. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:263
  3589. msgctxt "@title:window"
  3590. msgid "Duplicate Profile"
  3591. msgstr "複製列印參數"
  3592. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3593. msgctxt "@title:window"
  3594. msgid "Rename Profile"
  3595. msgstr "重命名列印參數"
  3596. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:307
  3597. msgctxt "@title:window"
  3598. msgid "Import Profile"
  3599. msgstr "匯入列印參數"
  3600. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:336
  3601. msgctxt "@title:window"
  3602. msgid "Export Profile"
  3603. msgstr "匯出列印參數"
  3604. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:399
  3605. msgctxt "@label %1 is printer name"
  3606. msgid "Printer: %1"
  3607. msgstr "印表機:%1"
  3608. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:557
  3609. msgctxt "@action:button"
  3610. msgid "Update profile with current settings/overrides"
  3611. msgstr "使用目前設定 / 覆寫值更新列印參數"
  3612. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:583
  3613. msgctxt "@action:label"
  3614. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3615. msgstr "此列印參數使用印表機指定的預設值,因此在下面的清單中沒有此設定項。"
  3616. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:591
  3617. msgctxt "@action:label"
  3618. msgid "Your current settings match the selected profile."
  3619. msgstr "你目前的設定與選定的列印參數相匹配。"
  3620. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:609
  3621. msgctxt "@title:tab"
  3622. msgid "Global Settings"
  3623. msgstr "全局設定"
  3624. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  3625. msgctxt "@title:tab"
  3626. msgid "Setting Visibility"
  3627. msgstr "參數顯示設定"
  3628. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  3629. msgctxt "@label:textbox"
  3630. msgid "Check all"
  3631. msgstr "全選"
  3632. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:15 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:450
  3633. msgctxt "@title:tab"
  3634. msgid "General"
  3635. msgstr "基本"
  3636. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:137
  3637. msgctxt "@label"
  3638. msgid "Interface"
  3639. msgstr "介面"
  3640. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:216
  3641. msgctxt "@label"
  3642. msgid "Currency:"
  3643. msgstr "貨幣:"
  3644. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:229
  3645. msgctxt "@label"
  3646. msgid "Theme:"
  3647. msgstr "主題:"
  3648. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:285
  3649. msgctxt "@label"
  3650. msgid "You will need to restart the application for these changes to have effect."
  3651. msgstr "需重新啟動 Cura,新的設定才能生效。"
  3652. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:302
  3653. msgctxt "@info:tooltip"
  3654. msgid "Slice automatically when changing settings."
  3655. msgstr "當設定變更時自動進行切片。"
  3656. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:310
  3657. msgctxt "@option:check"
  3658. msgid "Slice automatically"
  3659. msgstr "自動切片"
  3660. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:324
  3661. msgctxt "@label"
  3662. msgid "Viewport behavior"
  3663. msgstr "顯示區設定"
  3664. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:332
  3665. msgctxt "@info:tooltip"
  3666. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3667. msgstr "模型缺少支撐的區域已以紅色標示。如果沒有支撐這些區域將無法正常列印。"
  3668. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:341
  3669. msgctxt "@option:check"
  3670. msgid "Display overhang"
  3671. msgstr "顯示突出部分"
  3672. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:351
  3673. msgctxt "@info:tooltip"
  3674. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3675. msgstr "模型缺少或多餘的表面已用警告符號標示。工具路徑是將缺少部份補上的型狀。"
  3676. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:360
  3677. msgctxt "@option:check"
  3678. msgid "Display model errors"
  3679. msgstr "顯示模型錯誤"
  3680. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:368
  3681. msgctxt "@info:tooltip"
  3682. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3683. msgstr "當模型被選中時,視角將自動調整到最合適的觀察位置(模型處於正中央)"
  3684. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3685. msgctxt "@action:button"
  3686. msgid "Center camera when item is selected"
  3687. msgstr "當專案被選中時,自動置中視角"
  3688. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:383
  3689. msgctxt "@info:tooltip"
  3690. msgid "Should the default zoom behavior of cura be inverted?"
  3691. msgstr "需要讓 Cura 的預設縮放操作反轉嗎?"
  3692. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:388
  3693. msgctxt "@action:button"
  3694. msgid "Invert the direction of camera zoom."
  3695. msgstr "反轉視角縮放方向。"
  3696. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3697. msgctxt "@info:tooltip"
  3698. msgid "Should zooming move in the direction of the mouse?"
  3699. msgstr "是否跟隨滑鼠方向進行縮放?"
  3700. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3701. msgctxt "@info:tooltip"
  3702. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3703. msgstr "正交透視不支援游標縮放功能。"
  3704. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3705. msgctxt "@action:button"
  3706. msgid "Zoom toward mouse direction"
  3707. msgstr "跟隨滑鼠方向縮放"
  3708. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:435
  3709. msgctxt "@info:tooltip"
  3710. msgid "Should models on the platform be moved so that they no longer intersect?"
  3711. msgstr "需要移動平台上的模型,使它們不再交錯嗎?"
  3712. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:440
  3713. msgctxt "@option:check"
  3714. msgid "Ensure models are kept apart"
  3715. msgstr "確保每個模型都保持分離"
  3716. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:449
  3717. msgctxt "@info:tooltip"
  3718. msgid "Should models on the platform be moved down to touch the build plate?"
  3719. msgstr "要將模型下降到碰觸列印平台嗎?"
  3720. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3721. msgctxt "@option:check"
  3722. msgid "Automatically drop models to the build plate"
  3723. msgstr "自動下降模型到列印平台"
  3724. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:466
  3725. msgctxt "@info:tooltip"
  3726. msgid "Show caution message in g-code reader."
  3727. msgstr "在 g-code 讀取器中顯示警告訊息。"
  3728. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:475
  3729. msgctxt "@option:check"
  3730. msgid "Caution message in g-code reader"
  3731. msgstr "G-code 讀取器中的警告訊息"
  3732. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:483
  3733. msgctxt "@info:tooltip"
  3734. msgid "Should layer be forced into compatibility mode?"
  3735. msgstr "分層檢視要強制進入相容模式嗎?"
  3736. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:488
  3737. msgctxt "@option:check"
  3738. msgid "Force layer view compatibility mode (restart required)"
  3739. msgstr "強制分層檢視相容模式(需要重新啟動)"
  3740. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3741. msgctxt "@info:tooltip"
  3742. msgid "Should Cura open at the location it was closed?"
  3743. msgstr "Cura 應該開啟在前次關閉時的位置嗎?"
  3744. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3745. msgctxt "@option:check"
  3746. msgid "Restore window position on start"
  3747. msgstr "開啟時復原視窗位置"
  3748. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:513
  3749. msgctxt "@info:tooltip"
  3750. msgid "What type of camera rendering should be used?"
  3751. msgstr "使用哪種類型的攝影機渲染?"
  3752. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:520
  3753. msgctxt "@window:text"
  3754. msgid "Camera rendering:"
  3755. msgstr "攝影機渲染:"
  3756. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:531
  3757. msgid "Perspective"
  3758. msgstr "透視"
  3759. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3760. msgid "Orthographic"
  3761. msgstr "正交"
  3762. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:563
  3763. msgctxt "@label"
  3764. msgid "Opening and saving files"
  3765. msgstr "開啟並儲存檔案"
  3766. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:570
  3767. msgctxt "@info:tooltip"
  3768. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3769. msgstr "從桌面或外部程式開啟檔案時,使用同一 Cura 視窗嗎?"
  3770. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:575
  3771. msgctxt "@option:check"
  3772. msgid "Use a single instance of Cura"
  3773. msgstr "使用同一 Cura 視窗"
  3774. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:585
  3775. msgctxt "@info:tooltip"
  3776. msgid "Should models be scaled to the build volume if they are too large?"
  3777. msgstr "當模型的尺寸過大時,是否將模型自動縮小至列印範圍嗎?"
  3778. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:590
  3779. msgctxt "@option:check"
  3780. msgid "Scale large models"
  3781. msgstr "縮小過大模型"
  3782. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:600
  3783. msgctxt "@info:tooltip"
  3784. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3785. msgstr "部份模型採用較大的單位(例如:公尺),導致模型變得非常小,要將這些模型放大嗎?"
  3786. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:605
  3787. msgctxt "@option:check"
  3788. msgid "Scale extremely small models"
  3789. msgstr "放大過小模型"
  3790. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:615
  3791. msgctxt "@info:tooltip"
  3792. msgid "Should models be selected after they are loaded?"
  3793. msgstr "模型載入後要設為被選擇的狀態嗎?"
  3794. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:620
  3795. msgctxt "@option:check"
  3796. msgid "Select models when loaded"
  3797. msgstr "模型載入後選擇模型"
  3798. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:630
  3799. msgctxt "@info:tooltip"
  3800. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3801. msgstr "是否自動將印表機名稱作為列印作業名稱的前綴?"
  3802. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:635
  3803. msgctxt "@option:check"
  3804. msgid "Add machine prefix to job name"
  3805. msgstr "將印表機名稱前綴添加到列印作業名稱中"
  3806. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:645
  3807. msgctxt "@info:tooltip"
  3808. msgid "Should a summary be shown when saving a project file?"
  3809. msgstr "儲存專案檔案時是否顯示摘要?"
  3810. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:649
  3811. msgctxt "@option:check"
  3812. msgid "Show summary dialog when saving project"
  3813. msgstr "儲存專案時顯示摘要對話框"
  3814. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:659
  3815. msgctxt "@info:tooltip"
  3816. msgid "Default behavior when opening a project file"
  3817. msgstr "開啟專案檔案時的預設行為"
  3818. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:667
  3819. msgctxt "@window:text"
  3820. msgid "Default behavior when opening a project file: "
  3821. msgstr "開啟專案檔案時的預設行為: "
  3822. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:681
  3823. msgctxt "@option:openProject"
  3824. msgid "Always ask me this"
  3825. msgstr "每次都向我確認"
  3826. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:682
  3827. msgctxt "@option:openProject"
  3828. msgid "Always open as a project"
  3829. msgstr "總是作為一個專案開啟"
  3830. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:683
  3831. msgctxt "@option:openProject"
  3832. msgid "Always import models"
  3833. msgstr "總是匯入模型"
  3834. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:719
  3835. msgctxt "@info:tooltip"
  3836. 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."
  3837. msgstr "當你對列印參數進行更改然後切換到其他列印參數時,將顯示一個對話框詢問你是否要保留修改。你也可以選擇預設不顯示該對話框。"
  3838. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:733
  3839. msgctxt "@window:text"
  3840. msgid "Default behavior for changed setting values when switching to a different profile: "
  3841. msgstr "當切換到另一組列印參數時,對於被修改過的設定的預設行為: "
  3842. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:748
  3843. msgctxt "@option:discardOrKeep"
  3844. msgid "Always discard changed settings"
  3845. msgstr "總是放棄修改過的設定"
  3846. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:749
  3847. msgctxt "@option:discardOrKeep"
  3848. msgid "Always transfer changed settings to new profile"
  3849. msgstr "總是將修改過的設定轉移至新的列印參數"
  3850. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:783
  3851. msgctxt "@label"
  3852. msgid "Privacy"
  3853. msgstr "隱私權"
  3854. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:790
  3855. msgctxt "@info:tooltip"
  3856. msgid "Should Cura check for updates when the program is started?"
  3857. msgstr "當 Cura 啟動時,是否自動檢查更新?"
  3858. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:795
  3859. msgctxt "@option:check"
  3860. msgid "Check for updates on start"
  3861. msgstr "啟動時檢查更新"
  3862. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:805
  3863. msgctxt "@info:tooltip"
  3864. 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."
  3865. msgstr "你願意將關於你的列印資料以匿名形式發送到 Ultimaker 嗎?注意:我們不會記錄或發送任何模型、IP 位址或其他私人資料。"
  3866. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:810
  3867. msgctxt "@option:check"
  3868. msgid "Send (anonymous) print information"
  3869. msgstr "(匿名)發送列印資訊"
  3870. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:819
  3871. msgctxt "@action:button"
  3872. msgid "More information"
  3873. msgstr "更多資訊"
  3874. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewsSelector.qml:50
  3875. msgctxt "@label"
  3876. msgid "View type"
  3877. msgstr "檢示類型"
  3878. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:119
  3879. msgctxt "@label:MonitorStatus"
  3880. msgid "Not connected to a printer"
  3881. msgstr "未連接至印表機"
  3882. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:123
  3883. msgctxt "@label:MonitorStatus"
  3884. msgid "Printer does not accept commands"
  3885. msgstr "印表機不接受命令"
  3886. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:133
  3887. msgctxt "@label:MonitorStatus"
  3888. msgid "In maintenance. Please check the printer"
  3889. msgstr "維護中。請檢查印表機"
  3890. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:144
  3891. msgctxt "@label:MonitorStatus"
  3892. msgid "Lost connection with the printer"
  3893. msgstr "與印表機的連線中斷"
  3894. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:146
  3895. msgctxt "@label:MonitorStatus"
  3896. msgid "Printing..."
  3897. msgstr "列印中..."
  3898. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:149
  3899. msgctxt "@label:MonitorStatus"
  3900. msgid "Paused"
  3901. msgstr "已暫停"
  3902. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:152
  3903. msgctxt "@label:MonitorStatus"
  3904. msgid "Preparing..."
  3905. msgstr "準備中..."
  3906. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:154
  3907. msgctxt "@label:MonitorStatus"
  3908. msgid "Please remove the print"
  3909. msgstr "請取出列印件"
  3910. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:326
  3911. msgctxt "@label"
  3912. msgid "Abort Print"
  3913. msgstr "中斷列印"
  3914. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:338
  3915. msgctxt "@label"
  3916. msgid "Are you sure you want to abort the print?"
  3917. msgstr "你確定要中斷列印嗎?"
  3918. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:68
  3919. msgctxt "@label:textbox"
  3920. msgid "Search settings"
  3921. msgstr "搜尋設定"
  3922. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:456
  3923. msgctxt "@action:menu"
  3924. msgid "Copy value to all extruders"
  3925. msgstr "將設定值複製到所有擠出機"
  3926. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:465
  3927. msgctxt "@action:menu"
  3928. msgid "Copy all changed values to all extruders"
  3929. msgstr "複製所有改變的設定值到所有擠出機"
  3930. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:502
  3931. msgctxt "@action:menu"
  3932. msgid "Hide this setting"
  3933. msgstr "隱藏此設定"
  3934. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:515
  3935. msgctxt "@action:menu"
  3936. msgid "Don't show this setting"
  3937. msgstr "不再顯示此設定"
  3938. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:519
  3939. msgctxt "@action:menu"
  3940. msgid "Keep this setting visible"
  3941. msgstr "保持此設定顯示"
  3942. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingCategory.qml:200
  3943. msgctxt "@label"
  3944. msgid ""
  3945. "Some hidden settings use values different from their normal calculated value.\n"
  3946. "\n"
  3947. "Click to make these settings visible."
  3948. msgstr ""
  3949. "部份隱藏設定使用的值與一般計算所得的值不同。\n"
  3950. "\n"
  3951. "點擊以顯這些設定。"
  3952. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:81
  3953. msgctxt "@label"
  3954. msgid "This setting is not used because all the settings that it influences are overridden."
  3955. msgstr "此設定未被使用,因為受它影響的設定都被覆寫了。"
  3956. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:86
  3957. msgctxt "@label Header for list of settings."
  3958. msgid "Affects"
  3959. msgstr "影響"
  3960. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:91
  3961. msgctxt "@label Header for list of settings."
  3962. msgid "Affected By"
  3963. msgstr "影響因素"
  3964. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:187
  3965. msgctxt "@label"
  3966. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3967. msgstr "這個設定是所有擠出機共用的。修改它會同時更動到所有擠出機的值。"
  3968. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:191
  3969. msgctxt "@label"
  3970. msgid "This setting is resolved from conflicting extruder-specific values:"
  3971. msgstr "此設定是透過解決擠出機設定值衝突獲得:"
  3972. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:230
  3973. msgctxt "@label"
  3974. msgid ""
  3975. "This setting has a value that is different from the profile.\n"
  3976. "\n"
  3977. "Click to restore the value of the profile."
  3978. msgstr ""
  3979. "此設定的值與列印參數不同。\n"
  3980. "\n"
  3981. "單擊以復原列印參數的值。"
  3982. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:329
  3983. msgctxt "@label"
  3984. msgid ""
  3985. "This setting is normally calculated, but it currently has an absolute value set.\n"
  3986. "\n"
  3987. "Click to restore the calculated value."
  3988. msgstr ""
  3989. "這個設定通常由計算得出,可是它目前被設定為一個數值。\n"
  3990. "\n"
  3991. "點擊以恢復計算得出的數值。"
  3992. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:27
  3993. msgctxt "@info:tooltip"
  3994. msgid "3D View"
  3995. msgstr "立體圖"
  3996. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:40
  3997. msgctxt "@info:tooltip"
  3998. msgid "Front View"
  3999. msgstr "前視圖"
  4000. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:53
  4001. msgctxt "@info:tooltip"
  4002. msgid "Top View"
  4003. msgstr "上視圖"
  4004. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:66
  4005. msgctxt "@info:tooltip"
  4006. msgid "Left View"
  4007. msgstr "左視圖"
  4008. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:79
  4009. msgctxt "@info:tooltip"
  4010. msgid "Right View"
  4011. msgstr "右視圖"
  4012. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  4013. msgctxt "@label"
  4014. msgid "Extruder"
  4015. msgstr "擠出機"
  4016. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  4017. msgctxt "@tooltip"
  4018. 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."
  4019. msgstr "加熱頭的目標溫度。加熱頭將加熱或冷卻至此溫度。若設定為 0,則關閉加熱頭的加熱。"
  4020. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  4021. msgctxt "@tooltip"
  4022. msgid "The current temperature of this hotend."
  4023. msgstr "此加熱頭的目前溫度。"
  4024. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  4025. msgctxt "@tooltip of temperature input"
  4026. msgid "The temperature to pre-heat the hotend to."
  4027. msgstr "加熱頭預熱溫度。"
  4028. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  4029. msgctxt "@button Cancel pre-heating"
  4030. msgid "Cancel"
  4031. msgstr "取消"
  4032. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  4033. msgctxt "@button"
  4034. msgid "Pre-heat"
  4035. msgstr "預熱"
  4036. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  4037. msgctxt "@tooltip of pre-heat"
  4038. 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."
  4039. msgstr "列印前預先加熱。你可以在加熱時繼續調整你的列印,當你準備好列印時就不需等待加熱頭升溫。"
  4040. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  4041. msgctxt "@tooltip"
  4042. msgid "The colour of the material in this extruder."
  4043. msgstr "該擠出機中線材的顏色。"
  4044. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  4045. msgctxt "@tooltip"
  4046. msgid "The material in this extruder."
  4047. msgstr "該擠出機中的線材。"
  4048. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  4049. msgctxt "@tooltip"
  4050. msgid "The nozzle inserted in this extruder."
  4051. msgstr "該擠出機所使用的噴頭。"
  4052. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  4053. msgctxt "@label"
  4054. msgid "Build plate"
  4055. msgstr "列印平台"
  4056. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  4057. msgctxt "@tooltip"
  4058. 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."
  4059. msgstr "熱床的目標溫度。熱床將加熱或冷卻至此溫度。若設定為 0,則不使用熱床。"
  4060. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4061. msgctxt "@tooltip"
  4062. msgid "The current temperature of the heated bed."
  4063. msgstr "熱床目前溫度。"
  4064. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  4065. msgctxt "@tooltip of temperature input"
  4066. msgid "The temperature to pre-heat the bed to."
  4067. msgstr "熱床的預熱溫度。"
  4068. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  4069. msgctxt "@tooltip of pre-heat"
  4070. 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."
  4071. msgstr "列印前請預熱熱床。你可以在熱床加熱時繼續調整相關物件,讓你在準備列印時不必等待熱床加熱完畢。"
  4072. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  4073. msgctxt "@label"
  4074. msgid "Printer control"
  4075. msgstr "印表機控制"
  4076. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  4077. msgctxt "@label"
  4078. msgid "Jog Position"
  4079. msgstr "輕搖位置"
  4080. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  4081. msgctxt "@label"
  4082. msgid "X/Y"
  4083. msgstr "X/Y"
  4084. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  4085. msgctxt "@label"
  4086. msgid "Z"
  4087. msgstr "Z"
  4088. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4089. msgctxt "@label"
  4090. msgid "Jog Distance"
  4091. msgstr "輕搖距離"
  4092. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  4093. msgctxt "@label"
  4094. msgid "Send G-code"
  4095. msgstr "傳送 G-code"
  4096. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  4097. msgctxt "@tooltip of G-code command input"
  4098. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4099. msgstr "傳送一個自訂的 G-code 命令到連接中的印表機。按下 Enter 鍵傳送命令。"
  4100. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4101. msgctxt "@info:status"
  4102. msgid "The printer is not connected."
  4103. msgstr "尚未連線到印表機。"
  4104. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:114
  4105. msgctxt "@label"
  4106. msgid "Is printed as support."
  4107. msgstr "做為支撐而列印。"
  4108. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:117
  4109. msgctxt "@label"
  4110. msgid "Other models overlapping with this model are modified."
  4111. msgstr "與此模型重疊的其他模型已被更改。"
  4112. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:120
  4113. msgctxt "@label"
  4114. msgid "Infill overlapping with this model is modified."
  4115. msgstr "與此模型重疊的填充已被更改。"
  4116. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:123
  4117. msgctxt "@label"
  4118. msgid "Overlaps with this model are not supported."
  4119. msgstr "與此模型的重疊沒有支撐。"
  4120. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:130
  4121. msgctxt "@label %1 is the number of settings it overrides."
  4122. msgid "Overrides %1 setting."
  4123. msgid_plural "Overrides %1 settings."
  4124. msgstr[0] "覆寫 %1 設定。"
  4125. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  4126. msgctxt "@action:button"
  4127. msgid "Marketplace"
  4128. msgstr "市集"
  4129. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  4130. msgctxt "@title:menu menubar:toplevel"
  4131. msgid "&Edit"
  4132. msgstr "編輯(&E)"
  4133. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
  4134. msgctxt "@title:menu menubar:toplevel"
  4135. msgid "E&xtensions"
  4136. msgstr "擴充功能(&X)"
  4137. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
  4138. msgctxt "@title:menu menubar:toplevel"
  4139. msgid "P&references"
  4140. msgstr "偏好設定(&R)"
  4141. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
  4142. msgctxt "@title:menu menubar:toplevel"
  4143. msgid "&Help"
  4144. msgstr "幫助(&H)"
  4145. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
  4146. msgctxt "@title:window"
  4147. msgid "New project"
  4148. msgstr "新建專案"
  4149. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
  4150. msgctxt "@info:question"
  4151. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4152. msgstr "你確定要開始一個新專案嗎?這將清除列印平台及任何未儲存的設定。"
  4153. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:257
  4154. msgctxt "@label"
  4155. msgid "This package will be installed after restarting."
  4156. msgstr "此套件將在重新啟動後安裝。"
  4157. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:453
  4158. msgctxt "@title:tab"
  4159. msgid "Settings"
  4160. msgstr "設定"
  4161. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:576
  4162. msgctxt "@title:window %1 is the application name"
  4163. msgid "Closing %1"
  4164. msgstr "關閉 %1 中"
  4165. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:577 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:589
  4166. msgctxt "@label %1 is the application name"
  4167. msgid "Are you sure you want to exit %1?"
  4168. msgstr "是否確定要離開 %1 ?"
  4169. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:737
  4170. msgctxt "@window:title"
  4171. msgid "Install Package"
  4172. msgstr "安裝套件"
  4173. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:745
  4174. msgctxt "@title:window"
  4175. msgid "Open File(s)"
  4176. msgstr "開啟檔案"
  4177. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:748
  4178. msgctxt "@text:window"
  4179. 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."
  4180. msgstr "我們已經在你選擇的檔案中找到一個或多個 G-Code 檔案。你一次只能開啟一個 G-Code 檔案。若需開啟 G-Code 檔案,請僅選擇一個。"
  4181. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:857
  4182. msgctxt "@title:window"
  4183. msgid "Add Printer"
  4184. msgstr "新增印表機"
  4185. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:865
  4186. msgctxt "@title:window"
  4187. msgid "What's New"
  4188. msgstr "新功能"
  4189. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4190. msgctxt "@status"
  4191. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  4192. msgstr "雲端印表機為離線狀態。請檢查印表機是否已開機並連上網路。"
  4193. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4194. msgctxt "@status"
  4195. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4196. msgstr "此印表機未連接到你的帳號。請前往 Ultimaker Digital Factory 建立連接。"
  4197. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4198. msgctxt "@status"
  4199. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4200. msgstr "雲端服務目前無法使用。請登入以連接到雲端印表機。"
  4201. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4202. msgctxt "@status"
  4203. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4204. msgstr "雲端服務目前無法使用。請檢查你的網路連線。"
  4205. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
  4206. msgctxt "@button"
  4207. msgid "Add printer"
  4208. msgstr "新增印表機"
  4209. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
  4210. msgctxt "@button"
  4211. msgid "Manage printers"
  4212. msgstr "管理印表機"
  4213. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4214. msgctxt "@label"
  4215. msgid "Connected printers"
  4216. msgstr "已連線印表機"
  4217. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4218. msgctxt "@label"
  4219. msgid "Preset printers"
  4220. msgstr "預設印表機"
  4221. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ExtruderButton.qml:16
  4222. msgctxt "@label %1 is filled in with the name of an extruder"
  4223. msgid "Print Selected Model with %1"
  4224. msgid_plural "Print Selected Models with %1"
  4225. msgstr[0] "用 %1 列印所選模型"
  4226. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  4227. msgctxt "@label"
  4228. msgid "Time estimation"
  4229. msgstr "時間估計"
  4230. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  4231. msgctxt "@label"
  4232. msgid "Material estimation"
  4233. msgstr "線材估計"
  4234. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  4235. msgctxt "@label m for meter"
  4236. msgid "%1m"
  4237. msgstr "%1m"
  4238. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  4239. msgctxt "@label g for grams"
  4240. msgid "%1g"
  4241. msgstr "%1g"
  4242. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  4243. msgctxt "@label:PrintjobStatus"
  4244. msgid "Slicing..."
  4245. msgstr "正在切片..."
  4246. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
  4247. msgctxt "@label:PrintjobStatus"
  4248. msgid "Unable to slice"
  4249. msgstr "無法切片"
  4250. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  4251. msgctxt "@button"
  4252. msgid "Processing"
  4253. msgstr "處理中"
  4254. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  4255. msgctxt "@button"
  4256. msgid "Slice"
  4257. msgstr "切片"
  4258. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
  4259. msgctxt "@label"
  4260. msgid "Start the slicing process"
  4261. msgstr "開始切片程序"
  4262. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
  4263. msgctxt "@button"
  4264. msgid "Cancel"
  4265. msgstr "取消"
  4266. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  4267. msgctxt "@label"
  4268. msgid "No time estimation available"
  4269. msgstr "沒有時間估計"
  4270. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  4271. msgctxt "@label"
  4272. msgid "No cost estimation available"
  4273. msgstr "沒有成本估算"
  4274. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  4275. msgctxt "@button"
  4276. msgid "Preview"
  4277. msgstr "預覽"
  4278. #: RemovableDriveOutputDevice/plugin.json
  4279. msgctxt "description"
  4280. msgid "Provides removable drive hotplugging and writing support."
  4281. msgstr "提供行動裝置熱插拔和寫入檔案的支援。"
  4282. #: RemovableDriveOutputDevice/plugin.json
  4283. msgctxt "name"
  4284. msgid "Removable Drive Output Device Plugin"
  4285. msgstr "行動裝置輸出設備外掛"
  4286. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4287. msgctxt "description"
  4288. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4289. msgstr "將設定從 Cura 3.5 版本升級至 4.0 版本。"
  4290. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4291. msgctxt "name"
  4292. msgid "Version Upgrade 3.5 to 4.0"
  4293. msgstr "升級版本 3.5 到 4.0"
  4294. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4295. msgctxt "description"
  4296. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4297. msgstr "將設定從 Cura 4.6.2 版本升級至 4.7 版本。"
  4298. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4299. msgctxt "name"
  4300. msgid "Version Upgrade 4.6.2 to 4.7"
  4301. msgstr "升級版本 4.6.2 到 4.7"
  4302. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4303. msgctxt "description"
  4304. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4305. msgstr "將設定從 Cura 2.2 版本升級至 2.4 版本。"
  4306. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4307. msgctxt "name"
  4308. msgid "Version Upgrade 2.2 to 2.4"
  4309. msgstr "升級版本 2.2 到 2.4"
  4310. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4311. msgctxt "description"
  4312. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4313. msgstr "將設定從 Cura 4.2 版本升級至 4.3 版本。"
  4314. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4315. msgctxt "name"
  4316. msgid "Version Upgrade 4.2 to 4.3"
  4317. msgstr "升級版本 4.2 到 4.3"
  4318. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4319. msgctxt "description"
  4320. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  4321. msgstr "將設定從 Cura 4.6.0 版本升級至 4.6.2 版本。"
  4322. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4323. msgctxt "name"
  4324. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4325. msgstr "升級版本 4.6.0 到 4.6.2"
  4326. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4327. msgctxt "description"
  4328. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4329. msgstr "將設定從 Cura 3.0 版本升級至 3.1 版本。"
  4330. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4331. msgctxt "name"
  4332. msgid "Version Upgrade 3.0 to 3.1"
  4333. msgstr "升級版本 3.0 到 3.1"
  4334. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4335. msgctxt "description"
  4336. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4337. msgstr "將設定從 Cura 4.0 版本升級至 4.1 版本。"
  4338. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4339. msgctxt "name"
  4340. msgid "Version Upgrade 4.0 to 4.1"
  4341. msgstr "升級版本 4.0 到 4.1"
  4342. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4343. msgctxt "description"
  4344. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4345. msgstr "將設定從 Cura 2.6 版本升級至 2.7 版本。"
  4346. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4347. msgctxt "name"
  4348. msgid "Version Upgrade 2.6 to 2.7"
  4349. msgstr "升級版本 2.6 到 2.7"
  4350. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4351. msgctxt "description"
  4352. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4353. msgstr "將設定從 Cura 2.5 版本升級至 2.6 版本。"
  4354. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4355. msgctxt "name"
  4356. msgid "Version Upgrade 2.5 to 2.6"
  4357. msgstr "升級版本 2.5 到 2.6"
  4358. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4359. msgctxt "description"
  4360. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4361. msgstr "將設定從 Cura 4.1 版本升級至 4.2 版本。"
  4362. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4363. msgctxt "name"
  4364. msgid "Version Upgrade 4.1 to 4.2"
  4365. msgstr "升級版本 4.1 到 4.2"
  4366. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4367. msgctxt "description"
  4368. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4369. msgstr "將設定從 Cura 2.1 版本升級至 2.2 版本。"
  4370. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4371. msgctxt "name"
  4372. msgid "Version Upgrade 2.1 to 2.2"
  4373. msgstr "升級版本 2.1 到 2.2"
  4374. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4375. msgctxt "description"
  4376. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4377. msgstr "將設定從 Cura 3.2 版本升級至 3.3 版本。"
  4378. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4379. msgctxt "name"
  4380. msgid "Version Upgrade 3.2 to 3.3"
  4381. msgstr "升級版本 3.2 到 3.3"
  4382. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4383. msgctxt "description"
  4384. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4385. msgstr "將設定從 Cura 4.5 版本升級至 4.6 版本。"
  4386. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4387. msgctxt "name"
  4388. msgid "Version Upgrade 4.5 to 4.6"
  4389. msgstr "升級版本 4.5 到 4.6"
  4390. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4391. msgctxt "description"
  4392. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4393. msgstr "將設定從 Cura 4.4 版本升級至 4.5 版本。"
  4394. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4395. msgctxt "name"
  4396. msgid "Version Upgrade 4.4 to 4.5"
  4397. msgstr "升級版本 4.4 到 4.5"
  4398. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4399. msgctxt "description"
  4400. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  4401. msgstr "將設定從 Cura 4.7 版本升級至 4.8 版本。"
  4402. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4403. msgctxt "name"
  4404. msgid "Version Upgrade 4.7 to 4.8"
  4405. msgstr "升級版本 4.7 到 4.8"
  4406. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4407. msgctxt "description"
  4408. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4409. msgstr "將設定從 Cura 3.3 版本升級至 3.4 版本。"
  4410. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4411. msgctxt "name"
  4412. msgid "Version Upgrade 3.3 to 3.4"
  4413. msgstr "升級版本 3.3 到 3.4"
  4414. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4415. msgctxt "description"
  4416. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4417. msgstr "將設定從 Cura 4.3 版本升級至 4.4 版本。"
  4418. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4419. msgctxt "name"
  4420. msgid "Version Upgrade 4.3 to 4.4"
  4421. msgstr "升級版本 4.3 到 4.4"
  4422. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4423. msgctxt "description"
  4424. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4425. msgstr "將設定從 Cura 3.4 版本升級至 3.5 版本。"
  4426. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4427. msgctxt "name"
  4428. msgid "Version Upgrade 3.4 to 3.5"
  4429. msgstr "升級版本 3.4 到 3.5"
  4430. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4431. msgctxt "description"
  4432. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4433. msgstr "將設定從 Cura 2.7 版本升級至 3.0 版本。"
  4434. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4435. msgctxt "name"
  4436. msgid "Version Upgrade 2.7 to 3.0"
  4437. msgstr "升級版本 2.7 到 3.0"
  4438. #: AMFReader/plugin.json
  4439. msgctxt "description"
  4440. msgid "Provides support for reading AMF files."
  4441. msgstr "提供對讀取 AMF 格式檔案的支援。"
  4442. #: AMFReader/plugin.json
  4443. msgctxt "name"
  4444. msgid "AMF Reader"
  4445. msgstr "AMF 讀取器"
  4446. #: GCodeProfileReader/plugin.json
  4447. msgctxt "description"
  4448. msgid "Provides support for importing profiles from g-code files."
  4449. msgstr "提供匯入 G-code 檔案中列印參數的支援。"
  4450. #: GCodeProfileReader/plugin.json
  4451. msgctxt "name"
  4452. msgid "G-code Profile Reader"
  4453. msgstr "G-code 列印參數讀取器"
  4454. #: FirmwareUpdater/plugin.json
  4455. msgctxt "description"
  4456. msgid "Provides a machine actions for updating firmware."
  4457. msgstr "提供升級韌體用的機器操作。"
  4458. #: FirmwareUpdater/plugin.json
  4459. msgctxt "name"
  4460. msgid "Firmware Updater"
  4461. msgstr "韌體更新器"
  4462. #: X3DReader/plugin.json
  4463. msgctxt "description"
  4464. msgid "Provides support for reading X3D files."
  4465. msgstr "提供讀取 X3D 檔案的支援。"
  4466. #: X3DReader/plugin.json
  4467. msgctxt "name"
  4468. msgid "X3D Reader"
  4469. msgstr "X3D 讀取器"
  4470. #: Toolbox/plugin.json
  4471. msgctxt "description"
  4472. msgid "Find, manage and install new Cura packages."
  4473. msgstr "查詢,管理和安裝新的 Cura 套件。"
  4474. #: Toolbox/plugin.json
  4475. msgctxt "name"
  4476. msgid "Toolbox"
  4477. msgstr "工具箱"
  4478. #: PerObjectSettingsTool/plugin.json
  4479. msgctxt "description"
  4480. msgid "Provides the Per Model Settings."
  4481. msgstr "提供對每個模型的單獨設定。"
  4482. #: PerObjectSettingsTool/plugin.json
  4483. msgctxt "name"
  4484. msgid "Per Model Settings Tool"
  4485. msgstr "單一模型設定工具"
  4486. #: PostProcessingPlugin/plugin.json
  4487. msgctxt "description"
  4488. msgid "Extension that allows for user created scripts for post processing"
  4489. msgstr "擴充程式(允許用戶建立腳本進行後處理)"
  4490. #: PostProcessingPlugin/plugin.json
  4491. msgctxt "name"
  4492. msgid "Post Processing"
  4493. msgstr "後處理"
  4494. #: CuraEngineBackend/plugin.json
  4495. msgctxt "description"
  4496. msgid "Provides the link to the CuraEngine slicing backend."
  4497. msgstr "提供連結到 Cura 切片引擎後台。"
  4498. #: CuraEngineBackend/plugin.json
  4499. msgctxt "name"
  4500. msgid "CuraEngine Backend"
  4501. msgstr "Cura 引擎後台"
  4502. #: USBPrinting/plugin.json
  4503. msgctxt "description"
  4504. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4505. msgstr "接受 G-Code 並且傳送到印表機。此外掛也可以更新韌體。"
  4506. #: USBPrinting/plugin.json
  4507. msgctxt "name"
  4508. msgid "USB printing"
  4509. msgstr "USB 連線列印"
  4510. #: CuraProfileWriter/plugin.json
  4511. msgctxt "description"
  4512. msgid "Provides support for exporting Cura profiles."
  4513. msgstr "提供匯出 Cura 列印參數的支援。"
  4514. #: CuraProfileWriter/plugin.json
  4515. msgctxt "name"
  4516. msgid "Cura Profile Writer"
  4517. msgstr "Cura 列印參數寫入器"
  4518. #: UM3NetworkPrinting/plugin.json
  4519. msgctxt "description"
  4520. msgid "Manages network connections to Ultimaker networked printers."
  4521. msgstr "管理與 Ultimaker 網絡印表機的網絡連線。"
  4522. #: UM3NetworkPrinting/plugin.json
  4523. msgctxt "name"
  4524. msgid "Ultimaker Network Connection"
  4525. msgstr "Ultimaker 網絡連線"
  4526. #: UltimakerMachineActions/plugin.json
  4527. msgctxt "description"
  4528. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4529. msgstr "提供 Ultimaker 機器的操作(例如平台調平精靈,選擇升級等)。"
  4530. #: UltimakerMachineActions/plugin.json
  4531. msgctxt "name"
  4532. msgid "Ultimaker machine actions"
  4533. msgstr "Ultimaker 印表機操作"
  4534. #: 3MFReader/plugin.json
  4535. msgctxt "description"
  4536. msgid "Provides support for reading 3MF files."
  4537. msgstr "提供讀取 3MF 格式檔案的支援。"
  4538. #: 3MFReader/plugin.json
  4539. msgctxt "name"
  4540. msgid "3MF Reader"
  4541. msgstr "3MF 讀取器"
  4542. #: GCodeGzWriter/plugin.json
  4543. msgctxt "description"
  4544. msgid "Writes g-code to a compressed archive."
  4545. msgstr "將 G-code 寫入壓縮檔案。"
  4546. #: GCodeGzWriter/plugin.json
  4547. msgctxt "name"
  4548. msgid "Compressed G-code Writer"
  4549. msgstr "壓縮檔案 G-code 寫入器"
  4550. #: GCodeGzReader/plugin.json
  4551. msgctxt "description"
  4552. msgid "Reads g-code from a compressed archive."
  4553. msgstr "從一個壓縮檔案中讀取 G-code。"
  4554. #: GCodeGzReader/plugin.json
  4555. msgctxt "name"
  4556. msgid "Compressed G-code Reader"
  4557. msgstr "壓縮檔案 G-code 讀取器"
  4558. #: ModelChecker/plugin.json
  4559. msgctxt "description"
  4560. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4561. msgstr "檢查模型和列印設定以了解可能發生的問題並給出建議。"
  4562. #: ModelChecker/plugin.json
  4563. msgctxt "name"
  4564. msgid "Model Checker"
  4565. msgstr "模器檢查器"
  4566. #: FirmwareUpdateChecker/plugin.json
  4567. msgctxt "description"
  4568. msgid "Checks for firmware updates."
  4569. msgstr "檢查是否有韌體更新。"
  4570. #: FirmwareUpdateChecker/plugin.json
  4571. msgctxt "name"
  4572. msgid "Firmware Update Checker"
  4573. msgstr "韌體更新檢查"
  4574. #: GCodeReader/plugin.json
  4575. msgctxt "description"
  4576. msgid "Allows loading and displaying G-code files."
  4577. msgstr "允許載入和顯示 G-code 檔案。"
  4578. #: GCodeReader/plugin.json
  4579. msgctxt "name"
  4580. msgid "G-code Reader"
  4581. msgstr "G-code 讀取器"
  4582. #: SupportEraser/plugin.json
  4583. msgctxt "description"
  4584. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4585. msgstr "建立一個抹除器網格放在某些地方用來防止列印支撐"
  4586. #: SupportEraser/plugin.json
  4587. msgctxt "name"
  4588. msgid "Support Eraser"
  4589. msgstr "支援抹除器"
  4590. #: TrimeshReader/plugin.json
  4591. msgctxt "description"
  4592. msgid "Provides support for reading model files."
  4593. msgstr "提供讀取模型檔案的支援。"
  4594. #: TrimeshReader/plugin.json
  4595. msgctxt "name"
  4596. msgid "Trimesh Reader"
  4597. msgstr "Trimesh 讀取器"
  4598. #: SentryLogger/plugin.json
  4599. msgctxt "description"
  4600. msgid "Logs certain events so that they can be used by the crash reporter"
  4601. msgstr "記錄某些事件以便在錯誤報告中使用"
  4602. #: SentryLogger/plugin.json
  4603. msgctxt "name"
  4604. msgid "Sentry Logger"
  4605. msgstr "哨兵記錄器"
  4606. #: UFPReader/plugin.json
  4607. msgctxt "description"
  4608. msgid "Provides support for reading Ultimaker Format Packages."
  4609. msgstr "提供讀取 Ultimaker 格式封包的支援。"
  4610. #: UFPReader/plugin.json
  4611. msgctxt "name"
  4612. msgid "UFP Reader"
  4613. msgstr "UFP 讀取器"
  4614. #: LegacyProfileReader/plugin.json
  4615. msgctxt "description"
  4616. msgid "Provides support for importing profiles from legacy Cura versions."
  4617. msgstr "提供匯入 Cura 舊版本列印參數的支援。"
  4618. #: LegacyProfileReader/plugin.json
  4619. msgctxt "name"
  4620. msgid "Legacy Cura Profile Reader"
  4621. msgstr "舊版 Cura 列印參數讀取器"
  4622. #: PrepareStage/plugin.json
  4623. msgctxt "description"
  4624. msgid "Provides a prepare stage in Cura."
  4625. msgstr "在 cura 提供一個準備介面。"
  4626. #: PrepareStage/plugin.json
  4627. msgctxt "name"
  4628. msgid "Prepare Stage"
  4629. msgstr "準備介面"
  4630. #: MonitorStage/plugin.json
  4631. msgctxt "description"
  4632. msgid "Provides a monitor stage in Cura."
  4633. msgstr "在 cura 提供一個監控介面。"
  4634. #: MonitorStage/plugin.json
  4635. msgctxt "name"
  4636. msgid "Monitor Stage"
  4637. msgstr "監控介面"
  4638. #: XRayView/plugin.json
  4639. msgctxt "description"
  4640. msgid "Provides the X-Ray view."
  4641. msgstr "提供透視檢視。"
  4642. #: XRayView/plugin.json
  4643. msgctxt "name"
  4644. msgid "X-Ray View"
  4645. msgstr "透視檢視"
  4646. #: 3MFWriter/plugin.json
  4647. msgctxt "description"
  4648. msgid "Provides support for writing 3MF files."
  4649. msgstr "提供寫入 3MF 檔案的支援。"
  4650. #: 3MFWriter/plugin.json
  4651. msgctxt "name"
  4652. msgid "3MF Writer"
  4653. msgstr "3MF 寫入器"
  4654. #: SliceInfoPlugin/plugin.json
  4655. msgctxt "description"
  4656. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4657. msgstr "提交匿名切片資訊。這項功能可以在偏好設定中關閉。"
  4658. #: SliceInfoPlugin/plugin.json
  4659. msgctxt "name"
  4660. msgid "Slice info"
  4661. msgstr "切片資訊"
  4662. #: PreviewStage/plugin.json
  4663. msgctxt "description"
  4664. msgid "Provides a preview stage in Cura."
  4665. msgstr "在 Cura 提供一個預覽介面。"
  4666. #: PreviewStage/plugin.json
  4667. msgctxt "name"
  4668. msgid "Preview Stage"
  4669. msgstr "預覽介面"
  4670. #: SimulationView/plugin.json
  4671. msgctxt "description"
  4672. msgid "Provides the Simulation view."
  4673. msgstr "提供模擬檢視。"
  4674. #: SimulationView/plugin.json
  4675. msgctxt "name"
  4676. msgid "Simulation View"
  4677. msgstr "模擬檢視"
  4678. #: MachineSettingsAction/plugin.json
  4679. msgctxt "description"
  4680. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4681. msgstr "提供更改機器設定的方法(如列印範圍,噴頭大小等)。"
  4682. #: MachineSettingsAction/plugin.json
  4683. msgctxt "name"
  4684. msgid "Machine Settings Action"
  4685. msgstr "印表機設定操作"
  4686. #: XmlMaterialProfile/plugin.json
  4687. msgctxt "description"
  4688. msgid "Provides capabilities to read and write XML-based material profiles."
  4689. msgstr "提供讀寫 XML 格式線材參數的功能。"
  4690. #: XmlMaterialProfile/plugin.json
  4691. msgctxt "name"
  4692. msgid "Material Profiles"
  4693. msgstr "線材參數"
  4694. #: SolidView/plugin.json
  4695. msgctxt "description"
  4696. msgid "Provides a normal solid mesh view."
  4697. msgstr "提供一個基本的實體網格檢視。"
  4698. #: SolidView/plugin.json
  4699. msgctxt "name"
  4700. msgid "Solid View"
  4701. msgstr "實體檢視"
  4702. #: CuraProfileReader/plugin.json
  4703. msgctxt "description"
  4704. msgid "Provides support for importing Cura profiles."
  4705. msgstr "提供匯入 Cura 列印參數的支援。"
  4706. #: CuraProfileReader/plugin.json
  4707. msgctxt "name"
  4708. msgid "Cura Profile Reader"
  4709. msgstr "Cura 列印參數讀取器"
  4710. #: UFPWriter/plugin.json
  4711. msgctxt "description"
  4712. msgid "Provides support for writing Ultimaker Format Packages."
  4713. msgstr "提供寫入 Ultimaker 格式封包的支援。"
  4714. #: UFPWriter/plugin.json
  4715. msgctxt "name"
  4716. msgid "UFP Writer"
  4717. msgstr "UFP 寫入器"
  4718. #: GCodeWriter/plugin.json
  4719. msgctxt "description"
  4720. msgid "Writes g-code to a file."
  4721. msgstr "將 G-code 寫入檔案。"
  4722. #: GCodeWriter/plugin.json
  4723. msgctxt "name"
  4724. msgid "G-code Writer"
  4725. msgstr "G-code 寫入器"
  4726. #: ImageReader/plugin.json
  4727. msgctxt "description"
  4728. msgid "Enables ability to generate printable geometry from 2D image files."
  4729. msgstr "支援從 2D 圖片檔案產生可列印 3D 模型的能力。"
  4730. #: ImageReader/plugin.json
  4731. msgctxt "name"
  4732. msgid "Image Reader"
  4733. msgstr "圖片讀取器"
  4734. #: CuraDrive/plugin.json
  4735. msgctxt "description"
  4736. msgid "Backup and restore your configuration."
  4737. msgstr "備份和復原你的設定。"
  4738. #: CuraDrive/plugin.json
  4739. msgctxt "name"
  4740. msgid "Cura Backups"
  4741. msgstr "Cura 備份"
  4742. #~ msgctxt "@info:status"
  4743. #~ msgid "Global stack is missing."
  4744. #~ msgstr "全域堆疊遺失。"
  4745. #~ msgctxt "@info:status"
  4746. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  4747. #~ msgstr "模型沒有封閉,標示的區域有缺少或多餘的表面。"
  4748. #~ msgctxt "@info:title"
  4749. #~ msgid "Model errors"
  4750. #~ msgstr "模型錯誤"
  4751. #~ msgctxt "@label:listbox"
  4752. #~ msgid "Layer thickness"
  4753. #~ msgstr "層厚"
  4754. #~ msgctxt "@label"
  4755. #~ msgid "Your key to connected 3D printing"
  4756. #~ msgstr "連線 3D 列印的金鑰"
  4757. #~ msgctxt "@text"
  4758. #~ msgid ""
  4759. #~ "- Customize your experience with more print profiles and plugins\n"
  4760. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  4761. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  4762. #~ msgstr ""
  4763. #~ "- 使用更多的列印參數設定和外掛訂做你的使用體驗\n"
  4764. #~ "- 通過同步設定可在任何地方將其載入以保持靈活性\n"
  4765. #~ "- 透過 Ultimaker 印表機上的遠端工作流程提高效率"
  4766. #~ msgctxt "@button"
  4767. #~ msgid "Create account"
  4768. #~ msgstr "建立帳號"
  4769. #~ msgctxt "@action:inmenu menubar:edit"
  4770. #~ msgid "Delete Selected Model"
  4771. #~ msgid_plural "Delete Selected Models"
  4772. #~ msgstr[0] "刪除所選模型"
  4773. #~ msgctxt "@action:inmenu menubar:edit"
  4774. #~ msgid "Center Selected Model"
  4775. #~ msgid_plural "Center Selected Models"
  4776. #~ msgstr[0] "置中所選模型"
  4777. #~ msgctxt "@action:inmenu menubar:edit"
  4778. #~ msgid "Multiply Selected Model"
  4779. #~ msgid_plural "Multiply Selected Models"
  4780. #~ msgstr[0] "複製所選模型"
  4781. #~ msgctxt "@button"
  4782. #~ msgid "Finish"
  4783. #~ msgstr "完成"
  4784. #~ msgctxt "@label"
  4785. #~ msgid "Ultimaker Account"
  4786. #~ msgstr "Ultimaker 帳號"
  4787. #~ msgctxt "@text"
  4788. #~ msgid "Your key to connected 3D printing"
  4789. #~ msgstr "連線 3D 列印的金鑰"
  4790. #~ msgctxt "@text"
  4791. #~ msgid "- Customize your experience with more print profiles and plugins"
  4792. #~ msgstr "- 使用更多的列印參數設定和外掛訂做你的使用體驗"
  4793. #~ msgctxt "@text"
  4794. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  4795. #~ msgstr "- 通過同步設定可在任何地方將其載入以保持靈活性"
  4796. #~ msgctxt "@text"
  4797. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  4798. #~ msgstr "- 透過 Ultimaker 印表機上的遠端工作流程提高效率"
  4799. #~ msgctxt "@text"
  4800. #~ msgid ""
  4801. #~ "Please follow these steps to set up\n"
  4802. #~ "Ultimaker Cura. This will only take a few moments."
  4803. #~ msgstr ""
  4804. #~ "請按照以下步驟進行設定\n"
  4805. #~ "Ultimaker Cura。這只需要一點時間。"
  4806. #~ msgctxt "@label"
  4807. #~ msgid "What's new in Ultimaker Cura"
  4808. #~ msgstr "Ultimaker Cura 新功能"
  4809. #~ msgctxt "@label ({} is object name)"
  4810. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  4811. #~ msgstr "你確認要移除 {}?此動作無法復原!"
  4812. #~ msgctxt "@info:status"
  4813. #~ msgid "The selected model was too small to load."
  4814. #~ msgstr "選擇的模型太小無法載入。"
  4815. #~ msgctxt "@info:status"
  4816. #~ msgid "Successfully imported profile {0}"
  4817. #~ msgstr "已成功匯入列印參數 {0}"
  4818. #~ msgctxt "@info:status"
  4819. #~ msgid "Could not find a quality type {0} for the current configuration."
  4820. #~ msgstr "無法為目前設定找到品質類型 {0}。"
  4821. #~ msgctxt "info:status"
  4822. #~ msgid "Adding printer {} ({}) from your account"
  4823. #~ msgstr "從你的帳號新增印表機 {} ({})"
  4824. #~ msgctxt "info:hidden list items"
  4825. #~ msgid "<li>... and {} others</li>"
  4826. #~ msgstr "<li>... 和 {} 其他</li>"
  4827. #~ msgctxt "info:status"
  4828. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  4829. #~ msgstr "從 Digital Factory 新增印表機:<ul>{}</ul>"
  4830. #~ msgctxt "info:status"
  4831. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  4832. #~ msgstr "<ul>{}</ul>要建立連線,請前往 <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>。"
  4833. #~ msgctxt "@label ({} is printer name)"
  4834. #~ 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?"
  4835. #~ msgstr "直到下次帳號同步前 {} 將被移除。<br>要永久移除 {},請前往 <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>。<br><br>你確定要暫時移除 {} 嗎?"
  4836. #~ msgctxt "@label"
  4837. #~ msgid ""
  4838. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  4839. #~ "Are you sure you want to continue?"
  4840. #~ msgstr ""
  4841. #~ "你將從 Cura 移除 {} 印表機。此動作無法復原。\n"
  4842. #~ "你確定要繼續嗎?"
  4843. #~ msgctxt "@label"
  4844. #~ msgid ""
  4845. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  4846. #~ "Are you sure you want to continue?"
  4847. #~ msgstr ""
  4848. #~ "你將從 Cura 移除所有印表機。此動作無法復原。\n"
  4849. #~ "你確定要繼續嗎?"
  4850. #~ msgctxt "@action:ComboBox option"
  4851. #~ msgid "Update"
  4852. #~ msgstr "更新"
  4853. #~ msgctxt "@action:ComboBox option"
  4854. #~ msgid "Create new"
  4855. #~ msgstr "新建"
  4856. #~ msgctxt "@label"
  4857. #~ msgid "Shared Heater"
  4858. #~ msgstr "共用加熱器"
  4859. #~ msgctxt "@info"
  4860. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  4861. #~ msgstr "由於你正在監控一台雲端印表機,因此無法使用網路攝影機。"
  4862. #~ msgctxt "@button"
  4863. #~ msgid "Ultimaker Digital Factory"
  4864. #~ msgstr "Ultimaker Digital Factory"
  4865. #~ msgctxt "@text:window, %1 is a profile name"
  4866. #~ msgid ""
  4867. #~ "You have customized some profile settings.\n"
  4868. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  4869. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  4870. #~ msgstr ""
  4871. #~ "你修改了一些參數設定。\n"
  4872. #~ "你要在切換參數後保留這些更動?\n"
  4873. #~ "或者你也可以忽略這些更動,從 '%1' 載入預設值。"
  4874. #~ msgctxt "@label"
  4875. #~ msgid "Overrides %1 setting."
  4876. #~ msgid_plural "Overrides %1 settings."
  4877. #~ msgstr[0] "覆寫 %1 設定。"
  4878. #~ msgctxt "@text"
  4879. #~ msgid "Please give your printer a name"
  4880. #~ msgstr "請為你的印表機取一個名稱"
  4881. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  4882. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  4883. #~ msgstr "你的 {machine_name} 有新功能可用!建議更新印表機韌體。"
  4884. #~ msgctxt "@action:button"
  4885. #~ msgid "Print via Cloud"
  4886. #~ msgstr "透過雲端服務列印"
  4887. #~ msgctxt "@properties:tooltip"
  4888. #~ msgid "Print via Cloud"
  4889. #~ msgstr "透過雲端服務列印"
  4890. #~ msgctxt "@info:status"
  4891. #~ msgid "Connected via Cloud"
  4892. #~ msgstr "透過雲端服務連接"
  4893. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  4894. #~ msgid "Connect to Ultimaker Cloud"
  4895. #~ msgstr "連接到 Ultimaker Cloud"
  4896. #~ msgctxt "@label"
  4897. #~ msgid "You need to login first before you can rate"
  4898. #~ msgstr "你需要先登入才能進行評分"
  4899. #~ msgctxt "@label"
  4900. #~ msgid "You need to install the package before you can rate"
  4901. #~ msgstr "你需要先安裝套件才能進行評分"
  4902. #~ msgctxt "@label"
  4903. #~ msgid "ratings"
  4904. #~ msgstr "評分"
  4905. #~ msgctxt "@label"
  4906. #~ msgid "Featured"
  4907. #~ msgstr "精選"
  4908. #~ msgctxt "@label"
  4909. #~ msgid "Your rating"
  4910. #~ msgstr "你的評分"
  4911. #~ msgctxt "@label"
  4912. #~ msgid "Author"
  4913. #~ msgstr "作者"
  4914. #~ msgctxt "@description"
  4915. #~ msgid "Get plugins and materials verified by Ultimaker"
  4916. #~ msgstr "取得經 Ultimaker 驗証過的外掛和耗材"
  4917. #~ msgctxt "@label The argument is a username."
  4918. #~ msgid "Hi %1"
  4919. #~ msgstr "嗨 %1"
  4920. #~ msgctxt "@button"
  4921. #~ msgid "Ultimaker account"
  4922. #~ msgstr "Ultimaker 帳號"
  4923. #~ msgctxt "@button"
  4924. #~ msgid "Sign out"
  4925. #~ msgstr "登出"
  4926. #~ msgctxt "@label"
  4927. #~ msgid "Support library for analysis of complex networks"
  4928. #~ msgstr "用於分析複雜網路的函式庫"
  4929. #~ msgctxt "@Label"
  4930. #~ msgid "Python HTTP library"
  4931. #~ msgstr "Python HTTP 函式庫"
  4932. #~ msgctxt "@text:window"
  4933. #~ msgid ""
  4934. #~ "You have customized some profile settings.\n"
  4935. #~ "Would you like to keep or discard those settings?"
  4936. #~ msgstr ""
  4937. #~ "你已自訂部份列印參數設定。\n"
  4938. #~ "你想保留或捨棄這些設定嗎?"
  4939. #~ msgctxt "@title:column"
  4940. #~ msgid "Default"
  4941. #~ msgstr "預設"
  4942. #~ msgctxt "@title:column"
  4943. #~ msgid "Customized"
  4944. #~ msgstr "自訂"
  4945. #~ msgctxt "@action:button"
  4946. #~ msgid "Discard"
  4947. #~ msgstr "捨棄"
  4948. #~ msgctxt "@action:button"
  4949. #~ msgid "Keep"
  4950. #~ msgstr "保留"
  4951. #~ msgctxt "@action:button"
  4952. #~ msgid "Create New Profile"
  4953. #~ msgstr "建立新的列印參數"
  4954. #~ msgctxt "@title:menu menubar:file"
  4955. #~ msgid "&Save..."
  4956. #~ msgstr "儲存(&S)"
  4957. #~ msgctxt "@text"
  4958. #~ msgid "Place enter your printer's IP address."
  4959. #~ msgstr "輸入印表機的 IP 地址。"
  4960. #~ msgctxt "@button"
  4961. #~ msgid "Create an account"
  4962. #~ msgstr "建立帳號"
  4963. #~ msgctxt "@info:generic"
  4964. #~ msgid ""
  4965. #~ "\n"
  4966. #~ "Do you want to sync material and software packages with your account?"
  4967. #~ msgstr ""
  4968. #~ "\n"
  4969. #~ "你要使用 Ultimaker 帳號同步耗材資料和軟體套件嗎?"
  4970. #~ msgctxt "@info:generic"
  4971. #~ msgid ""
  4972. #~ "\n"
  4973. #~ "Syncing..."
  4974. #~ msgstr ""
  4975. #~ "\n"
  4976. #~ "同步中..."
  4977. #~ msgctxt "@info:status"
  4978. #~ 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."
  4979. #~ msgstr "因沒有模型符合列印範圍或是被分配到停用的擠出機,無模型可進行切片。請縮放或旋轉模型以符合列印範圍,或是啟用擠出機。"
  4980. #~ msgctxt "@info:backup_status"
  4981. #~ msgid "There was an error listing your backups."
  4982. #~ msgstr "列出備份時發生錯誤。"
  4983. #~ msgctxt "@title:groupbox"
  4984. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  4985. #~ msgstr "使用者描述(注意:開發人員可能不會說您的語言,請盡可能使用英語)"
  4986. #~ msgctxt "@title:window"
  4987. #~ msgid "Closing Cura"
  4988. #~ msgstr "關閉 Cura 中"
  4989. #~ msgctxt "@label"
  4990. #~ msgid "Are you sure you want to exit Cura?"
  4991. #~ msgstr "你確定要結束 Cura 嗎?"
  4992. #~ msgctxt "@label"
  4993. #~ msgid "Language:"
  4994. #~ msgstr "語言:"
  4995. #~ msgctxt "@label"
  4996. #~ msgid "Ultimaker Cloud"
  4997. #~ msgstr "Ultimaker Cloud"
  4998. #~ msgctxt "@text"
  4999. #~ msgid "The next generation 3D printing workflow"
  5000. #~ msgstr "下一世代的 3D 列印流程"
  5001. #~ msgctxt "@text"
  5002. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5003. #~ msgstr "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機"
  5004. #~ msgctxt "@text"
  5005. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5006. #~ msgstr "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用"
  5007. #~ msgctxt "@text"
  5008. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5009. #~ msgstr "- 取得領導品牌的耗材參數設定的獨家存取權限"
  5010. #~ msgctxt "@label"
  5011. #~ msgid "The value is resolved from per-extruder values "
  5012. #~ msgstr "這個數值是由每個擠出機的設定值解析出來的 "
  5013. #~ msgctxt "@label"
  5014. #~ msgid "The next generation 3D printing workflow"
  5015. #~ msgstr "下一世代的 3D 列印流程"
  5016. #~ msgctxt "@text"
  5017. #~ msgid ""
  5018. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5019. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5020. #~ "- Get exclusive access to print profiles from leading brands"
  5021. #~ msgstr ""
  5022. #~ "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機\n"
  5023. #~ "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用\n"
  5024. #~ "- 取得領導品牌的耗材參數設定的獨家存取權限"
  5025. #~ msgctxt "@title:window"
  5026. #~ msgid "About "
  5027. #~ msgstr "關於 "
  5028. #~ msgctxt "@info:button"
  5029. #~ msgid "Quit Cura"
  5030. #~ msgstr "結束 Cura"
  5031. #~ msgctxt "@action:checkbox"
  5032. #~ msgid "Infill only"
  5033. #~ msgstr "只有填充"
  5034. #~ msgctxt "@info:tooltip"
  5035. #~ msgid "Change active post-processing scripts"
  5036. #~ msgstr "更改目前啟用的後處理腳本"
  5037. #~ msgctxt "@label:listbox"
  5038. #~ msgid "Feedrate"
  5039. #~ msgstr "進給率"
  5040. #~ msgctxt "name"
  5041. #~ msgid "Machine Settings action"
  5042. #~ msgstr "印表機設定操作"
  5043. #~ msgctxt "@info:title"
  5044. #~ msgid "New cloud printers found"
  5045. #~ msgstr "找到新的雲端印表機"
  5046. #~ msgctxt "@info:message"
  5047. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5048. #~ msgstr "新找到的印表機已連接到你的帳戶,你可以在已發現的印表機清單中找到它們。"
  5049. #~ msgctxt "@info:status"
  5050. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5051. #~ msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層(Layers)"
  5052. #~ msgctxt "@label"
  5053. #~ msgid "Pre-sliced file {0}"
  5054. #~ msgstr "預切片檔案 {0}"
  5055. #~ msgctxt "@label"
  5056. #~ msgid ""
  5057. #~ "This plugin contains a license.\n"
  5058. #~ "You need to accept this license to install this plugin.\n"
  5059. #~ "Do you agree with the terms below?"
  5060. #~ msgstr ""
  5061. #~ "外掛內含一份授權協議。\n"
  5062. #~ "你必需同意此份授權協議才能安裝此外掛。\n"
  5063. #~ "是否同意下列條款?"
  5064. #~ msgctxt "@action:button"
  5065. #~ msgid "Accept"
  5066. #~ msgstr "接受"
  5067. #~ msgctxt "@action:button"
  5068. #~ msgid "Decline"
  5069. #~ msgstr "拒絕"
  5070. #~ msgctxt "@action:inmenu"
  5071. #~ msgid "Show All Settings"
  5072. #~ msgstr "顯示所有設定"
  5073. #~ msgctxt "@title:window"
  5074. #~ msgid "Ultimaker Cura"
  5075. #~ msgstr "Ultimaker Cura"
  5076. #~ msgctxt "@title:window"
  5077. #~ msgid "About Cura"
  5078. #~ msgstr "關於 Cura"
  5079. #~ msgctxt "@item:inmenu"
  5080. #~ msgid "Flatten active settings"
  5081. #~ msgstr "合併有效設定"
  5082. #~ msgctxt "@info:status"
  5083. #~ msgid "Profile has been flattened & activated."
  5084. #~ msgstr "列印參數已被合併並啟用。"
  5085. #~ msgctxt "X3g Writer Plugin Description"
  5086. #~ msgid "Writes X3g to files"
  5087. #~ msgstr "將 X3g 寫入檔案"
  5088. #~ msgctxt "X3g Writer File Description"
  5089. #~ msgid "X3g File"
  5090. #~ msgstr "X3g 檔案"
  5091. #~ msgctxt "X3G Writer File Description"
  5092. #~ msgid "X3G File"
  5093. #~ msgstr "X3G 檔案"
  5094. #~ msgctxt "@item:inlistbox"
  5095. #~ msgid "Open Compressed Triangle Mesh"
  5096. #~ msgstr "Open Compressed Triangle Mesh"
  5097. #~ msgctxt "@item:inmenu"
  5098. #~ msgid "Profile Assistant"
  5099. #~ msgstr "參數助手"
  5100. #~ msgctxt "@item:inlistbox"
  5101. #~ msgid "Profile Assistant"
  5102. #~ msgstr "參數助手"
  5103. #~ msgctxt "@action:button"
  5104. #~ msgid "Retry"
  5105. #~ msgstr "重試"
  5106. #~ msgctxt "@label:table_header"
  5107. #~ msgid "Print Core"
  5108. #~ msgstr "Print Core"
  5109. #~ msgctxt "@label"
  5110. #~ msgid "Don't support overlap with other models"
  5111. #~ msgstr "與模型重疊處不建立支撐"
  5112. #~ msgctxt "@label"
  5113. #~ msgid "Modify settings for overlap with other models"
  5114. #~ msgstr "修改與模型重疊處的設定"
  5115. #~ msgctxt "@label"
  5116. #~ msgid "Modify settings for infill of other models"
  5117. #~ msgstr "修改其他模型的填充設定"
  5118. #~ msgctxt "@action:ComboBox option"
  5119. #~ msgid "Update existing"
  5120. #~ msgstr "更新已有設定"
  5121. #~ msgctxt "@label"
  5122. #~ msgid "Not supported"
  5123. #~ msgstr "不支援"
  5124. #~ msgctxt "@action:button"
  5125. #~ msgid "Previous"
  5126. #~ msgstr "前一個"
  5127. #~ msgctxt "@label"
  5128. #~ msgid "Tip"
  5129. #~ msgstr "提示"
  5130. #~ msgctxt "@label"
  5131. #~ msgid "Print experiment"
  5132. #~ msgstr "列印實驗"
  5133. #~ msgctxt "@label"
  5134. #~ msgid "Checklist"
  5135. #~ msgstr "檢查清單"
  5136. #~ msgctxt "@label"
  5137. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5138. #~ msgstr "請選擇適用於 Ultimaker 2 的更新檔案。"
  5139. #~ msgctxt "@label"
  5140. #~ msgid "Olsson Block"
  5141. #~ msgstr "Olsson Block"
  5142. #~ msgctxt "@window:text"
  5143. #~ msgid "Camera rendering: "
  5144. #~ msgstr "攝影機渲染:"
  5145. #~ msgctxt "@info:tooltip"
  5146. #~ msgid "Use multi build plate functionality"
  5147. #~ msgstr "使用多列印平台功能"
  5148. #~ msgctxt "@option:check"
  5149. #~ msgid "Use multi build plate functionality (restart required)"
  5150. #~ msgstr "使用多列印平台功能(需重啟軟體)"
  5151. #~ msgctxt "@label"
  5152. #~ msgid "Default profiles"
  5153. #~ msgstr "預設參數"
  5154. #~ msgctxt "@label:textbox"
  5155. #~ msgid "search settings"
  5156. #~ msgstr "搜尋設定"
  5157. #~ msgctxt "@label"
  5158. #~ msgid "Layer Height"
  5159. #~ msgstr "層高"
  5160. #~ msgctxt "@tooltip"
  5161. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5162. #~ msgstr "品質參數無法用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數。"
  5163. #~ msgctxt "@tooltip"
  5164. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5165. #~ msgstr "目前正使用自訂列印參數。若要使用品質滑動條,在自訂分頁中選擇預設的列印參數"
  5166. #~ msgctxt "@title:menu"
  5167. #~ msgid "&Build plate"
  5168. #~ msgstr "列印平台(&B)"
  5169. #~ msgctxt "@title:settings"
  5170. #~ msgid "&Profile"
  5171. #~ msgstr "列印參數(&P)"
  5172. #~ msgctxt "@action:label"
  5173. #~ msgid "Build plate"
  5174. #~ msgstr "列印平台"
  5175. #~ msgctxt "description"
  5176. #~ msgid "Dump the contents of all settings to a HTML file."
  5177. #~ msgstr "將所有設定內容轉儲至 HTML 檔案。"
  5178. #~ msgctxt "name"
  5179. #~ msgid "God Mode"
  5180. #~ msgstr "上帝模式"
  5181. #~ msgctxt "description"
  5182. #~ msgid "Create a flattened quality changes profile."
  5183. #~ msgstr "建立一個撫平的品質修改參數。"
  5184. #~ msgctxt "name"
  5185. #~ msgid "Profile Flattener"
  5186. #~ msgstr "參數撫平器"
  5187. #~ msgctxt "description"
  5188. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5189. #~ msgstr "允許耗材製造商使用下拉式 UI 建立新的耗材和品質設定參數。"
  5190. #~ msgctxt "name"
  5191. #~ msgid "Print Profile Assistant"
  5192. #~ msgstr "列印參數設定助手"
  5193. #~ msgctxt "@info:status"
  5194. #~ msgid "Connected over the network."
  5195. #~ msgstr "已透過網路連接。"
  5196. #~ msgctxt "@info:status"
  5197. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5198. #~ msgstr "已透過網路連接。請在印表機上接受存取請求。"
  5199. #~ msgctxt "@info:status"
  5200. #~ msgid "Connected over the network. No access to control the printer."
  5201. #~ msgstr "已透過網路連接,但沒有印表機的控制權限。"
  5202. #~ msgctxt "@info:status"
  5203. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5204. #~ msgstr "已發送印表機存取請求,請在印表機上批准該請求"
  5205. #~ msgctxt "@info:title"
  5206. #~ msgid "Authentication status"
  5207. #~ msgstr "認証狀態"
  5208. #~ msgctxt "@info:title"
  5209. #~ msgid "Authentication Status"
  5210. #~ msgstr "認証狀態"
  5211. #~ msgctxt "@info:tooltip"
  5212. #~ msgid "Re-send the access request"
  5213. #~ msgstr "重新發送存取請求"
  5214. #~ msgctxt "@info:status"
  5215. #~ msgid "Access to the printer accepted"
  5216. #~ msgstr "印表機接受了存取請求"
  5217. #~ msgctxt "@info:status"
  5218. #~ msgid "No access to print with this printer. Unable to send print job."
  5219. #~ msgstr "無法使用本印表機進行列印,無法發送列印作業。"
  5220. #~ msgctxt "@action:button"
  5221. #~ msgid "Request Access"
  5222. #~ msgstr "請求存取"
  5223. #~ msgctxt "@info:tooltip"
  5224. #~ msgid "Send access request to the printer"
  5225. #~ msgstr "向印表機發送存取請求"
  5226. #~ msgctxt "@label"
  5227. #~ msgid "Unable to start a new print job."
  5228. #~ msgstr "無法開始新的列印作業。"
  5229. #~ msgctxt "@label"
  5230. #~ 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."
  5231. #~ msgstr "Ultimaker 的設定有問題導致無法開始列印。請在繼續之前解決這個問題。"
  5232. #~ msgctxt "@window:title"
  5233. #~ msgid "Mismatched configuration"
  5234. #~ msgstr "設定不匹配"
  5235. #~ msgctxt "@label"
  5236. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5237. #~ msgstr "你確定要使用所選設定進行列印嗎?"
  5238. #~ msgctxt "@label"
  5239. #~ 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."
  5240. #~ msgstr "印表機的設定或校正與 Cura 之間不匹配。為了獲得最佳列印效果,請使用印表機的 PrintCores 和耗材設定進行切片。"
  5241. #~ msgctxt "@info:status"
  5242. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5243. #~ msgstr "前一列印作業傳送中,暫停傳送新列印作業。"
  5244. #~ msgctxt "@info:status"
  5245. #~ msgid "Sending data to printer"
  5246. #~ msgstr "正在向印表機發送資料"
  5247. #~ msgctxt "@info:title"
  5248. #~ msgid "Sending Data"
  5249. #~ msgstr "發送資料中"
  5250. #~ msgctxt "@info:status"
  5251. #~ msgid "No Printcore loaded in slot {slot_number}"
  5252. #~ msgstr "Slot {slot_number} 中沒有載入 Printcore"
  5253. #~ msgctxt "@info:status"
  5254. #~ msgid "No material loaded in slot {slot_number}"
  5255. #~ msgstr "Slot {slot_number} 中沒有載入耗材"
  5256. #~ msgctxt "@label"
  5257. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5258. #~ msgstr "擠出機 {extruder_id} 選擇了不同的 PrintCore(Cura:{cura_printcore_name},印表機:{remote_printcore_name})"
  5259. #~ msgctxt "@label"
  5260. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5261. #~ msgstr "擠出機 {2} 選擇了不同的耗材(Cura:{0},印表機:{1})"
  5262. #~ msgctxt "@window:title"
  5263. #~ msgid "Sync with your printer"
  5264. #~ msgstr "與你的印表機同步"
  5265. #~ msgctxt "@label"
  5266. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5267. #~ msgstr "你想在 Cura 中使用目前的印表機設定嗎?"
  5268. #~ msgctxt "@label"
  5269. #~ 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."
  5270. #~ msgstr "印表機上的 PrintCores 和/或耗材與目前專案中的不同。為獲得最佳列印效果,請使用目前印表機的 PrintCores 和耗材設定進行切片。"
  5271. #~ msgctxt "@action:button"
  5272. #~ msgid "View in Monitor"
  5273. #~ msgstr "使用監控觀看"
  5274. #~ msgctxt "@info:status"
  5275. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5276. #~ msgstr "印表機 '{printer_name}' 已完成列印 '{job_name}'。"
  5277. #~ msgctxt "@info:status"
  5278. #~ msgid "The print job '{job_name}' was finished."
  5279. #~ msgstr "列印作業 '{job_name}' 已完成。"
  5280. #~ msgctxt "@info:status"
  5281. #~ msgid "Print finished"
  5282. #~ msgstr "列印已完成"
  5283. #~ msgctxt "@label:material"
  5284. #~ msgid "Empty"
  5285. #~ msgstr "空的"
  5286. #~ msgctxt "@label:material"
  5287. #~ msgid "Unknown"
  5288. #~ msgstr "未知"
  5289. #~ msgctxt "@info:title"
  5290. #~ msgid "Cloud error"
  5291. #~ msgstr "雲端服務錯誤"
  5292. #~ msgctxt "@info:status"
  5293. #~ msgid "Could not export print job."
  5294. #~ msgstr "雲端服務未匯出列印作業。"
  5295. #~ msgctxt "@info:description"
  5296. #~ msgid "There was an error connecting to the cloud."
  5297. #~ msgstr "連接到雲端服務時發生錯誤。"
  5298. #~ msgctxt "@info:status"
  5299. #~ msgid "Uploading via Ultimaker Cloud"
  5300. #~ msgstr "透過 Ultimaker Cloud 上傳"
  5301. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5302. #~ msgid "Connect to Ultimaker Cloud"
  5303. #~ msgstr "連接到 Ultimaker Cloud"
  5304. #~ msgctxt "@action"
  5305. #~ msgid "Don't ask me again for this printer."
  5306. #~ msgstr "對此印表機不要再次詢問。"
  5307. #~ msgctxt "@info:status"
  5308. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5309. #~ msgstr "現在你可以利用你的 Ultimaker 帳號在任何地方傳送和監控列印作業。"
  5310. #~ msgctxt "@info:status"
  5311. #~ msgid "Connected!"
  5312. #~ msgstr "已連線!"
  5313. #~ msgctxt "@action"
  5314. #~ msgid "Review your connection"
  5315. #~ msgstr "檢查您的連線"
  5316. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5317. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5318. #~ msgstr "列印參數 <filename>{0}</filename> 內定義的機器({1})與你目前的機器({2})不匹配, 無法匯入。"
  5319. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5320. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5321. #~ msgstr "從 <filename>{0}</filename> 匯入列印參數失敗:"
  5322. #~ msgctxt "@window:title"
  5323. #~ msgid "Existing Connection"
  5324. #~ msgstr "目前連線中"
  5325. #~ msgctxt "@message:text"
  5326. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5327. #~ msgstr "此印表機/群組已加入 Cura。請選擇另一個印表機/群組。"
  5328. #~ msgctxt "@label"
  5329. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5330. #~ msgstr "輸入印表機在網路上的 IP 位址或主機名稱。"
  5331. #~ msgctxt "@info:tooltip"
  5332. #~ msgid "Connect to a printer"
  5333. #~ msgstr "連接到印表機"
  5334. #~ msgctxt "@title"
  5335. #~ msgid "Cura Settings Guide"
  5336. #~ msgstr "Cura 設定指南"
  5337. #~ msgctxt "@info:tooltip"
  5338. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  5339. #~ msgstr "正交透視不支援游標縮放功能。"
  5340. #~ msgid "Orthogonal"
  5341. #~ msgstr "正交"
  5342. #~ msgctxt "description"
  5343. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5344. #~ msgstr "管理與 Ultimaker 3 印表機的網絡連線。"
  5345. #~ msgctxt "name"
  5346. #~ msgid "UM3 Network Connection"
  5347. #~ msgstr "UM3 網路連線"
  5348. #~ msgctxt "description"
  5349. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5350. #~ msgstr "提供關於 Cura 設定額外的圖片動畫資訊和說明。"
  5351. #~ msgctxt "name"
  5352. #~ msgid "Settings Guide"
  5353. #~ msgstr "設定指南"
  5354. #~ msgctxt "@item:inmenu"
  5355. #~ msgid "Cura Settings Guide"
  5356. #~ msgstr "Cura 設定指南"
  5357. #~ msgctxt "@info:generic"
  5358. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5359. #~ msgstr "設定已改為與目前擠出機性能相匹配:[%s]"
  5360. #~ msgctxt "@title:groupbox"
  5361. #~ msgid "User description"
  5362. #~ msgstr "使用者描述"
  5363. #~ msgctxt "@info"
  5364. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5365. #~ msgstr "由於你正在監控一台雲端印表機,因此無法使用這些選項。"
  5366. #~ msgctxt "@label link to connect manager"
  5367. #~ msgid "Go to Cura Connect"
  5368. #~ msgstr "前往 Cura Connect"
  5369. #~ msgctxt "@info"
  5370. #~ msgid "All jobs are printed."
  5371. #~ msgstr "所有列印作業已完成。"
  5372. #~ msgctxt "@label link to connect manager"
  5373. #~ msgid "View print history"
  5374. #~ msgstr "檢視列印歷史記錄"
  5375. #~ msgctxt "@label"
  5376. #~ msgid ""
  5377. #~ "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"
  5378. #~ "\n"
  5379. #~ "Select your printer from the list below:"
  5380. #~ msgstr ""
  5381. #~ "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。\n"
  5382. #~ "\n"
  5383. #~ "從以下清單中選擇你的印表機:"
  5384. #~ msgctxt "@info"
  5385. #~ msgid ""
  5386. #~ "Please make sure your printer has a connection:\n"
  5387. #~ "- Check if the printer is turned on.\n"
  5388. #~ "- Check if the printer is connected to the network."
  5389. #~ msgstr ""
  5390. #~ "請確認你的印表機有連接:\n"
  5391. #~ "- 檢查印表機是否已打開。\n"
  5392. #~ "- 檢查印表機是否已連接到網路。"
  5393. #~ msgctxt "@option:check"
  5394. #~ msgid "See only current build plate"
  5395. #~ msgstr "只顯示目前的列印平台"
  5396. #~ msgctxt "@action:button"
  5397. #~ msgid "Arrange to all build plates"
  5398. #~ msgstr "擺放到所有的列印平台"
  5399. #~ msgctxt "@action:button"
  5400. #~ msgid "Arrange current build plate"
  5401. #~ msgstr "擺放到目前的列印平台"
  5402. #~ msgctxt "description"
  5403. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5404. #~ msgstr "允許將切片結果儲存為 X3G 檔案,以支援讀取此格式的印表機(Malyan,Makerbot 和其他以 Sailfish 為原型的印表機)。"
  5405. #~ msgctxt "name"
  5406. #~ msgid "X3GWriter"
  5407. #~ msgstr "X3G 寫入器"
  5408. #~ msgctxt "description"
  5409. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5410. #~ msgstr "讀取 SVG 檔案做為工具路徑,用於印表機移動的除錯。"
  5411. #~ msgctxt "name"
  5412. #~ msgid "SVG Toolpath Reader"
  5413. #~ msgstr "SVG 工具路徑讀取器"
  5414. #~ msgctxt "@item:inmenu"
  5415. #~ msgid "Changelog"
  5416. #~ msgstr "更新日誌"
  5417. #~ msgctxt "@item:inmenu"
  5418. #~ msgid "Show Changelog"
  5419. #~ msgstr "顯示更新日誌"
  5420. #~ msgctxt "@info:status"
  5421. #~ msgid "Sending data to remote cluster"
  5422. #~ msgstr "正在傳送資料到遠端叢集"
  5423. #~ msgctxt "@info:status"
  5424. #~ msgid "Connect to Ultimaker Cloud"
  5425. #~ msgstr "連接到 Ultimaker Cloud"
  5426. #~ msgctxt "@info"
  5427. #~ msgid "Cura collects anonymized usage statistics."
  5428. #~ msgstr "Cura 以匿名方式蒐集使用狀況統計資料。"
  5429. #~ msgctxt "@info:title"
  5430. #~ msgid "Collecting Data"
  5431. #~ msgstr "收集資料中"
  5432. #~ msgctxt "@action:button"
  5433. #~ msgid "More info"
  5434. #~ msgstr "更多資訊"
  5435. #~ msgctxt "@action:tooltip"
  5436. #~ msgid "See more information on what data Cura sends."
  5437. #~ msgstr "檢視更多關於 Cura 傳送資料的資訊。"
  5438. #~ msgctxt "@action:button"
  5439. #~ msgid "Allow"
  5440. #~ msgstr "允許"
  5441. #~ msgctxt "@action:tooltip"
  5442. #~ 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."
  5443. #~ msgstr "允許 Cura 以匿名方式傳送使用狀況統計資料,用來協助 Cura 的未來改善工作。你的部份偏好設定和參數,Cura 的版本及你切片模型的雜湊值會被傳送。"
  5444. #~ msgctxt "@item:inmenu"
  5445. #~ msgid "Evaluation"
  5446. #~ msgstr "評估"
  5447. #~ msgctxt "@info:title"
  5448. #~ msgid "Network enabled printers"
  5449. #~ msgstr "網路印表機"
  5450. #~ msgctxt "@info:title"
  5451. #~ msgid "Local printers"
  5452. #~ msgstr "本機印表機"
  5453. #~ msgctxt "@info:backup_failed"
  5454. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  5455. #~ msgstr "嘗試復原版本不符的 Cura 備份。"
  5456. #~ msgctxt "@title"
  5457. #~ msgid "Machine Settings"
  5458. #~ msgstr "印表機設定"
  5459. #~ msgctxt "@label"
  5460. #~ msgid "Printer Settings"
  5461. #~ msgstr "印表機設定"
  5462. #~ msgctxt "@option:check"
  5463. #~ msgid "Origin at center"
  5464. #~ msgstr "原點位於中心"
  5465. #~ msgctxt "@option:check"
  5466. #~ msgid "Heated bed"
  5467. #~ msgstr "熱床"
  5468. #~ msgctxt "@label"
  5469. #~ msgid "Printhead Settings"
  5470. #~ msgstr "列印頭設定"
  5471. #~ msgctxt "@tooltip"
  5472. #~ 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\"."
  5473. #~ msgstr "列印頭左側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5474. #~ msgctxt "@tooltip"
  5475. #~ 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\"."
  5476. #~ msgstr "列印頭前端至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5477. #~ msgctxt "@tooltip"
  5478. #~ 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\"."
  5479. #~ msgstr "列印頭右側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5480. #~ msgctxt "@tooltip"
  5481. #~ 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\"."
  5482. #~ msgstr "列印頭後部至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。"
  5483. #~ msgctxt "@label"
  5484. #~ msgid "Gantry height"
  5485. #~ msgstr "龍門高度"
  5486. #~ msgctxt "@tooltip"
  5487. #~ 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\"."
  5488. #~ msgstr "噴頭尖端與龍門系統(X 軸和 Y 軸)之間的高度差。用於防止「排隊列印」時之前的列印品與龍門發生碰撞。"
  5489. #~ msgctxt "@label"
  5490. #~ msgid "Start G-code"
  5491. #~ msgstr "起始 G-code"
  5492. #~ msgctxt "@tooltip"
  5493. #~ msgid "G-code commands to be executed at the very start."
  5494. #~ msgstr "開始時最先執行的 G-code 命令。"
  5495. #~ msgctxt "@label"
  5496. #~ msgid "End G-code"
  5497. #~ msgstr "結束 G-code"
  5498. #~ msgctxt "@tooltip"
  5499. #~ msgid "G-code commands to be executed at the very end."
  5500. #~ msgstr "結束前最後執行的 G-code 命令。"
  5501. #~ msgctxt "@label"
  5502. #~ msgid "Nozzle Settings"
  5503. #~ msgstr "噴頭設定"
  5504. #~ msgctxt "@tooltip"
  5505. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5506. #~ msgstr "印表機所支援的耗材直徑。實際列印的耗材直徑由耗材和/或列印參數提供。"
  5507. #~ msgctxt "@label"
  5508. #~ msgid "Extruder Start G-code"
  5509. #~ msgstr "擠出機起始 G-code"
  5510. #~ msgctxt "@label"
  5511. #~ msgid "Extruder End G-code"
  5512. #~ msgstr "擠出機結束 G-code"
  5513. #~ msgctxt "@label"
  5514. #~ msgid "Changelog"
  5515. #~ msgstr "更新日誌"
  5516. #~ msgctxt "@title:window"
  5517. #~ msgid "User Agreement"
  5518. #~ msgstr "使用者授權"
  5519. #~ msgctxt "@alabel"
  5520. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5521. #~ msgstr "輸入印表機在網路上的 IP 位址或主機名。"
  5522. #~ msgctxt "@info"
  5523. #~ msgid "Please select a network connected printer to monitor."
  5524. #~ msgstr "請選擇要監控的網絡連線印表機。"
  5525. #~ msgctxt "@info"
  5526. #~ msgid "Please connect your Ultimaker printer to your local network."
  5527. #~ msgstr "請將你的 Ultimaker 印表機連接到區域網路。"
  5528. #~ msgctxt "@text:window"
  5529. #~ 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."
  5530. #~ msgstr "Cura 傳送匿名資料給 Ultimaker 以提高列印品質和使用者體驗。以下是傳送資料的例子。"
  5531. #~ msgctxt "@text:window"
  5532. #~ msgid "I don't want to send this data"
  5533. #~ msgstr "我不想傳送這些資料"
  5534. #~ msgctxt "@text:window"
  5535. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5536. #~ msgstr "允許將這些資料傳送給 Ultimaker 以協助我們改進 Cura"
  5537. #~ msgctxt "@label"
  5538. #~ msgid "No print selected"
  5539. #~ msgstr "沒有選擇任何模型"
  5540. #~ msgctxt "@info:tooltip"
  5541. #~ 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."
  5542. #~ msgstr "預設情況下,白色像素表示網格上的高點,黑色像素表示網格上的低點。更改此選項將以相反方式呈現,黑色像素表示網格上的高點,白色像素表示網格上的低點。"
  5543. #~ msgctxt "@title"
  5544. #~ msgid "Select Printer Upgrades"
  5545. #~ msgstr "選擇印表機更新檔案"
  5546. #~ msgctxt "@label"
  5547. #~ 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."
  5548. #~ msgstr "選擇用於支撐的擠出機。該擠出機將在模型之下建立支撐結構,以防止模型下垂或在空中列印。"
  5549. #~ msgctxt "@tooltip"
  5550. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5551. #~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數"
  5552. #~ msgctxt "@label shown when we load a Gcode file"
  5553. #~ msgid "Print setup disabled. G code file can not be modified."
  5554. #~ msgstr "列印設定已被停用。 G-code 檔案無法修改。"
  5555. #~ msgctxt "@label"
  5556. #~ msgid "See the material compatibility chart"
  5557. #~ msgstr "請參閱耗材相容性圖表"
  5558. #~ msgctxt "@label"
  5559. #~ msgid "View types"
  5560. #~ msgstr "檢示類型"
  5561. #~ msgctxt "@label"
  5562. #~ msgid "Hi "
  5563. #~ msgstr "嗨 "
  5564. #~ msgctxt "@text"
  5565. #~ msgid ""
  5566. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5567. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5568. #~ "- Get exclusive access to material profiles from leading brands"
  5569. #~ msgstr ""
  5570. #~ "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機\n"
  5571. #~ "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用\n"
  5572. #~ "- 取得領導品牌的耗材參數設定的獨家存取權限"
  5573. #~ msgctxt "@label:PrintjobStatus"
  5574. #~ msgid "Unable to Slice"
  5575. #~ msgstr "無法切片"
  5576. #~ msgctxt "@label"
  5577. #~ msgid "Time specification"
  5578. #~ msgstr "時間規格"
  5579. #~ msgctxt "@label"
  5580. #~ msgid "Material specification"
  5581. #~ msgstr "耗材規格"
  5582. #~ msgctxt "@title:tab"
  5583. #~ msgid "Add a printer to Cura"
  5584. #~ msgstr "新增印表機到 Cura"
  5585. #~ msgctxt "@title:tab"
  5586. #~ msgid ""
  5587. #~ "Select the printer you want to use from the list below.\n"
  5588. #~ "\n"
  5589. #~ "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."
  5590. #~ msgstr ""
  5591. #~ "從下面的清單中選擇要使用的印表機。\n"
  5592. #~ "\n"
  5593. #~ "假如你的印表機不在清單上,選擇“Custom”類別中的“Custom FFF Printer”,並在下一個對話窗中調整設定以符合你的印表機。"
  5594. #~ msgctxt "@label"
  5595. #~ msgid "Printer Name"
  5596. #~ msgstr "印表機名稱"
  5597. #~ msgctxt "@action:button"
  5598. #~ msgid "Add Printer"
  5599. #~ msgstr "新增印表機"
  5600. #~ msgid "Modify G-Code"
  5601. #~ msgstr "修改 G-Code 檔案"
  5602. #~ msgctxt "@info:status"
  5603. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5604. #~ msgstr "沒有模型可進行切片,因為模型超出了列印範圍。請縮放或旋轉模型, 讓模型可置入列印範圍。"
  5605. #~ msgctxt "@info:status"
  5606. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5607. #~ msgstr "所選耗材與所選機器或設定不相容。"
  5608. #~ msgctxt "@info:title"
  5609. #~ msgid "Incompatible Material"
  5610. #~ msgstr "不相容的耗材"
  5611. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5612. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5613. #~ msgstr "無法從 <filename>{0}</filename> 匯入列印參數:<message>{1}</message>"
  5614. #~ msgctxt "@title"
  5615. #~ msgid "Toolbox"
  5616. #~ msgstr "工具箱"
  5617. #~ msgctxt "@label"
  5618. #~ msgid "Not available"
  5619. #~ msgstr "無法使用"
  5620. #~ msgctxt "@label"
  5621. #~ msgid "Unreachable"
  5622. #~ msgstr "無法連接"
  5623. #~ msgctxt "@label"
  5624. #~ msgid "Available"
  5625. #~ msgstr "可用"
  5626. #~ msgctxt "@label:status"
  5627. #~ msgid "Preparing"
  5628. #~ msgstr "正在準備"
  5629. #~ msgctxt "@label:status"
  5630. #~ msgid "Pausing"
  5631. #~ msgstr "暫停中"
  5632. #~ msgctxt "@label:status"
  5633. #~ msgid "Resuming"
  5634. #~ msgstr "繼續"
  5635. #~ msgctxt "@label"
  5636. #~ msgid "Waiting for: Unavailable printer"
  5637. #~ msgstr "等待:印表機無法使用"
  5638. #~ msgctxt "@label"
  5639. #~ msgid "Waiting for: First available"
  5640. #~ msgstr "等待:第一可用"
  5641. #~ msgctxt "@label"
  5642. #~ msgid "Waiting for: "
  5643. #~ msgstr "等待: "
  5644. #~ msgctxt "@label"
  5645. #~ msgid "Configuration change"
  5646. #~ msgstr "設定更動"
  5647. #~ msgctxt "@label"
  5648. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  5649. #~ msgstr "分配的印表機 %1 需要下列的設定更動:"
  5650. #~ msgctxt "@label"
  5651. #~ msgid "Override"
  5652. #~ msgstr "覆寫"
  5653. #~ msgctxt "@label"
  5654. #~ 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?"
  5655. #~ msgstr "使用不相容的設定啟動列印工作可能會損壞你的 3D 印表機。你確定要覆寫設定並列印 %1 嗎?"
  5656. #~ msgctxt "@window:title"
  5657. #~ msgid "Override configuration configuration and start print"
  5658. #~ msgstr "覆寫設定並開始列印"
  5659. #~ msgctxt "@label link to connect manager"
  5660. #~ msgid "Manage queue"
  5661. #~ msgstr "管理隊列"
  5662. #~ msgctxt "@label"
  5663. #~ msgid "Printing"
  5664. #~ msgstr "列印中"
  5665. #~ msgctxt "@label link to connect manager"
  5666. #~ msgid "Manage printers"
  5667. #~ msgstr "管理印表機"
  5668. #~ msgctxt "@action:button"
  5669. #~ msgid "Activate Configuration"
  5670. #~ msgstr "啟用設定"
  5671. #~ msgctxt "@info:tooltip"
  5672. #~ msgid "Load the configuration of the printer into Cura"
  5673. #~ msgstr "將印表機設定載入 Cura"
  5674. #~ msgctxt "@label"
  5675. #~ msgid "Show Travels"
  5676. #~ msgstr "顯示移動軌跡"
  5677. #~ msgctxt "@label"
  5678. #~ msgid "Show Helpers"
  5679. #~ msgstr "顯示輔助結構"
  5680. #~ msgctxt "@label"
  5681. #~ msgid "Show Shell"
  5682. #~ msgstr "顯示外殼"
  5683. #~ msgctxt "@label"
  5684. #~ msgid "Show Infill"
  5685. #~ msgstr "顯示填充"
  5686. #~ msgctxt "@text:window"
  5687. #~ msgid "I don't want to send these data"
  5688. #~ msgstr "我不想傳送這些資料"
  5689. #~ msgctxt "@text:window"
  5690. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  5691. #~ msgstr "允許將這些資料傳送給 Ultimaker 並協助我們改進 Cura"
  5692. #~ msgctxt "@label"
  5693. #~ msgid "Printer type:"
  5694. #~ msgstr "印表機類型:"
  5695. #~ msgctxt "@label"
  5696. #~ msgid "Connection:"
  5697. #~ msgstr "連線:"
  5698. #~ msgctxt "@label"
  5699. #~ msgid "State:"
  5700. #~ msgstr "狀態:"
  5701. #~ msgctxt "@label:MonitorStatus"
  5702. #~ msgid "Waiting for a printjob"
  5703. #~ msgstr "等待列印作業"
  5704. #~ msgctxt "@label:MonitorStatus"
  5705. #~ msgid "Waiting for someone to clear the build plate"
  5706. #~ msgstr "等待清空列印平台"
  5707. #~ msgctxt "@label:MonitorStatus"
  5708. #~ msgid "Aborting print..."
  5709. #~ msgstr "中斷列印..."
  5710. #~ msgctxt "@label"
  5711. #~ msgid "Protected profiles"
  5712. #~ msgstr "受保護的列印參數"
  5713. #~ msgctxt "@label"
  5714. #~ msgid "Printer Name:"
  5715. #~ msgstr "印表機名稱:"
  5716. #~ msgctxt "@label"
  5717. #~ msgid "Profile:"
  5718. #~ msgstr "列印參數:"
  5719. #~ msgctxt "@label:textbox"
  5720. #~ msgid "Search..."
  5721. #~ msgstr "搜尋..."
  5722. #~ msgctxt "@action:inmenu"
  5723. #~ msgid "Collapse All"
  5724. #~ msgstr "全部折疊"
  5725. #~ msgctxt "@action:inmenu"
  5726. #~ msgid "Expand All"
  5727. #~ msgstr "全部展開"
  5728. #~ msgctxt "@label:header configurations"
  5729. #~ msgid "Available configurations"
  5730. #~ msgstr "可用的設定"
  5731. #~ msgctxt "@label:extruder label"
  5732. #~ msgid "Extruder"
  5733. #~ msgstr "擠出機"
  5734. #~ msgctxt "@label:extruder label"
  5735. #~ msgid "Yes"
  5736. #~ msgstr "是"
  5737. #~ msgctxt "@label:extruder label"
  5738. #~ msgid "No"
  5739. #~ msgstr "否"
  5740. #~ msgctxt "@label:listbox"
  5741. #~ msgid "Print Setup"
  5742. #~ msgstr "列印設定"
  5743. #~ msgctxt "@label:listbox"
  5744. #~ msgid ""
  5745. #~ "Print Setup disabled\n"
  5746. #~ "G-code files cannot be modified"
  5747. #~ msgstr ""
  5748. #~ "列印設定已關閉\n"
  5749. #~ "G-code 檔案無法被修改"
  5750. #~ msgctxt "@label Hours and minutes"
  5751. #~ msgid "00h 00min"
  5752. #~ msgstr "00 小時 00 分"
  5753. #~ msgctxt "@tooltip"
  5754. #~ msgid "Time specification"
  5755. #~ msgstr "時間規格"
  5756. #~ msgctxt "@label"
  5757. #~ msgid "Cost specification"
  5758. #~ msgstr "成本明細"
  5759. #~ msgctxt "@label"
  5760. #~ msgid "Total:"
  5761. #~ msgstr "總共:"
  5762. #~ msgctxt "@tooltip"
  5763. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5764. #~ msgstr "<b>推薦的列印設定</b> <br/> <br/>使用針對所選印表機、耗材和品質的推薦設定進行列印。"
  5765. #~ msgctxt "@tooltip"
  5766. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5767. #~ msgstr "<b>自訂列印設定</b> <br/>對切片過程中的每一個細節進行精細控制。"
  5768. #~ msgctxt "@action:inmenu menubar:help"
  5769. #~ msgid "Show Engine &Log..."
  5770. #~ msgstr "顯示切片引擎日誌(&L)..."
  5771. #~ msgctxt "@action:menu"
  5772. #~ msgid "Browse packages..."
  5773. #~ msgstr "瀏覽套件..."
  5774. #~ msgctxt "@action:inmenu menubar:view"
  5775. #~ msgid "Expand/Collapse Sidebar"
  5776. #~ msgstr "展開/收合側邊欄"
  5777. #~ msgctxt "@label:PrintjobStatus"
  5778. #~ msgid "Please load a 3D model"
  5779. #~ msgstr "請載入一個 3D 模型"
  5780. #~ msgctxt "@label:PrintjobStatus"
  5781. #~ msgid "Ready to slice"
  5782. #~ msgstr "切片已準備就緒"
  5783. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5784. #~ msgid "Ready to %1"
  5785. #~ msgstr "%1 已準備就緒"
  5786. #~ msgctxt "@label:PrintjobStatus"
  5787. #~ msgid "Slicing unavailable"
  5788. #~ msgstr "切片無法使用"
  5789. #~ msgctxt "@info:tooltip"
  5790. #~ msgid "Slice current printjob"
  5791. #~ msgstr "對目前列印工作進行切片"
  5792. #~ msgctxt "@info:tooltip"
  5793. #~ msgid "Cancel slicing process"
  5794. #~ msgstr "取消進行中的切片程序"
  5795. #~ msgctxt "@label:Printjob"
  5796. #~ msgid "Prepare"
  5797. #~ msgstr "準備"
  5798. #~ msgctxt "@label:Printjob"
  5799. #~ msgid "Cancel"
  5800. #~ msgstr "取消"
  5801. #~ msgctxt "@info:tooltip"
  5802. #~ msgid "Select the active output device"
  5803. #~ msgstr "選擇作用中的輸出裝置"
  5804. #~ msgctxt "@title:menu"
  5805. #~ msgid "&View"
  5806. #~ msgstr "檢視(&V)"
  5807. #~ msgctxt "@title:menu"
  5808. #~ msgid "&Settings"
  5809. #~ msgstr "設定(&S)"
  5810. #~ msgctxt "@title:menu menubar:toplevel"
  5811. #~ msgid "&Toolbox"
  5812. #~ msgstr "工具箱(&T)"
  5813. #~ msgctxt "@action:button"
  5814. #~ msgid "Open File"
  5815. #~ msgstr "開啟檔案"
  5816. #~ msgctxt "@tooltip"
  5817. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  5818. #~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請變更這些設定以啟用此品質參數"
  5819. #~ msgctxt "@label"
  5820. #~ msgid "Print Speed"
  5821. #~ msgstr "列印速度"
  5822. #~ msgctxt "@label"
  5823. #~ msgid "Slower"
  5824. #~ msgstr "更慢"
  5825. #~ msgctxt "@label"
  5826. #~ msgid "Faster"
  5827. #~ msgstr "更快"
  5828. #~ msgctxt "@label"
  5829. #~ msgid "Enable gradual"
  5830. #~ msgstr "啟用漸層"
  5831. #~ msgctxt "@label"
  5832. #~ msgid "Generate Support"
  5833. #~ msgstr "產生支撐"
  5834. #~ msgctxt "@label"
  5835. #~ msgid "Build Plate Adhesion"
  5836. #~ msgstr "列印平台附著"
  5837. #~ msgctxt "@label"
  5838. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5839. #~ msgstr "需要幫助改善你的列印?閱讀 <a href=『%1』>Ultimaker 故障排除指南</a>"
  5840. #~ msgctxt "@title:window"
  5841. #~ msgid "Engine Log"
  5842. #~ msgstr "引擎日誌"
  5843. #~ msgctxt "@label"
  5844. #~ msgid "Printer type"
  5845. #~ msgstr "印表機類型"
  5846. #~ msgctxt "@label"
  5847. #~ msgid "Use glue with this material combination"
  5848. #~ msgstr "此耗材使用膠水組合"
  5849. #~ msgctxt "@label"
  5850. #~ msgid "Check compatibility"
  5851. #~ msgstr "檢查相容性"
  5852. #~ msgctxt "@tooltip"
  5853. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  5854. #~ msgstr "點擊查看 Ultimaker.com 上的耗材相容性。"
  5855. #~ msgctxt "description"
  5856. #~ msgid "Shows changes since latest checked version."
  5857. #~ msgstr "顯示最新版本更動。"
  5858. #~ msgctxt "name"
  5859. #~ msgid "Changelog"
  5860. #~ msgstr "更新日誌"
  5861. #~ msgctxt "description"
  5862. #~ msgid "Create a flattend quality changes profile."
  5863. #~ msgstr "建立一份合併品質變化列印參數。"
  5864. #~ msgctxt "name"
  5865. #~ msgid "Profile flatener"
  5866. #~ msgstr "列印參數合併器"
  5867. #~ msgctxt "description"
  5868. #~ msgid "Ask the user once if he/she agrees with our license."
  5869. #~ msgstr "詢問使用者是否同意我們的授權協議。"
  5870. #~ msgctxt "name"
  5871. #~ msgid "UserAgreement"
  5872. #~ msgstr "使用者授權"
  5873. #~ msgctxt "@warning:status"
  5874. #~ msgid "Please generate G-code before saving."
  5875. #~ msgstr "請在儲存前產出 G-code。"
  5876. #~ msgctxt "@action"
  5877. #~ msgid "Upgrade Firmware"
  5878. #~ msgstr "升級韌體"
  5879. #~ msgctxt "@label unknown material"
  5880. #~ msgid "Unknown"
  5881. #~ msgstr "未知"
  5882. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5883. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  5884. #~ msgstr "檔案 <filename>{0}</filename> 內無自訂參數可匯入"
  5885. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5886. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  5887. #~ msgstr "此列印參數 <filename>{0}</filename> 含有錯誤的資料,無法導入。"
  5888. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5889. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5890. #~ msgstr "參數檔案 <filename>{0}</filename> ({1}) 中定義的機器與你目前的機器 ({2}) 不匹配,無法匯入。"
  5891. #~ msgctxt "@title:window"
  5892. #~ msgid "Confirm uninstall "
  5893. #~ msgstr "移除確認 "
  5894. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  5895. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  5896. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  5897. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  5898. #~ msgid "%1m / ~ %2g"
  5899. #~ msgstr "%1m / ~ %2g"
  5900. #~ msgctxt "@title"
  5901. #~ msgid "Upgrade Firmware"
  5902. #~ msgstr "升級韌體"
  5903. #~ msgctxt "@action:button"
  5904. #~ msgid "Print with Doodle3D WiFi-Box"
  5905. #~ msgstr "使用 Doodle3D 無線網路盒列印"
  5906. #~ msgctxt "@properties:tooltip"
  5907. #~ msgid "Print with Doodle3D WiFi-Box"
  5908. #~ msgstr "使用 Doodle3D 無線網路盒列印"
  5909. #~ msgctxt "@info:status"
  5910. #~ msgid "Connecting to Doodle3D Connect"
  5911. #~ msgstr "正在連接 Doodle3D Connect"
  5912. #~ msgctxt "@info:status"
  5913. #~ msgid "Sending data to Doodle3D Connect"
  5914. #~ msgstr "正在向 Doodle3D Connect 發送資料"
  5915. #~ msgctxt "@info:status"
  5916. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  5917. #~ msgstr "無法向 Doodle3D Connect 發送資料。請確認是否有另一項列印作業正在進行?"
  5918. #~ msgctxt "@info:status"
  5919. #~ msgid "Storing data on Doodle3D Connect"
  5920. #~ msgstr "正在儲存資料到 Doodle3D Connect"
  5921. #~ msgctxt "@info:status"
  5922. #~ msgid "File sent to Doodle3D Connect"
  5923. #~ msgstr "檔案已被傳送到 Doodle3D Connect"
  5924. #~ msgctxt "@action:button"
  5925. #~ msgid "Open Connect..."
  5926. #~ msgstr "開啟連線..."
  5927. #~ msgctxt "@info:tooltip"
  5928. #~ msgid "Open the Doodle3D Connect web interface"
  5929. #~ msgstr "開啟 Doodle3D Connect 的網路介面"
  5930. #~ msgctxt "@item:inlistbox"
  5931. #~ msgid "Blender file"
  5932. #~ msgstr "Blender 檔案"
  5933. #~ msgctxt "@info:status"
  5934. #~ msgid ""
  5935. #~ "Could not export using \"{}\" quality!\n"
  5936. #~ "Felt back to \"{}\"."
  5937. #~ msgstr ""
  5938. #~ "無法使用 \"{}\" 品質導出!\n"
  5939. #~ "覆蓋回 \"{}\"。"
  5940. #~ msgctxt "@label"
  5941. #~ msgid "Contact"
  5942. #~ msgstr "聯繫"
  5943. #~ msgctxt "@label"
  5944. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  5945. #~ msgstr "這台印表機未設定成管理一組 Ultimaker 3 印表機的主機。"
  5946. #~ msgctxt "@label"
  5947. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  5948. #~ msgstr "這台印表機是 %1 台 Ultimaker 3 印表機群組的主機。"
  5949. #~ msgctxt "@label: arg 1 is group name"
  5950. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  5951. #~ msgstr "%1 未設定成管理一組連線的 Ultimaker 3 印表機的主機"
  5952. #~ msgctxt "@label link to connect manager"
  5953. #~ msgid "Add/Remove printers"
  5954. #~ msgstr "新增/移除印表機"
  5955. #~ msgctxt "@info:tooltip"
  5956. #~ msgid "Opens the print jobs page with your default web browser."
  5957. #~ msgstr "使用預設瀏覽器開啟列印作業頁面。"
  5958. #~ msgctxt "@action:button"
  5959. #~ msgid "View print jobs"
  5960. #~ msgstr "檢視列印作業"
  5961. #~ msgctxt "@label:status"
  5962. #~ msgid "Preparing to print"
  5963. #~ msgstr "準備列印中"
  5964. #~ msgctxt "@label:status"
  5965. #~ msgid "Available"
  5966. #~ msgstr "可用"
  5967. #~ msgctxt "@label:status"
  5968. #~ msgid "Lost connection with the printer"
  5969. #~ msgstr "與印表機失去連線"
  5970. #~ msgctxt "@label:status"
  5971. #~ msgid "Unknown"
  5972. #~ msgstr "未知"
  5973. #~ msgctxt "@label:status"
  5974. #~ msgid "Disabled"
  5975. #~ msgstr "已關閉"
  5976. #~ msgctxt "@label:status"
  5977. #~ msgid "Reserved"
  5978. #~ msgstr "保留"
  5979. #~ msgctxt "@label"
  5980. #~ msgid "Preparing to print"
  5981. #~ msgstr "準備列印中"
  5982. #~ msgctxt "@label:status"
  5983. #~ msgid "Print aborted"
  5984. #~ msgstr "列印已取消"
  5985. #~ msgctxt "@label"
  5986. #~ msgid "Not accepting print jobs"
  5987. #~ msgstr "不接受列印作業"
  5988. #~ msgctxt "@label"
  5989. #~ msgid "Finishes at: "
  5990. #~ msgstr "完成時間:"
  5991. #~ msgctxt "@label"
  5992. #~ msgid "Clear build plate"
  5993. #~ msgstr "清空列印平台"
  5994. #~ msgctxt "@label"
  5995. #~ msgid "Waiting for configuration change"
  5996. #~ msgstr "等待設定更動"
  5997. #~ msgctxt "@title"
  5998. #~ msgid "Print jobs"
  5999. #~ msgstr "列印作業"
  6000. #~ msgctxt "@label:title"
  6001. #~ msgid "Printers"
  6002. #~ msgstr "印表機"
  6003. #~ msgctxt "@action:button"
  6004. #~ msgid "View printers"
  6005. #~ msgstr "檢視印表機"
  6006. #~ msgctxt "@label:"
  6007. #~ msgid "Pause"
  6008. #~ msgstr "暫停"
  6009. #~ msgctxt "@label:"
  6010. #~ msgid "Resume"
  6011. #~ msgstr "繼續"
  6012. #~ msgctxt "@label:"
  6013. #~ msgid "Abort Print"
  6014. #~ msgstr "中斷列印"
  6015. #~ msgctxt "@option:openProject"
  6016. #~ msgid "Always ask"
  6017. #~ msgstr "總是詢問"
  6018. #~ msgctxt "@label"
  6019. #~ msgid "Override Profile"
  6020. #~ msgstr "覆寫列印參數"
  6021. #~ msgctxt "@info:tooltip"
  6022. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6023. #~ msgstr "新載入的模型要擺放在列印平台上嗎?必需與多列印平台功能一起使用(實驗功能)"
  6024. #~ msgctxt "@option:check"
  6025. #~ msgid "Do not arrange objects on load"
  6026. #~ msgstr "載入時不要擺放物件"
  6027. #~ msgctxt "@action:inmenu menubar:file"
  6028. #~ msgid "&Save Selection to File"
  6029. #~ msgstr "儲存到檔案(&S)"
  6030. #~ msgctxt "@title:menu menubar:file"
  6031. #~ msgid "Save &As..."
  6032. #~ msgstr "另存為(&A)…"
  6033. #~ msgctxt "@title:menu menubar:file"
  6034. #~ msgid "Save &Project..."
  6035. #~ msgstr "儲存專案...(&P)"
  6036. # Added after the string freeze.
  6037. #~ msgctxt "@label"
  6038. #~ msgid "Use adhesion sheet or glue with this material combination"
  6039. #~ msgstr "在此耗材組合下使用膠水或是附著墊片"
  6040. #~ msgctxt "description"
  6041. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6042. #~ msgstr "接受 G-Code 並透過 WiFi 將其發送到 Doodle3D 無線網路盒。"
  6043. #~ msgctxt "name"
  6044. #~ msgid "Doodle3D WiFi-Box"
  6045. #~ msgstr "Doodle3D 無線網路盒"
  6046. #~ msgctxt "description"
  6047. #~ msgid "Provides an edit window for direct script editing."
  6048. #~ msgstr "提供一個直接編輯描述檔的編輯視窗。"
  6049. #~ msgctxt "name"
  6050. #~ msgid "Live scripting tool"
  6051. #~ msgstr "即時描述檔工具"
  6052. #~ msgctxt "description"
  6053. #~ msgid "Helps to open Blender files directly in Cura."
  6054. #~ msgstr "協助你直接在 Cura 中打開 Blender 檔案。"
  6055. #~ msgctxt "name"
  6056. #~ msgid "Blender Integration (experimental)"
  6057. #~ msgstr "Blender 整合(實驗功能)"
  6058. #~ msgctxt "@info:title"
  6059. #~ msgid "Model Checker Warning"
  6060. #~ msgstr "模型檢查器警告"
  6061. #~ msgctxt "@info:status"
  6062. #~ msgid ""
  6063. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6064. #~ "Tips that may be useful to improve the print quality:\n"
  6065. #~ "1) Use rounded corners.\n"
  6066. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6067. #~ "3) Use a different material."
  6068. #~ msgstr ""
  6069. #~ "由於物件大小和模型所選用的耗材,某些模型可能無法理想地列印:{model_names}。\n"
  6070. #~ "可能有助於提高列印品質的訣竅:\n"
  6071. #~ "1) 使用圓角。\n"
  6072. #~ "2) 關閉風扇(在模型沒有微小細節的情況下)。\n"
  6073. #~ "3) 使用不同的耗材。"
  6074. #~ msgctxt "@info:status"
  6075. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6076. #~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內解決這些問題。"
  6077. #~ msgctxt "@info:status"
  6078. #~ msgid ""
  6079. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6080. #~ "\n"
  6081. #~ "Thanks!"
  6082. #~ msgstr ""
  6083. #~ "在你的繪圖中找不到模型。請你再次檢查它的內容並確認裡面有一個零件或組件。\n"
  6084. #~ "\n"
  6085. #~ "謝謝!"
  6086. #~ msgctxt "@info:status"
  6087. #~ msgid ""
  6088. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6089. #~ "\n"
  6090. #~ "Sorry!"
  6091. #~ msgstr ""
  6092. #~ "在你的繪圖中發現了超過一個以上的零件或組件。我們目前只支援只有正好一個零件或組件的繪圖。\n"
  6093. #~ "\n"
  6094. #~ "抱歉!"
  6095. #~ msgctxt "@item:inlistbox"
  6096. #~ msgid "SolidWorks part file"
  6097. #~ msgstr "SolidWorks 零件檔案"
  6098. #~ msgctxt "@item:inlistbox"
  6099. #~ msgid "SolidWorks assembly file"
  6100. #~ msgstr "SolidWorks 組件檔案"
  6101. #~ msgctxt "@item:inlistbox"
  6102. #~ msgid "SolidWorks drawing file"
  6103. #~ msgstr "SolidWorks 繪圖檔案"
  6104. #~ msgctxt "@info:status"
  6105. #~ msgid ""
  6106. #~ "Dear customer,\n"
  6107. #~ "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"
  6108. #~ "\n"
  6109. #~ "With kind regards\n"
  6110. #~ " - Thomas Karl Pietrowski"
  6111. #~ msgstr ""
  6112. #~ "親愛的客戶,\n"
  6113. #~ "我們無法在您的系統上找到有效安裝的 SolidWorks。這表示未安裝 SolidWorks,或者您沒有擁有有效的授權。請確認 SolidWorks 本身是可以正常執行的,或是聯絡您的技術部門處理。\n"
  6114. #~ "\n"
  6115. #~ "順頌 時祺\n"
  6116. #~ " - Thomas Karl Pietrowski"
  6117. #~ msgctxt "@info:status"
  6118. #~ msgid ""
  6119. #~ "Dear customer,\n"
  6120. #~ "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"
  6121. #~ "\n"
  6122. #~ "With kind regards\n"
  6123. #~ " - Thomas Karl Pietrowski"
  6124. #~ msgstr ""
  6125. #~ "親愛的客戶,\n"
  6126. #~ "您目前正在 Windows 以外的作業系統上執行此外掛。此外掛只能在有安裝有效授權 SolidWorks 的 Windows 上執行。請在有安裝 SolidWorks 的 windows 電腦上安裝此外掛。\n"
  6127. #~ "\n"
  6128. #~ "順頌 時祺\n"
  6129. #~ " - Thomas Karl Pietrowski"
  6130. #~ msgid "Configure"
  6131. #~ msgstr "設定"
  6132. #~ msgid "Installation guide for SolidWorks macro"
  6133. #~ msgstr "SolidWorks 巨集的安裝指南"
  6134. #~ msgctxt "@action:button"
  6135. #~ msgid "Disable"
  6136. #~ msgstr "關閉"
  6137. #~ msgctxt "@action:tooltip"
  6138. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6139. #~ msgstr "不允許 Cura 傳送匿名的使用狀況統計資料。你可以在偏好設定中再次啟用此功能。"
  6140. #~ msgid "Install"
  6141. #~ msgstr "安裝"
  6142. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6143. #~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR,它沒有設置到正確的目錄。"
  6144. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6145. #~ msgstr "Siemens NX Cura 外掛已成功安裝。"
  6146. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6147. #~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR。"
  6148. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6149. #~ msgstr "無法安裝 Siemens NX 外掛。無法為 Siemens NX 設定環境變數 UGII_USER_DIR。"
  6150. #~ msgctxt "@info:status"
  6151. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6152. #~ msgstr "無法從 <filename>{0}</filename> 取得外掛 ID"
  6153. #~ msgctxt "@info:tile"
  6154. #~ msgid "Warning"
  6155. #~ msgstr "警告"
  6156. #~ msgctxt "@window:title"
  6157. #~ msgid "Plugin browser"
  6158. #~ msgstr "外掛瀏覽器"
  6159. #~ msgctxt "@label"
  6160. #~ msgid "Ultimaker 3"
  6161. #~ msgstr "Ultimaker 3"
  6162. #~ msgctxt "@label"
  6163. #~ msgid "Ultimaker 3 Extended"
  6164. #~ msgstr "Ultimaker 3 Extended"
  6165. #~ msgctxt "@title:window"
  6166. #~ msgid "SolidWorks: Export wizard"
  6167. #~ msgstr "SolidWorks: 導出精靈"
  6168. #~ msgctxt "@action:label"
  6169. #~ msgid "Quality:"
  6170. #~ msgstr "品質:"
  6171. #~ msgctxt "@option:curaSolidworksStlQuality"
  6172. #~ msgid "Fine (3D-printing)"
  6173. #~ msgstr "精細 (3D-printing)"
  6174. #~ msgctxt "@option:curaSolidworksStlQuality"
  6175. #~ msgid "Coarse (3D-printing)"
  6176. #~ msgstr "粗糙 (3D-printing)"
  6177. #~ msgctxt "@option:curaSolidworksStlQuality"
  6178. #~ msgid "Fine (SolidWorks)"
  6179. #~ msgstr "精細 (SolidWorks)"
  6180. #~ msgctxt "@option:curaSolidworksStlQuality"
  6181. #~ msgid "Coarse (SolidWorks)"
  6182. #~ msgstr "粗糙 (SolidWorks)"
  6183. #~ msgctxt "@text:window"
  6184. #~ msgid "Show this dialog again"
  6185. #~ msgstr "再次顯示這個對話框"
  6186. #~ msgctxt "@action:button"
  6187. #~ msgid "Continue"
  6188. #~ msgstr "繼續"
  6189. #~ msgctxt "@action:button"
  6190. #~ msgid "Abort"
  6191. #~ msgstr "取消"
  6192. #~ msgctxt "@title:window"
  6193. #~ msgid "How to install Cura SolidWorks macro"
  6194. #~ msgstr "如何安裝 Cura SolidWorks 巨集"
  6195. #~ msgctxt "@description:label"
  6196. #~ msgid "Steps:"
  6197. #~ msgstr "步驟:"
  6198. #~ msgctxt "@action:button"
  6199. #~ msgid ""
  6200. #~ "Open the directory\n"
  6201. #~ "with macro and icon"
  6202. #~ msgstr ""
  6203. #~ "使用巨集和圖示\n"
  6204. #~ "開啟目錄"
  6205. #~ msgctxt "@description:label"
  6206. #~ msgid "Instructions:"
  6207. #~ msgstr "操作說明:"
  6208. #~ msgctxt "@action:playpause"
  6209. #~ msgid "Play"
  6210. #~ msgstr "播放"
  6211. #~ msgctxt "@action:playpause"
  6212. #~ msgid "Pause"
  6213. #~ msgstr "暫停"
  6214. #~ msgctxt "@action:button"
  6215. #~ msgid "Previous Step"
  6216. #~ msgstr "前一步"
  6217. #~ msgctxt "@action:button"
  6218. #~ msgid "Done"
  6219. #~ msgstr "完成"
  6220. #~ msgctxt "@action:button"
  6221. #~ msgid "Next Step"
  6222. #~ msgstr "下一步"
  6223. #~ msgctxt "@title:window"
  6224. #~ msgid "SolidWorks plugin: Configuration"
  6225. #~ msgstr "SolidWorks 外掛:設定"
  6226. #~ msgctxt "@title:tab"
  6227. #~ msgid "Conversion settings"
  6228. #~ msgstr "轉換設定"
  6229. #~ msgctxt "@label"
  6230. #~ msgid "First choice:"
  6231. #~ msgstr "第一選擇:"
  6232. #~ msgctxt "@text:menu"
  6233. #~ msgid "Latest installed version (Recommended)"
  6234. #~ msgstr "最新安裝的版本(建議)"
  6235. #~ msgctxt "@text:menu"
  6236. #~ msgid "Default version"
  6237. #~ msgstr "預設的版本"
  6238. #~ msgctxt "@label"
  6239. #~ msgid "Show wizard before opening SolidWorks files"
  6240. #~ msgstr "開啟 SolidWorks 檔案時顯示精靈"
  6241. #~ msgctxt "@label"
  6242. #~ msgid "Automatically rotate opened file into normed orientation"
  6243. #~ msgstr "自動將開啟的檔案旋轉到正常方向"
  6244. #~ msgctxt "@title:tab"
  6245. #~ msgid "Installation(s)"
  6246. #~ msgstr "安裝"
  6247. #~ msgctxt "@label"
  6248. #~ msgid "COM service found"
  6249. #~ msgstr "找到 COM 服務"
  6250. #~ msgctxt "@label"
  6251. #~ msgid "Executable found"
  6252. #~ msgstr "找到可執行檔案"
  6253. #~ msgctxt "@label"
  6254. #~ msgid "COM starting"
  6255. #~ msgstr "COM 啟動中"
  6256. #~ msgctxt "@label"
  6257. #~ msgid "Revision number"
  6258. #~ msgstr "版本號碼"
  6259. #~ msgctxt "@label"
  6260. #~ msgid "Functions available"
  6261. #~ msgstr "可用功能"
  6262. #~ msgctxt "@label (%1 is object name)"
  6263. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6264. #~ msgstr "新的耗材直徑設定為 %1 mm,這與目前機器不相容。你想繼續嗎?"
  6265. #~ msgctxt "@action:menu"
  6266. #~ msgid "Browse plugins..."
  6267. #~ msgstr "瀏覽外掛..."
  6268. #~ msgctxt "@title:menu menubar:toplevel"
  6269. #~ msgid "P&lugins"
  6270. #~ msgstr "外掛(&l)"
  6271. #~ msgctxt "@window:title"
  6272. #~ msgid "Install Plugin"
  6273. #~ msgstr "安裝外掛"
  6274. #~ msgctxt "description"
  6275. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6276. #~ msgstr "提供更改印表機設定(如成形空間體積、噴頭口徑等)的方法"
  6277. #~ msgctxt "description"
  6278. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6279. #~ msgstr "管理與 Ultimaker 3 印表機的網路連接"
  6280. #~ msgctxt "description"
  6281. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6282. #~ msgstr "讓你可以使用 SolidWorks 開啟某些檔案。此外掛會完成轉換和最佳化的工作。"
  6283. #~ msgctxt "name"
  6284. #~ msgid "SolidWorks Integration"
  6285. #~ msgstr "SolidWorks 整合"
  6286. #~ msgctxt "description"
  6287. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6288. #~ msgstr "偏好設定、機器設定和列印參數修改後自動儲存。"
  6289. #~ msgctxt "name"
  6290. #~ msgid "Auto Save"
  6291. #~ msgstr "自動儲存"
  6292. #~ msgctxt "description"
  6293. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6294. #~ msgstr "協助你在 Siemens NX 中安裝一個「匯出到 Cura」按鈕。"
  6295. #~ msgctxt "name"
  6296. #~ msgid "Siemens NX Integration"
  6297. #~ msgstr "Siemens NX 整合"
  6298. #~ msgctxt "description"
  6299. #~ msgid "Find, manage and install new plugins."
  6300. #~ msgstr "尋找、管理和安裝新外掛。"
  6301. #~ msgctxt "name"
  6302. #~ msgid "Plugin Browser"
  6303. #~ msgstr "外掛瀏覽器"
  6304. #~ msgctxt "description"
  6305. #~ msgid "Ask the user once if he/she agrees with our license"
  6306. #~ msgstr "詢問使用者是否同意我們的授權協議"
  6307. #~ msgctxt "description"
  6308. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6309. #~ msgstr "提供 Ultimaker 印表機專屬功能(如平台調平精靈、選擇升級等)"
  6310. #~ msgctxt "@item:inlistbox"
  6311. #~ msgid "GCode File"
  6312. #~ msgstr "GCode 檔案"
  6313. #~ msgctxt "@info:status"
  6314. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6315. #~ msgstr "無法啟動新作業,因為印表機處於忙碌狀態或未連接。"
  6316. #~ msgctxt "@info:title"
  6317. #~ msgid "Printer Unavailable"
  6318. #~ msgstr "印表機無法使用"
  6319. #~ msgctxt "@info:status"
  6320. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6321. #~ msgstr "此印表機不支援透過 USB 連線列印,因為其使用 UltiGCode 類型的 G-code 檔案。"
  6322. #~ msgctxt "@info:title"
  6323. #~ msgid "USB Printing"
  6324. #~ msgstr "USB 連線列印"
  6325. #~ msgctxt "@info:status"
  6326. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6327. #~ msgstr "無法啟動新作業,因為該印表機不支援 USB 連線列印。"
  6328. #~ msgctxt "@info"
  6329. #~ msgid "Unable to update firmware because there are no printers connected."
  6330. #~ msgstr "無法更新韌體,因為沒有連接印表機。"
  6331. #~ msgctxt "@info"
  6332. #~ msgid "Could not find firmware required for the printer at %s."
  6333. #~ msgstr "在 %s 無法找到印表機所需的韌體。"
  6334. #~ msgctxt "@info:title"
  6335. #~ msgid "Printer Firmware"
  6336. #~ msgstr "印表機韌體"
  6337. #~ msgctxt "@info:title"
  6338. #~ msgid "Connection status"
  6339. #~ msgstr "連線狀態"
  6340. #~ msgctxt "@info:title"
  6341. #~ msgid "Connection Status"
  6342. #~ msgstr "連線狀態"
  6343. #~ msgctxt "@info:status"
  6344. #~ msgid "Access request was denied on the printer."
  6345. #~ msgstr "存取請求被印表機上拒絕。"
  6346. #~ msgctxt "@info:status"
  6347. #~ msgid "Access request failed due to a timeout."
  6348. #~ msgstr "存取請求超時失敗。"
  6349. #~ msgctxt "@info:status"
  6350. #~ msgid "The connection with the network was lost."
  6351. #~ msgstr "網路連接中斷。"
  6352. #~ msgctxt "@info:status"
  6353. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6354. #~ msgstr "與印表機的連接中斷,請檢查印表機是否已連接。"
  6355. #~ msgctxt "@info:status"
  6356. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6357. #~ msgstr "印表機無法啟動新的列印作業,目前的印表機狀態為 %s。"
  6358. #~ msgctxt "@info:title"
  6359. #~ msgid "Printer Status"
  6360. #~ msgstr "印表機狀態"
  6361. #~ msgctxt "@info:status"
  6362. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6363. #~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入列印頭。"
  6364. #~ msgctxt "@info:status"
  6365. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6366. #~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入耗材。"
  6367. #~ msgctxt "@label"
  6368. #~ msgid "Not enough material for spool {0}."
  6369. #~ msgstr "線軸 {0} 上沒有足夠的耗材。"
  6370. #~ msgctxt "@label"
  6371. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6372. #~ msgstr "不同的列印頭(Cura:{0},印表機: 為擠出機 {2} 選擇了 {1})"
  6373. #~ msgctxt "@label"
  6374. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6375. #~ msgstr "列印頭 {0} 未正確校準。需要在印表機上執行 XY 校正。"
  6376. #~ msgctxt "@info:status"
  6377. #~ msgid "Unable to send data to printer. Is another job still active?"
  6378. #~ msgstr "無法向印表機發送資料。請確認是否有另一項列印作業正在進行?"
  6379. #~ msgctxt "@label:MonitorStatus"
  6380. #~ msgid "Print aborted. Please check the printer"
  6381. #~ msgstr "列印已中斷。請檢查印表機"
  6382. #~ msgctxt "@label:MonitorStatus"
  6383. #~ msgid "Pausing print..."
  6384. #~ msgstr "暫停列印..."
  6385. #~ msgctxt "@label:MonitorStatus"
  6386. #~ msgid "Resuming print..."
  6387. #~ msgstr "繼續列印..."
  6388. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6389. #~ msgstr "這台印表機未設定成管理一組連線的 Ultimaker 3 印表機的主機。"
  6390. #~ msgctxt "Count is number of printers."
  6391. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6392. #~ msgstr "這台印表機是 {count} 台連線的 Ultimaker 3 印表機群組的主機。"
  6393. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6394. #~ msgstr "{printer_name} 已完成列印 '{job_name}'。請收起列印件並確認清空列印平台。"
  6395. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6396. #~ msgstr "{printer_name} 已為了列印 '{job_name}' 保留。請更改印表機設定配合此列印作業,以便開始列印。"
  6397. #~ msgctxt "@info:status"
  6398. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6399. #~ msgstr "無法傳送新的列印作業:這台印表機尚未設定成管理一組連線的 Ultimaker 3 印表機的主機。"
  6400. #~ msgctxt "@info:status"
  6401. #~ msgid "Unable to send print job to group {cluster_name}."
  6402. #~ msgstr "無法傳送列印作業到群組 {cluster_name}。"
  6403. #~ msgctxt "@info:status"
  6404. #~ msgid "Sent {file_name} to group {cluster_name}."
  6405. #~ msgstr "{file_name} 已傳送到群組 {cluster_name}。"
  6406. #~ msgctxt "@action:button"
  6407. #~ msgid "Show print jobs"
  6408. #~ msgstr "顯示列印作業"
  6409. #~ msgctxt "@info:tooltip"
  6410. #~ msgid "Opens the print jobs interface in your browser."
  6411. #~ msgstr "使用瀏覽器開啟列印作業介面。"
  6412. #~ msgctxt "@label Printer name"
  6413. #~ msgid "Unknown"
  6414. #~ msgstr "未知"
  6415. #~ msgctxt "@info:progress"
  6416. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6417. #~ msgstr "傳送 <filename>{file_name}</filename> 到群組 {cluster_name} 中"
  6418. #~ msgctxt "@info:status"
  6419. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6420. #~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內部解決這些問題。"
  6421. #~ msgctxt "@info:status"
  6422. #~ msgid ""
  6423. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6424. #~ "\n"
  6425. #~ " Thanks!."
  6426. #~ msgstr ""
  6427. #~ "在你的繪圖找不到模型。請你再次檢查它的內容並確認裡面有一個零件或組件。\n"
  6428. #~ "\n"
  6429. #~ "謝謝。"
  6430. #~ msgctxt "@info:status"
  6431. #~ msgid ""
  6432. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6433. #~ "\n"
  6434. #~ "Sorry!"
  6435. #~ msgstr ""
  6436. #~ "在你的繪圖找到了超過一個的零件或組件。我們目前只支援一個零件或組件的繪圖。\n"
  6437. #~ "\n"
  6438. #~ "抱歉!"
  6439. #~ msgctxt "@item:material"
  6440. #~ msgid "No material loaded"
  6441. #~ msgstr "未載入耗材"
  6442. #~ msgctxt "@item:material"
  6443. #~ msgid "Unknown material"
  6444. #~ msgstr "未知耗材"
  6445. #~ msgctxt "@info:status Has a cancel button next to it."
  6446. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6447. #~ msgstr "所選耗材直徑導致耗材與目前印表機不相容。"
  6448. #~ msgctxt "@action:button"
  6449. #~ msgid "Undo"
  6450. #~ msgstr "復原"
  6451. #~ msgctxt "@action"
  6452. #~ msgid "Undo changing the material diameter."
  6453. #~ msgstr "復原更改耗材直徑。"
  6454. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6455. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6456. #~ msgstr "列印參數 <filename>{0}</filename> 中的機器設定與你目前的機器不相符,無法導入。"
  6457. #~ msgctxt "@label crash message"
  6458. #~ msgid ""
  6459. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6460. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6461. #~ " "
  6462. #~ msgstr ""
  6463. #~ "<p><b>發生致命錯誤。請將錯誤報告傳送給我們以便修正此問題。</p></b>\n"
  6464. #~ " <p>請使用\"送出報告\"按鈕自動發送一份問題報告給我們的伺服器</p>\n"
  6465. #~ " "
  6466. #~ msgctxt "@label"
  6467. #~ msgid "not yet initialised<br/>"
  6468. #~ msgstr "尚未初始化<br/>"
  6469. #~ msgctxt "@label"
  6470. #~ msgid "Gcode flavor"
  6471. #~ msgstr "GCode 類型"
  6472. #~ msgctxt "@label"
  6473. #~ msgid "Start Gcode"
  6474. #~ msgstr "起始 Gcode"
  6475. #~ msgctxt "@tooltip"
  6476. #~ msgid "Gcode commands to be executed at the very start."
  6477. #~ msgstr "將在開始時執行的 Gcode 命令。"
  6478. #~ msgctxt "@label"
  6479. #~ msgid "End Gcode"
  6480. #~ msgstr "結束 Gcode"
  6481. #~ msgctxt "@tooltip"
  6482. #~ msgid "Gcode commands to be executed at the very end."
  6483. #~ msgstr "將在結束時執行的 Gcode 命令。"
  6484. #~ msgctxt "@label"
  6485. #~ msgid "Extruder Start Gcode"
  6486. #~ msgstr "擠出機起始 Gcode"
  6487. #~ msgctxt "@label"
  6488. #~ msgid "Extruder End Gcode"
  6489. #~ msgstr "擠出機結束 Gcode"
  6490. #~ msgctxt "@label"
  6491. #~ msgid "Starting firmware update, this may take a while."
  6492. #~ msgstr "正在開始韌體更新。可能需要花費一些時間,請耐心等待。"
  6493. #~ msgctxt "@label"
  6494. #~ msgid "Unknown error code: %1"
  6495. #~ msgstr "未知錯誤代碼: %1"
  6496. #~ msgctxt "@label Printer name"
  6497. #~ msgid "Ultimaker 3"
  6498. #~ msgstr "Ultimaker 3"
  6499. #~ msgctxt "@label Printer name"
  6500. #~ msgid "Ultimaker 3 Extended"
  6501. #~ msgstr "Ultimaker 3 Extended"
  6502. #~ msgctxt "@label Printer status"
  6503. #~ msgid "Unknown"
  6504. #~ msgstr "未知"
  6505. #~ msgctxt "@title:window"
  6506. #~ msgid "Find & Update plugins"
  6507. #~ msgstr "查找與更新外掛"
  6508. #~ msgctxt "@label"
  6509. #~ msgid "Here you can find a list of Third Party plugins."
  6510. #~ msgstr "你可以在這裡找到第三方外掛列表。"
  6511. #~ msgctxt "@action:button"
  6512. #~ msgid "Upgrade"
  6513. #~ msgstr "升級"
  6514. #~ msgctxt "@action:button"
  6515. #~ msgid "Download"
  6516. #~ msgstr "下載"
  6517. #~ msgctxt "@info:tooltip"
  6518. #~ msgid "Show caution message in gcode reader."
  6519. #~ msgstr "在 G-code 讀取器中顯示警告資訊。"
  6520. #~ msgctxt "@option:check"
  6521. #~ msgid "Caution message in gcode reader"
  6522. #~ msgstr "G-code 讀取器中的警告資訊"
  6523. #~ msgctxt "@window:title"
  6524. #~ msgid "Import Profile"
  6525. #~ msgstr "匯入列印參數"
  6526. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6527. #~ msgid "Printer: %1, %2: %3"
  6528. #~ msgstr "印表機:%1, %2: %3"
  6529. #~ msgctxt "@action:label %1 is printer name"
  6530. #~ msgid "Printer: %1"
  6531. #~ msgstr "印表機:%1"
  6532. #~ msgctxt "@label"
  6533. #~ msgid "GCode generator"
  6534. #~ msgstr "GCode 產生器"
  6535. #~ msgctxt "@action:menu"
  6536. #~ msgid "Configure setting visiblity..."
  6537. #~ msgstr "設定設定可見性..."
  6538. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6539. #~ msgid "Automatic: %1"
  6540. #~ msgstr "自動:%1"
  6541. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6542. #~ msgid "Automatic: %1"
  6543. #~ msgstr "自動: %1"
  6544. #~ msgctxt "@info:status"
  6545. #~ msgid "No printer connected"
  6546. #~ msgstr "沒有連接印表機"
  6547. #~ msgctxt "@tooltip"
  6548. #~ msgid "The current temperature of this extruder."
  6549. #~ msgstr "該擠出機的目前溫度。"
  6550. #~ msgctxt "@action:menu"
  6551. #~ msgid "Installed plugins..."
  6552. #~ msgstr "安裝外掛..."
  6553. #~ msgctxt "@label"
  6554. #~ msgid "Support Extruder"
  6555. #~ msgstr "支撐用擠出機"
  6556. #~ msgctxt "description"
  6557. #~ msgid "Writes GCode to a file."
  6558. #~ msgstr "將 GCode 寫入至檔案。"
  6559. #~ msgctxt "name"
  6560. #~ msgid "GCode Writer"
  6561. #~ msgstr "GCode 寫入器"
  6562. #~ msgctxt "name"
  6563. #~ msgid "GCode Profile Reader"
  6564. #~ msgstr "G-code 列印參數讀取器"
  6565. #~ msgctxt "@info:status"
  6566. #~ 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!"
  6567. #~ msgstr "開啟 SolidWorks 檔案時發生錯誤! 請檢查能否在 SolidWorks 中正常開啟檔案而不出現任何問題!"
  6568. #~ msgctxt "@info:status"
  6569. #~ msgid "Error while starting %s!"
  6570. #~ msgstr "啟動 %s 時發生錯誤!"
  6571. #~ msgctxt "@item:inlistbox"
  6572. #~ msgid "Simulation view"
  6573. #~ msgstr "模擬檢視"
  6574. #~ msgctxt "@info"
  6575. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6576. #~ msgstr "Cura 收集匿名切片統計資料。你可以在偏好設定中關閉此選項。"
  6577. #~ msgctxt "@action:button"
  6578. #~ msgid "Dismiss"
  6579. #~ msgstr "關閉此通知"
  6580. #~ msgctxt "@menuitem"
  6581. #~ msgid "Global"
  6582. #~ msgstr "整體"
  6583. #~ msgctxt "@label crash message"
  6584. #~ msgid ""
  6585. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6586. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6587. #~ " "
  6588. #~ msgstr ""
  6589. #~ "<p><b>程式發生了致命異常。請將錯誤報告傳送給我們以解決這個問題</p></b>\n"
  6590. #~ " <p>請使用「送出報告」按鈕將錯誤報告自動發送到我們的伺服器</p>\n"
  6591. #~ " "
  6592. #~ msgctxt "@label Cura version"
  6593. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6594. #~ msgstr "<b>Cura 版本:</b> {version}<br/>"
  6595. #~ msgctxt "@label Platform"
  6596. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6597. #~ msgstr "<b>平台:</b> {platform}<br/>"
  6598. #~ msgctxt "@label Qt version"
  6599. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6600. #~ msgstr "<b>Qt 版本:</b> {qt}<br/>"
  6601. #~ msgctxt "@label PyQt version"
  6602. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  6603. #~ msgstr "<b>PyQt 版本:</b> {pyqt}<br/>"
  6604. #~ msgctxt "@label OpenGL"
  6605. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  6606. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  6607. #~ msgctxt "@title:groupbox"
  6608. #~ msgid "Exception traceback"
  6609. #~ msgstr "異常追溯"
  6610. #~ msgctxt "@label"
  6611. #~ msgid "Material diameter"
  6612. #~ msgstr "耗材直徑"
  6613. #~ msgctxt "@title:window"
  6614. #~ msgid "Cura SolidWorks Plugin Configuration"
  6615. #~ msgstr "Cura SolidWorks 外掛設定"
  6616. #~ msgctxt "@action:label"
  6617. #~ msgid "Default quality of the exported STL:"
  6618. #~ msgstr "預設的匯出 STL 品質:"
  6619. #~ msgctxt "@option:curaSolidworksStlQuality"
  6620. #~ msgid "Always ask"
  6621. #~ msgstr "總是詢問"
  6622. #~ msgctxt "@option:curaSolidworksStlQuality"
  6623. #~ msgid "Always use Fine quality"
  6624. #~ msgstr "總是使用精細品質"
  6625. #~ msgctxt "@option:curaSolidworksStlQuality"
  6626. #~ msgid "Always use Coarse quality"
  6627. #~ msgstr "總是使用粗糙品質"
  6628. #~ msgctxt "@title:window"
  6629. #~ msgid "Import SolidWorks File as STL..."
  6630. #~ msgstr "匯入 SolidWorks 檔案為 STL..."
  6631. #~ msgctxt "@info:tooltip"
  6632. #~ msgid "Quality of the Exported STL"
  6633. #~ msgstr "匯出 STL 的品質"
  6634. #~ msgctxt "@action:label"
  6635. #~ msgid "Quality"
  6636. #~ msgstr "品質"
  6637. #~ msgctxt "@option:curaSolidworksStlQuality"
  6638. #~ msgid "Coarse"
  6639. #~ msgstr "粗糙"
  6640. #~ msgctxt "@option:curaSolidworksStlQuality"
  6641. #~ msgid "Fine"
  6642. #~ msgstr "精細"
  6643. #~ msgctxt "@"
  6644. #~ msgid "No Profile Available"
  6645. #~ msgstr "無可用的列印參數"
  6646. #~ msgctxt "@label"
  6647. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6648. #~ msgstr "這個設定由全部的擠出機共享,變更這個設定將改變全部擠出機的設定值"
  6649. #~ msgctxt "@tooltip"
  6650. #~ msgid "<b>Time specification</b><br/><table>"
  6651. #~ msgstr "<b>時間資訊</b><br/><table>"
  6652. #~ msgctxt "@action:inmenu menubar:view"
  6653. #~ msgid "&Reset camera position"
  6654. #~ msgstr "重置視角位置"
  6655. #~ msgctxt "@title:menu menubar:file"
  6656. #~ msgid "Save project"
  6657. #~ msgstr "儲存專案"
  6658. #~ msgctxt "@title:tab"
  6659. #~ msgid "Prepare"
  6660. #~ msgstr "準備"
  6661. #~ msgctxt "@title:tab"
  6662. #~ msgid "Monitor"
  6663. #~ msgstr "監控"
  6664. #~ msgctxt "@label"
  6665. #~ msgid "<a href='%1'>Check compatibility</a>"
  6666. #~ msgstr "<a href='%1'>檢查耗材相容性</a>"
  6667. #~ msgctxt "description"
  6668. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6669. #~ msgstr "讓你可以透過 SolidWorks 自身開啟特定檔案。隨後會將這些檔案進行轉換並載入 Cura"
  6670. #~ msgctxt "@label:status"
  6671. #~ msgid "Blocked"
  6672. #~ msgstr "暫停"
  6673. #~ msgctxt "@label:status"
  6674. #~ msgid "Can't start print"
  6675. #~ msgstr "無法開始列印"
  6676. #~ msgctxt "@info:title"
  6677. #~ msgid "Print Details"
  6678. #~ msgstr "列印細項設定"
  6679. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6680. #~ 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."
  6681. #~ msgstr "為了確保您的 {machine_name} 配備了最新功能,建議定期更新韌體。 這可以在 {machine_name} 上完成(有連接到網絡時)或透過 USB 完成。"
  6682. #~ msgctxt "@info:title"
  6683. #~ msgid "Layer View"
  6684. #~ msgstr "分層檢視"
  6685. #~ msgctxt "@menuitem"
  6686. #~ msgid "Browse plugins"
  6687. #~ msgstr "瀏覽外掛"
  6688. #~ msgctxt "@info:title"
  6689. #~ msgid "Export Details"
  6690. #~ msgstr "匯出細項設定"
  6691. #~ msgctxt "@label"
  6692. #~ msgid ""
  6693. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6694. #~ " <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"
  6695. #~ " "
  6696. #~ msgstr ""
  6697. #~ "<p>發生了致命錯誤,我們無法繼續!</p>\n"
  6698. #~ " <p>請利用下方資訊回報錯誤到 <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6699. #~ " "
  6700. #~ msgctxt "@action:button"
  6701. #~ msgid "Open Web Page"
  6702. #~ msgstr "開啟網頁"
  6703. #~ msgctxt "@action:button"
  6704. #~ msgid "Ok"
  6705. #~ msgstr "確定"
  6706. #~ msgctxt "@label"
  6707. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6708. #~ msgstr "這台印表機未設定成管理一組連線的 Ultimaker 3 印表機的主機"
  6709. #~ msgctxt "@label"
  6710. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6711. #~ msgstr "這台印表機是 %1 台 Ultimaker 3 印表機群組的主機"
  6712. #~ msgctxt "@label"
  6713. #~ msgid "Completed on: "
  6714. #~ msgstr "完成時間:"
  6715. #~ msgctxt "@label"
  6716. #~ msgid "PRINTER GROUP"
  6717. #~ msgstr "印表機群組"
  6718. #~ msgctxt "@description"
  6719. #~ msgid "Print time"
  6720. #~ msgstr "列印時間"
  6721. #~ msgctxt "@title:window"
  6722. #~ msgid "Cura"
  6723. #~ msgstr "Cura"
  6724. #~ msgctxt "name"
  6725. #~ msgid "UM3 Network Connection (Cluster)"
  6726. #~ msgstr "UM3 網路連接(叢集)"
  6727. #~ msgctxt "description"
  6728. #~ msgid "Provides the Layer view."
  6729. #~ msgstr "提供分層檢視。"
  6730. #~ msgctxt "name"
  6731. #~ msgid "Layer View"
  6732. #~ msgstr "分層檢視"
  6733. #~ msgctxt "@item:inlistbox"
  6734. #~ msgid "X-Ray"
  6735. #~ msgstr "透視"
  6736. #~ msgctxt "@label"
  6737. #~ msgid "Doodle3D"
  6738. #~ msgstr "Doodle3D"
  6739. #~ msgctxt "@info:tooltip"
  6740. #~ msgid "Print with "
  6741. #~ msgstr "使用 "
  6742. #~ msgctxt "@title:menu"
  6743. #~ msgid "Doodle3D"
  6744. #~ msgstr "Doodle3D 列印"
  6745. #~ msgctxt "@item:inlistbox"
  6746. #~ msgid "Enable Scan devices..."
  6747. #~ msgstr "啟用掃描設備..."
  6748. #~ msgctxt "@info:status"
  6749. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6750. #~ msgstr "請注意,重新載入模型功能無法運作!你必須手動重新開啟 SolidWorks 檔案!"
  6751. #~ msgctxt "@item:inlistbox"
  6752. #~ msgid "Layers"
  6753. #~ msgstr "層"
  6754. #~ msgctxt "@item:inmenu"
  6755. #~ msgid "Solid"
  6756. #~ msgstr "實體"
  6757. #~ msgctxt "@title:window"
  6758. #~ msgid "Doodle3D Settings"
  6759. #~ msgstr "Doodle3D 設定"
  6760. #~ msgctxt "@title:window"
  6761. #~ msgid "Print to: %1"
  6762. #~ msgstr "列印至:%1"
  6763. #~ msgctxt "@label"
  6764. #~ msgid "Extruder Temperature: %1/%2°C"
  6765. #~ msgstr "列印頭溫度:%1/%2 °C"
  6766. #~ msgctxt "@label"
  6767. #~ msgid "Bed Temperature: %1/%2°C"
  6768. #~ msgstr "熱床溫度:%1/%2°C"
  6769. #~ msgctxt "@label"
  6770. #~ msgid "View Mode: Layers"
  6771. #~ msgstr "檢視模式:分層"
  6772. #~ msgctxt "@label"
  6773. #~ msgid "Hotend"
  6774. #~ msgstr "熱端"
  6775. #~ msgctxt "@action:button"
  6776. #~ msgid "View Mode"
  6777. #~ msgstr "檢視模式"
  6778. #~ msgctxt "@title:tab"
  6779. #~ msgid "Print"
  6780. #~ msgstr "列印"
  6781. #~ msgctxt "@label"
  6782. #~ msgid "0%"
  6783. #~ msgstr "0%"
  6784. #~ msgctxt "@label"
  6785. #~ msgid "Empty infill will leave your model hollow with low strength."
  6786. #~ msgstr "無填充將使模型處於低強度且保持空心狀態。"
  6787. #~ msgctxt "@label"
  6788. #~ msgid "20%"
  6789. #~ msgstr "20%"
  6790. #~ msgctxt "@label"
  6791. #~ msgid "Light (20%) infill will give your model an average strength."
  6792. #~ msgstr "輕度(20%)填充將使列印模型處於中等強度。"
  6793. #~ msgctxt "@label"
  6794. #~ msgid "50%"
  6795. #~ msgstr "50%"
  6796. #~ msgctxt "@label"
  6797. #~ msgid "Dense (50%) infill will give your model an above average strength."
  6798. #~ msgstr "密集(50%)填充將使列印模型高於平均的強度。"
  6799. #~ msgctxt "@label"
  6800. #~ msgid "100%"
  6801. #~ msgstr "100%"
  6802. #~ msgctxt "@label"
  6803. #~ msgid "Solid (100%) infill will make your model completely solid."
  6804. #~ msgstr "完全(100%)填充將使你的模型處於完全實心狀態。"
  6805. #~ msgctxt "@label"
  6806. #~ msgid "Gradual"
  6807. #~ msgstr "漸層填充"
  6808. #~ msgctxt "description"
  6809. #~ msgid "Provides support for writing X3G files"
  6810. #~ msgstr "提供寫入 X3G 檔案的支援"
  6811. #~ msgctxt "name"
  6812. #~ msgid "X3G Writer"
  6813. #~ msgstr "X3G 寫入器"