cura.po 349 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305
  1. # Cura
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: PACKAGE VERSION\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "POT-Creation-Date: 2022-04-13 10:49+0200\n"
  10. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  11. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  12. "Language-Team: LANGUAGE <LL@li.org>\n"
  13. "Language: pt_PT\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  18. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PrepareStage/__init__.py:12
  19. msgctxt "@item:inmenu"
  20. msgid "Prepare"
  21. msgstr "Preparar"
  22. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraProfileWriter/__init__.py:14
  23. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraProfileReader/__init__.py:14
  24. msgctxt "@item:inlistbox"
  25. msgid "Cura Profile"
  26. msgstr "Perfil Cura"
  27. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:15
  28. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  29. msgid "Open Compressed Triangle Mesh"
  30. msgstr "Open Compressed Triangle Mesh"
  31. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:19
  32. msgctxt "@item:inlistbox"
  33. msgid "COLLADA Digital Asset Exchange"
  34. msgstr "COLLADA Digital Asset Exchange"
  35. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:23
  36. msgctxt "@item:inlistbox"
  37. msgid "glTF Binary"
  38. msgstr "glTF Binary"
  39. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:27
  40. msgctxt "@item:inlistbox"
  41. msgid "glTF Embedded JSON"
  42. msgstr "glTF Embedded JSON"
  43. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:36
  44. msgctxt "@item:inlistbox"
  45. msgid "Stanford Triangle Format"
  46. msgstr "Stanford Triangle Format"
  47. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:40
  48. msgctxt "@item:inlistbox"
  49. msgid "Compressed COLLADA Digital Asset Exchange"
  50. msgstr "Compressed COLLADA Digital Asset Exchange"
  51. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  52. msgctxt "@info"
  53. msgid "Could not access update information."
  54. msgstr "Não foi possível aceder às informações de atualização."
  55. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  56. #, python-brace-format
  57. msgctxt ""
  58. "@info Don't translate {machine_name}, since it gets replaced by a printer "
  59. "name!"
  60. msgid ""
  61. "New features or bug-fixes may be available for your {machine_name}! If you "
  62. "haven't done so already, it is recommended to update the firmware on your "
  63. "printer to version {latest_version}."
  64. msgstr "Poderão estar disponíveis novas funcionalidades ou correções de erros para a sua {machine_name}! Se ainda não tiver a versão mais recente, recomendamos"
  65. " que atualize o firmware da sua impressora para a versão {latest_version}."
  66. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  67. #, python-format
  68. msgctxt "@info:title The %s gets replaced with the printer name."
  69. msgid "New %s stable firmware available"
  70. msgstr "A nova versão de firmware %s estável está disponível"
  71. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  72. msgctxt "@action:button"
  73. msgid "How to update"
  74. msgstr "Como atualizar"
  75. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/__init__.py:14
  76. msgctxt "@item:inmenu"
  77. msgid "Monitor"
  78. msgstr "Monitorizar"
  79. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  80. msgctxt "@action:button Preceded by 'Ready to'."
  81. msgid "Save to Removable Drive"
  82. msgstr "Guardar no Disco Externo"
  83. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  84. #, python-brace-format
  85. msgctxt "@item:inlistbox"
  86. msgid "Save to Removable Drive {0}"
  87. msgstr "Guardar no Disco Externo {0}"
  88. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  89. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  90. msgctxt "@info:status"
  91. msgid "There are no file formats available to write with!"
  92. msgstr "Não existem quaisquer formatos disponíveis para gravar o ficheiro!"
  93. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97
  94. #, python-brace-format
  95. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  96. msgid "Saving to Removable Drive <filename>{0}</filename>"
  97. msgstr "A Guardar no Disco Externo <filename>{0}</filename>"
  98. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98
  99. msgctxt "@info:title"
  100. msgid "Saving"
  101. msgstr "A Guardar"
  102. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108
  103. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111
  104. #, python-brace-format
  105. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  106. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  107. msgstr "Não foi possível guardar em <filename>{0}</filename>: <message>{1}</message>"
  108. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127
  109. #, python-brace-format
  110. msgctxt "@info:status Don't translate the tag {device}!"
  111. msgid "Could not find a file name when trying to write to {device}."
  112. msgstr "Não foi possível encontrar um nome do ficheiro ao tentar gravar em {device}."
  113. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140
  114. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159
  115. #, python-brace-format
  116. msgctxt "@info:status"
  117. msgid "Could not save to removable drive {0}: {1}"
  118. msgstr "Não foi possível guardar no Disco Externo {0}: {1}"
  119. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141
  120. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  121. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1782
  122. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:156
  123. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:166
  124. msgctxt "@info:title"
  125. msgid "Error"
  126. msgstr "Erro"
  127. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150
  128. #, python-brace-format
  129. msgctxt "@info:status"
  130. msgid "Saved to Removable Drive {0} as {1}"
  131. msgstr "Guardado no Disco Externo {0} como {1}"
  132. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  133. msgctxt "@info:title"
  134. msgid "File Saved"
  135. msgstr "Ficheiro Guardado"
  136. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  137. msgctxt "@action:button"
  138. msgid "Eject"
  139. msgstr "Ejetar"
  140. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  141. #, python-brace-format
  142. msgctxt "@action"
  143. msgid "Eject removable device {0}"
  144. msgstr "Ejetar Disco Externo {0}"
  145. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172
  146. #, python-brace-format
  147. msgctxt "@info:status"
  148. msgid "Ejected {0}. You can now safely remove the drive."
  149. msgstr "{0} foi ejetado. O Disco já pode ser removido de forma segura."
  150. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  151. msgctxt "@info:title"
  152. msgid "Safely Remove Hardware"
  153. msgstr "Remover Hardware de forma segura"
  154. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176
  155. #, python-brace-format
  156. msgctxt "@info:status"
  157. msgid "Failed to eject {0}. Another program may be using the drive."
  158. msgstr "Não foi possível ejectar {0}. Outro programa pode estar a usar o disco."
  159. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177
  160. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1770
  161. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:217
  162. msgctxt "@info:title"
  163. msgid "Warning"
  164. msgstr "Aviso"
  165. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  166. msgctxt "@item:intext"
  167. msgid "Removable Drive"
  168. msgstr "Disco Externo"
  169. #: /home/remco/dev/code/ulti/trans/Cura/plugins/AMFReader/__init__.py:15
  170. msgctxt "@item:inlistbox"
  171. msgid "AMF File"
  172. msgstr "Ficheiro AMF"
  173. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPReader/__init__.py:22
  174. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/__init__.py:28
  175. msgctxt "@item:inlistbox"
  176. msgid "Ultimaker Format Package"
  177. msgstr "Arquivo Ultimaker Format"
  178. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  179. msgctxt "@label"
  180. msgid "Per Model Settings"
  181. msgstr "Definições Por-Modelo"
  182. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  183. msgctxt "@info:tooltip"
  184. msgid "Configure Per Model Settings"
  185. msgstr "Configurar definições individuais Por-Modelo"
  186. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  187. msgctxt "@action"
  188. msgid "Update Firmware"
  189. msgstr "Atualizar firmware"
  190. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  191. #, python-brace-format
  192. msgctxt "@info:status"
  193. msgid ""
  194. "Cura has detected material profiles that were not yet installed on the host "
  195. "printer of group {0}."
  196. msgstr "O Cura detetou perfis de material que ainda não estavam instalados na impressora que aloja o grupo {0}."
  197. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  198. msgctxt "@info:title"
  199. msgid "Sending materials to printer"
  200. msgstr "Enviar materiais para a impressora"
  201. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  202. #, python-brace-format
  203. msgctxt "@info:status"
  204. msgid ""
  205. "You are attempting to connect to {0} but it is not the host of a group. You "
  206. "can visit the web page to configure it as a group host."
  207. msgstr "Está a tentar ligar a {0}, mas esta não é Host de um grupo. Pode visitar a página Web para a configurar como Host do grupo."
  208. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  209. msgctxt "@info:title"
  210. msgid "Not a group host"
  211. msgstr "Não é Host do grupo"
  212. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  213. msgctxt "@action"
  214. msgid "Configure group"
  215. msgstr "Configurar grupo"
  216. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  217. msgctxt "@info:status"
  218. msgid "Sending Print Job"
  219. msgstr "A enviar trabalho de impressão"
  220. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  221. msgctxt "@info:status"
  222. msgid "Uploading print job to printer."
  223. msgstr "Carregar um trabalho de impressão na impressora."
  224. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  225. msgctxt "@info:status"
  226. msgid "Print job queue is full. The printer can't accept a new job."
  227. msgstr "A fila de trabalhos de impressão está cheia. A impressora não consegue aceitar um novo trabalho."
  228. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  229. msgctxt "@info:title"
  230. msgid "Queue Full"
  231. msgstr "Fila cheia"
  232. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  233. msgctxt "@info:status"
  234. msgid "Please wait until the current job has been sent."
  235. msgstr "Aguarde até o trabalho atual ter sido enviado."
  236. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  237. msgctxt "@info:title"
  238. msgid "Print error"
  239. msgstr "Erro de impressão"
  240. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  241. msgctxt "@info:status"
  242. msgid "Print job was successfully sent to the printer."
  243. msgstr "O trabalho de impressão foi enviado com sucesso para a impressora."
  244. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  245. msgctxt "@info:title"
  246. msgid "Data Sent"
  247. msgstr "Dados Enviados"
  248. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  249. #, python-brace-format
  250. msgctxt "@info:status"
  251. msgid ""
  252. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  253. " Manage your print queue and monitor your prints from anywhere connecting "
  254. "your printer to Digital Factory"
  255. msgstr "A sua impressora <b>{printer_name}</b> pode ser ligada através da cloud.\n Faça a gestão da sua fila de impressão e monitorize as suas impressões a partir"
  256. " de qualquer local ao ligar a sua impressora ao Digital Factory"
  257. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  258. msgctxt "@info:title"
  259. msgid "Are you ready for cloud printing?"
  260. msgstr "Está preparado para a impressão na cloud?"
  261. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  262. msgctxt "@action"
  263. msgid "Get started"
  264. msgstr "Iniciar"
  265. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  266. msgctxt "@action"
  267. msgid "Learn more"
  268. msgstr "Saber mais"
  269. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  270. msgctxt "@info:status"
  271. msgid ""
  272. "You are attempting to connect to a printer that is not running Ultimaker "
  273. "Connect. Please update the printer to the latest firmware."
  274. msgstr "Está a tentar ligar a uma impressora que não tem o Ultimaker Connect. Atualize a impressora para o firmware mais recente."
  275. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  276. msgctxt "@info:title"
  277. msgid "Update your printer"
  278. msgstr "Atualizar a impressora"
  279. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  280. msgctxt "@info:text"
  281. msgid "Could not upload the data to the printer."
  282. msgstr "Não foi possível carregar os dados para a impressora."
  283. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  284. msgctxt "@info:title"
  285. msgid "Network error"
  286. msgstr "Erro de rede"
  287. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  288. msgctxt "@action:button Preceded by 'Ready to'."
  289. msgid "Print over network"
  290. msgstr "Imprimir através da rede"
  291. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  292. msgctxt "@properties:tooltip"
  293. msgid "Print over network"
  294. msgstr "Imprimir através da rede"
  295. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  296. msgctxt "@info:status"
  297. msgid "Connected over the network"
  298. msgstr "Ligado através da rede"
  299. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  300. msgctxt "@info:status"
  301. msgid "tomorrow"
  302. msgstr "amanhã"
  303. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  304. msgctxt "@info:status"
  305. msgid "today"
  306. msgstr "hoje"
  307. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  308. msgctxt "@action"
  309. msgid "Connect via Network"
  310. msgstr "Ligar Através da Rede"
  311. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229
  312. msgctxt "info:status"
  313. msgid "New printer detected from your Ultimaker account"
  314. msgid_plural "New printers detected from your Ultimaker account"
  315. msgstr[0] "Nova impressora detetada a partir da sua conta Ultimaker"
  316. msgstr[1] "Novas impressoras detetadas a partir da sua conta Ultimaker"
  317. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240
  318. #, python-brace-format
  319. msgctxt "info:status Filled in with printer name and printer model."
  320. msgid "Adding printer {name} ({model}) from your account"
  321. msgstr "Adicionar impressora {name} ({model}) a partir da sua conta"
  322. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257
  323. #, python-brace-format
  324. msgctxt "info:{0} gets replaced by a number of printers"
  325. msgid "... and {0} other"
  326. msgid_plural "... and {0} others"
  327. msgstr[0] "... e {0} outra"
  328. msgstr[1] "... e {0} outras"
  329. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262
  330. msgctxt "info:status"
  331. msgid "Printers added from Digital Factory:"
  332. msgstr "Impressoras adicionadas a partir da Digital Factory:"
  333. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328
  334. msgctxt "info:status"
  335. msgid "A cloud connection is not available for a printer"
  336. msgid_plural "A cloud connection is not available for some printers"
  337. msgstr[0] "Não existe uma conectividade de cloud disponível para a impressora"
  338. msgstr[1] "Não existe uma conectividade de cloud disponível para algumas impressoras"
  339. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  340. msgctxt "info:status"
  341. msgid "This printer is not linked to the Digital Factory:"
  342. msgid_plural "These printers are not linked to the Digital Factory:"
  343. msgstr[0] "Esta impressora não está associada à Digital Factory:"
  344. msgstr[1] "Estas impressoras não estão associadas à Digital Factory:"
  345. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  346. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432
  347. msgctxt "info:name"
  348. msgid "Ultimaker Digital Factory"
  349. msgstr "Ultimaker Digital Factory"
  350. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346
  351. #, python-brace-format
  352. msgctxt "info:status"
  353. msgid "To establish a connection, please visit the {website_link}"
  354. msgstr "Para estabelecer uma ligação, visite {website_link}"
  355. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350
  356. msgctxt "@action:button"
  357. msgid "Keep printer configurations"
  358. msgstr "Manter configurações da impressora"
  359. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355
  360. msgctxt "@action:button"
  361. msgid "Remove printers"
  362. msgstr "Remover impressoras"
  363. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434
  364. #, python-brace-format
  365. msgctxt "@message {printer_name} is replaced with the name of the printer"
  366. msgid "{printer_name} will be removed until the next account sync."
  367. msgstr "A impressora {printer_name} vai ser removida até à próxima sincronização de conta."
  368. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435
  369. #, python-brace-format
  370. msgctxt "@message {printer_name} is replaced with the name of the printer"
  371. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  372. msgstr "Para remover a impressora {printer_name} de forma permanente, visite {digital_factory_link}"
  373. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436
  374. #, python-brace-format
  375. msgctxt "@message {printer_name} is replaced with the name of the printer"
  376. msgid "Are you sure you want to remove {printer_name} temporarily?"
  377. msgstr "Tem a certeza de que pretende remover a impressora {printer_name} temporariamente?"
  378. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473
  379. msgctxt "@title:window"
  380. msgid "Remove printers?"
  381. msgstr "Remover impressoras?"
  382. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476
  383. #, python-brace-format
  384. msgctxt "@label"
  385. msgid ""
  386. "You are about to remove {0} printer from Cura. This action cannot be "
  387. "undone.\n"
  388. "Are you sure you want to continue?"
  389. msgid_plural ""
  390. "You are about to remove {0} printers from Cura. This action cannot be "
  391. "undone.\n"
  392. "Are you sure you want to continue?"
  393. msgstr[0] "Está prestes a remover {0} impressora do Cura. Esta ação não pode ser anulada.\nTem a certeza de que pretende continuar?"
  394. msgstr[1] "Está prestes a remover {0} impressoras do Cura. Esta ação não pode ser anulada.\nTem a certeza de que pretende continuar?"
  395. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481
  396. msgctxt "@label"
  397. msgid ""
  398. "You are about to remove all printers from Cura. This action cannot be "
  399. "undone.\n"
  400. "Are you sure you want to continue?"
  401. msgstr "Está prestes a remover todas as impressoras do Cura. Esta ação não pode ser anulada.Tem a certeza de que pretende continuar?"
  402. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  403. msgctxt "@action:button"
  404. msgid "Print via cloud"
  405. msgstr "Imprimir através da cloud"
  406. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
  407. msgctxt "@properties:tooltip"
  408. msgid "Print via cloud"
  409. msgstr "Imprimir através da cloud"
  410. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
  411. msgctxt "@info:status"
  412. msgid "Connected via cloud"
  413. msgstr "Ligada através da cloud"
  414. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261
  415. msgctxt "@action:button"
  416. msgid "Monitor print"
  417. msgstr "Monitorizar a impressão"
  418. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263
  419. msgctxt "@action:tooltip"
  420. msgid "Track the print in Ultimaker Digital Factory"
  421. msgstr "Controle a impressão no Ultimaker Digital Factory"
  422. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279
  423. #, python-brace-format
  424. msgctxt "@error:send"
  425. msgid "Unknown error code when uploading print job: {0}"
  426. msgstr "Código de erro desconhecido ao carregar trabalho de impressão: {0}"
  427. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ModelChecker/ModelChecker.py:31
  428. msgctxt "@info:title"
  429. msgid "3D Model Assistant"
  430. msgstr "Assistente de Modelos 3D"
  431. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ModelChecker/ModelChecker.py:97
  432. #, python-brace-format
  433. msgctxt "@info:status"
  434. msgid ""
  435. "<p>One or more 3D models may not print optimally due to the model size and "
  436. "material configuration:</p>\n"
  437. "<p>{model_names}</p>\n"
  438. "<p>Find out how to ensure the best possible print quality and reliability.</"
  439. "p>\n"
  440. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality "
  441. "guide</a></p>"
  442. msgstr "<p>Um, ou mais, dos modelos 3D podem ter menos qualidade de impressão devido à dimensão do modelo 3D e definição de material:</p>\n<p>{model_names}</p>\n<p>Descubra"
  443. " como assegurar a melhor qualidade e fiabilidade possível da impressão.</p>\n<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver o guia de qualidade"
  444. " da impressão</a></p>"
  445. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:129
  446. msgctxt "@info:status"
  447. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  448. msgstr "Quando a opção Wire Printing está ativa, o Cura não permite visualizar as camadas de uma forma precisa."
  449. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:130
  450. msgctxt "@info:title"
  451. msgid "Simulation View"
  452. msgstr "Visualização por Camadas"
  453. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:133
  454. msgctxt "@info:status"
  455. msgid "Nothing is shown because you need to slice first."
  456. msgstr "Não consegue visualizar, porque precisa de fazer o seccionamento primeiro."
  457. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:134
  458. msgctxt "@info:title"
  459. msgid "No layers to show"
  460. msgstr "Sem camadas para visualizar"
  461. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:136
  462. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:74
  463. msgctxt "@info:option_text"
  464. msgid "Do not show this message again"
  465. msgstr "Não mostrar esta mensagem novamente"
  466. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/__init__.py:15
  467. msgctxt "@item:inlistbox"
  468. msgid "Layer view"
  469. msgstr "Vista Camadas"
  470. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  471. msgctxt "@error:not supported"
  472. msgid "GCodeWriter does not support non-text mode."
  473. msgstr "O GCodeWriter não suporta modo sem texto."
  474. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  475. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  476. msgctxt "@warning:status"
  477. msgid "Please prepare G-code before exporting."
  478. msgstr "Prepare um G-code antes de exportar."
  479. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/__init__.py:16
  480. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeProfileReader/__init__.py:14
  481. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/__init__.py:14
  482. msgctxt "@item:inlistbox"
  483. msgid "G-code File"
  484. msgstr "Ficheiro G-code"
  485. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWriter.py:226
  486. msgctxt "@error:zip"
  487. msgid "Error writing 3mf file."
  488. msgstr "Erro ao gravar ficheiro 3mf."
  489. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  490. msgctxt "@error:zip"
  491. msgid "3MF Writer plug-in is corrupt."
  492. msgstr "O plug-in Gravador 3MF está danificado."
  493. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  494. msgctxt "@error"
  495. msgid "There is no workspace yet to write. Please add a printer first."
  496. msgstr "Ainda não existe um espaço de trabalho para gravar. Por favor, primeiro adicione uma impressora."
  497. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  498. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  499. msgctxt "@error:zip"
  500. msgid "No permission to write the workspace here."
  501. msgstr "Não tem permissão para escrever o espaço de trabalho aqui."
  502. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  503. msgctxt "@error:zip"
  504. msgid ""
  505. "The operating system does not allow saving a project file to this location "
  506. "or with this file name."
  507. msgstr "O sistema operativo não permite guardar um ficheiro de projeto nesta localização ou com este nome de ficheiro."
  508. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/__init__.py:26
  509. msgctxt "@item:inlistbox"
  510. msgid "3MF file"
  511. msgstr "Ficheiro 3MF"
  512. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/__init__.py:34
  513. msgctxt "@item:inlistbox"
  514. msgid "Cura Project 3MF file"
  515. msgstr "Ficheiro 3MF de Projeto Cura"
  516. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzReader/__init__.py:17
  517. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzWriter/__init__.py:17
  518. msgctxt "@item:inlistbox"
  519. msgid "Compressed G-code File"
  520. msgstr "Ficheiro G-code comprimido"
  521. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161
  522. msgctxt "@message"
  523. msgid ""
  524. "Slicing failed with an unexpected error. Please consider reporting a bug on "
  525. "our issue tracker."
  526. msgstr "O seccionamento falhou com um erro inesperado. Por favor reportar um erro no nosso registo de problemas."
  527. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  528. msgctxt "@message:title"
  529. msgid "Slicing failed"
  530. msgstr "O seccionamento falhou"
  531. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167
  532. msgctxt "@message:button"
  533. msgid "Report a bug"
  534. msgstr "Reportar um erro"
  535. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  536. msgctxt "@message:description"
  537. msgid "Report a bug on Ultimaker Cura's issue tracker."
  538. msgstr "Reportar um erro no registo de problemas do Ultimaker Cura."
  539. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395
  540. msgctxt "@info:status"
  541. msgid ""
  542. "Unable to slice with the current material as it is incompatible with the "
  543. "selected machine or configuration."
  544. msgstr "Não é possível seccionar com o material atual, uma vez que é incompatível com a impressora ou configuração selecionada."
  545. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396
  546. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429
  547. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456
  548. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468
  549. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480
  550. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493
  551. msgctxt "@info:title"
  552. msgid "Unable to slice"
  553. msgstr "Não é possível Seccionar"
  554. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  555. #, python-brace-format
  556. msgctxt "@info:status"
  557. msgid ""
  558. "Unable to slice with the current settings. The following settings have "
  559. "errors: {0}"
  560. msgstr "Não é possível seccionar com as definições atuais. As seguintes definições apresentam erros: {0}"
  561. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  562. #, python-brace-format
  563. msgctxt "@info:status"
  564. msgid ""
  565. "Unable to slice due to some per-model settings. The following settings have "
  566. "errors on one or more models: {error_labels}"
  567. msgstr "Não é possível seccionar devido a algumas definições por modelo. As seguintes definições apresentam erros num ou mais modelos: {error_labels}"
  568. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  569. msgctxt "@info:status"
  570. msgid ""
  571. "Unable to slice because the prime tower or prime position(s) are invalid."
  572. msgstr "Não é possível seccionar porque a torre de preparação ou a(s) posição(ões) de preparação é(são) inválidas."
  573. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479
  574. #, python-format
  575. msgctxt "@info:status"
  576. msgid ""
  577. "Unable to slice because there are objects associated with disabled Extruder "
  578. "%s."
  579. msgstr "Não é possível seccionar porque existem objetos associados ao extrusor %s desativado."
  580. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489
  581. msgctxt "@info:status"
  582. msgid ""
  583. "Please review settings and check if your models:\n"
  584. "- Fit within the build volume\n"
  585. "- Are assigned to an enabled extruder\n"
  586. "- Are not all set as modifier meshes"
  587. msgstr "Reveja as definições e verifique se os seus modelos:\n- Cabem dentro do volume de construção\n- Estão atribuídos a uma extrusora ativada\n- Não estão todos"
  588. " definidos como objetos modificadores"
  589. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  590. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  591. msgctxt "@info:status"
  592. msgid "Processing Layers"
  593. msgstr "A Processar Camadas"
  594. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  595. msgctxt "@info:title"
  596. msgid "Information"
  597. msgstr "Informações"
  598. #: /home/remco/dev/code/ulti/trans/Cura/plugins/X3DReader/__init__.py:13
  599. msgctxt "@item:inlistbox"
  600. msgid "X3D File"
  601. msgstr "Ficheiro X3D"
  602. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:14
  603. msgctxt "@item:inlistbox"
  604. msgid "JPG Image"
  605. msgstr "Imagem JPG"
  606. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:18
  607. msgctxt "@item:inlistbox"
  608. msgid "JPEG Image"
  609. msgstr "Imagem JPEG"
  610. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:22
  611. msgctxt "@item:inlistbox"
  612. msgid "PNG Image"
  613. msgstr "Imagem PNG"
  614. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:26
  615. msgctxt "@item:inlistbox"
  616. msgid "BMP Image"
  617. msgstr "Imagem BMP"
  618. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:30
  619. msgctxt "@item:inlistbox"
  620. msgid "GIF Image"
  621. msgstr "Imagem GIF"
  622. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218
  623. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:713
  624. msgctxt "@label"
  625. msgid "Nozzle"
  626. msgstr "Nozzle"
  627. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:544
  628. #, python-brace-format
  629. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  630. msgid ""
  631. "Project file <filename>{0}</filename> contains an unknown machine type "
  632. "<message>{1}</message>. Cannot import the machine. Models will be imported "
  633. "instead."
  634. msgstr "O ficheiro de projeto <filename>{0}</filename> contém um tipo de máquina desconhecido <message>{1}</message>. Não é possível importar a máquina. Em vez"
  635. " disso, serão importados os modelos."
  636. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:547
  637. msgctxt "@info:title"
  638. msgid "Open Project File"
  639. msgstr "Abrir ficheiro de projeto"
  640. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:644
  641. #, python-brace-format
  642. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  643. msgid ""
  644. "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}"
  645. "</message>."
  646. msgstr "O projeto de ficheiro <filename>{0}</filename> ficou subitamente inacessível: <message>{1}</message>."
  647. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:645
  648. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:653
  649. msgctxt "@info:title"
  650. msgid "Can't Open Project File"
  651. msgstr "Não é possível abrir o ficheiro de projeto"
  652. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:652
  653. #, python-brace-format
  654. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  655. msgid ""
  656. "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  657. msgstr "O ficheiro de projeto <filename>{0}</filename> está corrompido: <message>{1}</message>."
  658. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:705
  659. #, python-brace-format
  660. msgctxt "@info:error Don't translate the XML tag <filename>!"
  661. msgid ""
  662. "Project file <filename>{0}</filename> is made using profiles that are "
  663. "unknown to this version of Ultimaker Cura."
  664. msgstr "O ficheiro de projeto <filename>{0}</filename> foi criado utilizando perfis que são desconhecidos para esta versão do Ultimaker Cura."
  665. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  666. msgctxt "@title:tab"
  667. msgid "Recommended"
  668. msgstr "Recomendado"
  669. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  670. msgctxt "@title:tab"
  671. msgid "Custom"
  672. msgstr "Personalizado"
  673. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/__init__.py:27
  674. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/__init__.py:33
  675. msgctxt "@item:inlistbox"
  676. msgid "3MF File"
  677. msgstr "Ficheiro 3MF"
  678. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:57
  679. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:72
  680. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:94
  681. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:149
  682. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:159
  683. msgctxt "@info:error"
  684. msgid "Can't write to UFP file:"
  685. msgstr "Não é possível escrever no ficheiro UFP:"
  686. #: /home/remco/dev/code/ulti/trans/Cura/plugins/LegacyProfileReader/__init__.py:14
  687. msgctxt "@item:inlistbox"
  688. msgid "Cura 15.04 profiles"
  689. msgstr "Perfis Cura 15.04"
  690. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  691. msgctxt "@info:title"
  692. msgid "Backups"
  693. msgstr "Cópias de segurança"
  694. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  695. msgctxt "@info:backup_status"
  696. msgid "There was an error while uploading your backup."
  697. msgstr "Ocorreu um erro ao carregar a sua cópia de segurança."
  698. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  699. msgctxt "@info:backup_status"
  700. msgid "Creating your backup..."
  701. msgstr "A criar a cópia de segurança..."
  702. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  703. msgctxt "@info:backup_status"
  704. msgid "There was an error while creating your backup."
  705. msgstr "Ocorreu um erro ao criar a cópia de segurança."
  706. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  707. msgctxt "@info:backup_status"
  708. msgid "Uploading your backup..."
  709. msgstr "A carregar a sua cópia de segurança..."
  710. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  711. msgctxt "@info:backup_status"
  712. msgid "Your backup has finished uploading."
  713. msgstr "A cópia de segurança terminou o seu carregamento."
  714. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  715. msgctxt "@error:file_size"
  716. msgid "The backup exceeds the maximum file size."
  717. msgstr "A cópia de segurança excede o tamanho de ficheiro máximo."
  718. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  719. msgctxt "@item:inmenu"
  720. msgid "Manage backups"
  721. msgstr "Gerir cópias de segurança"
  722. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118
  723. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  724. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:122
  725. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:159
  726. msgctxt "@info:title"
  727. msgid "Backup"
  728. msgstr "Backup"
  729. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  730. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  731. msgctxt "@info:backup_status"
  732. msgid "There was an error trying to restore your backup."
  733. msgstr "Ocorreu um erro ao tentar restaurar a sua cópia de segurança."
  734. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  735. msgctxt "@text"
  736. msgid "Unable to read example data file."
  737. msgstr "Não foi possível ler o ficheiro de dados de exemplo."
  738. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  739. msgctxt "@error:not supported"
  740. msgid "GCodeGzWriter does not support text mode."
  741. msgstr "O GCodeGzWriter não suporta modo de texto."
  742. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  743. msgctxt "@item:inmenu"
  744. msgid "Post Processing"
  745. msgstr "Pós-Processamento"
  746. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  747. msgctxt "@item:inmenu"
  748. msgid "Modify G-Code"
  749. msgstr "Modificar G-Code"
  750. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SupportEraser/__init__.py:12
  751. msgctxt "@label"
  752. msgid "Support Blocker"
  753. msgstr "Remover Suportes"
  754. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SupportEraser/__init__.py:13
  755. msgctxt "@info:tooltip"
  756. msgid "Create a volume in which supports are not printed."
  757. msgstr "Criar um volume dentro do qual não são impressos suportes."
  758. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PreviewStage/__init__.py:13
  759. msgctxt "@item:inmenu"
  760. msgid "Preview"
  761. msgstr "Pré-visualizar"
  762. #: /home/remco/dev/code/ulti/trans/Cura/plugins/XRayView/__init__.py:12
  763. msgctxt "@item:inlistbox"
  764. msgid "X-Ray view"
  765. msgstr "Vista Raio-X"
  766. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  767. msgctxt "@action"
  768. msgid "Level build plate"
  769. msgstr "Nivelar base de construção"
  770. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  771. msgctxt "@action"
  772. msgid "Select upgrades"
  773. msgstr "Selecionar atualizações"
  774. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/PackageModel.py:43
  775. msgctxt "@label:property"
  776. msgid "Unknown Package"
  777. msgstr "Pacote desconhecido"
  778. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/PackageModel.py:66
  779. msgctxt "@label:property"
  780. msgid "Unknown Author"
  781. msgstr "Autor desconhecido"
  782. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/RemotePackageList.py:116
  783. msgctxt "@info:error"
  784. msgid "Could not interpret the server's response."
  785. msgstr "Não foi possível interpretar a resposta do servidor."
  786. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/RemotePackageList.py:146
  787. msgctxt "@info:error"
  788. msgid "Could not reach Marketplace."
  789. msgstr "Não foi possível ligar ao Marketplace."
  790. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:28
  791. msgctxt "@label"
  792. msgid "Installed Plugins"
  793. msgstr "Plug-ins instalados"
  794. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:29
  795. msgctxt "@label"
  796. msgid "Installed Materials"
  797. msgstr "Materiais instalados"
  798. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:33
  799. msgctxt "@label"
  800. msgid "Bundled Plugins"
  801. msgstr "Conjunto de Plug-ins"
  802. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:34
  803. msgctxt "@label"
  804. msgid "Bundled Materials"
  805. msgstr "Conjunto de Materiais"
  806. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:71
  807. msgctxt "@info:status"
  808. msgid ""
  809. "The highlighted areas indicate either missing or extraneous surfaces. Fix "
  810. "your model and open it again into Cura."
  811. msgstr "As áreas destacadas indicam superfícies em falta ou separadas. Corrija o modelo e volte a abri-lo no Cura."
  812. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:73
  813. msgctxt "@info:title"
  814. msgid "Model Errors"
  815. msgstr "Erros no modelo"
  816. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:80
  817. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:71
  818. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82
  819. msgctxt "@action:button"
  820. msgid "Learn more"
  821. msgstr "Saber mais"
  822. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/__init__.py:12
  823. msgctxt "@item:inmenu"
  824. msgid "Solid view"
  825. msgstr "Vista Sólidos"
  826. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:350
  827. msgctxt "@info:status"
  828. msgid "Parsing G-code"
  829. msgstr "A analisar G-code"
  830. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:352
  831. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:506
  832. msgctxt "@info:title"
  833. msgid "G-code Details"
  834. msgstr "Detalhes do G-code"
  835. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:504
  836. msgctxt "@info:generic"
  837. msgid ""
  838. "Make sure the g-code is suitable for your printer and printer configuration "
  839. "before sending the file to it. The g-code representation may not be accurate."
  840. msgstr "Certifique-se de que este g-code é apropriado para a sua impressora e respetiva configuração, antes de enviar o ficheiro para a impressora. A representação"
  841. " do g-code poderá não ser exata."
  842. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/__init__.py:18
  843. msgctxt "@item:inlistbox"
  844. msgid "G File"
  845. msgstr "Ficheiro G"
  846. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  847. msgctxt "@action"
  848. msgid "Machine Settings"
  849. msgstr "Definições da Máquina"
  850. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  851. msgctxt "@item:inmenu"
  852. msgid "USB printing"
  853. msgstr "Impressão USB"
  854. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  855. msgctxt "@action:button Preceded by 'Ready to'."
  856. msgid "Print via USB"
  857. msgstr "Imprimir por USB"
  858. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  859. msgctxt "@info:tooltip"
  860. msgid "Print via USB"
  861. msgstr "Imprimir por USB"
  862. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  863. msgctxt "@info:status"
  864. msgid "Connected via USB"
  865. msgstr "Ligado via USB"
  866. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  867. msgctxt "@label"
  868. msgid ""
  869. "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  870. msgstr "Existe uma impressão por USB em curso; fechar o Cura irá interromper esta impressão. Tem a certeza?"
  871. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  872. msgctxt "@message"
  873. msgid ""
  874. "A print is still in progress. Cura cannot start another print via USB until "
  875. "the previous print has completed."
  876. msgstr "Existe uma impressão em curso. O Cura não consegue iniciar outra impressão via USB até a impressão anterior ser concluída."
  877. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  878. msgctxt "@message"
  879. msgid "Print in Progress"
  880. msgstr "Impressão em curso"
  881. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:529
  882. msgctxt "@info:progress"
  883. msgid "Loading machines..."
  884. msgstr "A carregar máquinas..."
  885. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:536
  886. msgctxt "@info:progress"
  887. msgid "Setting up preferences..."
  888. msgstr "A configurar as preferências..."
  889. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:678
  890. msgctxt "@info:progress"
  891. msgid "Initializing Active Machine..."
  892. msgstr "A Inicializar a Máquina Ativa..."
  893. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:802
  894. msgctxt "@info:progress"
  895. msgid "Initializing machine manager..."
  896. msgstr "A inicializar o gestor das máquinas..."
  897. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:816
  898. msgctxt "@info:progress"
  899. msgid "Initializing build volume..."
  900. msgstr "A inicializar o volume de construção..."
  901. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:884
  902. msgctxt "@info:progress"
  903. msgid "Setting up scene..."
  904. msgstr "A configurar cenário..."
  905. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:920
  906. msgctxt "@info:progress"
  907. msgid "Loading interface..."
  908. msgstr "A carregar interface..."
  909. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:925
  910. msgctxt "@info:progress"
  911. msgid "Initializing engine..."
  912. msgstr "A inicializar o motor..."
  913. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1242
  914. #, python-format
  915. msgctxt ""
  916. "@info 'width', 'depth' and 'height' are variable names that must NOT be "
  917. "translated; just translate the format of ##x##x## mm."
  918. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  919. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  920. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1768
  921. #, python-brace-format
  922. msgctxt "@info:status"
  923. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  924. msgstr "Apenas pode ser carregado um ficheiro G-code de cada vez. Importação {0} ignorada"
  925. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1780
  926. #, python-brace-format
  927. msgctxt "@info:status"
  928. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  929. msgstr "Não é possível abrir outro ficheiro enquanto o G-code estiver a carregar. Importação {0} ignorada"
  930. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  931. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:338
  932. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:11
  933. msgctxt "@label"
  934. msgid "Default"
  935. msgstr "Default"
  936. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  937. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:14
  938. msgctxt "@label"
  939. msgid "Visual"
  940. msgstr "Acabamento"
  941. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  942. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:15
  943. msgctxt "@text"
  944. msgid ""
  945. "The visual profile is designed to print visual prototypes and models with "
  946. "the intent of high visual and surface quality."
  947. msgstr "O perfil de acabamento foi criado para imprimir modelos e protótipos finais com o objetivo de se obter uma elevada qualidade de acabamento da superfície"
  948. " em termos visuais."
  949. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  950. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:18
  951. msgctxt "@label"
  952. msgid "Engineering"
  953. msgstr "Engineering"
  954. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  955. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:19
  956. msgctxt "@text"
  957. msgid ""
  958. "The engineering profile is designed to print functional prototypes and end-"
  959. "use parts with the intent of better accuracy and for closer tolerances."
  960. msgstr "O perfil de engenharia foi criado para imprimir protótipos funcionais e peças finais com o objetivo de se obter uma maior precisão dimensional assim como"
  961. " tolerâncias menores."
  962. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  963. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:22
  964. msgctxt "@label"
  965. msgid "Draft"
  966. msgstr "Rascunho"
  967. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  968. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:23
  969. msgctxt "@text"
  970. msgid ""
  971. "The draft profile is designed to print initial prototypes and concept "
  972. "validation with the intent of significant print time reduction."
  973. msgstr "O perfil de rascunho foi concebido para imprimir protótipos de teste e de validação de conceitos com o objetivo de se obter uma redução significativa do"
  974. " tempo de impressão."
  975. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/ExtrudersModel.py:219
  976. msgctxt "@menuitem"
  977. msgid "Not overridden"
  978. msgstr "Manter"
  979. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/GlobalStacksModel.py:143
  980. #, python-brace-format
  981. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  982. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  983. msgstr "Tem a certeza de que pretende remover {0}? Esta ação não pode ser anulada!"
  984. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  985. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:361
  986. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:1614
  987. msgctxt "@label"
  988. msgid "Unknown"
  989. msgstr "Desconhecido"
  990. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  991. msgctxt "@label"
  992. msgid ""
  993. "The printer(s) below cannot be connected because they are part of a group"
  994. msgstr "Não é possível ligar a(s) impressora(s) abaixo porque faz(em) parte de um grupo"
  995. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  996. msgctxt "@label"
  997. msgid "Available networked printers"
  998. msgstr "Impressoras em rede disponíveis"
  999. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualitySettingsModel.py:182
  1000. msgctxt "@info:status"
  1001. msgid "Calculated"
  1002. msgstr "Calculado"
  1003. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:55
  1004. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66
  1005. msgctxt "@action:button"
  1006. msgid ""
  1007. "Please sync the material profiles with your printers before starting to "
  1008. "print."
  1009. msgstr "Sincronize os perfis de material com as suas impressoras antes de começar a imprimir."
  1010. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:56
  1011. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67
  1012. msgctxt "@action:button"
  1013. msgid "New materials installed"
  1014. msgstr "Novos materiais instalados"
  1015. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:63
  1016. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74
  1017. msgctxt "@action:button"
  1018. msgid "Sync materials"
  1019. msgstr "Sincronizar materiais"
  1020. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:288
  1021. msgctxt "@label"
  1022. msgid "Custom Material"
  1023. msgstr "Material Personalizado"
  1024. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:289
  1025. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:336
  1026. msgctxt "@label"
  1027. msgid "Custom"
  1028. msgstr "Personalizado"
  1029. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:390
  1030. msgctxt "@label"
  1031. msgid "Custom profiles"
  1032. msgstr "Perfis personalizados"
  1033. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:425
  1034. #, python-brace-format
  1035. msgctxt "@item:inlistbox"
  1036. msgid "All Supported Types ({0})"
  1037. msgstr "Todos os Formatos Suportados ({0})"
  1038. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:426
  1039. msgctxt "@item:inlistbox"
  1040. msgid "All Files (*)"
  1041. msgstr "Todos os Ficheiros (*)"
  1042. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  1043. msgctxt "@text:error"
  1044. msgid "Failed to create archive of materials to sync with printers."
  1045. msgstr "Não foi possível criar o ficheiro de materiais para sincronizar com as impressoras."
  1046. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111
  1047. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  1048. msgctxt "@text:error"
  1049. msgid "Failed to load the archive of materials to sync it with printers."
  1050. msgstr "Não foi possível carregar o ficheiro de materiais para sincronizá-lo com as impressoras."
  1051. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  1052. msgctxt "@text:error"
  1053. msgid "The response from Digital Factory appears to be corrupted."
  1054. msgstr "A resposta da Digital Factory parece estar corrompida."
  1055. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147
  1056. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151
  1057. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155
  1058. msgctxt "@text:error"
  1059. msgid "The response from Digital Factory is missing important information."
  1060. msgstr "A resposta da Digital Factory tem informações importantes em falta."
  1061. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  1062. msgctxt "@text:error"
  1063. msgid ""
  1064. "Failed to connect to Digital Factory to sync materials with some of the "
  1065. "printers."
  1066. msgstr "Não foi possível estabelecer a ligação com a Digital Factory para poder sincronizar os materiais com algumas das impressoras."
  1067. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  1068. msgctxt "@text:error"
  1069. msgid "Failed to connect to Digital Factory."
  1070. msgstr "Não foi possível estabelecer a ligação com a Digital Factory."
  1071. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:115
  1072. msgctxt "@info:backup_failed"
  1073. msgid "Could not create archive from user data directory: {}"
  1074. msgstr "Não é possível criar um arquivo a partir do directório de dados do utilizador: {}"
  1075. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:134
  1076. msgctxt "@info:backup_failed"
  1077. msgid "Tried to restore a Cura backup without having proper data or meta data."
  1078. msgstr "Tentou restaurar um Cura backup sem existirem dados ou metadados correctos."
  1079. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:145
  1080. msgctxt "@info:backup_failed"
  1081. msgid "Tried to restore a Cura backup that is higher than the current version."
  1082. msgstr "Tentativa de reposição de uma cópia de segurança do Cura que é superior à versão atual."
  1083. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:158
  1084. msgctxt "@info:backup_failed"
  1085. msgid "The following error occurred while trying to restore a Cura backup:"
  1086. msgstr "O seguinte erro ocorreu ao tentar restaurar uma cópia de segurança do Cura:"
  1087. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  1088. msgctxt "@info:status"
  1089. msgid "Finding new location for objects"
  1090. msgstr "A procurar nova posição para os objetos"
  1091. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  1092. msgctxt "@info:title"
  1093. msgid "Finding Location"
  1094. msgstr "A Procurar Posição"
  1095. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  1096. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:99
  1097. msgctxt "@info:status"
  1098. msgid "Unable to find a location within the build volume for all objects"
  1099. msgstr "Não é possível posicionar todos os objetos dentro do volume de construção"
  1100. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  1101. msgctxt "@info:title"
  1102. msgid "Can't Find Location"
  1103. msgstr "Não é Possível Posicionar"
  1104. #: /home/remco/dev/code/ulti/trans/Cura/cura/API/Account.py:190
  1105. msgctxt "@info:title"
  1106. msgid "Login failed"
  1107. msgstr "Falha no início de sessão"
  1108. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:85
  1109. msgctxt "@tooltip"
  1110. msgid "Outer Wall"
  1111. msgstr "Parede Exterior"
  1112. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:86
  1113. msgctxt "@tooltip"
  1114. msgid "Inner Walls"
  1115. msgstr "Paredes Interiores"
  1116. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:87
  1117. msgctxt "@tooltip"
  1118. msgid "Skin"
  1119. msgstr "Revestimento"
  1120. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:88
  1121. msgctxt "@tooltip"
  1122. msgid "Infill"
  1123. msgstr "Enchimento"
  1124. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:89
  1125. msgctxt "@tooltip"
  1126. msgid "Support Infill"
  1127. msgstr "Enchimento dos Suportes"
  1128. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:90
  1129. msgctxt "@tooltip"
  1130. msgid "Support Interface"
  1131. msgstr "Interface dos Suportes"
  1132. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:91
  1133. msgctxt "@tooltip"
  1134. msgid "Support"
  1135. msgstr "Suportes"
  1136. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:92
  1137. msgctxt "@tooltip"
  1138. msgid "Skirt"
  1139. msgstr "Contorno"
  1140. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:93
  1141. msgctxt "@tooltip"
  1142. msgid "Prime Tower"
  1143. msgstr "Torre de preparação"
  1144. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:94
  1145. msgctxt "@tooltip"
  1146. msgid "Travel"
  1147. msgstr "Deslocação"
  1148. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:95
  1149. msgctxt "@tooltip"
  1150. msgid "Retractions"
  1151. msgstr "Retrações"
  1152. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:96
  1153. msgctxt "@tooltip"
  1154. msgid "Other"
  1155. msgstr "Outro"
  1156. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/ObjectsModel.py:69
  1157. #, python-brace-format
  1158. msgctxt "@label"
  1159. msgid "Group #{group_nr}"
  1160. msgstr "Grupo #{group_nr}"
  1161. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/TextManager.py:37
  1162. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/TextManager.py:63
  1163. msgctxt "@text:window"
  1164. msgid "The release notes could not be opened."
  1165. msgstr "Não foi possível abrir as notas sobre a nova versão."
  1166. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WhatsNewPagesModel.py:67
  1167. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:286
  1168. msgctxt "@action:button"
  1169. msgid "Skip"
  1170. msgstr "Ignorar"
  1171. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WhatsNewPagesModel.py:72
  1172. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  1173. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:178
  1174. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:450
  1175. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:172
  1176. msgctxt "@action:button"
  1177. msgid "Close"
  1178. msgstr "Fechar"
  1179. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:17
  1180. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  1181. msgctxt "@action:button"
  1182. msgid "Add"
  1183. msgstr "Adicionar"
  1184. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:26
  1185. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:290
  1186. msgctxt "@action:button"
  1187. msgid "Finish"
  1188. msgstr "Concluir"
  1189. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:33
  1190. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  1191. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  1192. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:323
  1193. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:451
  1194. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  1195. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  1196. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  1197. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:74
  1198. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:136
  1199. msgctxt "@action:button"
  1200. msgid "Cancel"
  1201. msgstr "Cancelar"
  1202. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:57
  1203. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:277
  1204. msgctxt "@action:button"
  1205. msgid "Next"
  1206. msgstr "Seguinte"
  1207. #: /home/remco/dev/code/ulti/trans/Cura/cura/BuildVolume.py:100
  1208. msgctxt "@info:status"
  1209. msgid ""
  1210. "The build volume height has been reduced due to the value of the \"Print "
  1211. "Sequence\" setting to prevent the gantry from colliding with printed models."
  1212. msgstr "A altura do volume de construção foi reduzida devido ao valor da definição \"Sequência de impressão\" para impedir que o pórtico colida com os modelos"
  1213. " impressos."
  1214. #: /home/remco/dev/code/ulti/trans/Cura/cura/BuildVolume.py:103
  1215. msgctxt "@info:title"
  1216. msgid "Build Volume"
  1217. msgstr "Volume de construção"
  1218. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  1219. msgctxt "@message:text"
  1220. msgid "Could not save material archive to {}:"
  1221. msgstr "Não foi possível guardar o arquivo de material em {}:"
  1222. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  1223. msgctxt "@message:title"
  1224. msgid "Failed to save material archive"
  1225. msgstr "Erro ao guardar o arquivo de material"
  1226. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  1227. msgctxt "@text"
  1228. msgid "Unknown error."
  1229. msgstr "Erro desconhecido."
  1230. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:207
  1231. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:140
  1232. msgctxt "@title:window"
  1233. msgid "File Already Exists"
  1234. msgstr "O Ficheiro Já Existe"
  1235. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:208
  1236. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:141
  1237. #, python-brace-format
  1238. msgctxt "@label Don't translate the XML tag <filename>!"
  1239. msgid ""
  1240. "The file <filename>{0}</filename> already exists. Are you sure you want to "
  1241. "overwrite it?"
  1242. msgstr "O ficheiro <filename>{0}</filename> já existe. Tem a certeza de que deseja substituí-lo?"
  1243. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:459
  1244. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:462
  1245. msgctxt "@info:status"
  1246. msgid "Invalid file URL:"
  1247. msgstr "URL de ficheiro inválido:"
  1248. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/cura_empty_instance_containers.py:36
  1249. msgctxt "@info:not supported profile"
  1250. msgid "Not supported"
  1251. msgstr "Não suportado"
  1252. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/cura_empty_instance_containers.py:55
  1253. msgctxt "@info:No intent profile selected"
  1254. msgid "Default"
  1255. msgstr "Default"
  1256. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:857
  1257. msgctxt "@info:message Followed by a list of settings."
  1258. msgid ""
  1259. "Settings have been changed to match the current availability of extruders:"
  1260. msgstr "As definições foram alteradas de forma a corresponder aos extrusores disponíveis de momento:"
  1261. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:858
  1262. msgctxt "@info:title"
  1263. msgid "Settings updated"
  1264. msgstr "Definições atualizadas"
  1265. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:1480
  1266. msgctxt "@info:title"
  1267. msgid "Extruder(s) Disabled"
  1268. msgstr "Extrusor(es) desativado(s)"
  1269. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:153
  1270. #, python-brace-format
  1271. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1272. msgid ""
  1273. "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1274. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: <message>{1}</message>"
  1275. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:163
  1276. #, python-brace-format
  1277. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1278. msgid ""
  1279. "Failed to export profile to <filename>{0}</filename>: Writer plugin reported "
  1280. "failure."
  1281. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: O plug-in de gravação comunicou uma falha."
  1282. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:171
  1283. #, python-brace-format
  1284. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1285. msgid "Exported profile to <filename>{0}</filename>"
  1286. msgstr "Perfil exportado para <filename>{0}</filename>"
  1287. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:173
  1288. msgctxt "@info:title"
  1289. msgid "Export succeeded"
  1290. msgstr "Exportação bem-sucedida"
  1291. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:205
  1292. #, python-brace-format
  1293. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1294. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1295. msgstr "Falha ao importar perfil de <filename>{0}</filename>: {1}"
  1296. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:209
  1297. #, python-brace-format
  1298. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1299. msgid ""
  1300. "Can't import profile from <filename>{0}</filename> before a printer is added."
  1301. msgstr "Não é possível importar o perfil de <filename>{0}</filename> antes de ser adicionada uma impressora."
  1302. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:224
  1303. #, python-brace-format
  1304. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1305. msgid "No custom profile to import in file <filename>{0}</filename>"
  1306. msgstr "Nenhum perfil personalizado para importar no ficheiro <filename>{0}</filename>"
  1307. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:228
  1308. #, python-brace-format
  1309. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1310. msgid "Failed to import profile from <filename>{0}</filename>:"
  1311. msgstr "Falha ao importar perfil de <filename>{0}</filename>:"
  1312. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:252
  1313. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:262
  1314. #, python-brace-format
  1315. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1316. msgid ""
  1317. "This profile <filename>{0}</filename> contains incorrect data, could not "
  1318. "import it."
  1319. msgstr "O perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  1320. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:355
  1321. #, python-brace-format
  1322. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1323. msgid "Failed to import profile from <filename>{0}</filename>:"
  1324. msgstr "Falha ao importar perfil de <filename>{0}</filename>:"
  1325. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:359
  1326. #, python-brace-format
  1327. msgctxt "@info:status"
  1328. msgid "Successfully imported profile {0}."
  1329. msgstr "Perfil {0} importado com êxito."
  1330. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:366
  1331. #, python-brace-format
  1332. msgctxt "@info:status"
  1333. msgid "File {0} does not contain any valid profile."
  1334. msgstr "O ficheiro {0} não contém qualquer perfil válido."
  1335. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:369
  1336. #, python-brace-format
  1337. msgctxt "@info:status"
  1338. msgid "Profile {0} has an unknown file type or is corrupted."
  1339. msgstr "O perfil {0} é de um formato de ficheiro desconhecido ou está corrompido."
  1340. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:443
  1341. msgctxt "@label"
  1342. msgid "Custom profile"
  1343. msgstr "Perfil personalizado"
  1344. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:459
  1345. msgctxt "@info:status"
  1346. msgid "Profile is missing a quality type."
  1347. msgstr "O perfil não inclui qualquer tipo de qualidade."
  1348. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:463
  1349. msgctxt "@info:status"
  1350. msgid "There is no active printer yet."
  1351. msgstr "Ainda não existe qualquer impressora ativa."
  1352. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:469
  1353. msgctxt "@info:status"
  1354. msgid "Unable to add the profile."
  1355. msgstr "Não é possível adicionar o perfil."
  1356. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:483
  1357. #, python-brace-format
  1358. msgctxt "@info:status"
  1359. msgid ""
  1360. "Quality type '{0}' is not compatible with the current active machine "
  1361. "definition '{1}'."
  1362. msgstr "O tipo de qualidade '{0}' não é compatível com a definição de máquina atualmente ativa '{1}'."
  1363. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:488
  1364. #, python-brace-format
  1365. msgctxt "@info:status"
  1366. msgid ""
  1367. "Warning: The profile is not visible because its quality type '{0}' is not "
  1368. "available for the current configuration. Switch to a material/nozzle "
  1369. "combination that can use this quality type."
  1370. msgstr "Aviso: o perfil não é visível porque o respetivo tipo de qualidade '{0}' não está disponível para a configuração atual. Mude para uma combinação de material/bocal"
  1371. " que possa utilizar este tipo de qualidade."
  1372. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:30
  1373. msgctxt "@info:status"
  1374. msgid "Multiplying and placing objects"
  1375. msgstr "Multiplicar e posicionar objetos"
  1376. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:32
  1377. msgctxt "@info:title"
  1378. msgid "Placing Objects"
  1379. msgstr "A posicionar objetos"
  1380. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:100
  1381. msgctxt "@info:title"
  1382. msgid "Placing Object"
  1383. msgstr "A Posicionar Objeto"
  1384. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:216
  1385. msgctxt "@info"
  1386. msgid ""
  1387. "Unable to start a new sign in process. Check if another sign in attempt is "
  1388. "still active."
  1389. msgstr "Não é possível iniciar um novo processo de início de sessão. Verifique se ainda está ativa outra tentativa de início de sessão."
  1390. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:277
  1391. msgctxt "@info"
  1392. msgid "Unable to reach the Ultimaker account server."
  1393. msgstr "Não é possível aceder ao servidor da conta Ultimaker."
  1394. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:278
  1395. msgctxt "@info:title"
  1396. msgid "Log-in failed"
  1397. msgstr "O Log-in falhou"
  1398. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  1399. msgctxt "@message"
  1400. msgid "Could not read response."
  1401. msgstr "Não foi possível ler a resposta."
  1402. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  1403. msgctxt "@message"
  1404. msgid "The provided state is not correct."
  1405. msgstr "O estado apresentado não está correto."
  1406. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  1407. msgctxt "@message"
  1408. msgid "Timeout when authenticating with the account server."
  1409. msgstr "Foi excedido o tempo limite de autenticação com o servidor."
  1410. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  1411. msgctxt "@message"
  1412. msgid "Please give the required permissions when authorizing this application."
  1413. msgstr "Forneça as permissões necessárias ao autorizar esta aplicação."
  1414. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  1415. msgctxt "@message"
  1416. msgid "Something unexpected happened when trying to log in, please try again."
  1417. msgstr "Ocorreu algo inesperado ao tentar iniciar sessão, tente novamente."
  1418. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:107
  1419. msgctxt "@title:window"
  1420. msgid "Cura can't start"
  1421. msgstr "Não é possível iniciar o Cura"
  1422. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:113
  1423. msgctxt "@label crash message"
  1424. msgid ""
  1425. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right."
  1426. "</p></b>\n"
  1427. " <p>We encountered an unrecoverable error during start "
  1428. "up. It was possibly caused by some incorrect configuration files. We suggest "
  1429. "to backup and reset your configuration.</p>\n"
  1430. " <p>Backups can be found in the configuration folder.</"
  1431. "p>\n"
  1432. " <p>Please send us this Crash Report to fix the problem.</"
  1433. "p>\n"
  1434. " "
  1435. msgstr "<p><b>Ups, o Ultimaker Cura encontrou um possível problema.</p></b>\n <p>Foi encontrado um erro irrecuperável durante o arranque da"
  1436. " aplicação. Este pode ter sido causado por alguns ficheiros de configuração incorrectos. Sugerimos que faça um backup e reponha a sua configuração.</p>\n"
  1437. " <p>Os backups estão localizados na pasta de configuração.</p>\n <p>Por favor envie-nos este Relatório de Falhas"
  1438. " para podermos resolver o problema.</p>\n "
  1439. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:122
  1440. msgctxt "@action:button"
  1441. msgid "Send crash report to Ultimaker"
  1442. msgstr "Enviar relatório de falhas para a Ultimaker"
  1443. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:125
  1444. msgctxt "@action:button"
  1445. msgid "Show detailed crash report"
  1446. msgstr "Mostrar relatório de falhas detalhado"
  1447. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:129
  1448. msgctxt "@action:button"
  1449. msgid "Show configuration folder"
  1450. msgstr "Mostrar pasta de configuração"
  1451. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:140
  1452. msgctxt "@action:button"
  1453. msgid "Backup and Reset Configuration"
  1454. msgstr "Backup e Repor a Configuração"
  1455. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:171
  1456. msgctxt "@title:window"
  1457. msgid "Crash Report"
  1458. msgstr "Relatório de Falhas"
  1459. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:190
  1460. msgctxt "@label crash message"
  1461. msgid ""
  1462. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report "
  1463. "to fix the problem</p></b>\n"
  1464. " <p>Please use the \"Send report\" button to post a bug report "
  1465. "automatically to our servers</p>\n"
  1466. " "
  1467. msgstr "<p><b>Ocorreu um erro fatal no Cura. Por favor envie-nos este Relatório de Falhas para podermos resolver o problema</p></b>\n <p>Por favor utilize"
  1468. " o botão &quot;Enviar relatório&quot; para publicar um relatório de erros automaticamente nos nossos servidores</p>\n "
  1469. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:198
  1470. msgctxt "@title:groupbox"
  1471. msgid "System information"
  1472. msgstr "Informações do sistema"
  1473. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:207
  1474. msgctxt "@label unknown version of Cura"
  1475. msgid "Unknown"
  1476. msgstr "Desconhecido"
  1477. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:228
  1478. msgctxt "@label Cura version number"
  1479. msgid "Cura version"
  1480. msgstr "Versão do Cura"
  1481. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:229
  1482. msgctxt "@label"
  1483. msgid "Cura language"
  1484. msgstr "Idioma do Cura"
  1485. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:230
  1486. msgctxt "@label"
  1487. msgid "OS language"
  1488. msgstr "Idioma do Sistema Operativo"
  1489. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:231
  1490. msgctxt "@label Type of platform"
  1491. msgid "Platform"
  1492. msgstr "Plataforma"
  1493. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:232
  1494. msgctxt "@label"
  1495. msgid "Qt version"
  1496. msgstr "Versão Qt"
  1497. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:233
  1498. msgctxt "@label"
  1499. msgid "PyQt version"
  1500. msgstr "Versão PyQt"
  1501. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:234
  1502. msgctxt "@label OpenGL version"
  1503. msgid "OpenGL"
  1504. msgstr "OpenGL"
  1505. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:264
  1506. msgctxt "@label"
  1507. msgid "Not yet initialized<br/>"
  1508. msgstr "Ainda não inicializado<br/>"
  1509. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:267
  1510. #, python-brace-format
  1511. msgctxt "@label OpenGL version"
  1512. msgid "<li>OpenGL Version: {version}</li>"
  1513. msgstr "<li>Versão do OpenGL: {version}</li>"
  1514. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:268
  1515. #, python-brace-format
  1516. msgctxt "@label OpenGL vendor"
  1517. msgid "<li>OpenGL Vendor: {vendor}</li>"
  1518. msgstr "<li>Vendedor do OpenGL: {vendor}</li>"
  1519. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:269
  1520. #, python-brace-format
  1521. msgctxt "@label OpenGL renderer"
  1522. msgid "<li>OpenGL Renderer: {renderer}</li>"
  1523. msgstr "<li>Processador do OpenGL: {renderer}</li>"
  1524. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:303
  1525. msgctxt "@title:groupbox"
  1526. msgid "Error traceback"
  1527. msgstr "Determinação da origem do erro"
  1528. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:389
  1529. msgctxt "@title:groupbox"
  1530. msgid "Logs"
  1531. msgstr "Relatórios"
  1532. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:417
  1533. msgctxt "@action:button"
  1534. msgid "Send report"
  1535. msgstr "Enviar relatório"
  1536. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1537. msgctxt "@info"
  1538. msgid ""
  1539. "Please make sure your printer has a connection:\n"
  1540. "- Check if the printer is turned on.\n"
  1541. "- Check if the printer is connected to the network.\n"
  1542. "- Check if you are signed in to discover cloud-connected printers."
  1543. msgstr "Certifique-se de que é possível estabelecer ligação com a impressora:\n- Verifique se a impressora está ligada.\n- Verifique se a impressora está ligada"
  1544. " à rede.\n- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud."
  1545. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:113
  1546. msgctxt "@info"
  1547. msgid "Please connect your printer to the network."
  1548. msgstr "Ligue a impressora à sua rede."
  1549. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:146
  1550. msgctxt "@label link to technical assistance"
  1551. msgid "View user manuals online"
  1552. msgstr "Ver manuais do utilizador online"
  1553. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:163
  1554. msgctxt "@info"
  1555. msgid "In order to monitor your print from Cura, please connect the printer."
  1556. msgstr "Para monitorizar a sua impressão a partir do Cura, ligue a impressora."
  1557. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  1558. msgctxt "@title:window"
  1559. msgid "Select Settings to Customize for this model"
  1560. msgstr "Selecionar definições a personalizar para este modelo"
  1561. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  1562. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:100
  1563. msgctxt "@label:textbox"
  1564. msgid "Filter..."
  1565. msgstr "Filtrar..."
  1566. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  1567. msgctxt "@label:checkbox"
  1568. msgid "Show all"
  1569. msgstr "Mostrar tudo"
  1570. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  1571. msgctxt "@label"
  1572. msgid "Mesh Type"
  1573. msgstr "Tipo de Objecto"
  1574. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  1575. msgctxt "@label"
  1576. msgid "Normal model"
  1577. msgstr "Modelo normal"
  1578. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  1579. msgctxt "@label"
  1580. msgid "Print as support"
  1581. msgstr "Imprimir como suporte"
  1582. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  1583. msgctxt "@label"
  1584. msgid "Modify settings for overlaps"
  1585. msgstr "Modificar definições para sobreposições"
  1586. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  1587. msgctxt "@label"
  1588. msgid "Don't support overlaps"
  1589. msgstr "Não suportar sobreposições"
  1590. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159
  1591. msgctxt "@item:inlistbox"
  1592. msgid "Infill mesh only"
  1593. msgstr "Apenas objeto de enchimento"
  1594. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  1595. msgctxt "@item:inlistbox"
  1596. msgid "Cutting mesh"
  1597. msgstr "Malha de corte"
  1598. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385
  1599. msgctxt "@action:button"
  1600. msgid "Select settings"
  1601. msgstr "Selecionar definições"
  1602. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1603. msgctxt "@title"
  1604. msgid "Update Firmware"
  1605. msgstr "Atualizar firmware"
  1606. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1607. msgctxt "@label"
  1608. msgid ""
  1609. "Firmware is the piece of software running directly on your 3D printer. This "
  1610. "firmware controls the step motors, regulates the temperature and ultimately "
  1611. "makes your printer work."
  1612. msgstr "O firmware é o software que é executado diretamente na sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e basicamente"
  1613. " assegura o funcionamento da sua impressora."
  1614. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1615. msgctxt "@label"
  1616. msgid ""
  1617. "The firmware shipping with new printers works, but new versions tend to have "
  1618. "more features and improvements."
  1619. msgstr "O firmware que é expedido com as novas impressoras funciona corretamente, mas as novas versões costumam ter mais funcionalidades e melhorias."
  1620. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1621. msgctxt "@action:button"
  1622. msgid "Automatically upgrade Firmware"
  1623. msgstr "Atualizar firmware automaticamente"
  1624. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1625. msgctxt "@action:button"
  1626. msgid "Upload custom Firmware"
  1627. msgstr "Carregar firmware personalizado"
  1628. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1629. msgctxt "@label"
  1630. msgid ""
  1631. "Firmware can not be updated because there is no connection with the printer."
  1632. msgstr "O firmware não pode ser atualizado por não existir ligação com a impressora."
  1633. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1634. msgctxt "@label"
  1635. msgid ""
  1636. "Firmware can not be updated because the connection with the printer does not "
  1637. "support upgrading firmware."
  1638. msgstr "O firmware não pode ser atualizado porque a ligação com a impressora não suporta a atualização de firmware."
  1639. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1640. msgctxt "@title:window"
  1641. msgid "Select custom firmware"
  1642. msgstr "Selecionar firmware personalizado"
  1643. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:114
  1644. msgctxt "@title:window"
  1645. msgid "Firmware Update"
  1646. msgstr "Atualização de firmware"
  1647. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:138
  1648. msgctxt "@label"
  1649. msgid "Updating firmware."
  1650. msgstr "A atualizar firmware."
  1651. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:140
  1652. msgctxt "@label"
  1653. msgid "Firmware update completed."
  1654. msgstr "Atualização de firmware concluída."
  1655. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:142
  1656. msgctxt "@label"
  1657. msgid "Firmware update failed due to an unknown error."
  1658. msgstr "A atualização de firmware falhou devido a um erro desconhecido."
  1659. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:144
  1660. msgctxt "@label"
  1661. msgid "Firmware update failed due to an communication error."
  1662. msgstr "A atualização de firmware falhou devido a um erro de comunicação."
  1663. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:146
  1664. msgctxt "@label"
  1665. msgid "Firmware update failed due to an input/output error."
  1666. msgstr "A atualização de firmware falhou devido a um erro de entrada/saída."
  1667. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:148
  1668. msgctxt "@label"
  1669. msgid "Firmware update failed due to missing firmware."
  1670. msgstr "A atualização de firmware falhou devido à ausência de firmware."
  1671. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  1672. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1673. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  1674. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  1675. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  1676. msgctxt "@label:status"
  1677. msgid "Aborted"
  1678. msgstr "Cancelado"
  1679. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  1680. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  1681. msgctxt "@label:status"
  1682. msgid "Finished"
  1683. msgstr "Impressão terminada"
  1684. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  1685. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1686. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351
  1687. msgctxt "@label:status"
  1688. msgid "Preparing..."
  1689. msgstr "A preparar..."
  1690. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  1691. msgctxt "@label:status"
  1692. msgid "Aborting..."
  1693. msgstr "A cancelar..."
  1694. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  1695. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  1696. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  1697. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  1698. msgctxt "@label:status"
  1699. msgid "Failed"
  1700. msgstr "Falhou"
  1701. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  1702. msgctxt "@label:status"
  1703. msgid "Pausing..."
  1704. msgstr "A colocar em pausa..."
  1705. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  1706. msgctxt "@label:status"
  1707. msgid "Paused"
  1708. msgstr "Em Pausa"
  1709. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  1710. msgctxt "@label:status"
  1711. msgid "Resuming..."
  1712. msgstr "A recomeçar..."
  1713. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  1714. msgctxt "@label:status"
  1715. msgid "Action required"
  1716. msgstr "Ação necessária"
  1717. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  1718. msgctxt "@label:status"
  1719. msgid "Finishes %1 at %2"
  1720. msgstr "Termina %1 a %2"
  1721. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  1722. msgctxt "@label link to Connect and Cloud interfaces"
  1723. msgid "Manage printer"
  1724. msgstr "Gerir impressora"
  1725. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178
  1726. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151
  1727. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175
  1728. msgctxt "@label"
  1729. msgid "Glass"
  1730. msgstr "Vidro"
  1731. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241
  1732. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467
  1733. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239
  1734. msgctxt "@info"
  1735. msgid "Please update your printer's firmware to manage the queue remotely."
  1736. msgstr "Atualize o firmware da impressora para gerir a fila remotamente."
  1737. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275
  1738. msgctxt "@info"
  1739. msgid ""
  1740. "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click "
  1741. "\"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  1742. msgstr "Não é possível visualizar os feeds das câmaras das impressoras na cloud a partir do Ultimaker Cura. Clique em \"Gerir impressora\" para visitar o Ultimaker"
  1743. " Digital Factory e ver esta câmara."
  1744. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335
  1745. msgctxt "@label:status"
  1746. msgid "Loading..."
  1747. msgstr "A carregar..."
  1748. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339
  1749. msgctxt "@label:status"
  1750. msgid "Unavailable"
  1751. msgstr "Indisponível"
  1752. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343
  1753. msgctxt "@label:status"
  1754. msgid "Unreachable"
  1755. msgstr "Inacessível"
  1756. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347
  1757. msgctxt "@label:status"
  1758. msgid "Idle"
  1759. msgstr "Inativa"
  1760. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  1761. msgctxt "@label:status"
  1762. msgid "Printing"
  1763. msgstr "A Imprimir"
  1764. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397
  1765. msgctxt "@label"
  1766. msgid "Untitled"
  1767. msgstr "Sem título"
  1768. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412
  1769. msgctxt "@label"
  1770. msgid "Anonymous"
  1771. msgstr "Anónimo"
  1772. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433
  1773. msgctxt "@label:status"
  1774. msgid "Requires configuration changes"
  1775. msgstr "Requer alterações na configuração"
  1776. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447
  1777. msgctxt "@action:button"
  1778. msgid "Details"
  1779. msgstr "Detalhes"
  1780. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1781. msgctxt "@title:window"
  1782. msgid "Configuration Changes"
  1783. msgstr "Alterações na configuração"
  1784. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  1785. msgctxt "@action:button"
  1786. msgid "Override"
  1787. msgstr "Ignorar"
  1788. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  1789. msgctxt "@label"
  1790. msgid "The assigned printer, %1, requires the following configuration change:"
  1791. msgid_plural ""
  1792. "The assigned printer, %1, requires the following configuration changes:"
  1793. msgstr[0] "A impressora atribuída %1 requer a seguinte alteração na configuração:"
  1794. msgstr[1] "A impressora atribuída %1 requer as seguintes alterações na configuração:"
  1795. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  1796. msgctxt "@label"
  1797. msgid ""
  1798. "The printer %1 is assigned, but the job contains an unknown material "
  1799. "configuration."
  1800. msgstr "A impressora %1 está atribuída, mas o trabalho tem uma configuração de material desconhecida."
  1801. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  1802. msgctxt "@label"
  1803. msgid "Change material %1 from %2 to %3."
  1804. msgstr "Alterar o material %1 de %2 para %3."
  1805. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  1806. msgctxt "@label"
  1807. msgid "Load %3 as material %1 (This cannot be overridden)."
  1808. msgstr "Carregar %3 como material %1 (isto não pode ser substituído)."
  1809. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  1810. msgctxt "@label"
  1811. msgid "Change print core %1 from %2 to %3."
  1812. msgstr "Substituir o print core %1 de %2 para %3."
  1813. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106
  1814. msgctxt "@label"
  1815. msgid "Change build plate to %1 (This cannot be overridden)."
  1816. msgstr "Alterar base de construção para %1 (isto não pode ser substituído)."
  1817. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113
  1818. msgctxt "@label"
  1819. msgid ""
  1820. "Override will use the specified settings with the existing printer "
  1821. "configuration. This may result in a failed print."
  1822. msgstr "Ignorar utilizará as definições especificadas com a configuração da impressora existente. Tal pode resultar numa falha de impressão."
  1823. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154
  1824. msgctxt "@label"
  1825. msgid "Aluminum"
  1826. msgstr "Alumínio"
  1827. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  1828. msgctxt "@title:window"
  1829. msgid "Print over network"
  1830. msgstr "Imprimir Através da Rede"
  1831. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  1832. msgctxt "@action:button"
  1833. msgid "Print"
  1834. msgstr "Imprimir"
  1835. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  1836. msgctxt "@label"
  1837. msgid "Printer selection"
  1838. msgstr "Seleção de Impressora"
  1839. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  1840. msgctxt "@title:window"
  1841. msgid "Connect to Networked Printer"
  1842. msgstr "Ligar a uma Impressora em Rede"
  1843. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1844. msgctxt "@label"
  1845. msgid ""
  1846. "To print directly to your printer over the network, please make sure your "
  1847. "printer is connected to the network using a network cable or by connecting "
  1848. "your printer to your WIFI network. If you don't connect Cura with your "
  1849. "printer, you can still use a USB drive to transfer g-code files to your "
  1850. "printer."
  1851. msgstr "Para imprimir diretamente para a sua impressora através da rede, certifique-se de que a impressora está ligada à rede através de um cabo de rede ou através"
  1852. " de ligação à rede Wi-Fi. Se não ligar o Cura por rede à impressora, poderá ainda assim utilizar uma unidade USB para transferir ficheiros g-code para"
  1853. " a impressora."
  1854. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1855. msgctxt "@label"
  1856. msgid "Select your printer from the list below:"
  1857. msgstr "Selecione a impressora a partir da lista abaixo:"
  1858. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  1859. msgctxt "@action:button"
  1860. msgid "Edit"
  1861. msgstr "Editar"
  1862. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  1863. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:141
  1864. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186
  1865. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:320
  1866. msgctxt "@action:button"
  1867. msgid "Remove"
  1868. msgstr "Remover"
  1869. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  1870. msgctxt "@action:button"
  1871. msgid "Refresh"
  1872. msgstr "Atualizar"
  1873. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  1874. msgctxt "@label"
  1875. msgid ""
  1876. "If your printer is not listed, read the <a href='%1'>network printing "
  1877. "troubleshooting guide</a>"
  1878. msgstr "Se a sua impressora não estiver na lista, por favor, consulte o <a href='%1'>guia de resolução de problemas de impressão em rede</a>"
  1879. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  1880. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  1881. msgctxt "@label"
  1882. msgid "Type"
  1883. msgstr "Tipo"
  1884. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  1885. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  1886. msgctxt "@label"
  1887. msgid "Firmware version"
  1888. msgstr "Versão de Firmware"
  1889. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  1890. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  1891. msgctxt "@label"
  1892. msgid "Address"
  1893. msgstr "Endereço"
  1894. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  1895. msgctxt "@label"
  1896. msgid "This printer is not set up to host a group of printers."
  1897. msgstr "Esta impressora não está configurada para alojar um grupo de impressoras."
  1898. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  1899. msgctxt "@label"
  1900. msgid "This printer is the host for a group of %1 printers."
  1901. msgstr "Esta impressora aloja um grupo de %1 impressoras."
  1902. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  1903. msgctxt "@label"
  1904. msgid "The printer at this address has not yet responded."
  1905. msgstr "A impressora neste endereço ainda não respondeu."
  1906. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  1907. msgctxt "@action:button"
  1908. msgid "Connect"
  1909. msgstr "Ligar"
  1910. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  1911. msgctxt "@title:window"
  1912. msgid "Invalid IP address"
  1913. msgstr "Endereço IP inválido"
  1914. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  1915. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  1916. msgctxt "@text"
  1917. msgid "Please enter a valid IP address."
  1918. msgstr "Introduza um endereço IP válido."
  1919. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  1920. msgctxt "@title:window"
  1921. msgid "Printer Address"
  1922. msgstr "Endereço da Impressora"
  1923. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  1924. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  1925. msgctxt "@label"
  1926. msgid "Enter the IP address of your printer on the network."
  1927. msgstr "Introduza o endereço IP da sua impressora na rede."
  1928. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  1929. msgctxt "@label"
  1930. msgid "Unavailable printer"
  1931. msgstr "Impressora indisponível"
  1932. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  1933. msgctxt "@label"
  1934. msgid "First available"
  1935. msgstr "Primeira disponível"
  1936. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1937. msgctxt "@label"
  1938. msgid "Move to top"
  1939. msgstr "Mover para o topo"
  1940. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1941. msgctxt "@label"
  1942. msgid "Delete"
  1943. msgstr "Eliminar"
  1944. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  1945. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:284
  1946. msgctxt "@label"
  1947. msgid "Resume"
  1948. msgstr "Retomar"
  1949. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1950. msgctxt "@label"
  1951. msgid "Pausing..."
  1952. msgstr "A colocar em pausa..."
  1953. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1954. msgctxt "@label"
  1955. msgid "Resuming..."
  1956. msgstr "A recomeçar..."
  1957. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  1958. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:279
  1959. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:288
  1960. msgctxt "@label"
  1961. msgid "Pause"
  1962. msgstr "Colocar em pausa"
  1963. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1964. msgctxt "@label"
  1965. msgid "Aborting..."
  1966. msgstr "A cancelar..."
  1967. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1968. msgctxt "@label"
  1969. msgid "Abort"
  1970. msgstr "Cancelar"
  1971. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142
  1972. msgctxt "@label %1 is the name of a print job."
  1973. msgid "Are you sure you want to move %1 to the top of the queue?"
  1974. msgstr "Tem a certeza de que pretende mover %1 para o topo da fila?"
  1975. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1976. msgctxt "@window:title"
  1977. msgid "Move print job to top"
  1978. msgstr "Mover trabalho de impressão para o topo"
  1979. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151
  1980. msgctxt "@label %1 is the name of a print job."
  1981. msgid "Are you sure you want to delete %1?"
  1982. msgstr "Tem a certeza de que pretende eliminar %1?"
  1983. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152
  1984. msgctxt "@window:title"
  1985. msgid "Delete print job"
  1986. msgstr "Eliminar trabalho de impressão"
  1987. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160
  1988. msgctxt "@label %1 is the name of a print job."
  1989. msgid "Are you sure you want to abort %1?"
  1990. msgstr "Tem a certeza de que deseja cancelar %1?"
  1991. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161
  1992. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:326
  1993. msgctxt "@window:title"
  1994. msgid "Abort print"
  1995. msgstr "Cancelar impressão"
  1996. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  1997. msgctxt "@label"
  1998. msgid "Queued"
  1999. msgstr "Em fila"
  2000. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63
  2001. msgctxt "@label link to connect manager"
  2002. msgid "Manage in browser"
  2003. msgstr "Gerir no browser"
  2004. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90
  2005. msgctxt "@label"
  2006. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2007. msgstr "Não existem trabalhos de impressão na fila. Para adicionar um trabalho, seccione e envie."
  2008. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98
  2009. msgctxt "@label"
  2010. msgid "Print jobs"
  2011. msgstr "Trabalhos em Impressão"
  2012. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107
  2013. msgctxt "@label"
  2014. msgid "Total print time"
  2015. msgstr "Tempo de impressão total"
  2016. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116
  2017. msgctxt "@label"
  2018. msgid "Waiting for"
  2019. msgstr "A aguardar"
  2020. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:19
  2021. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:48
  2022. msgctxt "@label"
  2023. msgid "Color scheme"
  2024. msgstr "Esquema de cores"
  2025. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:105
  2026. msgctxt "@label:listbox"
  2027. msgid "Material Color"
  2028. msgstr "Cor do Material"
  2029. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
  2030. msgctxt "@label:listbox"
  2031. msgid "Line Type"
  2032. msgstr "Tipo de Linha"
  2033. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
  2034. msgctxt "@label:listbox"
  2035. msgid "Speed"
  2036. msgstr "Velocidade"
  2037. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
  2038. msgctxt "@label:listbox"
  2039. msgid "Layer Thickness"
  2040. msgstr "Espessura da Camada"
  2041. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
  2042. msgctxt "@label:listbox"
  2043. msgid "Line Width"
  2044. msgstr "Diâmetro da Linha"
  2045. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
  2046. msgctxt "@label:listbox"
  2047. msgid "Flow"
  2048. msgstr "Fluxo"
  2049. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:165
  2050. msgctxt "@label"
  2051. msgid "Compatibility Mode"
  2052. msgstr "Modo Compatibilidade"
  2053. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:232
  2054. msgctxt "@label"
  2055. msgid "Travels"
  2056. msgstr "Deslocações"
  2057. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:238
  2058. msgctxt "@label"
  2059. msgid "Helpers"
  2060. msgstr "Auxiliares"
  2061. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:244
  2062. msgctxt "@label"
  2063. msgid "Shell"
  2064. msgstr "Invólucro"
  2065. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:250
  2066. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64
  2067. msgctxt "@label"
  2068. msgid "Infill"
  2069. msgstr "Enchimento"
  2070. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:258
  2071. msgctxt "@label"
  2072. msgid "Starts"
  2073. msgstr "A Iniciar"
  2074. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:307
  2075. msgctxt "@label"
  2076. msgid "Only Show Top Layers"
  2077. msgstr "Só Camadas Superiores"
  2078. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:316
  2079. msgctxt "@label"
  2080. msgid "Show 5 Detailed Layers On Top"
  2081. msgstr "5 Camadas Superiores Detalhadas"
  2082. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:329
  2083. msgctxt "@label"
  2084. msgid "Top / Bottom"
  2085. msgstr "Superior / Inferior"
  2086. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:333
  2087. msgctxt "@label"
  2088. msgid "Inner Wall"
  2089. msgstr "Parede Interior"
  2090. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:400
  2091. msgctxt "@label"
  2092. msgid "min"
  2093. msgstr "mín"
  2094. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:465
  2095. msgctxt "@label"
  2096. msgid "max"
  2097. msgstr "máx"
  2098. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:14
  2099. msgctxt "@title:window"
  2100. msgid "Convert Image"
  2101. msgstr "Converter Imagem"
  2102. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:33
  2103. msgctxt "@action:label"
  2104. msgid "Height (mm)"
  2105. msgstr "Altura (mm)"
  2106. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:56
  2107. msgctxt "@info:tooltip"
  2108. msgid "The maximum distance of each pixel from \"Base.\""
  2109. msgstr "A distância máxima de cada pixel desde a \"Base\""
  2110. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:66
  2111. msgctxt "@action:label"
  2112. msgid "Base (mm)"
  2113. msgstr "Base (mm)"
  2114. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:90
  2115. msgctxt "@info:tooltip"
  2116. msgid "The base height from the build plate in millimeters."
  2117. msgstr "A altura da \"Base\" desde a base de construção em milímetros."
  2118. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:100
  2119. msgctxt "@action:label"
  2120. msgid "Width (mm)"
  2121. msgstr "Largura (mm)"
  2122. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:124
  2123. msgctxt "@info:tooltip"
  2124. msgid "The width in millimeters on the build plate"
  2125. msgstr "A largura em milímetros na base de construção"
  2126. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:134
  2127. msgctxt "@action:label"
  2128. msgid "Depth (mm)"
  2129. msgstr "Profundidade (mm)"
  2130. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:158
  2131. msgctxt "@info:tooltip"
  2132. msgid "The depth in millimeters on the build plate"
  2133. msgstr "A profundidade em milímetros na base de construção"
  2134. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:187
  2135. msgctxt "@item:inlistbox"
  2136. msgid "Darker is higher"
  2137. msgstr "Mais escuro é mais alto"
  2138. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:188
  2139. msgctxt "@item:inlistbox"
  2140. msgid "Lighter is higher"
  2141. msgstr "Mais claro é mais alto"
  2142. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:195
  2143. msgctxt "@info:tooltip"
  2144. msgid ""
  2145. "For lithophanes dark pixels should correspond to thicker locations in order "
  2146. "to block more light coming through. For height maps lighter pixels signify "
  2147. "higher terrain, so lighter pixels should correspond to thicker locations in "
  2148. "the generated 3D model."
  2149. msgstr "Para litofanias, os pixels escuros devem corresponder a localizações mais espessas para bloquear mais a passagem da luz. Para mapas de altura, os pixels"
  2150. " mais claros significam um terreno mais alto, por isso, os pixels mais claros devem corresponder a localizações mais espessas no modelo 3D gerado."
  2151. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:205
  2152. msgctxt "@action:label"
  2153. msgid "Color Model"
  2154. msgstr "Modelo de cor"
  2155. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:224
  2156. msgctxt "@item:inlistbox"
  2157. msgid "Linear"
  2158. msgstr "Linear"
  2159. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:225
  2160. msgctxt "@item:inlistbox"
  2161. msgid "Translucency"
  2162. msgstr "Translucidez"
  2163. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:232
  2164. msgctxt "@info:tooltip"
  2165. msgid ""
  2166. "For lithophanes a simple logarithmic model for translucency is available. "
  2167. "For height maps the pixel values correspond to heights linearly."
  2168. msgstr "Está disponível um modelo logarítmico simples para definir a translucidez das litofanias. Para mapas de altura, os valores dos pixels correspondem de forma"
  2169. " linear à elevação."
  2170. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:242
  2171. msgctxt "@action:label"
  2172. msgid "1mm Transmittance (%)"
  2173. msgstr "(%) transmitância de 1 mm"
  2174. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:263
  2175. msgctxt "@info:tooltip"
  2176. msgid ""
  2177. "The percentage of light penetrating a print with a thickness of 1 "
  2178. "millimeter. Lowering this value increases the contrast in dark regions and "
  2179. "decreases the contrast in light regions of the image."
  2180. msgstr "A percentagem de luz que penetra numa impressão com uma espessura de 1 milímetro. Diminuir este valor aumenta o contraste em regiões escuras e diminui"
  2181. " o contraste em regiões claras da imagem."
  2182. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:274
  2183. msgctxt "@action:label"
  2184. msgid "Smoothing"
  2185. msgstr "Suavização"
  2186. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:298
  2187. msgctxt "@info:tooltip"
  2188. msgid "The amount of smoothing to apply to the image."
  2189. msgstr "A quantidade de suavização a aplicar à imagem."
  2190. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:329
  2191. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  2192. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:80
  2193. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:140
  2194. msgctxt "@action:button"
  2195. msgid "OK"
  2196. msgstr "OK"
  2197. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  2198. msgctxt "@title:window"
  2199. msgid "Open Project"
  2200. msgstr "Abrir Projeto"
  2201. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:55
  2202. msgctxt "@action:ComboBox Update/override existing profile"
  2203. msgid "Update existing"
  2204. msgstr "Atualizar existente"
  2205. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:56
  2206. msgctxt "@action:ComboBox Save settings in a new profile"
  2207. msgid "Create new"
  2208. msgstr "Criar nova"
  2209. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:74
  2210. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:52
  2211. msgctxt "@action:title"
  2212. msgid "Summary - Cura Project"
  2213. msgstr "Resumo – Projeto Cura"
  2214. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:100
  2215. msgctxt "@info:tooltip"
  2216. msgid "How should the conflict in the machine be resolved?"
  2217. msgstr "Como deve ser resolvido o conflito da máquina?"
  2218. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:156
  2219. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:88
  2220. msgctxt "@action:label"
  2221. msgid "Printer settings"
  2222. msgstr "Definições da impressora"
  2223. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
  2224. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2225. msgctxt "@action:label"
  2226. msgid "Type"
  2227. msgstr "Tipo"
  2228. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:184
  2229. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:112
  2230. msgctxt "@action:label"
  2231. msgid "Printer Group"
  2232. msgstr "Grupo da Impressora"
  2233. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:209
  2234. msgctxt "@info:tooltip"
  2235. msgid "How should the conflict in the profile be resolved?"
  2236. msgstr "Como deve ser resolvido o conflito no perfil?"
  2237. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:231
  2238. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:213
  2239. msgctxt "@action:label"
  2240. msgid "Profile settings"
  2241. msgstr "Definições do perfil"
  2242. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
  2243. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:367
  2244. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:112
  2245. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:237
  2246. msgctxt "@action:label"
  2247. msgid "Name"
  2248. msgstr "Nome"
  2249. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:260
  2250. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:254
  2251. msgctxt "@action:label"
  2252. msgid "Intent"
  2253. msgstr "Intent"
  2254. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:278
  2255. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:221
  2256. msgctxt "@action:label"
  2257. msgid "Not in profile"
  2258. msgstr "Inexistente no perfil"
  2259. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:284
  2260. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  2261. msgctxt "@action:label"
  2262. msgid "%1 override"
  2263. msgid_plural "%1 overrides"
  2264. msgstr[0] "%1 substituição"
  2265. msgstr[1] "%1 substituições"
  2266. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:297
  2267. msgctxt "@action:label"
  2268. msgid "Derivative from"
  2269. msgstr "Derivado de"
  2270. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:303
  2271. msgctxt "@action:label"
  2272. msgid "%1, %2 override"
  2273. msgid_plural "%1, %2 overrides"
  2274. msgstr[0] "%1, %2 substituição"
  2275. msgstr[1] "%1, %2 substituições"
  2276. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:325
  2277. msgctxt "@info:tooltip"
  2278. msgid "How should the conflict in the material be resolved?"
  2279. msgstr "Como deve ser resolvido o conflito no material?"
  2280. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:352
  2281. msgctxt "@action:label"
  2282. msgid "Material settings"
  2283. msgstr "Definições de material"
  2284. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:388
  2285. msgctxt "@action:label"
  2286. msgid "Setting visibility"
  2287. msgstr "Visibilidade das definições"
  2288. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:397
  2289. msgctxt "@action:label"
  2290. msgid "Mode"
  2291. msgstr "Modo"
  2292. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:413
  2293. msgctxt "@action:label"
  2294. msgid "Visible settings:"
  2295. msgstr "Definições visíveis:"
  2296. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:418
  2297. msgctxt "@action:label"
  2298. msgid "%1 out of %2"
  2299. msgstr "%1 de %2"
  2300. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:439
  2301. msgctxt "@action:warning"
  2302. msgid "Loading a project will clear all models on the build plate."
  2303. msgstr "Abrir um projeto irá apagar todos os modelos na base de construção."
  2304. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:456
  2305. msgctxt "@action:button"
  2306. msgid "Open"
  2307. msgstr "Abrir"
  2308. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2309. msgctxt "@button"
  2310. msgid "Want more?"
  2311. msgstr "Deseja mais?"
  2312. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2313. msgctxt "@button"
  2314. msgid "Backup Now"
  2315. msgstr "Efetuar cópia de segurança agora"
  2316. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2317. msgctxt "@checkbox:description"
  2318. msgid "Auto Backup"
  2319. msgstr "Efetuar cópia de segurança automaticamente"
  2320. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2321. msgctxt "@checkbox:description"
  2322. msgid "Automatically create a backup each day that Cura is started."
  2323. msgstr "Criar automaticamente uma cópia de segurança sempre que o Cura é iniciado."
  2324. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2325. msgctxt "@backuplist:label"
  2326. msgid "Cura Version"
  2327. msgstr "Versão do Cura"
  2328. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2329. msgctxt "@backuplist:label"
  2330. msgid "Machines"
  2331. msgstr "Máquinas"
  2332. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2333. msgctxt "@backuplist:label"
  2334. msgid "Materials"
  2335. msgstr "Materiais"
  2336. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2337. msgctxt "@backuplist:label"
  2338. msgid "Profiles"
  2339. msgstr "Perfis"
  2340. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2341. msgctxt "@backuplist:label"
  2342. msgid "Plugins"
  2343. msgstr "Plug-ins"
  2344. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  2345. msgctxt "@button"
  2346. msgid "Restore"
  2347. msgstr "Restaurar"
  2348. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  2349. msgctxt "@dialog:title"
  2350. msgid "Delete Backup"
  2351. msgstr "Eliminar cópia de segurança"
  2352. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  2353. msgctxt "@dialog:info"
  2354. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2355. msgstr "Tem a certeza de que pretende eliminar esta cópia de segurança? Esta ação não pode ser anulada."
  2356. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  2357. msgctxt "@dialog:title"
  2358. msgid "Restore Backup"
  2359. msgstr "Restaurar cópia de segurança"
  2360. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  2361. msgctxt "@dialog:info"
  2362. msgid ""
  2363. "You will need to restart Cura before your backup is restored. Do you want to "
  2364. "close Cura now?"
  2365. msgstr "É necessário reiniciar o Cura para restaurar a sua cópia de segurança. Pretende fechar o Cura agora?"
  2366. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2367. msgctxt "@description"
  2368. msgid "Backup and synchronize your Cura settings."
  2369. msgstr "Efetue a cópia de segurança e sincronize as suas definições do Cura."
  2370. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  2371. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:49
  2372. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:163
  2373. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:225
  2374. msgctxt "@button"
  2375. msgid "Sign in"
  2376. msgstr "Iniciar sessão"
  2377. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2378. msgctxt "@title"
  2379. msgid "My Backups"
  2380. msgstr "As minhas cópias de segurança"
  2381. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2382. msgctxt "@empty_state"
  2383. msgid ""
  2384. "You don't have any backups currently. Use the 'Backup Now' button to create "
  2385. "one."
  2386. msgstr "Atualmente não existem quaisquer cópias de segurança. Utilize o botão \"Efetuar cópia de segurança agora\" para criar uma."
  2387. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2388. msgctxt "@backup_limit_info"
  2389. msgid ""
  2390. "During the preview phase, you'll be limited to 5 visible backups. Remove a "
  2391. "backup to see older ones."
  2392. msgstr "Durante a fase de pré-visualização, terá um limite de 5 cópias de segurança visíveis. Remova uma cópia de segurança para ver as antigas."
  2393. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2394. msgctxt "@title:window"
  2395. msgid "Cura Backups"
  2396. msgstr "Cópias de segurança do Cura"
  2397. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2398. msgctxt "@title:window"
  2399. msgid "More information on anonymous data collection"
  2400. msgstr "Mais informações sobre a recolha anónima de dados"
  2401. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2402. msgctxt "@text:window"
  2403. msgid ""
  2404. "Ultimaker Cura collects anonymous data in order to improve the print quality "
  2405. "and user experience. Below is an example of all the data that is shared:"
  2406. msgstr "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador. Segue-se um exemplo de todos os dados partilhados:"
  2407. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2408. msgctxt "@text:window"
  2409. msgid "I don't want to send anonymous data"
  2410. msgstr "Não pretendo enviar dados anónimos"
  2411. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2412. msgctxt "@text:window"
  2413. msgid "Allow sending anonymous data"
  2414. msgstr "Permitir o envio de dados anónimos"
  2415. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2416. msgctxt "@title:window"
  2417. msgid "Post Processing Plugin"
  2418. msgstr "Plug-in de pós-processamento"
  2419. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2420. msgctxt "@label"
  2421. msgid "Post Processing Scripts"
  2422. msgstr "Scripts de pós-processamento"
  2423. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:221
  2424. msgctxt "@action"
  2425. msgid "Add a script"
  2426. msgstr "Adicionar um script"
  2427. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:257
  2428. msgctxt "@label"
  2429. msgid "Settings"
  2430. msgstr "Definições"
  2431. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:466
  2432. msgctxt "@info:tooltip"
  2433. msgid "Change active post-processing scripts."
  2434. msgstr "Altere os scripts de pós-processamento."
  2435. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:470
  2436. msgctxt "@info:tooltip"
  2437. msgid "The following script is active:"
  2438. msgid_plural "The following scripts are active:"
  2439. msgstr[0] "O script a seguir está ativo:"
  2440. msgstr[1] "Os seguintes scripts estão ativos:"
  2441. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2442. msgctxt "@label"
  2443. msgid "Please select any upgrades made to this Ultimaker Original"
  2444. msgstr "Selecione quaisquer atualizações realizadas a esta Ultimaker Original"
  2445. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2446. msgctxt "@label"
  2447. msgid "Heated Build Plate (official kit or self-built)"
  2448. msgstr "Base de Construção Aquecida (kit oficial ou de construção própria)"
  2449. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2450. msgctxt "@title"
  2451. msgid "Build Plate Leveling"
  2452. msgstr "Nivelamento da Base de Construção"
  2453. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2454. msgctxt "@label"
  2455. msgid ""
  2456. "To make sure your prints will come out great, you can now adjust your "
  2457. "buildplate. When you click 'Move to Next Position' the nozzle will move to "
  2458. "the different positions that can be adjusted."
  2459. msgstr "Para assegurar uma boa qualidade das suas impressões, pode agora ajustar a base de construção. Quando clica em \"Avançar para a posição seguinte\", o nozzle"
  2460. " irá deslocar-se para as diferentes posições que podem ser ajustadas."
  2461. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2462. msgctxt "@label"
  2463. msgid ""
  2464. "For every position; insert a piece of paper under the nozzle and adjust the "
  2465. "print build plate height. The print build plate height is right when the "
  2466. "paper is slightly gripped by the tip of the nozzle."
  2467. msgstr "Para cada posição, introduza um pedaço de papel debaixo do nozzle e ajuste a altura da base de construção. A altura da base de construção está correta"
  2468. " quando o papel fica ligeiramente preso pelo nozzle."
  2469. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2470. msgctxt "@action:button"
  2471. msgid "Start Build Plate Leveling"
  2472. msgstr "Iniciar Nivelamento da base de construção"
  2473. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2474. msgctxt "@action:button"
  2475. msgid "Move to Next Position"
  2476. msgstr "Avançar para Posição Seguinte"
  2477. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2478. msgctxt "@info"
  2479. msgid "Ultimaker Verified Plug-in"
  2480. msgstr "Plug-in Aprovado pela Ultimaker"
  2481. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2482. msgctxt "@info"
  2483. msgid "Ultimaker Certified Material"
  2484. msgstr "Material Certificado pela Ultimaker"
  2485. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2486. msgctxt "@info"
  2487. msgid "Ultimaker Verified Package"
  2488. msgstr "Pacote Aprovado pela Ultimaker"
  2489. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:84
  2490. msgctxt "@title"
  2491. msgid "Loading..."
  2492. msgstr "A carregar..."
  2493. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:143
  2494. msgctxt "@button"
  2495. msgid "Plugins"
  2496. msgstr "Plug-ins"
  2497. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:151
  2498. msgctxt "@button"
  2499. msgid "Materials"
  2500. msgstr "Materiais"
  2501. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:188
  2502. msgctxt "@info"
  2503. msgid "Search in the browser"
  2504. msgstr "Pesquisar no browser"
  2505. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:266
  2506. msgctxt "@button"
  2507. msgid "In order to use the package you will need to restart Cura"
  2508. msgstr "Para poder utilizar este pacote terá de reiniciar o Cura"
  2509. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:274
  2510. msgctxt "@info:button, %1 is the application name"
  2511. msgid "Quit %1"
  2512. msgstr "Sair %1"
  2513. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:165
  2514. msgctxt "@label"
  2515. msgid "By"
  2516. msgstr "Por"
  2517. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:199
  2518. msgctxt "@button"
  2519. msgid "Enable"
  2520. msgstr "Ativar"
  2521. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:199
  2522. msgctxt "@button"
  2523. msgid "Disable"
  2524. msgstr "Desativar"
  2525. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:217
  2526. msgctxt "@button"
  2527. msgid "Downgrading..."
  2528. msgstr "A voltar para a versão anterior..."
  2529. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:218
  2530. msgctxt "@button"
  2531. msgid "Downgrade"
  2532. msgstr "Repor a Versão Anterior"
  2533. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:222
  2534. msgctxt "@button"
  2535. msgid "Installing..."
  2536. msgstr "A instalar..."
  2537. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:223
  2538. msgctxt "@button"
  2539. msgid "Install"
  2540. msgstr "Instalar"
  2541. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:227
  2542. msgctxt "@button"
  2543. msgid "Uninstall"
  2544. msgstr "Desinstalar"
  2545. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2546. msgctxt "@button"
  2547. msgid "Updating..."
  2548. msgstr "A actualizar..."
  2549. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2550. msgctxt "@button"
  2551. msgid "Update"
  2552. msgstr "Atualizar"
  2553. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8
  2554. msgctxt "@header"
  2555. msgid "Install Plugins"
  2556. msgstr "Instale plug-ins"
  2557. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12
  2558. msgctxt "@text"
  2559. msgid ""
  2560. "Streamline your workflow and customize your Ultimaker Cura experience with "
  2561. "plugins contributed by our amazing community of users."
  2562. msgstr "Simplifique o seu fluxo de trabalho e personalize a sua utilização do Ultimaker Cura com plug-ins criados pela nossa incrível comunidade de utilizadores."
  2563. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2564. msgctxt "@info:tooltip"
  2565. msgid "Manage packages"
  2566. msgstr "Gerir os pacotes"
  2567. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:85
  2568. msgctxt "@header"
  2569. msgid "Description"
  2570. msgstr "Descrição"
  2571. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:117
  2572. msgctxt "@header"
  2573. msgid "Compatible printers"
  2574. msgstr "Impressoras compatíveis"
  2575. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:143
  2576. msgctxt "@info"
  2577. msgid "No compatibility information"
  2578. msgstr "Sem informações sobre compatibilidade"
  2579. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:162
  2580. msgctxt "@header"
  2581. msgid "Compatible support materials"
  2582. msgstr "Materiais de suporte compatíveis"
  2583. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:188
  2584. msgctxt "@info No materials"
  2585. msgid "None"
  2586. msgstr "Nenhum"
  2587. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:206
  2588. msgctxt "@header"
  2589. msgid "Compatible with Material Station"
  2590. msgstr "Compatível com a Material Station"
  2591. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:216
  2592. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:244
  2593. msgctxt "@info"
  2594. msgid "Yes"
  2595. msgstr "Sim"
  2596. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:216
  2597. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:244
  2598. msgctxt "@info"
  2599. msgid "No"
  2600. msgstr "Não"
  2601. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:234
  2602. msgctxt "@header"
  2603. msgid "Optimized for Air Manager"
  2604. msgstr "Otimizado para o Air Manager"
  2605. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:260
  2606. msgctxt "@button"
  2607. msgid "Visit plug-in website"
  2608. msgstr "Visite o site do plug-in"
  2609. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:260
  2610. msgctxt "@button"
  2611. msgid "Website"
  2612. msgstr "Website"
  2613. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:269
  2614. msgctxt "@button"
  2615. msgid "Buy spool"
  2616. msgstr "Comprar bobinas"
  2617. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:278
  2618. msgctxt "@button"
  2619. msgid "Safety datasheet"
  2620. msgstr "Ficha de segurança"
  2621. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:287
  2622. msgctxt "@button"
  2623. msgid "Technical datasheet"
  2624. msgstr "Ficha técnica"
  2625. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2626. msgctxt "@header"
  2627. msgid "Package details"
  2628. msgstr "Detalhes do pacote"
  2629. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2630. msgctxt "@button:tooltip"
  2631. msgid "Back"
  2632. msgstr "Anterior"
  2633. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:16
  2634. msgctxt "@button"
  2635. msgid "Plugin license agreement"
  2636. msgstr "Contrato da licença do plug-in"
  2637. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:48
  2638. msgctxt "@text"
  2639. msgid "Please read and agree with the plugin licence."
  2640. msgstr "Leia e aceite a licença de utilização do plug-in."
  2641. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:74
  2642. msgctxt "@button"
  2643. msgid "Accept"
  2644. msgstr "Aceitar"
  2645. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:83
  2646. msgctxt "@button"
  2647. msgid "Decline"
  2648. msgstr "Rejeitar"
  2649. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:164
  2650. msgctxt "@button"
  2651. msgid "Failed to load packages:"
  2652. msgstr "Erro ao carregar os pacotes:"
  2653. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:164
  2654. msgctxt "@button"
  2655. msgid "Retry?"
  2656. msgstr "Tentar novamente?"
  2657. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:180
  2658. msgctxt "@button"
  2659. msgid "Loading"
  2660. msgstr "A carregar"
  2661. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:196
  2662. msgctxt "@message"
  2663. msgid "No more results to load"
  2664. msgstr "Sem mais resultados para mostrar"
  2665. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:196
  2666. msgctxt "@message"
  2667. msgid "No results found with current filter"
  2668. msgstr "Não foram encontrados resultados com o filtro atual"
  2669. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:239
  2670. msgctxt "@button"
  2671. msgid "Load more"
  2672. msgstr "Carregar mais"
  2673. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11
  2674. msgctxt "@header"
  2675. msgid "Manage packages"
  2676. msgstr "Gerir os pacotes"
  2677. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15
  2678. msgctxt "@text"
  2679. msgid ""
  2680. "Manage your Ultimaker Cura plugins and material profiles here. Make sure to "
  2681. "keep your plugins up to date and backup your setup regularly."
  2682. msgstr "Faça aqui a gestão dos plug-ins e perfis de materiais do Ultimaker Cura. Certifique-se de que mantém os plug-ins atualizados e que efetua regularmente"
  2683. " uma cópia de segurança da sua configuração."
  2684. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Materials.qml:8
  2685. msgctxt "@header"
  2686. msgid "Install Materials"
  2687. msgstr "Instalar materiais"
  2688. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Materials.qml:12
  2689. msgctxt "@text"
  2690. msgid ""
  2691. "Select and install material profiles optimised for your Ultimaker 3D "
  2692. "printers."
  2693. msgstr "Selecione e instale perfis de materiais otimizados para as impressoras 3D Ultimaker."
  2694. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  2695. msgctxt "@title:tab"
  2696. msgid "Printer"
  2697. msgstr "Impressora"
  2698. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  2699. msgctxt "@title:label"
  2700. msgid "Nozzle Settings"
  2701. msgstr "Definições do nozzle"
  2702. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  2703. msgctxt "@label"
  2704. msgid "Nozzle size"
  2705. msgstr "Tamanho do nozzle"
  2706. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  2707. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  2708. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  2709. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  2710. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  2711. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  2712. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  2713. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  2714. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  2715. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  2716. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  2717. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  2718. msgctxt "@label"
  2719. msgid "mm"
  2720. msgstr "mm"
  2721. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  2722. msgctxt "@label"
  2723. msgid "Compatible material diameter"
  2724. msgstr "Diâmetro do material compatível"
  2725. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  2726. msgctxt "@label"
  2727. msgid "Nozzle offset X"
  2728. msgstr "Desvio X do Nozzle"
  2729. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  2730. msgctxt "@label"
  2731. msgid "Nozzle offset Y"
  2732. msgstr "Desvio Y do Nozzle"
  2733. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  2734. msgctxt "@label"
  2735. msgid "Cooling Fan Number"
  2736. msgstr "Número de ventoinha de arrefecimento"
  2737. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  2738. msgctxt "@title:label"
  2739. msgid "Extruder Start G-code"
  2740. msgstr "G-code inicial do extrusor"
  2741. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  2742. msgctxt "@title:label"
  2743. msgid "Extruder End G-code"
  2744. msgstr "G-code final do extrusor"
  2745. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  2746. msgctxt "@title:label"
  2747. msgid "Printer Settings"
  2748. msgstr "Definições da impressora"
  2749. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  2750. msgctxt "@label"
  2751. msgid "X (Width)"
  2752. msgstr "X (Largura)"
  2753. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  2754. msgctxt "@label"
  2755. msgid "Y (Depth)"
  2756. msgstr "Y (Profundidade)"
  2757. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  2758. msgctxt "@label"
  2759. msgid "Z (Height)"
  2760. msgstr "Z (Altura)"
  2761. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  2762. msgctxt "@label"
  2763. msgid "Build plate shape"
  2764. msgstr "Forma da base de construção"
  2765. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  2766. msgctxt "@label"
  2767. msgid "Origin at center"
  2768. msgstr "Origem no centro"
  2769. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  2770. msgctxt "@label"
  2771. msgid "Heated bed"
  2772. msgstr "Base aquecida"
  2773. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  2774. msgctxt "@label"
  2775. msgid "Heated build volume"
  2776. msgstr "Volume de construção aquecido"
  2777. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  2778. msgctxt "@label"
  2779. msgid "G-code flavor"
  2780. msgstr "Variante do G-code"
  2781. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  2782. msgctxt "@title:label"
  2783. msgid "Printhead Settings"
  2784. msgstr "Definições da cabeça de impressão"
  2785. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  2786. msgctxt "@label"
  2787. msgid "X min"
  2788. msgstr "X mín"
  2789. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  2790. msgctxt "@label"
  2791. msgid "Y min"
  2792. msgstr "Y mín"
  2793. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  2794. msgctxt "@label"
  2795. msgid "X max"
  2796. msgstr "X máx"
  2797. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  2798. msgctxt "@label"
  2799. msgid "Y max"
  2800. msgstr "Y máx"
  2801. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  2802. msgctxt "@label"
  2803. msgid "Gantry Height"
  2804. msgstr "Altura do pórtico"
  2805. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  2806. msgctxt "@label"
  2807. msgid "Number of Extruders"
  2808. msgstr "Número de Extrusores"
  2809. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  2810. msgctxt "@label"
  2811. msgid "Apply Extruder offsets to GCode"
  2812. msgstr "Aplicar desvios da extrusora ao GCode"
  2813. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  2814. msgctxt "@title:label"
  2815. msgid "Start G-code"
  2816. msgstr "G-code inicial"
  2817. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  2818. msgctxt "@title:label"
  2819. msgid "End G-code"
  2820. msgstr "G-code final"
  2821. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  2822. msgctxt "@label:button"
  2823. msgid "My printers"
  2824. msgstr "As minhas impressoras"
  2825. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  2826. msgctxt "@tooltip:button"
  2827. msgid "Monitor printers in Ultimaker Digital Factory."
  2828. msgstr "Monitorize as impressoras no Ultimaker Digital Factory."
  2829. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  2830. msgctxt "@tooltip:button"
  2831. msgid "Create print projects in Digital Library."
  2832. msgstr "Crie projetos de impressão na Digital Library."
  2833. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  2834. msgctxt "@label:button"
  2835. msgid "Print jobs"
  2836. msgstr "Trabalhos em Impressão"
  2837. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  2838. msgctxt "@tooltip:button"
  2839. msgid "Monitor print jobs and reprint from your print history."
  2840. msgstr "Monitorize os trabalhos de impressão e volte a imprimir a partir do histórico de impressão."
  2841. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  2842. msgctxt "@tooltip:button"
  2843. msgid "Extend Ultimaker Cura with plugins and material profiles."
  2844. msgstr "Tire mais partido do Ultimaker Cura com plug-ins e perfis de materiais."
  2845. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  2846. msgctxt "@tooltip:button"
  2847. msgid "Become a 3D printing expert with Ultimaker e-learning."
  2848. msgstr "Torne-se um perito em impressão 3D com os cursos de e-learning da Ultimaker."
  2849. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  2850. msgctxt "@label:button"
  2851. msgid "Ultimaker support"
  2852. msgstr "Suporte da Ultimaker"
  2853. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  2854. msgctxt "@tooltip:button"
  2855. msgid "Learn how to get started with Ultimaker Cura."
  2856. msgstr "Saiba como começar a utilizar o Ultimaker Cura."
  2857. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  2858. msgctxt "@label:button"
  2859. msgid "Ask a question"
  2860. msgstr "Faça uma pergunta"
  2861. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  2862. msgctxt "@tooltip:button"
  2863. msgid "Consult the Ultimaker Community."
  2864. msgstr "Consulte a Comunidade Ultimaker."
  2865. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  2866. msgctxt "@label:button"
  2867. msgid "Report a bug"
  2868. msgstr "Reportar um erro"
  2869. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  2870. msgctxt "@tooltip:button"
  2871. msgid "Let developers know that something is going wrong."
  2872. msgstr "Informe os programadores quando houver algum problema."
  2873. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  2874. msgctxt "@tooltip:button"
  2875. msgid "Visit the Ultimaker website."
  2876. msgstr "Visite o site da Ultimaker."
  2877. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ExtruderButton.qml:16
  2878. msgctxt "@label %1 is filled in with the name of an extruder"
  2879. msgid "Print Selected Model with %1"
  2880. msgid_plural "Print Selected Models with %1"
  2881. msgstr[0] "Imprimir Modelo Selecionado com o %1"
  2882. msgstr[1] "Imprimir Modelos Selecionados com o %1"
  2883. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63
  2884. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2885. msgctxt "@title:menu menubar:toplevel"
  2886. msgid "&Settings"
  2887. msgstr "&Definições"
  2888. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87
  2889. msgctxt "@title:window"
  2890. msgid "New project"
  2891. msgstr "Novo projeto"
  2892. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88
  2893. msgctxt "@info:question"
  2894. msgid ""
  2895. "Are you sure you want to start a new project? This will clear the build "
  2896. "plate and any unsaved settings."
  2897. msgstr "Tem a certeza de que deseja iniciar um novo projeto? Isto irá apagar tudo na base de construção assim como quaisquer definições que não tenham sido guardadas."
  2898. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135
  2899. msgctxt "@action:button"
  2900. msgid "Marketplace"
  2901. msgstr "Mercado"
  2902. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25
  2903. msgctxt "@label"
  2904. msgid "Build plate"
  2905. msgstr "Base de construção"
  2906. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55
  2907. msgctxt "@tooltip"
  2908. msgid ""
  2909. "The target temperature of the heated bed. The bed will heat up or cool down "
  2910. "towards this temperature. If this is 0, the bed heating is turned off."
  2911. msgstr "A temperatura desejada da base aquecida. A base irá aquecer ou arrefecer até esta temperatura. Se esta opção for definida como 0, o aquecimento da base"
  2912. " será desligado."
  2913. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  2914. msgctxt "@tooltip"
  2915. msgid "The current temperature of the heated bed."
  2916. msgstr "A temperatura atual da base aquecida."
  2917. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162
  2918. msgctxt "@tooltip of temperature input"
  2919. msgid "The temperature to pre-heat the bed to."
  2920. msgstr "A temperatura de pré-aquecimento da base."
  2921. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259
  2922. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271
  2923. msgctxt "@button Cancel pre-heating"
  2924. msgid "Cancel"
  2925. msgstr "Cancelar"
  2926. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263
  2927. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274
  2928. msgctxt "@button"
  2929. msgid "Pre-heat"
  2930. msgstr "Preaquecer"
  2931. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286
  2932. msgctxt "@tooltip of pre-heat"
  2933. msgid ""
  2934. "Heat the bed in advance before printing. You can continue adjusting your "
  2935. "print while it is heating, and you won't have to wait for the bed to heat up "
  2936. "when you're ready to print."
  2937. msgstr "Aqueçer a base com antecedência antes de imprimir. Pode continuar a ajustar as definições de impressão durante o aquecimento e não precisará de esperar"
  2938. " que a base aqueça quando começar a impressão."
  2939. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:56
  2940. msgctxt "@info:status"
  2941. msgid "The printer is not connected."
  2942. msgstr "A impressora não está ligada."
  2943. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  2944. msgctxt "@label"
  2945. msgid "Printer control"
  2946. msgstr "Controlo da impressora"
  2947. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  2948. msgctxt "@label"
  2949. msgid "Jog Position"
  2950. msgstr "Posição de deslocação"
  2951. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  2952. msgctxt "@label"
  2953. msgid "X/Y"
  2954. msgstr "X/Y"
  2955. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  2956. msgctxt "@label"
  2957. msgid "Z"
  2958. msgstr "Z"
  2959. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  2960. msgctxt "@label"
  2961. msgid "Jog Distance"
  2962. msgstr "Distância de deslocação"
  2963. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  2964. msgctxt "@label"
  2965. msgid "Send G-code"
  2966. msgstr "Enviar G-code"
  2967. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  2968. msgctxt "@tooltip of G-code command input"
  2969. msgid ""
  2970. "Send a custom G-code command to the connected printer. Press 'enter' to send "
  2971. "the command."
  2972. msgstr "Enviar um comando G-code personalizado para a impressora ligada. Prima \"Enter\" para enviar o comando."
  2973. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40
  2974. msgctxt "@label"
  2975. msgid "Extruder"
  2976. msgstr "Extrusor"
  2977. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70
  2978. msgctxt "@tooltip"
  2979. msgid ""
  2980. "The target temperature of the hotend. The hotend will heat up or cool down "
  2981. "towards this temperature. If this is 0, the hotend heating is turned off."
  2982. msgstr "A temperatura-alvo do extrusor. O extrusor irá aquecer ou arrefecer até esta temperatura. Se esta opção for definida como 0, o aquecimento do extrusor"
  2983. " será desligado."
  2984. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105
  2985. msgctxt "@tooltip"
  2986. msgid "The current temperature of this hotend."
  2987. msgstr "A temperatura atual deste extrusor."
  2988. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182
  2989. msgctxt "@tooltip of temperature input"
  2990. msgid "The temperature to pre-heat the hotend to."
  2991. msgstr "A temperatura-alvo de preaquecimento do extrusor."
  2992. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297
  2993. msgctxt "@tooltip of pre-heat"
  2994. msgid ""
  2995. "Heat the hotend in advance before printing. You can continue adjusting your "
  2996. "print while it is heating, and you won't have to wait for the hotend to heat "
  2997. "up when you're ready to print."
  2998. msgstr "Aquecer o extrusor com antecedência antes de imprimir. Pode continuar a ajustar as definições de impressão durante o aquecimento e não precisará de esperar"
  2999. " que o extrusor aqueça quando começar a impressão."
  3000. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335
  3001. msgctxt "@tooltip"
  3002. msgid "The colour of the material in this extruder."
  3003. msgstr "A cor do material neste extrusor."
  3004. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367
  3005. msgctxt "@tooltip"
  3006. msgid "The material in this extruder."
  3007. msgstr "O material neste extrusor."
  3008. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400
  3009. msgctxt "@tooltip"
  3010. msgid "The nozzle inserted in this extruder."
  3011. msgstr "O nozzle inserido neste extrusor."
  3012. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  3013. msgctxt "@title:window"
  3014. msgid "Open project file"
  3015. msgstr "Abrir ficheiro de projeto"
  3016. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83
  3017. msgctxt "@text:window"
  3018. msgid ""
  3019. "This is a Cura project file. Would you like to open it as a project or "
  3020. "import the models from it?"
  3021. msgstr "Este ficheiro é um Projeto do Cura. Pretende abrir como Projeto ou só importar os modelos 3D incluídos no Projeto?"
  3022. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  3023. msgctxt "@text:window"
  3024. msgid "Remember my choice"
  3025. msgstr "Memorizar a minha escolha"
  3026. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  3027. msgctxt "@action:button"
  3028. msgid "Open as project"
  3029. msgstr "Abrir como projeto"
  3030. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  3031. msgctxt "@action:button"
  3032. msgid "Import models"
  3033. msgstr "Importar modelos"
  3034. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  3035. msgctxt "@title:window"
  3036. msgid "Save Project"
  3037. msgstr "Guardar projeto"
  3038. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:168
  3039. msgctxt "@action:label"
  3040. msgid "Extruder %1"
  3041. msgstr "Extrusor %1"
  3042. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:184
  3043. msgctxt "@action:label"
  3044. msgid "%1 & material"
  3045. msgstr "%1 & material"
  3046. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:186
  3047. msgctxt "@action:label"
  3048. msgid "Material"
  3049. msgstr "Material"
  3050. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:275
  3051. msgctxt "@action:label"
  3052. msgid "Don't show project summary on save again"
  3053. msgstr "Não mostrar novamente o resumo do projeto ao guardar"
  3054. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:289
  3055. msgctxt "@action:button"
  3056. msgid "Save"
  3057. msgstr "Guardar"
  3058. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  3059. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:637
  3060. msgctxt "@title:window"
  3061. msgid "Open file(s)"
  3062. msgstr "Abrir ficheiro(s)"
  3063. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  3064. msgctxt "@text:window"
  3065. msgid ""
  3066. "We have found one or more project file(s) within the files you have "
  3067. "selected. You can open only one project file at a time. We suggest to only "
  3068. "import models from those files. Would you like to proceed?"
  3069. msgstr "Encontrámos um ou mais projetos do Cura nos ficheiros selecionados. Só é possível abrir um Projeto do Cura, de cada vez. Sugerimos importar apenas os modelos"
  3070. " 3D desses Projetos do Cura. Deseja continuar?"
  3071. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  3072. msgctxt "@action:button"
  3073. msgid "Import all as models"
  3074. msgstr "Importar tudo como modelos 3D"
  3075. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  3076. msgctxt "@title:window The argument is the application name."
  3077. msgid "About %1"
  3078. msgstr "Acerca de %1"
  3079. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  3080. msgctxt "@label"
  3081. msgid "version: %1"
  3082. msgstr "versão: %1"
  3083. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  3084. msgctxt "@label"
  3085. msgid "End-to-end solution for fused filament 3D printing."
  3086. msgstr "A Solução completa para a impressão 3D por filamento fundido."
  3087. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  3088. msgctxt "@info:credit"
  3089. msgid ""
  3090. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  3091. "Cura proudly uses the following open source projects:"
  3092. msgstr "O Cura foi desenvolvido pela Ultimaker B.V. em colaboração com a comunidade.\nO Cura tem o prazer de utilizar os seguintes projetos open source:"
  3093. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:134
  3094. msgctxt "@label"
  3095. msgid "Graphical user interface"
  3096. msgstr "Interface gráfica do utilizador"
  3097. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  3098. msgctxt "@label"
  3099. msgid "Application framework"
  3100. msgstr "Framework da aplicação"
  3101. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  3102. msgctxt "@label"
  3103. msgid "G-code generator"
  3104. msgstr "Gerador de G-code"
  3105. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  3106. msgctxt "@label"
  3107. msgid "Interprocess communication library"
  3108. msgstr "Biblioteca de comunicação interprocessual"
  3109. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:139
  3110. msgctxt "@label"
  3111. msgid "Programming language"
  3112. msgstr "Linguagem de programação"
  3113. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  3114. msgctxt "@label"
  3115. msgid "GUI framework"
  3116. msgstr "GUI framework"
  3117. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  3118. msgctxt "@label"
  3119. msgid "GUI framework bindings"
  3120. msgstr "Ligações de estrutura da GUI"
  3121. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  3122. msgctxt "@label"
  3123. msgid "C/C++ Binding library"
  3124. msgstr "Biblioteca de ligações C/C++"
  3125. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  3126. msgctxt "@label"
  3127. msgid "Data interchange format"
  3128. msgstr "Formato de intercâmbio de dados"
  3129. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  3130. msgctxt "@label"
  3131. msgid "Support library for scientific computing"
  3132. msgstr "Biblioteca de apoio para computação científica"
  3133. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  3134. msgctxt "@label"
  3135. msgid "Support library for faster math"
  3136. msgstr "Biblioteca de apoio para cálculos mais rápidos"
  3137. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  3138. msgctxt "@label"
  3139. msgid "Support library for handling STL files"
  3140. msgstr "Biblioteca de apoio para processamento de ficheiros STL"
  3141. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  3142. msgctxt "@label"
  3143. msgid "Support library for handling triangular meshes"
  3144. msgstr "Biblioteca de apoio para processamento de malhas triangulares"
  3145. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  3146. msgctxt "@label"
  3147. msgid "Support library for handling 3MF files"
  3148. msgstr "Biblioteca de apoio para processamento de ficheiros 3MF"
  3149. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3150. msgctxt "@label"
  3151. msgid "Support library for file metadata and streaming"
  3152. msgstr "Biblioteca de apoio para transmissões de fluxo e metadados de ficheiros"
  3153. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3154. msgctxt "@label"
  3155. msgid "Serial communication library"
  3156. msgstr "Biblioteca de comunicação em série"
  3157. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3158. msgctxt "@label"
  3159. msgid "ZeroConf discovery library"
  3160. msgstr "Biblioteca de deteção ZeroConf"
  3161. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3162. msgctxt "@label"
  3163. msgid "Polygon clipping library"
  3164. msgstr "Biblioteca de recortes de polígonos"
  3165. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3166. msgctxt "@label"
  3167. msgid "Python bindings for Clipper"
  3168. msgstr "Ligações Python para Clipper"
  3169. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3170. msgctxt "@Label"
  3171. msgid "Static type checker for Python"
  3172. msgstr "Verificador de tipo estático para Python"
  3173. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3174. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3175. msgctxt "@Label"
  3176. msgid "Root Certificates for validating SSL trustworthiness"
  3177. msgstr "Certificados de raiz para validar a credibilidade SSL"
  3178. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3179. msgctxt "@Label"
  3180. msgid "Python Error tracking library"
  3181. msgstr "Biblioteca de controlo de erros de Python"
  3182. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3183. msgctxt "@label"
  3184. msgid "Polygon packing library, developed by Prusa Research"
  3185. msgstr "Biblioteca de embalagens de polígonos, desenvolvida pela Prusa Research"
  3186. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3187. msgctxt "@label"
  3188. msgid "Python bindings for libnest2d"
  3189. msgstr "Ligações Python para libnest2d"
  3190. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3191. msgctxt "@label"
  3192. msgid "Support library for system keyring access"
  3193. msgstr "Biblioteca de apoio para acesso às chaves de sistema"
  3194. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  3195. msgctxt "@label"
  3196. msgid "Python extensions for Microsoft Windows"
  3197. msgstr "Extensões Python para Microsoft Windows"
  3198. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3199. msgctxt "@label"
  3200. msgid "Font"
  3201. msgstr "Tipo de letra"
  3202. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3203. msgctxt "@label"
  3204. msgid "SVG icons"
  3205. msgstr "Ícones SVG"
  3206. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3207. msgctxt "@label"
  3208. msgid "Linux cross-distribution application deployment"
  3209. msgstr "Implementação da aplicação de distribuição cruzada Linux"
  3210. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:14
  3211. msgctxt "@title:window"
  3212. msgid "Discard or Keep changes"
  3213. msgstr "Descartar ou Manter as alterações"
  3214. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:50
  3215. msgctxt "@text:window, %1 is a profile name"
  3216. msgid ""
  3217. "You have customized some profile settings. Would you like to Keep these "
  3218. "changed settings after switching profiles? Alternatively, you can discard "
  3219. "the changes to load the defaults from '%1'."
  3220. msgstr "Alterou algumas definições do perfil.\nPretende manter estas alterações depois de trocar de perfis?\nComo alternativa, pode descartar as alterações para"
  3221. " carregar as predefinições a partir de '%1'."
  3222. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:76
  3223. msgctxt "@title:column"
  3224. msgid "Profile settings"
  3225. msgstr "Definições do perfil"
  3226. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:78
  3227. msgctxt "@title:column"
  3228. msgid "Current changes"
  3229. msgstr "Alterações atuais"
  3230. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:107
  3231. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:798
  3232. msgctxt "@option:discardOrKeep"
  3233. msgid "Always ask me this"
  3234. msgstr "Perguntar sempre isto"
  3235. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:108
  3236. msgctxt "@option:discardOrKeep"
  3237. msgid "Discard and never ask again"
  3238. msgstr "Descartar e não perguntar novamente"
  3239. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:109
  3240. msgctxt "@option:discardOrKeep"
  3241. msgid "Keep and never ask again"
  3242. msgstr "Manter e não perguntar novamente"
  3243. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:139
  3244. msgctxt "@action:button"
  3245. msgid "Discard changes"
  3246. msgstr "Descartar alterações"
  3247. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:145
  3248. msgctxt "@action:button"
  3249. msgid "Keep changes"
  3250. msgstr "Manter alterações"
  3251. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Widgets/ComboBox.qml:18
  3252. msgctxt "@label"
  3253. msgid "No items to select from"
  3254. msgstr "Nenhum item para selecionar"
  3255. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  3256. msgctxt "@title:menu menubar:file"
  3257. msgid "Open File(s)..."
  3258. msgstr "Abrir ficheiro(s)..."
  3259. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3260. msgctxt "@title:menu menubar:file"
  3261. msgid "Open &Recent"
  3262. msgstr "Abrir &Recente"
  3263. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  3264. msgctxt "@action:inmenu"
  3265. msgid "Visible Settings"
  3266. msgstr "Definições Visíveis"
  3267. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
  3268. msgctxt "@action:inmenu"
  3269. msgid "Collapse All Categories"
  3270. msgstr "Fechar todas as categorias"
  3271. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  3272. msgctxt "@action:inmenu"
  3273. msgid "Manage Setting Visibility..."
  3274. msgstr "Gerir Visibilidade das Definições..."
  3275. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:34
  3276. msgctxt "@title:menu"
  3277. msgid "&Material"
  3278. msgstr "&Material"
  3279. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:49
  3280. msgctxt "@action:inmenu"
  3281. msgid "Set as Active Extruder"
  3282. msgstr "Definir como Extrusor Ativo"
  3283. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:55
  3284. msgctxt "@action:inmenu"
  3285. msgid "Enable Extruder"
  3286. msgstr "Ativar Extrusor"
  3287. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:63
  3288. msgctxt "@action:inmenu"
  3289. msgid "Disable Extruder"
  3290. msgstr "Desativar Extrusor"
  3291. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3292. msgctxt "@label:category menu label"
  3293. msgid "Material"
  3294. msgstr "Material"
  3295. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:53
  3296. msgctxt "@label:category menu label"
  3297. msgid "Favorites"
  3298. msgstr "Favoritos"
  3299. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:78
  3300. msgctxt "@label:category menu label"
  3301. msgid "Generic"
  3302. msgstr "Genérico"
  3303. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/HelpMenu.qml:14
  3304. msgctxt "@title:menu menubar:toplevel"
  3305. msgid "&Help"
  3306. msgstr "&Ajuda"
  3307. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:13
  3308. msgctxt "@title:menu menubar:toplevel"
  3309. msgid "&File"
  3310. msgstr "&Ficheiro"
  3311. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:44
  3312. msgctxt "@title:menu menubar:file"
  3313. msgid "&Save Project..."
  3314. msgstr "&Guardar projeto..."
  3315. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:77
  3316. msgctxt "@title:menu menubar:file"
  3317. msgid "&Export..."
  3318. msgstr "&Exportar..."
  3319. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:88
  3320. msgctxt "@action:inmenu menubar:file"
  3321. msgid "Export Selection..."
  3322. msgstr "Exportar seleção..."
  3323. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PreferencesMenu.qml:21
  3324. msgctxt "@title:menu menubar:toplevel"
  3325. msgid "P&references"
  3326. msgstr "P&referências"
  3327. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/EditMenu.qml:12
  3328. msgctxt "@title:menu menubar:toplevel"
  3329. msgid "&Edit"
  3330. msgstr "&Editar"
  3331. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:13
  3332. msgctxt "@title:menu menubar:settings"
  3333. msgid "&Printer"
  3334. msgstr "&Impressora"
  3335. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:17
  3336. msgctxt "@label:category menu label"
  3337. msgid "Network enabled printers"
  3338. msgstr "Impressoras em rede"
  3339. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:50
  3340. msgctxt "@label:category menu label"
  3341. msgid "Local printers"
  3342. msgstr "Impressoras locais"
  3343. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ExtensionMenu.qml:13
  3344. msgctxt "@title:menu menubar:toplevel"
  3345. msgid "E&xtensions"
  3346. msgstr "E&xtensões"
  3347. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3348. msgctxt "@header"
  3349. msgid "Configurations"
  3350. msgstr "Configurações"
  3351. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  3352. msgctxt "@label"
  3353. msgid "Loading available configurations from the printer..."
  3354. msgstr "A carregar as configurações disponíveis da impressora..."
  3355. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  3356. msgctxt "@label"
  3357. msgid ""
  3358. "The configurations are not available because the printer is disconnected."
  3359. msgstr "As configurações não estão disponíveis porque a impressora está desligada."
  3360. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3361. msgctxt "@label"
  3362. msgid ""
  3363. "This configuration is not available because %1 is not recognized. Please "
  3364. "visit %2 to download the correct material profile."
  3365. msgstr "Esta configuração não está disponível porque não foi possível reconhecer %1. Visite %2 para transferir o perfil de material correto."
  3366. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3367. msgctxt "@label"
  3368. msgid "Marketplace"
  3369. msgstr "Mercado"
  3370. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:101
  3371. msgctxt "@tooltip"
  3372. msgid ""
  3373. "The configuration of this extruder is not allowed, and prohibits slicing."
  3374. msgstr "A configuração deste extrusor não é permitida o que impede o seccionamento."
  3375. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:105
  3376. msgctxt "@tooltip"
  3377. msgid "There are no profiles matching the configuration of this extruder."
  3378. msgstr "Não existem perfis que correspondam à configuração deste extrusor."
  3379. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:245
  3380. msgctxt "@label"
  3381. msgid "Select configuration"
  3382. msgstr "Selecionar configuração"
  3383. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:354
  3384. msgctxt "@label"
  3385. msgid "Configurations"
  3386. msgstr "Configurações"
  3387. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  3388. msgctxt "@header"
  3389. msgid "Custom"
  3390. msgstr "Personalizado"
  3391. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62
  3392. msgctxt "@label"
  3393. msgid "Printer"
  3394. msgstr "Impressora"
  3395. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:214
  3396. msgctxt "@label"
  3397. msgid "Enabled"
  3398. msgstr "Ativado"
  3399. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:263
  3400. msgctxt "@label"
  3401. msgid "Material"
  3402. msgstr "Material"
  3403. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:391
  3404. msgctxt "@label"
  3405. msgid "Use glue for better adhesion with this material combination."
  3406. msgstr "Utilizar cola para melhor aderência com esta combinação de materiais."
  3407. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:29
  3408. msgctxt "@label"
  3409. msgid "Print Selected Model With:"
  3410. msgid_plural "Print Selected Models With:"
  3411. msgstr[0] "Imprimir Modelo Selecionado Com:"
  3412. msgstr[1] "Imprimir modelos selecionados com:"
  3413. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:92
  3414. msgctxt "@title:window"
  3415. msgid "Multiply Selected Model"
  3416. msgid_plural "Multiply Selected Models"
  3417. msgstr[0] "Multiplicar Modelo Selecionado"
  3418. msgstr[1] "Multiplicar modelos selecionados"
  3419. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:123
  3420. msgctxt "@label"
  3421. msgid "Number of Copies"
  3422. msgstr "Número de Cópias"
  3423. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  3424. msgctxt "@title:menu menubar:file"
  3425. msgid "Save Project..."
  3426. msgstr "Guardar projeto..."
  3427. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:13
  3428. msgctxt "@title:menu menubar:toplevel"
  3429. msgid "&View"
  3430. msgstr "&Visualizar"
  3431. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:17
  3432. msgctxt "@action:inmenu menubar:view"
  3433. msgid "&Camera position"
  3434. msgstr "&Posição da câmara"
  3435. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:30
  3436. msgctxt "@action:inmenu menubar:view"
  3437. msgid "Camera view"
  3438. msgstr "Vista da câmara"
  3439. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:48
  3440. msgctxt "@action:inmenu menubar:view"
  3441. msgid "Perspective"
  3442. msgstr "Perspetiva"
  3443. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:59
  3444. msgctxt "@action:inmenu menubar:view"
  3445. msgid "Orthographic"
  3446. msgstr "Ortográfica"
  3447. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewsSelector.qml:50
  3448. msgctxt "@label"
  3449. msgid "View type"
  3450. msgstr "Ver tipo"
  3451. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:19
  3452. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  3453. msgctxt "@label"
  3454. msgid "Sign in to the Ultimaker platform"
  3455. msgstr "Inicie a sessão na plataforma Ultimaker"
  3456. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:39
  3457. msgctxt "@text"
  3458. msgid ""
  3459. "- Add material profiles and plug-ins from the Marketplace\n"
  3460. "- Back-up and sync your material profiles and plug-ins\n"
  3461. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  3462. msgstr "- Adicione definições de materiais e plug-ins do Marketplace\n- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins\n- Partilhe"
  3463. " ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker"
  3464. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:58
  3465. msgctxt "@button"
  3466. msgid "Create a free Ultimaker account"
  3467. msgstr "Crie uma conta Ultimaker gratuita"
  3468. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/AccountWidget.qml:24
  3469. msgctxt "@action:button"
  3470. msgid "Sign in"
  3471. msgstr "Iniciar sessão"
  3472. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:77
  3473. msgctxt "@label The argument is a timestamp"
  3474. msgid "Last update: %1"
  3475. msgstr "Atualização mais recente: %1"
  3476. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:104
  3477. msgctxt "@button"
  3478. msgid "Ultimaker Account"
  3479. msgstr "Conta Ultimaker"
  3480. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:120
  3481. msgctxt "@button"
  3482. msgid "Sign Out"
  3483. msgstr "Terminar sessão"
  3484. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:28
  3485. msgctxt "@label"
  3486. msgid "Checking..."
  3487. msgstr "A verificar..."
  3488. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:35
  3489. msgctxt "@label"
  3490. msgid "Account synced"
  3491. msgstr "Conta sincronizada"
  3492. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:42
  3493. msgctxt "@label"
  3494. msgid "Something went wrong..."
  3495. msgstr "Ocorreu um problema..."
  3496. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:95
  3497. msgctxt "@button"
  3498. msgid "Install pending updates"
  3499. msgstr "Instalar atualizações pendentes"
  3500. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:116
  3501. msgctxt "@button"
  3502. msgid "Check for account updates"
  3503. msgstr "Verificar atualizações de conta"
  3504. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3505. msgctxt "@label:PrintjobStatus"
  3506. msgid "Slicing..."
  3507. msgstr "A Seccionar..."
  3508. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:81
  3509. msgctxt "@label:PrintjobStatus"
  3510. msgid "Unable to slice"
  3511. msgstr "Não é possível seccionar"
  3512. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:120
  3513. msgctxt "@button"
  3514. msgid "Processing"
  3515. msgstr "A processar"
  3516. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:120
  3517. msgctxt "@button"
  3518. msgid "Slice"
  3519. msgstr "Segmentação"
  3520. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  3521. msgctxt "@label"
  3522. msgid "Start the slicing process"
  3523. msgstr "Iniciar o processo de segmentação"
  3524. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:137
  3525. msgctxt "@button"
  3526. msgid "Cancel"
  3527. msgstr "Cancelar"
  3528. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  3529. msgctxt "@label"
  3530. msgid "Time estimation"
  3531. msgstr "Estimativa de tempo"
  3532. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  3533. msgctxt "@label"
  3534. msgid "Material estimation"
  3535. msgstr "Estimativa de material"
  3536. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  3537. msgctxt "@label m for meter"
  3538. msgid "%1m"
  3539. msgstr "%1 m"
  3540. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  3541. msgctxt "@label g for grams"
  3542. msgid "%1g"
  3543. msgstr "%1 g"
  3544. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3545. msgctxt "@label"
  3546. msgid "No time estimation available"
  3547. msgstr "Nenhuma estimativa de tempo disponível"
  3548. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3549. msgctxt "@label"
  3550. msgid "No cost estimation available"
  3551. msgstr "Nenhuma estimativa de custos disponível"
  3552. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3553. msgctxt "@button"
  3554. msgid "Preview"
  3555. msgstr "Pré-visualizar"
  3556. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:253
  3557. msgctxt "@label"
  3558. msgid "This package will be installed after restarting."
  3559. msgstr "Este pacote será instalado após reiniciar."
  3560. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:463
  3561. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:14
  3562. msgctxt "@title:tab"
  3563. msgid "General"
  3564. msgstr "Geral"
  3565. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:466
  3566. msgctxt "@title:tab"
  3567. msgid "Settings"
  3568. msgstr "Definições"
  3569. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:468
  3570. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:16
  3571. msgctxt "@title:tab"
  3572. msgid "Printers"
  3573. msgstr "Impressoras"
  3574. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:470
  3575. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3576. msgctxt "@title:tab"
  3577. msgid "Materials"
  3578. msgstr "Materiais"
  3579. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:472
  3580. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:56
  3581. msgctxt "@title:tab"
  3582. msgid "Profiles"
  3583. msgstr "Perfis"
  3584. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:589
  3585. msgctxt "@title:window %1 is the application name"
  3586. msgid "Closing %1"
  3587. msgstr "A fechar %1"
  3588. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:590
  3589. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:599
  3590. msgctxt "@label %1 is the application name"
  3591. msgid "Are you sure you want to exit %1?"
  3592. msgstr "Tem a certeza de que pretende sair de %1?"
  3593. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:747
  3594. msgctxt "@window:title"
  3595. msgid "Install Package"
  3596. msgstr "Instalar Pacote"
  3597. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:754
  3598. msgctxt "@title:window"
  3599. msgid "Open File(s)"
  3600. msgstr "Abrir ficheiro(s)"
  3601. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:756
  3602. msgctxt "@text:window"
  3603. msgid ""
  3604. "We have found one or more G-Code files within the files you have selected. "
  3605. "You can only open one G-Code file at a time. If you want to open a G-Code "
  3606. "file, please just select only one."
  3607. msgstr "Encontrámos um ou mais ficheiros G-code nos ficheiros selecionados. Só é possível abrir um ficheiro G-code de cada vez. Se pretender abrir um ficheiro"
  3608. " G-code, selecione apenas um."
  3609. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:836
  3610. msgctxt "@title:window"
  3611. msgid "Add Printer"
  3612. msgstr "Adicionar Impressora"
  3613. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:844
  3614. msgctxt "@title:window"
  3615. msgid "What's New"
  3616. msgstr "Novidades"
  3617. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  3618. msgctxt "@label:Should be short"
  3619. msgid "On"
  3620. msgstr "Ligado"
  3621. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  3622. msgctxt "@label:Should be short"
  3623. msgid "Off"
  3624. msgstr "Desligado"
  3625. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  3626. msgctxt "@label"
  3627. msgid "Experimental"
  3628. msgstr "Experimental"
  3629. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3630. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642
  3631. msgctxt "@label"
  3632. msgid "Print settings"
  3633. msgstr "Definições de impressão"
  3634. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  3635. msgctxt "@label shown when we load a Gcode file"
  3636. msgid "Print setup disabled. G-code file can not be modified."
  3637. msgstr "Configuração de impressão desativada. O ficheiro G-code não pode ser modificado."
  3638. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  3639. msgctxt "@button"
  3640. msgid "Recommended"
  3641. msgstr "Recomendado"
  3642. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  3643. msgctxt "@button"
  3644. msgid "Custom"
  3645. msgstr "Personalizado"
  3646. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  3647. msgctxt ""
  3648. "@label %1 is filled in with the type of a profile. %2 is filled with a list "
  3649. "of numbers (eg '1' or '1, 2')"
  3650. msgid ""
  3651. "There is no %1 profile for the configuration in extruder %2. The default "
  3652. "intent will be used instead"
  3653. msgid_plural ""
  3654. "There is no %1 profile for the configurations in extruders %2. The default "
  3655. "intent will be used instead"
  3656. msgstr[0] "Não existe um perfil %1 para a configuração do extrusor %2. O objetivo predefinido será usado como alternativa"
  3657. msgstr[1] "Não existe um perfil %1 para as configurações dos extrusores %2. O objetivo predefinido será usado como alternativa"
  3658. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:195
  3659. msgctxt "@label"
  3660. msgid "Gradual infill"
  3661. msgstr "Enchimento gradual"
  3662. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:233
  3663. msgctxt "@label"
  3664. msgid ""
  3665. "Gradual infill will gradually increase the amount of infill towards the top."
  3666. msgstr "O enchimento gradual irá aumentar progressivamente a densidade do enchimento em direção ao topo."
  3667. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28
  3668. msgctxt "@label"
  3669. msgid "Support"
  3670. msgstr "Suportes"
  3671. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69
  3672. msgctxt "@label"
  3673. msgid ""
  3674. "Generate structures to support parts of the model which have overhangs. "
  3675. "Without these structures, such parts would collapse during printing."
  3676. msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliências. Sem estas estruturas, essas partes do modelo podem desmoronar durante a impressão."
  3677. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:50
  3678. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:779
  3679. msgctxt "@label"
  3680. msgid "Profiles"
  3681. msgstr "Perfis"
  3682. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:80
  3683. msgctxt "@tooltip"
  3684. msgid ""
  3685. "You have modified some profile settings. If you want to change these go to "
  3686. "custom mode."
  3687. msgstr "Algumas definições do perfil foram modificadas. Se pretender alterá-las, aceda ao modo Personalizado."
  3688. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27
  3689. msgctxt "@label"
  3690. msgid "Adhesion"
  3691. msgstr "Aderência à Base de Construção"
  3692. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72
  3693. msgctxt "@label"
  3694. msgid ""
  3695. "Enable printing a brim or raft. This will add a flat area around or under "
  3696. "your object which is easy to cut off afterwards."
  3697. msgstr "Permite a impressão de uma aba ou raft. Isto irá adicionar, respetivamente, uma área plana em torno ou sob a base do seu objeto, que são fáceis de retirar"
  3698. " posteriormente."
  3699. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  3700. msgctxt "@label:header"
  3701. msgid "Custom profiles"
  3702. msgstr "Perfis personalizados"
  3703. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256
  3704. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:147
  3705. msgctxt "@action:button"
  3706. msgid "Discard current changes"
  3707. msgstr "Descartar alterações atuais"
  3708. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  3709. msgctxt "@label"
  3710. msgid "Profile"
  3711. msgstr "Perfil"
  3712. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:157
  3713. msgctxt "@tooltip"
  3714. msgid ""
  3715. "Some setting/override values are different from the values stored in the "
  3716. "profile.\n"
  3717. "\n"
  3718. "Click to open the profile manager."
  3719. msgstr "Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil.\n\nClique para abrir o gestor de perfis."
  3720. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:37
  3721. msgctxt "@title:column"
  3722. msgid "Setting"
  3723. msgstr "Definição"
  3724. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:38
  3725. msgctxt "@title:column"
  3726. msgid "Profile"
  3727. msgstr "Perfil"
  3728. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:39
  3729. msgctxt "@title:column"
  3730. msgid "Current"
  3731. msgstr "Atual"
  3732. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:40
  3733. msgctxt "@title:column Unit of measurement"
  3734. msgid "Unit"
  3735. msgstr "Unidade"
  3736. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:22
  3737. msgctxt "@title:window"
  3738. msgid "Rename"
  3739. msgstr "Mudar o nome"
  3740. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:23
  3741. msgctxt "@info"
  3742. msgid "Please provide a new name."
  3743. msgstr "Por favor, indique um novo nome."
  3744. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56
  3745. msgctxt "@item:tooltip"
  3746. msgid ""
  3747. "This setting has been hidden by the active machine and will not be visible."
  3748. msgstr "Esta definição não é válida para a máquina ativa, e não será visível."
  3749. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73
  3750. msgctxt "@item:tooltip %1 is list of setting names"
  3751. msgid ""
  3752. "This setting has been hidden by the value of %1. Change the value of that "
  3753. "setting to make this setting visible."
  3754. msgid_plural ""
  3755. "This setting has been hidden by the values of %1. Change the values of those "
  3756. "settings to make this setting visible."
  3757. msgstr[0] "Esta definição não é visível devido ao valor da definição: %1. Altere o valor dessa definição, para que esta definição fique visível."
  3758. msgstr[1] "Esta definição não é visível devido aos valores das seguintes definições: %1. Altere os valores dessas definições, para que esta definição fique visível."
  3759. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13
  3760. msgctxt "@title:tab"
  3761. msgid "Setting Visibility"
  3762. msgstr "Visibilidade das Definições"
  3763. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:22
  3764. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:131
  3765. msgctxt "@action:button"
  3766. msgid "Defaults"
  3767. msgstr "Predefinições"
  3768. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:53
  3769. msgctxt "@label:textbox"
  3770. msgid "Check all"
  3771. msgstr "Selecionar tudo"
  3772. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:49
  3773. msgctxt "@action:button"
  3774. msgid "Add New"
  3775. msgstr "Adicionar novo"
  3776. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:135
  3777. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160
  3778. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:293
  3779. msgctxt "@action:button"
  3780. msgid "Activate"
  3781. msgstr "Ativar"
  3782. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:147
  3783. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:330
  3784. msgctxt "@action:button"
  3785. msgid "Rename"
  3786. msgstr "Mudar Nome"
  3787. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121
  3788. msgctxt "@title:window"
  3789. msgid "Confirm Diameter Change"
  3790. msgstr "Confirmar Alteração de Diâmetro"
  3791. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122
  3792. msgctxt "@label (%1 is a number)"
  3793. msgid ""
  3794. "The new filament diameter is set to %1 mm, which is not compatible with the "
  3795. "current extruder. Do you wish to continue?"
  3796. msgstr "O novo diâmetro do filamento está definido como %1 mm, o que não é compatível com o extrusor actual. Pretende prosseguir?"
  3797. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152
  3798. msgctxt "@label"
  3799. msgid "Display Name"
  3800. msgstr "Nome"
  3801. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171
  3802. msgctxt "@label"
  3803. msgid "Brand"
  3804. msgstr "Marca"
  3805. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190
  3806. msgctxt "@label"
  3807. msgid "Material Type"
  3808. msgstr "Tipo de Material"
  3809. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:209
  3810. msgctxt "@label"
  3811. msgid "Color"
  3812. msgstr "Cor"
  3813. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:261
  3814. msgctxt "@title"
  3815. msgid "Material color picker"
  3816. msgstr "Selecionador de cores do material"
  3817. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:274
  3818. msgctxt "@label"
  3819. msgid "Properties"
  3820. msgstr "Propriedades"
  3821. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:285
  3822. msgctxt "@label"
  3823. msgid "Density"
  3824. msgstr "Densidade"
  3825. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:318
  3826. msgctxt "@label"
  3827. msgid "Diameter"
  3828. msgstr "Diâmetro"
  3829. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:368
  3830. msgctxt "@label"
  3831. msgid "Filament Cost"
  3832. msgstr "Custo do Filamento"
  3833. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:400
  3834. msgctxt "@label"
  3835. msgid "Filament weight"
  3836. msgstr "Peso do Filamento"
  3837. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:432
  3838. msgctxt "@label"
  3839. msgid "Filament length"
  3840. msgstr "Comprimento do filamento"
  3841. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:450
  3842. msgctxt "@label"
  3843. msgid "Cost per Meter"
  3844. msgstr "Custo por Metro"
  3845. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:464
  3846. msgctxt "@label"
  3847. msgid "This material is linked to %1 and shares some of its properties."
  3848. msgstr "Este material está associado a %1 e partilha algumas das suas propriedades."
  3849. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:471
  3850. msgctxt "@label"
  3851. msgid "Unlink Material"
  3852. msgstr "Desassociar Material"
  3853. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:484
  3854. msgctxt "@label"
  3855. msgid "Description"
  3856. msgstr "Descrição"
  3857. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:502
  3858. msgctxt "@label"
  3859. msgid "Adhesion Information"
  3860. msgstr "Informações de Aderência"
  3861. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:637
  3862. msgctxt "@title"
  3863. msgid "Information"
  3864. msgstr "Informações"
  3865. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17
  3866. msgctxt "@title:window"
  3867. msgid "Sync materials with printers"
  3868. msgstr "Sincronizar materiais com impressoras"
  3869. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:48
  3870. msgctxt "@title:header"
  3871. msgid "Sync materials with printers"
  3872. msgstr "Sincronizar materiais com impressoras"
  3873. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:54
  3874. msgctxt "@text"
  3875. msgid ""
  3876. "Following a few simple steps, you will be able to synchronize all your "
  3877. "material profiles with your printers."
  3878. msgstr "Com alguns passos simples poderá sincronizar todos os seus perfis de materiais com as suas impressoras."
  3879. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:76
  3880. msgctxt "@button"
  3881. msgid "Why do I need to sync material profiles?"
  3882. msgstr "Por que motivo tenho de sincronizar os perfis de materiais?"
  3883. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:85
  3884. msgctxt "@button"
  3885. msgid "Start"
  3886. msgstr "Começar"
  3887. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:127
  3888. msgctxt "@title:header"
  3889. msgid "Sign in"
  3890. msgstr "Iniciar sessão"
  3891. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:133
  3892. msgctxt "@text"
  3893. msgid ""
  3894. "To automatically sync the material profiles with all your printers connected "
  3895. "to Digital Factory you need to be signed in in Cura."
  3896. msgstr "Para sincronizar automaticamente os perfis de materiais com todas as impressoras ligadas à Digital Factory, tem de ter uma sessão iniciada no Cura."
  3897. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:157
  3898. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446
  3899. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:587
  3900. msgctxt "@button"
  3901. msgid "Sync materials with USB"
  3902. msgstr "Sincronizar materiais através de USB"
  3903. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:190
  3904. msgctxt "@title:header"
  3905. msgid "The following printers will receive the new material profiles:"
  3906. msgstr "As seguintes impressoras vão receber os novos perfis de materiais:"
  3907. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:197
  3908. msgctxt "@title:header"
  3909. msgid "Something went wrong when sending the materials to the printers."
  3910. msgstr "Ocorreu um problema ao enviar os materiais para as impressoras."
  3911. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:204
  3912. msgctxt "@title:header"
  3913. msgid "Material profiles successfully synced with the following printers:"
  3914. msgstr "Perfis de materiais foram sincronizados com êxito com as seguintes impressoras:"
  3915. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242
  3916. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429
  3917. msgctxt "@button"
  3918. msgid "Troubleshooting"
  3919. msgstr "Resolução de problemas"
  3920. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406
  3921. msgctxt "@text Asking the user whether printers are missing in a list."
  3922. msgid "Printers missing?"
  3923. msgstr "Faltam impressoras?"
  3924. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408
  3925. msgctxt "@text"
  3926. msgid ""
  3927. "Make sure all your printers are turned ON and connected to Digital Factory."
  3928. msgstr "Certifique-se de que todas as impressoras estão ON e ligadas com a Digital Factory."
  3929. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417
  3930. msgctxt "@button"
  3931. msgid "Refresh List"
  3932. msgstr "Atualizar lista"
  3933. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457
  3934. msgctxt "@button"
  3935. msgid "Try again"
  3936. msgstr "Tente novamente"
  3937. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461
  3938. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:698
  3939. msgctxt "@button"
  3940. msgid "Done"
  3941. msgstr "Concluído"
  3942. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463
  3943. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:607
  3944. msgctxt "@button"
  3945. msgid "Sync"
  3946. msgstr "Sincronizar"
  3947. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519
  3948. msgctxt "@button"
  3949. msgid "Syncing"
  3950. msgstr "A sincronizar"
  3951. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537
  3952. msgctxt "@title:header"
  3953. msgid "No printers found"
  3954. msgstr "Não foi encontrada nenhuma impressora"
  3955. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558
  3956. msgctxt "@text"
  3957. msgid ""
  3958. "It seems like you don't have any compatible printers connected to Digital "
  3959. "Factory. Make sure your printer is connected and it's running the latest "
  3960. "firmware."
  3961. msgstr "Parece que não tem nenhuma impressora compatível ligada com a Digital Factory. Certifique-se de que a impressora está ligada e que tem o firmware mais"
  3962. " recente instalado."
  3963. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:570
  3964. msgctxt "@button"
  3965. msgid "Learn how to connect your printer to Digital Factory"
  3966. msgstr "Saiba como ligar a sua impressora à Digital Factory"
  3967. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:598
  3968. msgctxt "@button"
  3969. msgid "Refresh"
  3970. msgstr "Atualizar"
  3971. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:627
  3972. msgctxt "@title:header"
  3973. msgid "Sync material profiles via USB"
  3974. msgstr "Sincronizar perfis de materiais via USB"
  3975. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:633
  3976. msgctxt ""
  3977. "@text In the UI this is followed by a list of steps the user needs to take."
  3978. msgid ""
  3979. "Follow the following steps to load the new material profiles to your printer."
  3980. msgstr "Siga os seguintes passos para instalar os novos perfis de materiais na sua impressora."
  3981. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665
  3982. msgctxt "@text"
  3983. msgid "Click the export material archive button."
  3984. msgstr "Clique no botão para exportar o ficheiro de material."
  3985. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:666
  3986. msgctxt "@text"
  3987. msgid "Save the .umm file on a USB stick."
  3988. msgstr "Guarde o ficheiro .umm numa unidade USB."
  3989. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:667
  3990. msgctxt "@text"
  3991. msgid ""
  3992. "Insert the USB stick into your printer and launch the procedure to load new "
  3993. "material profiles."
  3994. msgstr "Insira a unidade USB na impressora e inicie o procedimento para carregar novos perfis de materiais."
  3995. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:675
  3996. msgctxt "@button"
  3997. msgid "How to load new material profiles to my printer"
  3998. msgstr "Como carregar novos perfis de materiais para a minha impressora"
  3999. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  4000. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  4001. msgctxt "@button"
  4002. msgid "Back"
  4003. msgstr "Anterior"
  4004. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:698
  4005. msgctxt "@button"
  4006. msgid "Export material archive"
  4007. msgstr "Exportar ficheiro de material"
  4008. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:733
  4009. msgctxt "@title:window"
  4010. msgid "Export All Materials"
  4011. msgstr "Exportar Todos os Materiais"
  4012. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72
  4013. msgctxt "@label"
  4014. msgid "Materials compatible with active printer:"
  4015. msgstr "Materiais compatíveis com a impressora ativa:"
  4016. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78
  4017. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:93
  4018. msgctxt "@action:button"
  4019. msgid "Create new"
  4020. msgstr "Criar novo"
  4021. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90
  4022. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:87
  4023. msgctxt "@action:button"
  4024. msgid "Import"
  4025. msgstr "Importar"
  4026. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101
  4027. msgctxt "@action:button"
  4028. msgid "Sync with Printers"
  4029. msgstr "Sincronizar com Impressoras"
  4030. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174
  4031. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:310
  4032. msgctxt "@action:button"
  4033. msgid "Duplicate"
  4034. msgstr "Duplicar"
  4035. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198
  4036. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:341
  4037. msgctxt "@action:button"
  4038. msgid "Export"
  4039. msgstr "Exportar"
  4040. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212
  4041. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:386
  4042. msgctxt "@title:window"
  4043. msgid "Confirm Remove"
  4044. msgstr "Confirmar Remoção"
  4045. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215
  4046. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:387
  4047. msgctxt "@label (%1 is object name)"
  4048. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  4049. msgstr "Tem a certeza de que deseja remover o perfil %1? Não é possível desfazer esta ação!"
  4050. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228
  4051. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238
  4052. msgctxt "@title:window"
  4053. msgid "Import Material"
  4054. msgstr "Importar material"
  4055. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242
  4056. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4057. msgid "Successfully imported material <filename>%1</filename>"
  4058. msgstr "Material <filename>%1</filename> importado com êxito"
  4059. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245
  4060. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4061. msgid ""
  4062. "Could not import material <filename>%1</filename>: <message>%2</message>"
  4063. msgstr "Não foi possível importar o material <filename>%1</filename>: <message>%2</message>"
  4064. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256
  4065. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:265
  4066. msgctxt "@title:window"
  4067. msgid "Export Material"
  4068. msgstr "Exportar Material"
  4069. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:270
  4070. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4071. msgid ""
  4072. "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4073. msgstr "Falha ao exportar material para <filename>%1</filename>: <message>%2</message>"
  4074. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:273
  4075. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4076. msgid "Successfully exported material to <filename>%1</filename>"
  4077. msgstr "Material exportado com êxito para <filename>%1</filename>"
  4078. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:58
  4079. msgctxt "@label"
  4080. msgid "Profiles compatible with active printer:"
  4081. msgstr "Perfis compatíveis com a impressora ativa:"
  4082. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:97
  4083. msgctxt "@action:tooltip"
  4084. msgid "Create new profile from current settings/overrides"
  4085. msgstr "Criar novo perfil a partir das definições/alterações atuais"
  4086. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:124
  4087. msgctxt "@action:label"
  4088. msgid "Some settings from current profile were overwritten."
  4089. msgstr "Algumas definições do perfil actual foram substituídas."
  4090. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:139
  4091. msgctxt "@action:button"
  4092. msgid "Update profile."
  4093. msgstr "Atualizar o perfil."
  4094. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:142
  4095. msgctxt "@action:tooltip"
  4096. msgid "Update profile with current settings/overrides"
  4097. msgstr "Atualizar perfil com as definições/substituições atuais"
  4098. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:157
  4099. msgctxt "@action:label"
  4100. msgid ""
  4101. "This profile uses the defaults specified by the printer, so it has no "
  4102. "settings/overrides in the list below."
  4103. msgstr "Este perfil utiliza as predefinições especificadas pela impressora, pelo que não tem quaisquer definições/substituições na lista seguinte."
  4104. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:164
  4105. msgctxt "@action:label"
  4106. msgid "Your current settings match the selected profile."
  4107. msgstr "As suas definições atuais correspondem ao perfil selecionado."
  4108. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:174
  4109. msgctxt "@title:tab"
  4110. msgid "Global Settings"
  4111. msgstr "Definições Globais"
  4112. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  4113. msgctxt "@title:window"
  4114. msgid "Create Profile"
  4115. msgstr "Criar Perfil"
  4116. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:279
  4117. msgctxt "@info"
  4118. msgid "Please provide a name for this profile."
  4119. msgstr "Forneça um nome para este perfil."
  4120. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:351
  4121. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:362
  4122. msgctxt "@title:window"
  4123. msgid "Export Profile"
  4124. msgstr "Exportar Perfil"
  4125. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:376
  4126. msgctxt "@title:window"
  4127. msgid "Duplicate Profile"
  4128. msgstr "Duplicar Perfil"
  4129. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:403
  4130. msgctxt "@title:window"
  4131. msgid "Rename Profile"
  4132. msgstr "Mudar Nome do Perfil"
  4133. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:416
  4134. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:423
  4135. msgctxt "@title:window"
  4136. msgid "Import Profile"
  4137. msgstr "Importar Perfil"
  4138. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:169
  4139. msgctxt "@label"
  4140. msgid "Interface"
  4141. msgstr "Interface"
  4142. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:213
  4143. msgctxt "@heading"
  4144. msgid "-- incomplete --"
  4145. msgstr "-- incompleto --"
  4146. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:258
  4147. msgctxt "@label"
  4148. msgid "Currency:"
  4149. msgstr "Moeda:"
  4150. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:273
  4151. msgctxt ""
  4152. "@label: Please keep the asterix, it's to indicate that a restart is needed."
  4153. msgid "Theme*:"
  4154. msgstr "Tema*:"
  4155. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:319
  4156. msgctxt "@info:tooltip"
  4157. msgid "Slice automatically when changing settings."
  4158. msgstr "Seccionar automaticamente ao alterar as definições."
  4159. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:327
  4160. msgctxt "@option:check"
  4161. msgid "Slice automatically"
  4162. msgstr "Seccionar automaticamente"
  4163. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:336
  4164. msgctxt "@label"
  4165. msgid ""
  4166. "*You will need to restart the application for these changes to have effect."
  4167. msgstr "*Terá de reiniciar a aplicação para ativar estas alterações."
  4168. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:351
  4169. msgctxt "@label"
  4170. msgid "Viewport behavior"
  4171. msgstr "Comportamento da janela"
  4172. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:359
  4173. msgctxt "@info:tooltip"
  4174. msgid ""
  4175. "Highlight unsupported areas of the model in red. Without support these areas "
  4176. "will not print properly."
  4177. msgstr "Realçar, a vermelho, as áreas do modelo sem apoio. Sem suporte, estas áreas podem não ser impressas correctamente."
  4178. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:368
  4179. msgctxt "@option:check"
  4180. msgid "Display overhang"
  4181. msgstr "Mostrar Saliências (Overhangs)"
  4182. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:378
  4183. msgctxt "@info:tooltip"
  4184. msgid ""
  4185. "Highlight missing or extraneous surfaces of the model using warning signs. "
  4186. "The toolpaths will often be missing parts of the intended geometry."
  4187. msgstr "Destaque as superfícies extra ou em falta do modelo utilizando sinais de aviso. As trajetórias de ferramentas irão falhar muitas vezes partes da geometria"
  4188. " pretendida."
  4189. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:387
  4190. msgctxt "@option:check"
  4191. msgid "Display model errors"
  4192. msgstr "Apresentar erros de modelo"
  4193. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:395
  4194. msgctxt "@info:tooltip"
  4195. msgid ""
  4196. "Moves the camera so the model is in the center of the view when a model is "
  4197. "selected"
  4198. msgstr "Move a câmara de forma que o modelo fique no centro da visualização quando é selecionado um modelo"
  4199. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:400
  4200. msgctxt "@action:button"
  4201. msgid "Center camera when item is selected"
  4202. msgstr "Centrar câmara ao selecionar item"
  4203. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:410
  4204. msgctxt "@info:tooltip"
  4205. msgid "Should the default zoom behavior of cura be inverted?"
  4206. msgstr "O comportamento de zoom predefinido do Cura deve ser invertido?"
  4207. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:415
  4208. msgctxt "@action:button"
  4209. msgid "Invert the direction of camera zoom."
  4210. msgstr "Inverta a direção do zoom da câmera."
  4211. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:431
  4212. msgctxt "@info:tooltip"
  4213. msgid "Should zooming move in the direction of the mouse?"
  4214. msgstr "O zoom deve deslocar-se na direção do rato?"
  4215. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:431
  4216. msgctxt "@info:tooltip"
  4217. msgid ""
  4218. "Zooming towards the mouse is not supported in the orthographic perspective."
  4219. msgstr "Fazer zoom em direção ao rato não é suportado na perspetiva ortográfica."
  4220. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:436
  4221. msgctxt "@action:button"
  4222. msgid "Zoom toward mouse direction"
  4223. msgstr "Fazer Zoom na direção do rato"
  4224. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:462
  4225. msgctxt "@info:tooltip"
  4226. msgid ""
  4227. "Should models on the platform be moved so that they no longer intersect?"
  4228. msgstr "Os modelos, na plataforma, devem ser movidos para que não se intersectem?"
  4229. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:467
  4230. msgctxt "@option:check"
  4231. msgid "Ensure models are kept apart"
  4232. msgstr "Garantir que os modelos não se interceptam"
  4233. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:476
  4234. msgctxt "@info:tooltip"
  4235. msgid "Should models on the platform be moved down to touch the build plate?"
  4236. msgstr "Pousar os modelos na base de construção?"
  4237. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:481
  4238. msgctxt "@option:check"
  4239. msgid "Automatically drop models to the build plate"
  4240. msgstr "Pousar automaticamente os modelos na base de construção"
  4241. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:493
  4242. msgctxt "@info:tooltip"
  4243. msgid "Show caution message in g-code reader."
  4244. msgstr "Mostrar mensagem de aviso no leitor de g-code."
  4245. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:502
  4246. msgctxt "@option:check"
  4247. msgid "Caution message in g-code reader"
  4248. msgstr "Mensagem de aviso no leitor de g-code"
  4249. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:510
  4250. msgctxt "@info:tooltip"
  4251. msgid "Should layer be forced into compatibility mode?"
  4252. msgstr "A vista por camada deve ser forçada a utilizar o modo de compatibilidade?"
  4253. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:515
  4254. msgctxt "@option:check"
  4255. msgid "Force layer view compatibility mode (restart required)"
  4256. msgstr "Forçar o modo de compatibilidade na visualização por camada (é necessário reiniciar)"
  4257. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:525
  4258. msgctxt "@info:tooltip"
  4259. msgid "Should Cura open at the location it was closed?"
  4260. msgstr "O Cura deve abrir na localização onde foi fechado?"
  4261. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:530
  4262. msgctxt "@option:check"
  4263. msgid "Restore window position on start"
  4264. msgstr "Restaurar posição da janela ao iniciar"
  4265. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:540
  4266. msgctxt "@info:tooltip"
  4267. msgid "What type of camera rendering should be used?"
  4268. msgstr "Que tipo de composição de câmara deve ser utilizado?"
  4269. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:547
  4270. msgctxt "@window:text"
  4271. msgid "Camera rendering:"
  4272. msgstr "Composição de câmara:"
  4273. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:554
  4274. msgid "Perspective"
  4275. msgstr "Perspetiva"
  4276. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:555
  4277. msgid "Orthographic"
  4278. msgstr "Ortográfica"
  4279. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:595
  4280. msgctxt "@label"
  4281. msgid "Opening and saving files"
  4282. msgstr "Abrir e guardar ficheiros"
  4283. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:602
  4284. msgctxt "@info:tooltip"
  4285. msgid ""
  4286. "Should opening files from the desktop or external applications open in the "
  4287. "same instance of Cura?"
  4288. msgstr "Pretende que os ficheiros abertos a partir do ambiente de trabalho ou de aplicações externas sejam executados na mesma instância do Cura?"
  4289. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:607
  4290. msgctxt "@option:check"
  4291. msgid "Use a single instance of Cura"
  4292. msgstr "Utilizar uma única instância do Cura"
  4293. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:618
  4294. msgctxt "@info:tooltip"
  4295. msgid ""
  4296. "Should the build plate be cleared before loading a new model in the single "
  4297. "instance of Cura?"
  4298. msgstr "Limpar a base de construção antes de carregar um novo modelo na instância única do Cura?"
  4299. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:624
  4300. msgctxt "@option:check"
  4301. msgid "Clear buildplate before loading model into the single instance"
  4302. msgstr "Limpar base de construção antes de carregar o modelo na instância única"
  4303. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:634
  4304. msgctxt "@info:tooltip"
  4305. msgid "Should models be scaled to the build volume if they are too large?"
  4306. msgstr "Os modelos devem ser redimensionados até ao volume de construção se forem demasiado grandes?"
  4307. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:639
  4308. msgctxt "@option:check"
  4309. msgid "Scale large models"
  4310. msgstr "Redimensionar modelos demasiado grandes"
  4311. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:649
  4312. msgctxt "@info:tooltip"
  4313. msgid ""
  4314. "An model may appear extremely small if its unit is for example in meters "
  4315. "rather than millimeters. Should these models be scaled up?"
  4316. msgstr "Um modelo pode parecer extremamente pequeno se, por exemplo, este tiver sido criado em metros e não em milímetros. Estes modelos devem ser redimensionados?"
  4317. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:654
  4318. msgctxt "@option:check"
  4319. msgid "Scale extremely small models"
  4320. msgstr "Redimensionar modelos extremamente pequenos"
  4321. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:664
  4322. msgctxt "@info:tooltip"
  4323. msgid "Should models be selected after they are loaded?"
  4324. msgstr "Selecionar os modelos depois de abertos?"
  4325. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:669
  4326. msgctxt "@option:check"
  4327. msgid "Select models when loaded"
  4328. msgstr "Selecionar os modelos depois de abertos"
  4329. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:679
  4330. msgctxt "@info:tooltip"
  4331. msgid ""
  4332. "Should a prefix based on the printer name be added to the print job name "
  4333. "automatically?"
  4334. msgstr "Deve um prefixo com base no nome da impressora ser adicionado ao nome do trabalho de impressão automaticamente?"
  4335. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:684
  4336. msgctxt "@option:check"
  4337. msgid "Add machine prefix to job name"
  4338. msgstr "Adicionar prefixo da máquina ao nome do trabalho"
  4339. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:694
  4340. msgctxt "@info:tooltip"
  4341. msgid "Should a summary be shown when saving a project file?"
  4342. msgstr "Deve ser apresentado um resumo ao guardar um ficheiro de projeto?"
  4343. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:698
  4344. msgctxt "@option:check"
  4345. msgid "Show summary dialog when saving project"
  4346. msgstr "Mostrar caixa de diálogo de resumo ao guardar projeto"
  4347. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:708
  4348. msgctxt "@info:tooltip"
  4349. msgid "Default behavior when opening a project file"
  4350. msgstr "Comportamento predefinido ao abrir um ficheiro de projeto"
  4351. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:716
  4352. msgctxt "@window:text"
  4353. msgid "Default behavior when opening a project file: "
  4354. msgstr "Comportamento predefinido ao abrir um ficheiro de projeto: "
  4355. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:731
  4356. msgctxt "@option:openProject"
  4357. msgid "Always ask me this"
  4358. msgstr "Perguntar sempre isto"
  4359. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:732
  4360. msgctxt "@option:openProject"
  4361. msgid "Always open as a project"
  4362. msgstr "Abrir sempre como projeto"
  4363. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:733
  4364. msgctxt "@option:openProject"
  4365. msgid "Always import models"
  4366. msgstr "Importar sempre modelos"
  4367. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:770
  4368. msgctxt "@info:tooltip"
  4369. msgid ""
  4370. "When you have made changes to a profile and switched to a different one, a "
  4371. "dialog will be shown asking whether you want to keep your modifications or "
  4372. "not, or you can choose a default behaviour and never show that dialog again."
  4373. msgstr "Quando tiver realizado alterações a um perfil e mudado para outro, será apresentada uma caixa de diálogo a perguntar se pretende manter as alterações."
  4374. " Caso contrário, pode escolher um comportamento predefinido, sendo que a caixa de diálogo nunca mais é apresentada."
  4375. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:784
  4376. msgctxt "@window:text"
  4377. msgid ""
  4378. "Default behavior for changed setting values when switching to a different "
  4379. "profile: "
  4380. msgstr "Comportamento predefinido para valores de definição alterados ao mudar para um perfil diferente: "
  4381. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:799
  4382. msgctxt "@option:discardOrKeep"
  4383. msgid "Always discard changed settings"
  4384. msgstr "Descartar sempre definições alteradas"
  4385. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:800
  4386. msgctxt "@option:discardOrKeep"
  4387. msgid "Always transfer changed settings to new profile"
  4388. msgstr "Transferir sempre definições alteradas para o novo perfil"
  4389. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:834
  4390. msgctxt "@label"
  4391. msgid "Privacy"
  4392. msgstr "Privacidade"
  4393. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:840
  4394. msgctxt "@info:tooltip"
  4395. msgid ""
  4396. "Should anonymous data about your print be sent to Ultimaker? Note, no "
  4397. "models, IP addresses or other personally identifiable information is sent or "
  4398. "stored."
  4399. msgstr "Podem alguns dados anónimos sobre a impressão ser enviados para a Ultimaker? Não são enviadas, nem armazenadas, quaisquer informações pessoais, incluindo"
  4400. " modelos, endereços IP ou outro tipo de identificação pessoal."
  4401. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:845
  4402. msgctxt "@option:check"
  4403. msgid "Send (anonymous) print information"
  4404. msgstr "Enviar dados (anónimos) sobre a impressão"
  4405. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:875
  4406. msgctxt "@label"
  4407. msgid "Updates"
  4408. msgstr "Atualizações"
  4409. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:882
  4410. msgctxt "@info:tooltip"
  4411. msgid "Should Cura check for updates when the program is started?"
  4412. msgstr "O Cura deve procurar atualizações quando o programa é iniciado?"
  4413. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:887
  4414. msgctxt "@option:check"
  4415. msgid "Check for updates on start"
  4416. msgstr "Procurar atualizações ao iniciar"
  4417. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:903
  4418. msgctxt "@info:tooltip"
  4419. msgid "When checking for updates, only check for stable releases."
  4420. msgstr "Quando se verificar se existem atualizações, verificar apenas a existência de versões estáveis."
  4421. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:909
  4422. msgctxt "@option:radio"
  4423. msgid "Stable releases only"
  4424. msgstr "Apenas versões estáveis"
  4425. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:919
  4426. msgctxt "@info:tooltip"
  4427. msgid "When checking for updates, check for both stable and for beta releases."
  4428. msgstr "Quando se verificar se existem atualizações, verificar tanto a existência de versões estáveis como de versões beta."
  4429. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:925
  4430. msgctxt "@option:radio"
  4431. msgid "Stable and Beta releases"
  4432. msgstr "Versões estáveis e beta"
  4433. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:935
  4434. msgctxt "@info:tooltip"
  4435. msgid ""
  4436. "Should an automatic check for new plugins be done every time Cura is "
  4437. "started? It is highly recommended that you do not disable this!"
  4438. msgstr "Fazer uma verificação automática de novos plug-ins sempre que o Cura for iniciado? Recomenda-se vivamente que não desative esta opção!"
  4439. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:940
  4440. msgctxt "@option:check"
  4441. msgid "Get notifications for plugin updates"
  4442. msgstr "Receber notificações para atualizações de plug-ins"
  4443. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4444. msgctxt "@label"
  4445. msgid "Add printer by IP address"
  4446. msgstr "Adicionar impressora por endereço IP"
  4447. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  4448. msgctxt "@text"
  4449. msgid "Enter your printer's IP address."
  4450. msgstr "Introduza o endereço IP da sua impressora."
  4451. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  4452. msgctxt "@button"
  4453. msgid "Add"
  4454. msgstr "Adicionar"
  4455. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  4456. msgctxt "@label"
  4457. msgid "Could not connect to device."
  4458. msgstr "Não foi possível ligar ao dispositivo."
  4459. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  4460. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  4461. msgctxt "@label"
  4462. msgid "Can't connect to your Ultimaker printer?"
  4463. msgstr "Não se consegue ligar a uma impressora Ultimaker?"
  4464. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  4465. msgctxt "@label"
  4466. msgid "The printer at this address has not responded yet."
  4467. msgstr "A impressora neste endereço ainda não respondeu."
  4468. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  4469. msgctxt "@label"
  4470. msgid ""
  4471. "This printer cannot be added because it's an unknown printer or it's not the "
  4472. "host of a group."
  4473. msgstr "Não foi possível adicionar esta impressora porque é uma impressora desconhecida ou não aloja um grupo."
  4474. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  4475. msgctxt "@button"
  4476. msgid "Connect"
  4477. msgstr "Ligar"
  4478. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  4479. msgctxt "@label"
  4480. msgid "Release Notes"
  4481. msgstr "Notas da versão"
  4482. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  4483. msgctxt "@label"
  4484. msgid "User Agreement"
  4485. msgstr "Contrato de utilizador"
  4486. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53
  4487. msgctxt "@button"
  4488. msgid "Agree"
  4489. msgstr "Concordar"
  4490. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67
  4491. msgctxt "@button"
  4492. msgid "Decline and close"
  4493. msgstr "Rejeitar e fechar"
  4494. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29
  4495. msgctxt "@label"
  4496. msgid "What's New"
  4497. msgstr "Novidades"
  4498. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:184
  4499. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  4500. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  4501. msgctxt "@button"
  4502. msgid "Next"
  4503. msgstr "Seguinte"
  4504. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  4505. msgctxt "@label"
  4506. msgid "Add a Cloud printer"
  4507. msgstr "Adicionar uma impressora de cloud"
  4508. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  4509. msgctxt "@label"
  4510. msgid "Waiting for Cloud response"
  4511. msgstr "A aguardar resposta da cloud"
  4512. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  4513. msgctxt "@label"
  4514. msgid "No printers found in your account?"
  4515. msgstr "Não foram encontradas impressoras na sua conta?"
  4516. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  4517. msgctxt "@label"
  4518. msgid "The following printers in your account have been added in Cura:"
  4519. msgstr "As seguintes impressoras na sua conta foram adicionadas no Cura:"
  4520. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:194
  4521. msgctxt "@button"
  4522. msgid "Add printer manually"
  4523. msgstr "Adicionar impressora manualmente"
  4524. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  4525. msgctxt "@text"
  4526. msgid "Add material settings and plugins from the Marketplace"
  4527. msgstr "Adicione definições de materiais e plug-ins do Marketplace"
  4528. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  4529. msgctxt "@text"
  4530. msgid "Backup and sync your material settings and plugins"
  4531. msgstr "Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins"
  4532. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  4533. msgctxt "@text"
  4534. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  4535. msgstr "Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker"
  4536. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:202
  4537. msgctxt "@button"
  4538. msgid "Skip"
  4539. msgstr "Ignorar"
  4540. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:214
  4541. msgctxt "@text"
  4542. msgid "Create a free Ultimaker Account"
  4543. msgstr "Crie uma Conta Ultimaker gratuita"
  4544. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  4545. msgctxt "@label"
  4546. msgid "Welcome to Ultimaker Cura"
  4547. msgstr "Bem-vindo ao Ultimaker Cura"
  4548. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  4549. msgctxt "@text"
  4550. msgid ""
  4551. "Please follow these steps to set up Ultimaker Cura. This will only take a "
  4552. "few moments."
  4553. msgstr "Siga estes passos para configurar o Ultimaker Cura. Este processo irá demorar apenas alguns momentos."
  4554. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  4555. msgctxt "@button"
  4556. msgid "Get started"
  4557. msgstr "Iniciar"
  4558. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  4559. msgctxt "@label"
  4560. msgid "Empty"
  4561. msgstr "Vazio"
  4562. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:206
  4563. msgctxt "@label"
  4564. msgid "Manufacturer"
  4565. msgstr "Fabricante"
  4566. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:217
  4567. msgctxt "@label"
  4568. msgid "Profile author"
  4569. msgstr "Autor do perfil"
  4570. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:229
  4571. msgctxt "@label"
  4572. msgid "Printer name"
  4573. msgstr "Nome da impressora"
  4574. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235
  4575. msgctxt "@text"
  4576. msgid "Please name your printer"
  4577. msgstr "Atribuir um nome à impressora"
  4578. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  4579. msgctxt "@label"
  4580. msgid "Add a printer"
  4581. msgstr "Adicionar uma impressora"
  4582. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  4583. msgctxt "@label"
  4584. msgid "Add a networked printer"
  4585. msgstr "Adicionar uma impressora em rede"
  4586. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:88
  4587. msgctxt "@label"
  4588. msgid "Add a non-networked printer"
  4589. msgstr "Adicionar uma impressora sem rede"
  4590. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  4591. msgctxt "@label"
  4592. msgid "There is no printer found over your network."
  4593. msgstr "Não foi encontrada nenhuma impressora na sua rede."
  4594. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  4595. msgctxt "@label"
  4596. msgid "Refresh"
  4597. msgstr "Atualizar"
  4598. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  4599. msgctxt "@label"
  4600. msgid "Add printer by IP"
  4601. msgstr "Adicionar impressora por IP"
  4602. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184
  4603. msgctxt "@label"
  4604. msgid "Add cloud printer"
  4605. msgstr "Adicionar impressora de cloud"
  4606. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:221
  4607. msgctxt "@label"
  4608. msgid "Troubleshooting"
  4609. msgstr "Resolução de problemas"
  4610. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  4611. msgctxt "@label"
  4612. msgid "Help us to improve Ultimaker Cura"
  4613. msgstr "Ajude-nos a melhorar o Ultimaker Cura"
  4614. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  4615. msgctxt "@text"
  4616. msgid ""
  4617. "Ultimaker Cura collects anonymous data to improve print quality and user "
  4618. "experience, including:"
  4619. msgstr "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador, incluindo:"
  4620. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  4621. msgctxt "@text"
  4622. msgid "Machine types"
  4623. msgstr "Tipos de máquina"
  4624. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  4625. msgctxt "@text"
  4626. msgid "Material usage"
  4627. msgstr "Utilização do material"
  4628. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  4629. msgctxt "@text"
  4630. msgid "Number of slices"
  4631. msgstr "Número de segmentos"
  4632. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  4633. msgctxt "@text"
  4634. msgid "Print settings"
  4635. msgstr "Definições de impressão"
  4636. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  4637. msgctxt "@text"
  4638. msgid ""
  4639. "Data collected by Ultimaker Cura will not contain any personal information."
  4640. msgstr "Os dados recolhidos pelo Ultimaker Cura não conterão quaisquer informações pessoais."
  4641. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  4642. msgctxt "@text"
  4643. msgid "More information"
  4644. msgstr "Mais informações"
  4645. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectSelector.qml:59
  4646. msgctxt "@label"
  4647. msgid "Object list"
  4648. msgstr "Lista de objetos"
  4649. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:109
  4650. msgctxt "@label"
  4651. msgid "Is printed as support."
  4652. msgstr "É imprimido como suporte."
  4653. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:112
  4654. msgctxt "@label"
  4655. msgid "Other models overlapping with this model are modified."
  4656. msgstr "Foram modificados outros modelos sobrepostos com este modelo."
  4657. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:115
  4658. msgctxt "@label"
  4659. msgid "Infill overlapping with this model is modified."
  4660. msgstr "Foi modificada a sobreposição de enchimento com este modelo."
  4661. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:118
  4662. msgctxt "@label"
  4663. msgid "Overlaps with this model are not supported."
  4664. msgstr "Não são suportadas sobreposições com este modelo."
  4665. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:125
  4666. msgctxt "@label %1 is the number of settings it overrides."
  4667. msgid "Overrides %1 setting."
  4668. msgid_plural "Overrides %1 settings."
  4669. msgstr[0] "Substitui %1 definição."
  4670. msgstr[1] "Substitui %1 definições."
  4671. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4672. msgctxt "@label"
  4673. msgid "Connected printers"
  4674. msgstr "Impressoras ligadas"
  4675. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4676. msgctxt "@label"
  4677. msgid "Preset printers"
  4678. msgstr "Impressoras predefinidas"
  4679. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4680. msgctxt "@status"
  4681. msgid ""
  4682. "The cloud printer is offline. Please check if the printer is turned on and "
  4683. "connected to the internet."
  4684. msgstr "A impressora de cloud está offline. Verifique se a impressora está ligada e conectada à Internet."
  4685. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4686. msgctxt "@status"
  4687. msgid ""
  4688. "This printer is not linked to your account. Please visit the Ultimaker "
  4689. "Digital Factory to establish a connection."
  4690. msgstr "Esta impressora não está associada à sua conta. Visite a Ultimaker Digital Factory para estabelecer uma ligação."
  4691. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4692. msgctxt "@status"
  4693. msgid ""
  4694. "The cloud connection is currently unavailable. Please sign in to connect to "
  4695. "the cloud printer."
  4696. msgstr "A conectividade de cloud está atualmente indisponível. Inicie sessão para estabelecer ligação com a impressora de cloud."
  4697. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4698. msgctxt "@status"
  4699. msgid ""
  4700. "The cloud connection is currently unavailable. Please check your internet "
  4701. "connection."
  4702. msgstr "A conectividade de cloud está atualmente indisponível. Verifique a sua ligação à Internet."
  4703. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:236
  4704. msgctxt "@button"
  4705. msgid "Add printer"
  4706. msgstr "Adicionar Impressora"
  4707. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:253
  4708. msgctxt "@button"
  4709. msgid "Manage printers"
  4710. msgstr "Gerir impressoras"
  4711. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/SearchBar.qml:17
  4712. msgctxt "@placeholder"
  4713. msgid "Search"
  4714. msgstr "Pesquisar"
  4715. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/JobSpecs.qml:93
  4716. msgctxt "@text Print job name"
  4717. msgid "Untitled"
  4718. msgstr "Sem título"
  4719. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:115
  4720. msgctxt "@label:MonitorStatus"
  4721. msgid "Not connected to a printer"
  4722. msgstr "Sem ligação a uma impressora"
  4723. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:119
  4724. msgctxt "@label:MonitorStatus"
  4725. msgid "Printer does not accept commands"
  4726. msgstr "A impressora não aceita comandos"
  4727. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:129
  4728. msgctxt "@label:MonitorStatus"
  4729. msgid "In maintenance. Please check the printer"
  4730. msgstr "Em manutenção. Verifique a impressora"
  4731. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:140
  4732. msgctxt "@label:MonitorStatus"
  4733. msgid "Lost connection with the printer"
  4734. msgstr "Perdeu-se a ligação com a impressora"
  4735. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:142
  4736. msgctxt "@label:MonitorStatus"
  4737. msgid "Printing..."
  4738. msgstr "A imprimir..."
  4739. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:145
  4740. msgctxt "@label:MonitorStatus"
  4741. msgid "Paused"
  4742. msgstr "Em pausa"
  4743. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:148
  4744. msgctxt "@label:MonitorStatus"
  4745. msgid "Preparing..."
  4746. msgstr "A preparar..."
  4747. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:150
  4748. msgctxt "@label:MonitorStatus"
  4749. msgid "Please remove the print"
  4750. msgstr "Remova a impressão"
  4751. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:318
  4752. msgctxt "@label"
  4753. msgid "Abort Print"
  4754. msgstr "Cancelar impressão"
  4755. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:327
  4756. msgctxt "@label"
  4757. msgid "Are you sure you want to abort the print?"
  4758. msgstr "Tem a certeza de que deseja cancelar a impressão?"
  4759. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingCategory.qml:115
  4760. msgctxt "@label"
  4761. msgid ""
  4762. "Some hidden settings use values different from their normal calculated "
  4763. "value.\n"
  4764. "\n"
  4765. "Click to make these settings visible."
  4766. msgstr "Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente.\n\nClique para tornar estas definições visíveis."
  4767. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:47
  4768. msgctxt "@label:textbox"
  4769. msgid "Search settings"
  4770. msgstr "Procurar definições"
  4771. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:428
  4772. msgctxt "@action:menu"
  4773. msgid "Copy value to all extruders"
  4774. msgstr "Copiar valor para todos os extrusores"
  4775. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:437
  4776. msgctxt "@action:menu"
  4777. msgid "Copy all changed values to all extruders"
  4778. msgstr "Copiar todos os valores alterados para todos os extrusores"
  4779. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:473
  4780. msgctxt "@action:menu"
  4781. msgid "Hide this setting"
  4782. msgstr "Esconder esta definição"
  4783. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:486
  4784. msgctxt "@action:menu"
  4785. msgid "Don't show this setting"
  4786. msgstr "Não mostrar esta definição"
  4787. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:490
  4788. msgctxt "@action:menu"
  4789. msgid "Keep this setting visible"
  4790. msgstr "Manter esta definição visível"
  4791. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:509
  4792. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:467
  4793. msgctxt "@action:menu"
  4794. msgid "Configure setting visibility..."
  4795. msgstr "Configurar visibilidade das definições..."
  4796. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:78
  4797. msgctxt "@label"
  4798. msgid ""
  4799. "This setting is not used because all the settings that it influences are "
  4800. "overridden."
  4801. msgstr "Esta definição não é utilizada porque todas as definições influenciadas foram substituídas."
  4802. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:83
  4803. msgctxt "@label Header for list of settings."
  4804. msgid "Affects"
  4805. msgstr "Modifica"
  4806. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:88
  4807. msgctxt "@label Header for list of settings."
  4808. msgid "Affected By"
  4809. msgstr "Modificado Por"
  4810. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:185
  4811. msgctxt "@label"
  4812. msgid ""
  4813. "This setting is always shared between all extruders. Changing it here will "
  4814. "change the value for all extruders."
  4815. msgstr "Esta definição é sempre partilhada entre todos os extrusores. Ao alterá-la aqui, o valor será alterado em todos os extrusores."
  4816. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:189
  4817. msgctxt "@label"
  4818. msgid "This setting is resolved from conflicting extruder-specific values:"
  4819. msgstr "Esta definição está resolvida a partir de valores específicos da extrusora em conflito:"
  4820. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:229
  4821. msgctxt "@label"
  4822. msgid ""
  4823. "This setting has a value that is different from the profile.\n"
  4824. "\n"
  4825. "Click to restore the value of the profile."
  4826. msgstr "Esta definição tem um valor que é diferente do perfil.\n\nClique para restaurar o valor do perfil."
  4827. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:329
  4828. msgctxt "@label"
  4829. msgid ""
  4830. "This setting is normally calculated, but it currently has an absolute value "
  4831. "set.\n"
  4832. "\n"
  4833. "Click to restore the calculated value."
  4834. msgstr "Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente.\n\nClique para restaurar o valor calculado."
  4835. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:104
  4836. msgctxt "@label"
  4837. msgid "Hex"
  4838. msgstr "Hex"
  4839. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:156
  4840. msgctxt "@label"
  4841. msgid "Active print"
  4842. msgstr "Impressão ativa"
  4843. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:164
  4844. msgctxt "@label"
  4845. msgid "Job Name"
  4846. msgstr "Nome do trabalho"
  4847. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:172
  4848. msgctxt "@label"
  4849. msgid "Printing Time"
  4850. msgstr "Tempo de Impressão"
  4851. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:180
  4852. msgctxt "@label"
  4853. msgid "Estimated time left"
  4854. msgstr "Tempo restante estimado"
  4855. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:81
  4856. msgctxt "@action:inmenu"
  4857. msgid "Show Online Troubleshooting"
  4858. msgstr "Ver online o guia de resolução de problemas"
  4859. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:88
  4860. msgctxt "@action:inmenu"
  4861. msgid "Toggle Full Screen"
  4862. msgstr "Alternar para ecrã inteiro"
  4863. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:96
  4864. msgctxt "@action:inmenu"
  4865. msgid "Exit Full Screen"
  4866. msgstr "Sair do Ecrã Inteiro"
  4867. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:103
  4868. msgctxt "@action:inmenu menubar:edit"
  4869. msgid "&Undo"
  4870. msgstr "&Desfazer"
  4871. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:113
  4872. msgctxt "@action:inmenu menubar:edit"
  4873. msgid "&Redo"
  4874. msgstr "&Refazer"
  4875. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:131
  4876. msgctxt "@action:inmenu menubar:file"
  4877. msgid "&Quit"
  4878. msgstr "&Sair"
  4879. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:139
  4880. msgctxt "@action:inmenu menubar:view"
  4881. msgid "3D View"
  4882. msgstr "Vista 3D"
  4883. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:146
  4884. msgctxt "@action:inmenu menubar:view"
  4885. msgid "Front View"
  4886. msgstr "Vista Frente"
  4887. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:153
  4888. msgctxt "@action:inmenu menubar:view"
  4889. msgid "Top View"
  4890. msgstr "Vista Cima"
  4891. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:160
  4892. msgctxt "@action:inmenu menubar:view"
  4893. msgid "Bottom View"
  4894. msgstr "Vista Inferior"
  4895. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:167
  4896. msgctxt "@action:inmenu menubar:view"
  4897. msgid "Left Side View"
  4898. msgstr "Vista Lado Esquerdo"
  4899. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:174
  4900. msgctxt "@action:inmenu menubar:view"
  4901. msgid "Right Side View"
  4902. msgstr "Vista Lado Direito"
  4903. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:188
  4904. msgctxt "@action:inmenu"
  4905. msgid "Configure Cura..."
  4906. msgstr "Configurar Cura..."
  4907. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:195
  4908. msgctxt "@action:inmenu menubar:printer"
  4909. msgid "&Add Printer..."
  4910. msgstr "&Adicionar Impressora..."
  4911. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:201
  4912. msgctxt "@action:inmenu menubar:printer"
  4913. msgid "Manage Pr&inters..."
  4914. msgstr "Gerir Im&pressoras..."
  4915. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:208
  4916. msgctxt "@action:inmenu"
  4917. msgid "Manage Materials..."
  4918. msgstr "Gerir Materiais..."
  4919. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:216
  4920. msgctxt ""
  4921. "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't "
  4922. "translate."
  4923. msgid "Add more materials from Marketplace"
  4924. msgstr "Adicionar mais materiais disponíveis no Marketplace"
  4925. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:223
  4926. msgctxt "@action:inmenu menubar:profile"
  4927. msgid "&Update profile with current settings/overrides"
  4928. msgstr "&Atualizar perfil com as definições/substituições atuais"
  4929. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:231
  4930. msgctxt "@action:inmenu menubar:profile"
  4931. msgid "&Discard current changes"
  4932. msgstr "&Descartar alterações atuais"
  4933. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:243
  4934. msgctxt "@action:inmenu menubar:profile"
  4935. msgid "&Create profile from current settings/overrides..."
  4936. msgstr "&Criar perfil a partir das definições/substituições atuais..."
  4937. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:249
  4938. msgctxt "@action:inmenu menubar:profile"
  4939. msgid "Manage Profiles..."
  4940. msgstr "Gerir Perfis..."
  4941. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:257
  4942. msgctxt "@action:inmenu menubar:help"
  4943. msgid "Show Online &Documentation"
  4944. msgstr "Mostrar &documentação online"
  4945. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:265
  4946. msgctxt "@action:inmenu menubar:help"
  4947. msgid "Report a &Bug"
  4948. msgstr "Reportar um &erro"
  4949. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:273
  4950. msgctxt "@action:inmenu menubar:help"
  4951. msgid "What's New"
  4952. msgstr "Novidades"
  4953. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:287
  4954. msgctxt "@action:inmenu menubar:help"
  4955. msgid "About..."
  4956. msgstr "Sobre..."
  4957. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:294
  4958. msgctxt "@action:inmenu menubar:edit"
  4959. msgid "Delete Selected"
  4960. msgstr "Apagar seleção"
  4961. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:304
  4962. msgctxt "@action:inmenu menubar:edit"
  4963. msgid "Center Selected"
  4964. msgstr "Centrar seleção"
  4965. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:313
  4966. msgctxt "@action:inmenu menubar:edit"
  4967. msgid "Multiply Selected"
  4968. msgstr "Multiplicar seleção"
  4969. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:322
  4970. msgctxt "@action:inmenu"
  4971. msgid "Delete Model"
  4972. msgstr "Apagar Modelo"
  4973. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:330
  4974. msgctxt "@action:inmenu"
  4975. msgid "Ce&nter Model on Platform"
  4976. msgstr "Ce&ntrar Modelo na Base"
  4977. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:336
  4978. msgctxt "@action:inmenu menubar:edit"
  4979. msgid "&Group Models"
  4980. msgstr "&Agrupar Modelos"
  4981. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:356
  4982. msgctxt "@action:inmenu menubar:edit"
  4983. msgid "Ungroup Models"
  4984. msgstr "Desagrupar Modelos"
  4985. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:366
  4986. msgctxt "@action:inmenu menubar:edit"
  4987. msgid "&Merge Models"
  4988. msgstr "&Combinar Modelos"
  4989. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:376
  4990. msgctxt "@action:inmenu"
  4991. msgid "&Multiply Model..."
  4992. msgstr "&Multiplicar Modelo..."
  4993. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:383
  4994. msgctxt "@action:inmenu menubar:edit"
  4995. msgid "Select All Models"
  4996. msgstr "Selecionar todos os modelos"
  4997. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:393
  4998. msgctxt "@action:inmenu menubar:edit"
  4999. msgid "Clear Build Plate"
  5000. msgstr "Limpar base de construção"
  5001. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:403
  5002. msgctxt "@action:inmenu menubar:file"
  5003. msgid "Reload All Models"
  5004. msgstr "Recarregar todos os modelos"
  5005. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:412
  5006. msgctxt "@action:inmenu menubar:edit"
  5007. msgid "Arrange All Models"
  5008. msgstr "Dispor todos os modelos"
  5009. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:420
  5010. msgctxt "@action:inmenu menubar:edit"
  5011. msgid "Arrange Selection"
  5012. msgstr "Dispor seleção"
  5013. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:427
  5014. msgctxt "@action:inmenu menubar:edit"
  5015. msgid "Reset All Model Positions"
  5016. msgstr "Repor todas as posições de modelos"
  5017. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:434
  5018. msgctxt "@action:inmenu menubar:edit"
  5019. msgid "Reset All Model Transformations"
  5020. msgstr "Repor Todas as Transformações do Modelo"
  5021. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:443
  5022. msgctxt "@action:inmenu menubar:file"
  5023. msgid "&Open File(s)..."
  5024. msgstr "&Abrir Ficheiro(s)..."
  5025. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:453
  5026. msgctxt "@action:inmenu menubar:file"
  5027. msgid "&New Project..."
  5028. msgstr "&Novo Projeto..."
  5029. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:460
  5030. msgctxt "@action:inmenu menubar:help"
  5031. msgid "Show Configuration Folder"
  5032. msgstr "Mostrar pasta de configuração"
  5033. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:25
  5034. msgctxt "@info:tooltip"
  5035. msgid "3D View"
  5036. msgstr "Vista 3D"
  5037. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:38
  5038. msgctxt "@info:tooltip"
  5039. msgid "Front View"
  5040. msgstr "Vista Frente"
  5041. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:51
  5042. msgctxt "@info:tooltip"
  5043. msgid "Top View"
  5044. msgstr "Vista Cima"
  5045. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:64
  5046. msgctxt "@info:tooltip"
  5047. msgid "Left View"
  5048. msgstr "Vista esquerda"
  5049. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:77
  5050. msgctxt "@info:tooltip"
  5051. msgid "Right View"
  5052. msgstr "Vista direita"
  5053. #: PrepareStage/plugin.json
  5054. msgctxt "description"
  5055. msgid "Provides a prepare stage in Cura."
  5056. msgstr "Fornece uma fase de preparação no Cura."
  5057. #: PrepareStage/plugin.json
  5058. msgctxt "name"
  5059. msgid "Prepare Stage"
  5060. msgstr "Fase de preparação"
  5061. #: CuraProfileWriter/plugin.json
  5062. msgctxt "description"
  5063. msgid "Provides support for exporting Cura profiles."
  5064. msgstr "Possibilita a exportação de perfis do Cura."
  5065. #: CuraProfileWriter/plugin.json
  5066. msgctxt "name"
  5067. msgid "Cura Profile Writer"
  5068. msgstr "Gravador de perfis Cura"
  5069. #: TrimeshReader/plugin.json
  5070. msgctxt "description"
  5071. msgid "Provides support for reading model files."
  5072. msgstr "Fornece suporte para a leitura de ficheiros modelo."
  5073. #: TrimeshReader/plugin.json
  5074. msgctxt "name"
  5075. msgid "Trimesh Reader"
  5076. msgstr "Leitor de Trimesh"
  5077. #: FirmwareUpdateChecker/plugin.json
  5078. msgctxt "description"
  5079. msgid "Checks for firmware updates."
  5080. msgstr "Procura e verifica se existem atualizações de firmware."
  5081. #: FirmwareUpdateChecker/plugin.json
  5082. msgctxt "name"
  5083. msgid "Firmware Update Checker"
  5084. msgstr "Verificador Atualizações Firmware"
  5085. #: SentryLogger/plugin.json
  5086. msgctxt "description"
  5087. msgid "Logs certain events so that they can be used by the crash reporter"
  5088. msgstr "Regista determinados eventos para que possam ser utilizados pelo \"crash reporter\""
  5089. #: SentryLogger/plugin.json
  5090. msgctxt "name"
  5091. msgid "Sentry Logger"
  5092. msgstr "Sentry Logger"
  5093. #: MonitorStage/plugin.json
  5094. msgctxt "description"
  5095. msgid "Provides a monitor stage in Cura."
  5096. msgstr "Fornece uma fase de monitorização no Cura."
  5097. #: MonitorStage/plugin.json
  5098. msgctxt "name"
  5099. msgid "Monitor Stage"
  5100. msgstr "Fase de monitorização"
  5101. #: RemovableDriveOutputDevice/plugin.json
  5102. msgctxt "description"
  5103. msgid "Provides removable drive hotplugging and writing support."
  5104. msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação."
  5105. #: RemovableDriveOutputDevice/plugin.json
  5106. msgctxt "name"
  5107. msgid "Removable Drive Output Device Plugin"
  5108. msgstr "Plug-in de dispositivo de saída da unidade amovível"
  5109. #: AMFReader/plugin.json
  5110. msgctxt "description"
  5111. msgid "Provides support for reading AMF files."
  5112. msgstr "Fornece suporte para ler ficheiros AMF."
  5113. #: AMFReader/plugin.json
  5114. msgctxt "name"
  5115. msgid "AMF Reader"
  5116. msgstr "Leitor de AMF"
  5117. #: UFPReader/plugin.json
  5118. msgctxt "description"
  5119. msgid "Provides support for reading Ultimaker Format Packages."
  5120. msgstr "Fornece suporte para ler pacotes de formato Ultimaker."
  5121. #: UFPReader/plugin.json
  5122. msgctxt "name"
  5123. msgid "UFP Reader"
  5124. msgstr "Leitor de UFP"
  5125. #: DigitalLibrary/plugin.json
  5126. msgctxt "description"
  5127. msgid ""
  5128. "Connects to the Digital Library, allowing Cura to open files from and save "
  5129. "files to the Digital Library."
  5130. msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma."
  5131. #: DigitalLibrary/plugin.json
  5132. msgctxt "name"
  5133. msgid "Ultimaker Digital Library"
  5134. msgstr "Biblioteca Digital Ultimaker"
  5135. #: PerObjectSettingsTool/plugin.json
  5136. msgctxt "description"
  5137. msgid "Provides the Per Model Settings."
  5138. msgstr "Fornece as definições por-modelo."
  5139. #: PerObjectSettingsTool/plugin.json
  5140. msgctxt "name"
  5141. msgid "Per Model Settings Tool"
  5142. msgstr "Ferramenta de definições Por-Modelo"
  5143. #: FirmwareUpdater/plugin.json
  5144. msgctxt "description"
  5145. msgid "Provides a machine actions for updating firmware."
  5146. msgstr "Disponibiliza as ações da máquina para atualizar o firmware."
  5147. #: FirmwareUpdater/plugin.json
  5148. msgctxt "name"
  5149. msgid "Firmware Updater"
  5150. msgstr "Atualizador de firmware"
  5151. #: UM3NetworkPrinting/plugin.json
  5152. msgctxt "description"
  5153. msgid "Manages network connections to Ultimaker networked printers."
  5154. msgstr "Gere as ligações de rede com as impressoras em rede Ultimaker."
  5155. #: UM3NetworkPrinting/plugin.json
  5156. msgctxt "name"
  5157. msgid "Ultimaker Network Connection"
  5158. msgstr "Ligação de rede Ultimaker"
  5159. #: ModelChecker/plugin.json
  5160. msgctxt "description"
  5161. msgid ""
  5162. "Checks models and print configuration for possible printing issues and give "
  5163. "suggestions."
  5164. msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões."
  5165. #: ModelChecker/plugin.json
  5166. msgctxt "name"
  5167. msgid "Model Checker"
  5168. msgstr "Verificador de Modelos"
  5169. #: SimulationView/plugin.json
  5170. msgctxt "description"
  5171. msgid "Provides the preview of sliced layerdata."
  5172. msgstr "Permite pré-visualizar os dados das camadas seccionadas."
  5173. #: SimulationView/plugin.json
  5174. msgctxt "name"
  5175. msgid "Simulation View"
  5176. msgstr "Visualização por camadas"
  5177. #: GCodeWriter/plugin.json
  5178. msgctxt "description"
  5179. msgid "Writes g-code to a file."
  5180. msgstr "Grava o g-code num ficheiro."
  5181. #: GCodeWriter/plugin.json
  5182. msgctxt "name"
  5183. msgid "G-code Writer"
  5184. msgstr "Gravador de G-code"
  5185. #: 3MFWriter/plugin.json
  5186. msgctxt "description"
  5187. msgid "Provides support for writing 3MF files."
  5188. msgstr "Possiblita a gravação de ficheiros 3MF."
  5189. #: 3MFWriter/plugin.json
  5190. msgctxt "name"
  5191. msgid "3MF Writer"
  5192. msgstr "Gravador 3MF"
  5193. #: GCodeGzReader/plugin.json
  5194. msgctxt "description"
  5195. msgid "Reads g-code from a compressed archive."
  5196. msgstr "Lê o g-code a partir de um arquivo comprimido."
  5197. #: GCodeGzReader/plugin.json
  5198. msgctxt "name"
  5199. msgid "Compressed G-code Reader"
  5200. msgstr "Leitor de G-code comprimido"
  5201. #: XmlMaterialProfile/plugin.json
  5202. msgctxt "description"
  5203. msgid "Provides capabilities to read and write XML-based material profiles."
  5204. msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML."
  5205. #: XmlMaterialProfile/plugin.json
  5206. msgctxt "name"
  5207. msgid "Material Profiles"
  5208. msgstr "Perfis de Materiais"
  5209. #: CuraEngineBackend/plugin.json
  5210. msgctxt "description"
  5211. msgid "Provides the link to the CuraEngine slicing backend."
  5212. msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine."
  5213. #: CuraEngineBackend/plugin.json
  5214. msgctxt "name"
  5215. msgid "CuraEngine Backend"
  5216. msgstr "Back-end do CuraEngine"
  5217. #: X3DReader/plugin.json
  5218. msgctxt "description"
  5219. msgid "Provides support for reading X3D files."
  5220. msgstr "Fornece suporte para ler ficheiros X3D."
  5221. #: X3DReader/plugin.json
  5222. msgctxt "name"
  5223. msgid "X3D Reader"
  5224. msgstr "Leitor de X3D"
  5225. #: ImageReader/plugin.json
  5226. msgctxt "description"
  5227. msgid "Enables ability to generate printable geometry from 2D image files."
  5228. msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D."
  5229. #: ImageReader/plugin.json
  5230. msgctxt "name"
  5231. msgid "Image Reader"
  5232. msgstr "Leitor de imagens"
  5233. #: 3MFReader/plugin.json
  5234. msgctxt "description"
  5235. msgid "Provides support for reading 3MF files."
  5236. msgstr "Fornece suporte para ler ficheiros 3MF."
  5237. #: 3MFReader/plugin.json
  5238. msgctxt "name"
  5239. msgid "3MF Reader"
  5240. msgstr "Leitor de 3MF"
  5241. #: UFPWriter/plugin.json
  5242. msgctxt "description"
  5243. msgid "Provides support for writing Ultimaker Format Packages."
  5244. msgstr "Permite a gravação de arquivos Ultimaker Format."
  5245. #: UFPWriter/plugin.json
  5246. msgctxt "name"
  5247. msgid "UFP Writer"
  5248. msgstr "Gravador de UFP"
  5249. #: LegacyProfileReader/plugin.json
  5250. msgctxt "description"
  5251. msgid "Provides support for importing profiles from legacy Cura versions."
  5252. msgstr "Permite importar perfis de versões antigas do Cura."
  5253. #: LegacyProfileReader/plugin.json
  5254. msgctxt "name"
  5255. msgid "Legacy Cura Profile Reader"
  5256. msgstr "Leitor de perfis antigos do Cura"
  5257. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5258. msgctxt "description"
  5259. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  5260. msgstr "Configurações de atualizações do Cura 4.3 para o Cura 4.4."
  5261. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5262. msgctxt "name"
  5263. msgid "Version Upgrade 4.3 to 4.4"
  5264. msgstr "Atualização da versão 4.3 para 4.4"
  5265. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  5266. msgctxt "description"
  5267. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  5268. msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2."
  5269. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  5270. msgctxt "name"
  5271. msgid "Version Upgrade 2.1 to 2.2"
  5272. msgstr "Atualização da versão 2.1 para 2.2"
  5273. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5274. msgctxt "description"
  5275. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  5276. msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2."
  5277. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5278. msgctxt "name"
  5279. msgid "Version Upgrade 4.1 to 4.2"
  5280. msgstr "Atualização da versão 4.1 para 4.2"
  5281. #: VersionUpgrade/VersionUpgrade413to50/plugin.json
  5282. msgctxt "description"
  5283. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  5284. msgstr "Atualiza as configurações do Cura 4.13 para o Cura 5.0."
  5285. #: VersionUpgrade/VersionUpgrade413to50/plugin.json
  5286. msgctxt "name"
  5287. msgid "Version Upgrade 4.13 to 5.0"
  5288. msgstr "Atualização do Cura versão 4.13 para 5.0"
  5289. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5290. msgctxt "description"
  5291. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  5292. msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6."
  5293. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5294. msgctxt "name"
  5295. msgid "Version Upgrade 4.5 to 4.6"
  5296. msgstr "Atualização da versão 4.5 para a versão 4.6"
  5297. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5298. msgctxt "description"
  5299. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  5300. msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4."
  5301. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5302. msgctxt "name"
  5303. msgid "Version Upgrade 3.3 to 3.4"
  5304. msgstr "Atualização da versão 3.3 para 3.4"
  5305. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5306. msgctxt "description"
  5307. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  5308. msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9."
  5309. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5310. msgctxt "name"
  5311. msgid "Version Upgrade 4.8 to 4.9"
  5312. msgstr "Atualização da versão 4.8 para 4.9"
  5313. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5314. msgctxt "description"
  5315. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  5316. msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0."
  5317. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5318. msgctxt "name"
  5319. msgid "Version Upgrade 2.7 to 3.0"
  5320. msgstr "Atualização da versão 2.7 para 3.0"
  5321. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5322. msgctxt "description"
  5323. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5324. msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5."
  5325. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5326. msgctxt "name"
  5327. msgid "Version Upgrade 4.4 to 4.5"
  5328. msgstr "Atualização da versão 4.4 para a versão 4.5"
  5329. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5330. msgctxt "description"
  5331. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  5332. msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1."
  5333. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5334. msgctxt "name"
  5335. msgid "Version Upgrade 3.0 to 3.1"
  5336. msgstr "Atualização da versão 3.0 para 3.1"
  5337. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5338. msgctxt "description"
  5339. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  5340. msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2."
  5341. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5342. msgctxt "name"
  5343. msgid "Version Upgrade 4.6.0 to 4.6.2"
  5344. msgstr "Atualização da versão 4.6.0 para a versão 4.6.2"
  5345. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5346. msgctxt "description"
  5347. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  5348. msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7."
  5349. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5350. msgctxt "name"
  5351. msgid "Version Upgrade 2.6 to 2.7"
  5352. msgstr "Atualização da versão 2.6 para 2.7"
  5353. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5354. msgctxt "description"
  5355. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  5356. msgstr "Atualiza as configurações do Cura 4.2 para o Cura 4.3."
  5357. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5358. msgctxt "name"
  5359. msgid "Version Upgrade 4.2 to 4.3"
  5360. msgstr "Atualização da versão 4.2 para 4.3"
  5361. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5362. msgctxt "description"
  5363. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  5364. msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1."
  5365. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5366. msgctxt "name"
  5367. msgid "Version Upgrade 4.0 to 4.1"
  5368. msgstr "Atualização da versão 4.0 para 4.1"
  5369. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5370. msgctxt "description"
  5371. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  5372. msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7."
  5373. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5374. msgctxt "name"
  5375. msgid "Version Upgrade 4.6.2 to 4.7"
  5376. msgstr "Atualização da versão 4.6.2 para a versão 4.7"
  5377. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5378. msgctxt "description"
  5379. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  5380. msgstr "Atualiza as configurações do Cura 4.9 para o Cura 4.10."
  5381. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5382. msgctxt "name"
  5383. msgid "Version Upgrade 4.9 to 4.10"
  5384. msgstr "Atualização da versão 4.9 para 4.10"
  5385. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5386. msgctxt "description"
  5387. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5388. msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4."
  5389. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5390. msgctxt "name"
  5391. msgid "Version Upgrade 2.2 to 2.4"
  5392. msgstr "Atualização da versão 2.2 para 2.4"
  5393. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5394. msgctxt "description"
  5395. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  5396. msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3."
  5397. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5398. msgctxt "name"
  5399. msgid "Version Upgrade 3.2 to 3.3"
  5400. msgstr "Atualização da versão 3.2 para 3.3"
  5401. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5402. msgctxt "description"
  5403. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  5404. msgstr "Atualiza as configurações do Cura 2.5 para o Cura 2.6."
  5405. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5406. msgctxt "name"
  5407. msgid "Version Upgrade 2.5 to 2.6"
  5408. msgstr "Atualização da versão 2.5 para 2.6"
  5409. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5410. msgctxt "description"
  5411. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5412. msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0."
  5413. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5414. msgctxt "name"
  5415. msgid "Version Upgrade 3.5 to 4.0"
  5416. msgstr "Atualização da versão 3.5 para 4.0"
  5417. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5418. msgctxt "description"
  5419. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  5420. msgstr "Atualiza as configurações do Cura 3.4 para o Cura 3.5."
  5421. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5422. msgctxt "name"
  5423. msgid "Version Upgrade 3.4 to 3.5"
  5424. msgstr "Atualização da versão 3.4 para 3.5"
  5425. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5426. msgctxt "description"
  5427. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5428. msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8."
  5429. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5430. msgctxt "name"
  5431. msgid "Version Upgrade 4.7 to 4.8"
  5432. msgstr "Atualização da versão 4.7 para 4.8"
  5433. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5434. msgctxt "description"
  5435. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5436. msgstr "Atualiza as configurações do Cura 4.11 para o Cura 4.12."
  5437. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5438. msgctxt "name"
  5439. msgid "Version Upgrade 4.11 to 4.12"
  5440. msgstr "Atualização da versão 4.11 para a versão 4.12"
  5441. #: CuraDrive/plugin.json
  5442. msgctxt "description"
  5443. msgid "Backup and restore your configuration."
  5444. msgstr "Efetua uma cópia de segurança e repõe a sua configuração."
  5445. #: CuraDrive/plugin.json
  5446. msgctxt "name"
  5447. msgid "Cura Backups"
  5448. msgstr "Cópias de segurança do Cura"
  5449. #: CuraProfileReader/plugin.json
  5450. msgctxt "description"
  5451. msgid "Provides support for importing Cura profiles."
  5452. msgstr "Fornece suporte para importar perfis Cura."
  5453. #: CuraProfileReader/plugin.json
  5454. msgctxt "name"
  5455. msgid "Cura Profile Reader"
  5456. msgstr "Leitor de Perfis Cura"
  5457. #: SliceInfoPlugin/plugin.json
  5458. msgctxt "description"
  5459. msgid "Submits anonymous slice info. Can be disabled through preferences."
  5460. msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências."
  5461. #: SliceInfoPlugin/plugin.json
  5462. msgctxt "name"
  5463. msgid "Slice info"
  5464. msgstr "Informações do seccionamento"
  5465. #: GCodeProfileReader/plugin.json
  5466. msgctxt "description"
  5467. msgid "Provides support for importing profiles from g-code files."
  5468. msgstr "Permite importar perfis a partir de ficheiros g-code."
  5469. #: GCodeProfileReader/plugin.json
  5470. msgctxt "name"
  5471. msgid "G-code Profile Reader"
  5472. msgstr "Leitor de perfis G-code"
  5473. #: GCodeGzWriter/plugin.json
  5474. msgctxt "description"
  5475. msgid "Writes g-code to a compressed archive."
  5476. msgstr "Grava o g-code num arquivo comprimido."
  5477. #: GCodeGzWriter/plugin.json
  5478. msgctxt "name"
  5479. msgid "Compressed G-code Writer"
  5480. msgstr "Gravador de G-code comprimido"
  5481. #: PostProcessingPlugin/plugin.json
  5482. msgctxt "description"
  5483. msgid "Extension that allows for user created scripts for post processing"
  5484. msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento"
  5485. #: PostProcessingPlugin/plugin.json
  5486. msgctxt "name"
  5487. msgid "Post Processing"
  5488. msgstr "Pós-Processamento"
  5489. #: SupportEraser/plugin.json
  5490. msgctxt "description"
  5491. msgid ""
  5492. "Creates an eraser mesh to block the printing of support in certain places"
  5493. msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas"
  5494. #: SupportEraser/plugin.json
  5495. msgctxt "name"
  5496. msgid "Support Eraser"
  5497. msgstr "Eliminador de suportes"
  5498. #: PreviewStage/plugin.json
  5499. msgctxt "description"
  5500. msgid "Provides a preview stage in Cura."
  5501. msgstr "Fornece uma fase de pré-visualização no Cura."
  5502. #: PreviewStage/plugin.json
  5503. msgctxt "name"
  5504. msgid "Preview Stage"
  5505. msgstr "Fase de pré-visualização"
  5506. #: XRayView/plugin.json
  5507. msgctxt "description"
  5508. msgid "Provides the X-Ray view."
  5509. msgstr "Permite a visualização em Raio-X."
  5510. #: XRayView/plugin.json
  5511. msgctxt "name"
  5512. msgid "X-Ray View"
  5513. msgstr "Vista Raio-X"
  5514. #: UltimakerMachineActions/plugin.json
  5515. msgctxt "description"
  5516. msgid ""
  5517. "Provides machine actions for Ultimaker machines (such as bed leveling "
  5518. "wizard, selecting upgrades, etc.)."
  5519. msgstr "Disponibiliza funções especificas para as máquinas Ultimaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)."
  5520. #: UltimakerMachineActions/plugin.json
  5521. msgctxt "name"
  5522. msgid "Ultimaker machine actions"
  5523. msgstr "Funções para impressoras Ultimaker"
  5524. #: Marketplace/plugin.json
  5525. msgctxt "description"
  5526. msgid ""
  5527. "Manages extensions to the application and allows browsing extensions from "
  5528. "the Ultimaker website."
  5529. msgstr "Faz a gestão de extensões da aplicação e permite a navegação das extensões a partir do website da Ultimaker."
  5530. #: Marketplace/plugin.json
  5531. msgctxt "name"
  5532. msgid "Marketplace"
  5533. msgstr "Marketplace"
  5534. #: SolidView/plugin.json
  5535. msgctxt "description"
  5536. msgid "Provides a normal solid mesh view."
  5537. msgstr "Permite a visualização (simples) dos objetos como sólidos."
  5538. #: SolidView/plugin.json
  5539. msgctxt "name"
  5540. msgid "Solid View"
  5541. msgstr "Vista Sólidos"
  5542. #: GCodeReader/plugin.json
  5543. msgctxt "description"
  5544. msgid "Allows loading and displaying G-code files."
  5545. msgstr "Permite abrir e visualizar ficheiros G-code."
  5546. #: GCodeReader/plugin.json
  5547. msgctxt "name"
  5548. msgid "G-code Reader"
  5549. msgstr "Leitor de G-code"
  5550. #: MachineSettingsAction/plugin.json
  5551. msgctxt "description"
  5552. msgid ""
  5553. "Provides a way to change machine settings (such as build volume, nozzle "
  5554. "size, etc.)."
  5555. msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)."
  5556. #: MachineSettingsAction/plugin.json
  5557. msgctxt "name"
  5558. msgid "Machine Settings Action"
  5559. msgstr "Função Definições da Máquina"
  5560. #: USBPrinting/plugin.json
  5561. msgctxt "description"
  5562. msgid ""
  5563. "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  5564. msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware."
  5565. #: USBPrinting/plugin.json
  5566. msgctxt "name"
  5567. msgid "USB printing"
  5568. msgstr "Impressão USB"
  5569. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:35
  5570. msgctxt "@button:label"
  5571. msgid "Learn More"
  5572. msgstr "Saber Mais"
  5573. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  5574. msgctxt "@label"
  5575. msgid "You need to accept the license to install the package"
  5576. msgstr "É necessário aceitar a licença para instalar o pacote"
  5577. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  5578. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  5579. msgctxt "@info:title"
  5580. msgid "Changes detected from your Ultimaker account"
  5581. msgstr "Foram detetadas alterações da sua conta Ultimaker"
  5582. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  5583. msgctxt "@title"
  5584. msgid "Changes from your account"
  5585. msgstr "Alterações feitas desde a sua conta"
  5586. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  5587. msgctxt "@button"
  5588. msgid "Dismiss"
  5589. msgstr "Descartar"
  5590. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42
  5591. msgctxt "@button"
  5592. msgid "Decline and remove from account"
  5593. msgstr "Rejeitar e remover da conta"
  5594. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  5595. msgctxt "@info:generic"
  5596. msgid "Do you want to sync material and software packages with your account?"
  5597. msgstr "Pretende sincronizar o material e os pacotes de software com a sua conta?"
  5598. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  5599. msgctxt "@info:generic"
  5600. msgid "Syncing..."
  5601. msgstr "A sincronizar..."
  5602. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  5603. msgctxt "@label"
  5604. msgid "The following packages will be added:"
  5605. msgstr "Os seguintes pacotes vão ser instalados:"
  5606. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  5607. msgctxt "@info:generic"
  5608. msgid "You need to quit and restart {} before changes have effect."
  5609. msgstr "É necessário reiniciar o {} para que as alterações tenham efeito."
  5610. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  5611. msgctxt "@info:generic"
  5612. msgid "{} plugins failed to download"
  5613. msgstr "Falhou a transferência de {} plug-ins"
  5614. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77
  5615. msgctxt "@title:window"
  5616. msgid "Plugin License Agreement"
  5617. msgstr "Contrato de licença do plug-in"
  5618. #~ msgctxt "@action:button"
  5619. #~ msgid "Sync materials with printers"
  5620. #~ msgstr "Sincronizar materiais"
  5621. #~ msgctxt "@action:button"
  5622. #~ msgid "Sync"
  5623. #~ msgstr "Sincronizar"
  5624. #~ msgctxt "@title:window"
  5625. #~ msgid "Convert Image..."
  5626. #~ msgstr "Converter imagem..."
  5627. #~ msgctxt "@info:tooltip"
  5628. #~ msgid "The width in millimeters on the build plate."
  5629. #~ msgstr "A largura em milímetros na base de construção."
  5630. #~ msgctxt "@title"
  5631. #~ msgid "Marketplace"
  5632. #~ msgstr "Mercado"
  5633. #~ msgctxt "@info"
  5634. #~ msgid "You will need to restart Cura before changes in packages have effect."
  5635. #~ msgstr "É necessário reiniciar o Cura para que as alterações dos pacotes sejam aplicadas."
  5636. #~ msgctxt "@action:button"
  5637. #~ msgid "Install"
  5638. #~ msgstr "Instalar"
  5639. #~ msgctxt "@action:button"
  5640. #~ msgid "Installed"
  5641. #~ msgstr "Instalado"
  5642. #~ msgctxt "@label"
  5643. #~ msgid "Premium"
  5644. #~ msgstr "Premium"
  5645. #~ msgctxt "@info:tooltip"
  5646. #~ msgid "Go to Web Marketplace"
  5647. #~ msgstr "Ir para Mercado na Web"
  5648. #~ msgctxt "@label"
  5649. #~ msgid "Search materials"
  5650. #~ msgstr "Procurar materiais"
  5651. #~ msgctxt "@label"
  5652. #~ msgid "Compatibility"
  5653. #~ msgstr "Compatibilidade"
  5654. #~ msgctxt "@label:table_header"
  5655. #~ msgid "Machine"
  5656. #~ msgstr "Máquina"
  5657. #~ msgctxt "@label:table_header"
  5658. #~ msgid "Build Plate"
  5659. #~ msgstr "Base de construção"
  5660. #~ msgctxt "@label:table_header"
  5661. #~ msgid "Support"
  5662. #~ msgstr "Suportes"
  5663. #~ msgctxt "@label:table_header"
  5664. #~ msgid "Quality"
  5665. #~ msgstr "Qualidade"
  5666. #~ msgctxt "@action:label"
  5667. #~ msgid "Technical Data Sheet"
  5668. #~ msgstr "Ficha técnica"
  5669. #~ msgctxt "@action:label"
  5670. #~ msgid "Safety Data Sheet"
  5671. #~ msgstr "Ficha de segurança"
  5672. #~ msgctxt "@action:label"
  5673. #~ msgid "Printing Guidelines"
  5674. #~ msgstr "Instruções de impressão"
  5675. #~ msgctxt "@action:label"
  5676. #~ msgid "Website"
  5677. #~ msgstr "Site"
  5678. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5679. #~ msgid "<a href='%1'>Log in</a> is required to install or update"
  5680. #~ msgstr "É necessário <a href='%1'>Log in</a> para instalar ou atualizar"
  5681. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5682. #~ msgid "<a href='%1'>Buy material spools</a>"
  5683. #~ msgstr "<a href='%1'>Comprar bobinas de material</a>"
  5684. #~ msgctxt "@action:button"
  5685. #~ msgid "Update"
  5686. #~ msgstr "Atualizar"
  5687. #~ msgctxt "@action:button"
  5688. #~ msgid "Updating"
  5689. #~ msgstr "A Actualizar"
  5690. #~ msgctxt "@action:button"
  5691. #~ msgid "Updated"
  5692. #~ msgstr "Atualizado"
  5693. #~ msgctxt "@action:button"
  5694. #~ msgid "Back"
  5695. #~ msgstr "Anterior"
  5696. #~ msgctxt "@title:tab"
  5697. #~ msgid "Plugins"
  5698. #~ msgstr "Plug-ins"
  5699. #~ msgctxt "@title:tab"
  5700. #~ msgid "Installed"
  5701. #~ msgstr "Instalado"
  5702. #~ msgctxt "@label"
  5703. #~ msgid "Will install upon restarting"
  5704. #~ msgstr "Será instalado após reiniciar"
  5705. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5706. #~ msgid "<a href='%1'>Log in</a> is required to update"
  5707. #~ msgstr "É necessário <a href='%1'>Log in</a> para atualizar"
  5708. #~ msgctxt "@action:button"
  5709. #~ msgid "Downgrade"
  5710. #~ msgstr "Repor Versão Anterior"
  5711. #~ msgctxt "@action:button"
  5712. #~ msgid "Uninstall"
  5713. #~ msgstr "Desinstalar"
  5714. #~ msgctxt "@label"
  5715. #~ msgid "Community Contributions"
  5716. #~ msgstr "Contribuições comunitárias"
  5717. #~ msgctxt "@label"
  5718. #~ msgid "Community Plugins"
  5719. #~ msgstr "Plug-ins comunitários"
  5720. #~ msgctxt "@label"
  5721. #~ msgid "Generic Materials"
  5722. #~ msgstr "Materiais genéricos"
  5723. #~ msgctxt "@info"
  5724. #~ msgid "Fetching packages..."
  5725. #~ msgstr "A obter pacotes..."
  5726. #~ msgctxt "@label"
  5727. #~ msgid "Website"
  5728. #~ msgstr "Site"
  5729. #~ msgctxt "@label"
  5730. #~ msgid "Email"
  5731. #~ msgstr "E-mail"
  5732. #~ msgctxt "@description"
  5733. #~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  5734. #~ msgstr "Inicie sessão para obter plug-ins e materiais verificados para o Ultimaker Cura Enterprise"
  5735. #~ msgctxt "@label"
  5736. #~ msgid "Version"
  5737. #~ msgstr "Versão"
  5738. #~ msgctxt "@label"
  5739. #~ msgid "Last updated"
  5740. #~ msgstr "Actualizado em"
  5741. #~ msgctxt "@label"
  5742. #~ msgid "Downloads"
  5743. #~ msgstr "Transferências"
  5744. #~ msgctxt "@title:tab"
  5745. #~ msgid "Installed plugins"
  5746. #~ msgstr "Plug-ins instalados"
  5747. #~ msgctxt "@info"
  5748. #~ msgid "No plugin has been installed."
  5749. #~ msgstr "Não foi instalado qualquer plug-in."
  5750. #~ msgctxt "@title:tab"
  5751. #~ msgid "Installed materials"
  5752. #~ msgstr "Materiais instalados"
  5753. #~ msgctxt "@info"
  5754. #~ msgid "No material has been installed."
  5755. #~ msgstr "Não foi instalado qualquer material."
  5756. #~ msgctxt "@title:tab"
  5757. #~ msgid "Bundled plugins"
  5758. #~ msgstr "Plug-ins em pacote"
  5759. #~ msgctxt "@title:tab"
  5760. #~ msgid "Bundled materials"
  5761. #~ msgstr "Materiais em pacote"
  5762. #~ msgctxt "@info"
  5763. #~ msgid "Could not connect to the Cura Package database. Please check your connection."
  5764. #~ msgstr "Não foi possível aceder á base de dados de Pacotes do Cura. Por favor verifique a sua ligação."
  5765. #~ msgctxt "@label"
  5766. #~ msgid "The following packages can not be installed because of an incompatible Cura version:"
  5767. #~ msgstr "Os seguintes pacotes não podem ser instalados devido a uma versão incompatível do Cura:"
  5768. #~ msgctxt "@title:window"
  5769. #~ msgid "Confirm uninstall"
  5770. #~ msgstr "Confirmar desinstalação"
  5771. #~ msgctxt "@text:window"
  5772. #~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  5773. #~ msgstr "Está a desinstalar materiais e/ou perfis que ainda estão a ser utilizados. Mediante confirmação, as predefinições dos seguintes materiais/perfis serão repostas."
  5774. #~ msgctxt "@text:window"
  5775. #~ msgid "Materials"
  5776. #~ msgstr "Materiais"
  5777. #~ msgctxt "@text:window"
  5778. #~ msgid "Profiles"
  5779. #~ msgstr "Perfis"
  5780. #~ msgctxt "@action:button"
  5781. #~ msgid "Confirm"
  5782. #~ msgstr "Confirmar"
  5783. #~ msgctxt "@info:tooltip"
  5784. #~ msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  5785. #~ msgstr "Alguns factores podem vir a ser problemáticos nesta impressão. Clique para ver algumas sugestões para melhorar a qualidade da impressão."
  5786. #~ msgctxt "@label"
  5787. #~ msgid "Support library for handling planar objects"
  5788. #~ msgstr "Biblioteca de apoio para processamento de objetos planos"
  5789. #~ msgctxt "@text:window, %1 is a profile name"
  5790. #~ msgid ""
  5791. #~ "You have customized some profile settings.\n"
  5792. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5793. #~ "Alternatively, you can discard the changes to load the defaults from '%1'."
  5794. #~ msgstr ""
  5795. #~ "Personalizou algumas definições de perfil.\n"
  5796. #~ "Pretende manter estas definições alteradas depois de trocar de perfis?\n"
  5797. #~ "Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'."
  5798. #~ msgctxt "@action:inmenu menubar:view"
  5799. #~ msgid "&Build plate"
  5800. #~ msgstr "&Base de construção"
  5801. #~ msgctxt "@label"
  5802. #~ msgid "Create"
  5803. #~ msgstr "Criar"
  5804. #~ msgctxt "@label"
  5805. #~ msgid "Duplicate"
  5806. #~ msgstr "Duplicar"
  5807. #~ msgctxt "@label %1 is printer name"
  5808. #~ msgid "Printer: %1"
  5809. #~ msgstr "Impressora: %1"
  5810. #~ msgctxt "@action:button"
  5811. #~ msgid "Update profile with current settings/overrides"
  5812. #~ msgstr "Atualizar perfil com as definições/substituições atuais"
  5813. #~ msgctxt "@label"
  5814. #~ msgid "Theme:"
  5815. #~ msgstr "Tema:"
  5816. #~ msgctxt "@label"
  5817. #~ msgid "You will need to restart the application for these changes to have effect."
  5818. #~ msgstr "É necessário reiniciar a aplicação para que estas alterações sejam aplicadas."
  5819. #~ msgctxt "@action:button"
  5820. #~ msgid "More information"
  5821. #~ msgstr "Mais informações"
  5822. #~ msgctxt "@action:button"
  5823. #~ msgid "Create"
  5824. #~ msgstr "Criar"
  5825. #~ msgctxt "@action:button Sending materials to printers"
  5826. #~ msgid "Sync with Printers"
  5827. #~ msgstr "Sincronizar com Impressoras"
  5828. #~ msgctxt "@action:label"
  5829. #~ msgid "Printer"
  5830. #~ msgstr "Impressora"
  5831. #~ msgctxt "@title:column"
  5832. #~ msgid "Unit"
  5833. #~ msgstr "Unidade"
  5834. #~ msgctxt "@action:inmenu"
  5835. #~ msgid "Show Online Troubleshooting Guide"
  5836. #~ msgstr "Mostrar Guia de resolução de problemas online"
  5837. #~ msgctxt "@action:inmenu"
  5838. #~ msgid "Add more materials from Marketplace"
  5839. #~ msgstr "Use o Mercado para adicionar outros materiais"
  5840. #~ msgctxt "@action:inmenu menubar:edit"
  5841. #~ msgid "Arrange All Models To All Build Plates"
  5842. #~ msgstr "Dispor todos os modelos em todas as bases de construção"
  5843. #~ msgctxt "@action:menu"
  5844. #~ msgid "&Marketplace"
  5845. #~ msgstr "&Mercado"
  5846. #~ msgctxt "description"
  5847. #~ msgid "Find, manage and install new Cura packages."
  5848. #~ msgstr "Encontre, organize e instale novos pacotes para o Cura."
  5849. #~ msgctxt "name"
  5850. #~ msgid "Toolbox"
  5851. #~ msgstr "Toolbox"
  5852. #~ msgctxt "description"
  5853. #~ msgid "Provides the Simulation view."
  5854. #~ msgstr "Permite a visualização por camadas."
  5855. #~ msgctxt "@info:status"
  5856. #~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  5857. #~ msgstr "Envie e monitorize trabalhos de impressão a partir de qualquer lugar através da sua conta Ultimaker."
  5858. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5859. #~ msgid "Connect to Ultimaker Digital Factory"
  5860. #~ msgstr "Ligar à Ultimaker Digital Factory"
  5861. #~ msgctxt "@info"
  5862. #~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura."
  5863. #~ msgstr "Não é possível visualizar os feeds das câmaras das impressoras na cloud a partir do Ultimaker Cura."
  5864. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5865. #~ 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}."
  5866. #~ msgstr "Poderão estar disponíveis novas funcionalidades ou correções de erros para {machine_name}! Se ainda não tiver a versão mais recente, recomendamos que atualize o firmware da sua impressora para a versão {latest_version}."
  5867. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5868. #~ msgid "New %s firmware available"
  5869. #~ msgstr "Novo firmware para %s está disponível"
  5870. #~ msgctxt "@info:status"
  5871. #~ msgid "Global stack is missing."
  5872. #~ msgstr "A pilha global está em falta."
  5873. #~ msgctxt "@info:status"
  5874. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  5875. #~ msgstr "O seu modelo não é uma variedade. As áreas destacadas indicam superfícies extra ou em falta."
  5876. #~ msgctxt "@info:title"
  5877. #~ msgid "Model errors"
  5878. #~ msgstr "Erros de modelo"
  5879. #~ msgctxt "@label:listbox"
  5880. #~ msgid "Layer thickness"
  5881. #~ msgstr "Espessura da Camada"
  5882. #~ msgctxt "@label"
  5883. #~ msgid "Your key to connected 3D printing"
  5884. #~ msgstr "A chave para a impressão 3D em rede"
  5885. #~ msgctxt "@text"
  5886. #~ msgid ""
  5887. #~ "- Customize your experience with more print profiles and plugins\n"
  5888. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5889. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5890. #~ msgstr ""
  5891. #~ "- Personalize a sua experiência com mais perfis e plug-ins de impressão\n"
  5892. #~ "- Mantenha a sua flexibilidade. Sincronize a sua configuração e carregue-a em qualquer local\n"
  5893. #~ "- Aumente a eficiência com um fluxo de trabalho remoto nas impressoras Ultimaker"
  5894. #~ msgctxt "@button"
  5895. #~ msgid "Create account"
  5896. #~ msgstr "Criar conta"
  5897. #~ msgctxt "@action:inmenu menubar:edit"
  5898. #~ msgid "Delete Selected Model"
  5899. #~ msgid_plural "Delete Selected Models"
  5900. #~ msgstr[0] "Apagar Modelo Selecionado"
  5901. #~ msgstr[1] "Apagar Modelos Selecionados"
  5902. #~ msgctxt "@action:inmenu menubar:edit"
  5903. #~ msgid "Center Selected Model"
  5904. #~ msgid_plural "Center Selected Models"
  5905. #~ msgstr[0] "Centrar modelo selecionado"
  5906. #~ msgstr[1] "Centrar modelos selecionados"
  5907. #~ msgctxt "@action:inmenu menubar:edit"
  5908. #~ msgid "Multiply Selected Model"
  5909. #~ msgid_plural "Multiply Selected Models"
  5910. #~ msgstr[0] "Multiplicar modelo selecionado"
  5911. #~ msgstr[1] "Multiplicar modelos selecionados"
  5912. #~ msgctxt "@button"
  5913. #~ msgid "Finish"
  5914. #~ msgstr "Concluir"
  5915. #~ msgctxt "@label"
  5916. #~ msgid "Ultimaker Account"
  5917. #~ msgstr "Conta Ultimaker"
  5918. #~ msgctxt "@text"
  5919. #~ msgid "Your key to connected 3D printing"
  5920. #~ msgstr "A chave para a impressão 3D em rede"
  5921. #~ msgctxt "@text"
  5922. #~ msgid "- Customize your experience with more print profiles and plugins"
  5923. #~ msgstr "Personalize a sua experiência com mais perfis e plug-ins de impressão"
  5924. #~ msgctxt "@text"
  5925. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5926. #~ msgstr "Mantenha a sua flexibilidade. Sincronize a sua configuração e carregue-a em qualquer local"
  5927. #~ msgctxt "@text"
  5928. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  5929. #~ msgstr "Aumente a eficiência com um fluxo de trabalho remoto nas impressoras Ultimaker"
  5930. #~ msgctxt "@text"
  5931. #~ msgid ""
  5932. #~ "Please follow these steps to set up\n"
  5933. #~ "Ultimaker Cura. This will only take a few moments."
  5934. #~ msgstr ""
  5935. #~ "Siga estes passos para configurar o\n"
  5936. #~ "Ultimaker Cura. Este processo deverá demorar apenas alguns momentos."
  5937. #~ msgctxt "@label"
  5938. #~ msgid "What's new in Ultimaker Cura"
  5939. #~ msgstr "Novidades no Ultimaker Cura"
  5940. #~ msgctxt "@label ({} is object name)"
  5941. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5942. #~ msgstr "Tem a certeza de que pretende remover {}? Esta ação não pode ser anulada!"
  5943. #~ msgctxt "@info:status"
  5944. #~ msgid "The selected model was too small to load."
  5945. #~ msgstr "O modelo selecionado era demasiado pequeno para carregar."
  5946. #~ msgctxt "@info:status"
  5947. #~ msgid "Successfully imported profile {0}"
  5948. #~ msgstr "Perfil {0} importado com êxito"
  5949. #~ msgctxt "@info:status"
  5950. #~ msgid "Could not find a quality type {0} for the current configuration."
  5951. #~ msgstr "Não foi possível encontrar um tipo de qualidade {0} para a configuração atual."
  5952. #~ msgctxt "info:status"
  5953. #~ msgid "Adding printer {} ({}) from your account"
  5954. #~ msgstr "A adicionar impressora {} ({}) a partir da sua conta"
  5955. #~ msgctxt "info:hidden list items"
  5956. #~ msgid "<li>... and {} others</li>"
  5957. #~ msgstr "<li>... e {} outras</li>"
  5958. #~ msgctxt "info:status"
  5959. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5960. #~ msgstr "Impressoras adicionadas a partir da Digital Factory:<ul>{}</ul>"
  5961. #~ msgctxt "info:status"
  5962. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5963. #~ msgstr "<ul>{}</ul>Para estabelecer uma ligação, visite a <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5964. #~ msgctxt "@label ({} is printer name)"
  5965. #~ 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?"
  5966. #~ msgstr "{} será removida até à próxima sincronização de conta. <br> Para remover {} permanentemente, visite <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Tem a certeza de que pretende remover {} temporariamente?"
  5967. #~ msgctxt "@label"
  5968. #~ msgid ""
  5969. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5970. #~ "Are you sure you want to continue?"
  5971. #~ msgstr ""
  5972. #~ "Está prestes a remover {} impressora(s) do Cura. Esta ação não pode ser anulada. \n"
  5973. #~ "Tem a certeza de que pretende continuar?"
  5974. #~ msgctxt "@label"
  5975. #~ msgid ""
  5976. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5977. #~ "Are you sure you want to continue?"
  5978. #~ msgstr ""
  5979. #~ "Está prestes a remover todas as impressoras do Cura. Esta ação não pode ser anulada. \n"
  5980. #~ "Tem a certeza de que pretende continuar?"
  5981. #~ msgctxt "@action:ComboBox option"
  5982. #~ msgid "Update"
  5983. #~ msgstr "Atualizar"
  5984. #~ msgctxt "@action:ComboBox option"
  5985. #~ msgid "Create new"
  5986. #~ msgstr "Criar nova"
  5987. #~ msgctxt "@label"
  5988. #~ msgid "Shared Heater"
  5989. #~ msgstr "Aquecedor partilhado"
  5990. #~ msgctxt "@info"
  5991. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5992. #~ msgstr "Esta webcam não está disponível pois está a monitorizar uma impressora na cloud."
  5993. #~ msgctxt "@button"
  5994. #~ msgid "Ultimaker Digital Factory"
  5995. #~ msgstr "Ultimaker Digital Factory"
  5996. #~ msgctxt "@text:window, %1 is a profile name"
  5997. #~ msgid ""
  5998. #~ "You have customized some profile settings.\n"
  5999. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  6000. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  6001. #~ msgstr ""
  6002. #~ "Personalizou algumas definições de perfil.\n"
  6003. #~ "Pretende manter estas definições alteradas depois de trocar de perfis?\n"
  6004. #~ "Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'."
  6005. #~ msgctxt "@label"
  6006. #~ msgid "Overrides %1 setting."
  6007. #~ msgid_plural "Overrides %1 settings."
  6008. #~ msgstr[0] "Substitui %1 definição."
  6009. #~ msgstr[1] "Substitui %1 definições."
  6010. #~ msgctxt "@text"
  6011. #~ msgid "Please give your printer a name"
  6012. #~ msgstr "Atribua um nome à sua impressora"
  6013. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6014. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  6015. #~ msgstr "Estão disponíveis novas funcionalidades para a impressora {machine_name}! É recomendado atualizar o firmware da impressora."
  6016. #~ msgctxt "@action:button"
  6017. #~ msgid "Print via Cloud"
  6018. #~ msgstr "Imprimir através da cloud"
  6019. #~ msgctxt "@properties:tooltip"
  6020. #~ msgid "Print via Cloud"
  6021. #~ msgstr "Imprimir através da cloud"
  6022. #~ msgctxt "@info:status"
  6023. #~ msgid "Connected via Cloud"
  6024. #~ msgstr "Ligada através da cloud"
  6025. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  6026. #~ msgid "Connect to Ultimaker Cloud"
  6027. #~ msgstr "Ligar à cloud da Ultimaker"
  6028. #~ msgctxt "@label"
  6029. #~ msgid "You need to login first before you can rate"
  6030. #~ msgstr "É necessário iniciar sessão antes de atribuir a classificação"
  6031. #~ msgctxt "@label"
  6032. #~ msgid "You need to install the package before you can rate"
  6033. #~ msgstr "É necessário instalar o pacote antes de atribuir a classificação"
  6034. #~ msgctxt "@label"
  6035. #~ msgid "ratings"
  6036. #~ msgstr "classificações"
  6037. #~ msgctxt "@label"
  6038. #~ msgid "Featured"
  6039. #~ msgstr "Em Destaque"
  6040. #~ msgctxt "@label"
  6041. #~ msgid "Your rating"
  6042. #~ msgstr "A sua classificação"
  6043. #~ msgctxt "@label"
  6044. #~ msgid "Author"
  6045. #~ msgstr "Autor"
  6046. #~ msgctxt "@description"
  6047. #~ msgid "Get plugins and materials verified by Ultimaker"
  6048. #~ msgstr "Obter plug-ins e materiais verificados pela Ultimaker"
  6049. #~ msgctxt "@label The argument is a username."
  6050. #~ msgid "Hi %1"
  6051. #~ msgstr "Olá, %1"
  6052. #~ msgctxt "@button"
  6053. #~ msgid "Ultimaker account"
  6054. #~ msgstr "Conta Ultimaker"
  6055. #~ msgctxt "@button"
  6056. #~ msgid "Sign out"
  6057. #~ msgstr "Terminar sessão"
  6058. #~ msgctxt "@label"
  6059. #~ msgid "Support library for analysis of complex networks"
  6060. #~ msgstr "Biblioteca de apoio para análise de redes complexas"
  6061. #~ msgctxt "@Label"
  6062. #~ msgid "Python HTTP library"
  6063. #~ msgstr "Biblioteca de HTTP Python"
  6064. #~ msgctxt "@text:window"
  6065. #~ msgid ""
  6066. #~ "You have customized some profile settings.\n"
  6067. #~ "Would you like to keep or discard those settings?"
  6068. #~ msgstr ""
  6069. #~ "Alterou algumas das definições do perfil.\n"
  6070. #~ "Gostaria de manter ou descartar essas alterações?"
  6071. #~ msgctxt "@title:column"
  6072. #~ msgid "Default"
  6073. #~ msgstr "Predefinição"
  6074. #~ msgctxt "@title:column"
  6075. #~ msgid "Customized"
  6076. #~ msgstr "Personalizado"
  6077. #~ msgctxt "@action:button"
  6078. #~ msgid "Discard"
  6079. #~ msgstr "Descartar"
  6080. #~ msgctxt "@action:button"
  6081. #~ msgid "Keep"
  6082. #~ msgstr "Manter"
  6083. #~ msgctxt "@action:button"
  6084. #~ msgid "Create New Profile"
  6085. #~ msgstr "Criar novo perfil"
  6086. #~ msgctxt "@title:menu menubar:file"
  6087. #~ msgid "&Save..."
  6088. #~ msgstr "&Guardar..."
  6089. #~ msgctxt "@text"
  6090. #~ msgid "Place enter your printer's IP address."
  6091. #~ msgstr "Introduza o endereço IP da sua impressora."
  6092. #~ msgctxt "@button"
  6093. #~ msgid "Create an account"
  6094. #~ msgstr "Criar uma conta"
  6095. #~ msgctxt "@info:generic"
  6096. #~ msgid ""
  6097. #~ "\n"
  6098. #~ "Do you want to sync material and software packages with your account?"
  6099. #~ msgstr ""
  6100. #~ "\n"
  6101. #~ "Pretende sincronizar o material e os pacotes de software com a sua conta?"
  6102. #~ msgctxt "@info:generic"
  6103. #~ msgid ""
  6104. #~ "\n"
  6105. #~ "Syncing..."
  6106. #~ msgstr ""
  6107. #~ "\n"
  6108. #~ "A sincronizar..."
  6109. #~ msgctxt "@info:status"
  6110. #~ 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."
  6111. #~ msgstr "Sem conteúdo para seccionar porque nenhum dos modelos está dentro do volume de construção ou porque os mesmos estão atribuídos a um extrusor desativado. Dimensione ou rode os modelos para os adaptar ou ative o extrusor."
  6112. #~ msgctxt "@info:backup_status"
  6113. #~ msgid "There was an error listing your backups."
  6114. #~ msgstr "Ocorreu um erro ao listar as suas cópias de segurança."
  6115. #~ msgctxt "@title:groupbox"
  6116. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  6117. #~ msgstr "Descrição do utilizador (Nota: os programadores podem não falar a sua língua, pelo que, se possível, deve utilizar o inglês)"
  6118. #~ msgctxt "@title:window"
  6119. #~ msgid "Closing Cura"
  6120. #~ msgstr "Fechar Cura"
  6121. #~ msgctxt "@label"
  6122. #~ msgid "Are you sure you want to exit Cura?"
  6123. #~ msgstr "Tem a certeza de que deseja sair do Cura?"
  6124. #~ msgctxt "@label"
  6125. #~ msgid "Language:"
  6126. #~ msgstr "Idioma:"
  6127. #~ msgctxt "@label"
  6128. #~ msgid "Ultimaker Cloud"
  6129. #~ msgstr "Ultimaker Cloud"
  6130. #~ msgctxt "@text"
  6131. #~ msgid "The next generation 3D printing workflow"
  6132. #~ msgstr "O fluxo de trabalho de impressão 3D da próxima geração"
  6133. #~ msgctxt "@text"
  6134. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  6135. #~ msgstr "- Envie trabalhos de impressão para impressoras Ultimaker fora da sua rede local"
  6136. #~ msgctxt "@text"
  6137. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  6138. #~ msgstr "- Guarde as definições do seu Ultimaker Cura na cloud para utilizar em qualquer lugar"
  6139. #~ msgctxt "@text"
  6140. #~ msgid "- Get exclusive access to print profiles from leading brands"
  6141. #~ msgstr "- Obtenha acesso exclusivo a perfis de impressão de marcas de referência"
  6142. # rever!
  6143. # contexto?!
  6144. # resolvido?
  6145. # por-extrusor
  6146. #~ msgctxt "@label"
  6147. #~ msgid "The value is resolved from per-extruder values "
  6148. #~ msgstr "O valor é calculado com base nos valores por-extrusor "
  6149. #~ msgctxt "@label"
  6150. #~ msgid "The next generation 3D printing workflow"
  6151. #~ msgstr "O fluxo de trabalho de impressão 3D da próxima geração"
  6152. #~ msgctxt "@text"
  6153. #~ msgid ""
  6154. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6155. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6156. #~ "- Get exclusive access to print profiles from leading brands"
  6157. #~ msgstr ""
  6158. #~ "- Envie trabalhos de impressão para impressoras Ultimaker fora da sua rede local\n"
  6159. #~ "- Guarde as definições do seu Ultimaker Cura na cloud para utilizar em qualquer lugar\n"
  6160. #~ "- Obtenha acesso exclusivo a perfis de impressão de marcas de referência"
  6161. #~ msgctxt "@title:window"
  6162. #~ msgid "About "
  6163. #~ msgstr "Acerca de "
  6164. #~ msgctxt "@info:button"
  6165. #~ msgid "Quit Cura"
  6166. #~ msgstr "Sair do Cura"
  6167. #~ msgctxt "@action:checkbox"
  6168. #~ msgid "Infill only"
  6169. #~ msgstr "Apenas enchimento"
  6170. #~ msgctxt "@info:tooltip"
  6171. #~ msgid "Change active post-processing scripts"
  6172. #~ msgstr "Alterar scripts de pós-processamento ativos"
  6173. #~ msgctxt "@label:listbox"
  6174. #~ msgid "Feedrate"
  6175. #~ msgstr "Velocidade de Alimentação"
  6176. #~ msgctxt "name"
  6177. #~ msgid "Machine Settings action"
  6178. #~ msgstr "Função Definições da Máquina"
  6179. #~ msgctxt "@info:title"
  6180. #~ msgid "New cloud printers found"
  6181. #~ msgstr "Encontradas novas impressoras na cloud"
  6182. #~ msgctxt "@info:message"
  6183. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  6184. #~ msgstr "Foram encontradas novas impressoras associadas à sua conta. Pode encontrá-las na sua lista de impressoras detetadas."
  6185. #~ msgctxt "@info:status"
  6186. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  6187. #~ msgstr "Quando a opção \"Wire Printing\" está ativa, o Cura não permite visualizar as camadas de uma forma precisa"
  6188. #~ msgctxt "@label"
  6189. #~ msgid "Pre-sliced file {0}"
  6190. #~ msgstr "Ficheiro pré-seccionado {0}"
  6191. #~ msgctxt "@label"
  6192. #~ msgid ""
  6193. #~ "This plugin contains a license.\n"
  6194. #~ "You need to accept this license to install this plugin.\n"
  6195. #~ "Do you agree with the terms below?"
  6196. #~ msgstr ""
  6197. #~ "Este plug-in contém uma licença.\n"
  6198. #~ "É necessário aceitar esta licença para instalar o plug-in.\n"
  6199. #~ "Concorda com os termos abaixo?"
  6200. #~ msgctxt "@action:button"
  6201. #~ msgid "Accept"
  6202. #~ msgstr "Aceitar"
  6203. #~ msgctxt "@action:button"
  6204. #~ msgid "Decline"
  6205. #~ msgstr "Rejeitar"
  6206. #~ msgctxt "@action:inmenu"
  6207. #~ msgid "Show All Settings"
  6208. #~ msgstr "Mostrar Todas as Definições"
  6209. #~ msgctxt "@title:window"
  6210. #~ msgid "Ultimaker Cura"
  6211. #~ msgstr "Ultimaker Cura"
  6212. #~ msgctxt "@title:window"
  6213. #~ msgid "About Cura"
  6214. #~ msgstr "Sobre o Cura"
  6215. # rever!
  6216. # flatten -ver contexto!
  6217. # nivelar?
  6218. #~ msgctxt "@item:inmenu"
  6219. #~ msgid "Flatten active settings"
  6220. #~ msgstr "Nivelar Definições Ativas"
  6221. #~ msgctxt "@info:status"
  6222. #~ msgid "Profile has been flattened & activated."
  6223. #~ msgstr "O perfil foi nivelado & ativado."
  6224. #~ msgctxt "X3g Writer Plugin Description"
  6225. #~ msgid "Writes X3g to files"
  6226. #~ msgstr "Grava X3g num ficheiro"
  6227. #~ msgctxt "X3g Writer File Description"
  6228. #~ msgid "X3g File"
  6229. #~ msgstr "Ficheiro X3g"
  6230. #~ msgctxt "X3G Writer File Description"
  6231. #~ msgid "X3G File"
  6232. #~ msgstr "Ficheiro X3G"
  6233. #~ msgctxt "@item:inmenu"
  6234. #~ msgid "Profile Assistant"
  6235. #~ msgstr "Assistente de perfis"
  6236. #~ msgctxt "@item:inlistbox"
  6237. #~ msgid "Profile Assistant"
  6238. #~ msgstr "Assistente de perfis"
  6239. #~ msgctxt "@action:button"
  6240. #~ msgid "Retry"
  6241. #~ msgstr "Tentar de Novo"
  6242. #~ msgctxt "@label:table_header"
  6243. #~ msgid "Print Core"
  6244. #~ msgstr "Print Core"
  6245. #~ msgctxt "@label"
  6246. #~ msgid "Don't support overlap with other models"
  6247. #~ msgstr "Retirar suportes na intercepção com outros modelos"
  6248. #~ msgctxt "@label"
  6249. #~ msgid "Modify settings for overlap with other models"
  6250. #~ msgstr "Alterar as definições dos objetos que intercepta"
  6251. #~ msgctxt "@label"
  6252. #~ msgid "Modify settings for infill of other models"
  6253. #~ msgstr "Modificar definições do enchimento de outros modelos"
  6254. #~ msgctxt "@action:ComboBox option"
  6255. #~ msgid "Update existing"
  6256. #~ msgstr "Atualizar existente"
  6257. #~ msgctxt "@label"
  6258. #~ msgid "Not supported"
  6259. #~ msgstr "Não suportado"
  6260. #~ msgctxt "@action:button"
  6261. #~ msgid "Previous"
  6262. #~ msgstr "Anterior"
  6263. #~ msgctxt "@label"
  6264. #~ msgid "Tip"
  6265. #~ msgstr "Sugestão"
  6266. #~ msgctxt "@label"
  6267. #~ msgid "Print experiment"
  6268. #~ msgstr "Experimento de impressão"
  6269. #~ msgctxt "@label"
  6270. #~ msgid "Checklist"
  6271. #~ msgstr "Lista de verificação"
  6272. #~ msgctxt "@label"
  6273. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  6274. #~ msgstr "Selecione quaisquer atualizações realizadas a esta Ultimaker 2."
  6275. #~ msgctxt "@label"
  6276. #~ msgid "Olsson Block"
  6277. #~ msgstr "Olsson Block"
  6278. #~ msgctxt "@window:text"
  6279. #~ msgid "Camera rendering: "
  6280. #~ msgstr "Composição de câmara: "
  6281. #~ msgctxt "@info:tooltip"
  6282. #~ msgid "Use multi build plate functionality"
  6283. #~ msgstr "Usar a funcionalidade de múltiplas bases de construção"
  6284. #~ msgctxt "@option:check"
  6285. #~ msgid "Use multi build plate functionality (restart required)"
  6286. #~ msgstr "Usar a funcionalidade de múltiplas bases de construção (é necessário reiniciar)"
  6287. #~ msgctxt "@label"
  6288. #~ msgid "Default profiles"
  6289. #~ msgstr "Perfis predefinidos"
  6290. #~ msgctxt "@label:textbox"
  6291. #~ msgid "search settings"
  6292. #~ msgstr "procurar definições"
  6293. #~ msgctxt "@label"
  6294. #~ msgid "Layer Height"
  6295. #~ msgstr "Espessura das Camadas"
  6296. #~ msgctxt "@tooltip"
  6297. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  6298. #~ msgstr "Este perfil de qualidade não se encontra disponível para a sua configuração atual de material e de nozzle. Altere-a para ativar este perfil de qualidade."
  6299. #~ msgctxt "@tooltip"
  6300. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  6301. #~ msgstr "De momento está ativo um perfil personalizado. Para poder ativar o controlo de qualidade, por favor selecione um dos perfis de qualidade predefinidos no modo Personalizado"
  6302. #~ msgctxt "@title:menu"
  6303. #~ msgid "&Build plate"
  6304. #~ msgstr "&Base de construção"
  6305. #~ msgctxt "@title:settings"
  6306. #~ msgid "&Profile"
  6307. #~ msgstr "&Perfil"
  6308. #~ msgctxt "@action:label"
  6309. #~ msgid "Build plate"
  6310. #~ msgstr "Base de construção"
  6311. #~ msgctxt "description"
  6312. #~ msgid "Dump the contents of all settings to a HTML file."
  6313. #~ msgstr "Descarregar o conteúdo de todas as definições para um ficheiro HTML."
  6314. #~ msgctxt "name"
  6315. #~ msgid "God Mode"
  6316. #~ msgstr "Modo God"
  6317. #~ msgctxt "description"
  6318. #~ msgid "Create a flattened quality changes profile."
  6319. #~ msgstr "Cria um perfil de alterações de qualidade aplanado."
  6320. #~ msgctxt "name"
  6321. #~ msgid "Profile Flattener"
  6322. #~ msgstr "Aplanador de perfis"
  6323. #~ msgctxt "description"
  6324. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  6325. #~ msgstr "Permite aos fabricantes de materiais criar novos materiais e perfis de qualidade utilizando uma IU de fácil acesso."
  6326. #~ msgctxt "name"
  6327. #~ msgid "Print Profile Assistant"
  6328. #~ msgstr "Assistente de perfis de impressão"
  6329. #~ msgctxt "@info:status"
  6330. #~ msgid "Connected over the network."
  6331. #~ msgstr "Ligado através da rede."
  6332. #~ msgctxt "@info:status"
  6333. #~ msgid "Connected over the network. Please approve the access request on the printer."
  6334. #~ msgstr "Ligado através da rede. Por favor aprove o pedido de acesso, na impressora."
  6335. #~ msgctxt "@info:status"
  6336. #~ msgid "Connected over the network. No access to control the printer."
  6337. #~ msgstr "Ligado através da rede. Sem autorização para controlar a impressora."
  6338. #~ msgctxt "@info:status"
  6339. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  6340. #~ msgstr "Acesso à impressora solicitado. Por favor aprove o pedido de acesso, na impressora"
  6341. #~ msgctxt "@info:title"
  6342. #~ msgid "Authentication status"
  6343. #~ msgstr "Estado da autenticação"
  6344. #~ msgctxt "@info:title"
  6345. #~ msgid "Authentication Status"
  6346. #~ msgstr "Estado da autenticação"
  6347. #~ msgctxt "@info:tooltip"
  6348. #~ msgid "Re-send the access request"
  6349. #~ msgstr "Reenviar a solicitação de acesso"
  6350. # rever!
  6351. # aceite?
  6352. #~ msgctxt "@info:status"
  6353. #~ msgid "Access to the printer accepted"
  6354. #~ msgstr "Acesso à impressora confirmado"
  6355. #~ msgctxt "@info:status"
  6356. #~ msgid "No access to print with this printer. Unable to send print job."
  6357. #~ msgstr "Sem autorização para imprimir com esta impressora. Não foi possível enviar o trabalho de impressão."
  6358. #~ msgctxt "@action:button"
  6359. #~ msgid "Request Access"
  6360. #~ msgstr "Solicitar Acesso"
  6361. #~ msgctxt "@info:tooltip"
  6362. #~ msgid "Send access request to the printer"
  6363. #~ msgstr "Enviar pedido de acesso para a impressora"
  6364. #~ msgctxt "@label"
  6365. #~ msgid "Unable to start a new print job."
  6366. #~ msgstr "Não é possível iniciar um novo trabalho de impressão."
  6367. #~ msgctxt "@label"
  6368. #~ 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."
  6369. #~ msgstr "Existe um problema com a configuração da sua Ultimaker, o qual impede o inicio da impressão. Por favor resolva este problema antes de continuar."
  6370. # rever!
  6371. # ver contexto! pode querer dizer
  6372. # Configuração incompatível
  6373. #~ msgctxt "@window:title"
  6374. #~ msgid "Mismatched configuration"
  6375. #~ msgstr "Divergência de Configuração"
  6376. #~ msgctxt "@label"
  6377. #~ msgid "Are you sure you wish to print with the selected configuration?"
  6378. #~ msgstr "Tem a certeza de que deseja imprimir com a configuração selecionada?"
  6379. #~ msgctxt "@label"
  6380. #~ 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."
  6381. #~ msgstr "Existe uma divergência entre a configuração ou calibração da impressora e o Cura. Para se obter os melhores resultados, o seccionamento (no Cura) deve ser sempre feito para os núcleos de impressão e para os materiais que estão introduzidos na impressora."
  6382. #~ msgctxt "@info:status"
  6383. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  6384. #~ msgstr "O envio de novos trabalhos está (temporariamente) bloqueado; o trabalho de impressão anterior ainda está a ser enviado."
  6385. #~ msgctxt "@info:status"
  6386. #~ msgid "Sending data to printer"
  6387. #~ msgstr "A enviar dados para a impressora"
  6388. #~ msgctxt "@info:title"
  6389. #~ msgid "Sending Data"
  6390. #~ msgstr "A Enviar Dados"
  6391. #~ msgctxt "@info:status"
  6392. #~ msgid "No Printcore loaded in slot {slot_number}"
  6393. #~ msgstr "Nenhum PrintCore instalado na ranhura {slot_number}"
  6394. #~ msgctxt "@info:status"
  6395. #~ msgid "No material loaded in slot {slot_number}"
  6396. #~ msgstr "Nenhum material carregado na ranhura {slot_number}"
  6397. #~ msgctxt "@label"
  6398. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  6399. #~ msgstr "PrintCore diferente (Cura: {cura_printcore_name}, Impressora: {remote_printcore_name}) selecionado para o extrusor {extruder_id}"
  6400. #~ msgctxt "@label"
  6401. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6402. #~ msgstr "Material diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  6403. #~ msgctxt "@window:title"
  6404. #~ msgid "Sync with your printer"
  6405. #~ msgstr "Sincronizar com a impressora"
  6406. #~ msgctxt "@label"
  6407. #~ msgid "Would you like to use your current printer configuration in Cura?"
  6408. #~ msgstr "Deseja utilizar a configuração atual da impressora no Cura?"
  6409. #~ msgctxt "@label"
  6410. #~ 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."
  6411. #~ msgstr "Os núcleos de impressão e/ou materiais na sua impressora são diferentes dos definidos no seu projeto atual. Para se obter os melhores resultados, o seccionamento (no Cura) deve ser sempre feito para os núcleos de impressão e para os materiais que estão introduzidos na impressora."
  6412. # rever!
  6413. # contexto
  6414. #~ msgctxt "@action:button"
  6415. #~ msgid "View in Monitor"
  6416. #~ msgstr "Ver no Monitor"
  6417. #~ msgctxt "@info:status"
  6418. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  6419. #~ msgstr "A impressora {printer_name} terminou a impressão de \"{job_name}\"."
  6420. #~ msgctxt "@info:status"
  6421. #~ msgid "The print job '{job_name}' was finished."
  6422. #~ msgstr "O trabalho de impressão '{job_name}' terminou."
  6423. # rever!
  6424. # Concluída?
  6425. #~ msgctxt "@info:status"
  6426. #~ msgid "Print finished"
  6427. #~ msgstr "Impressão terminada"
  6428. #~ msgctxt "@label:material"
  6429. #~ msgid "Empty"
  6430. #~ msgstr "Vazio"
  6431. #~ msgctxt "@label:material"
  6432. #~ msgid "Unknown"
  6433. #~ msgstr "Desconhecido"
  6434. #~ msgctxt "@info:title"
  6435. #~ msgid "Cloud error"
  6436. #~ msgstr "Erro da cloud"
  6437. #~ msgctxt "@info:status"
  6438. #~ msgid "Could not export print job."
  6439. #~ msgstr "Não foi possível exportar o trabalho de impressão."
  6440. #~ msgctxt "@info:description"
  6441. #~ msgid "There was an error connecting to the cloud."
  6442. #~ msgstr "Ocorreu um erro na ligação à cloud."
  6443. #~ msgctxt "@info:status"
  6444. #~ msgid "Uploading via Ultimaker Cloud"
  6445. #~ msgstr "A carregar através da cloud do Ultimaker"
  6446. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  6447. #~ msgid "Connect to Ultimaker Cloud"
  6448. #~ msgstr "Ligar à cloud do Ultimaker"
  6449. #~ msgctxt "@action"
  6450. #~ msgid "Don't ask me again for this printer."
  6451. #~ msgstr "Não perguntar novamente sobre esta impressora."
  6452. #~ msgctxt "@info:status"
  6453. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  6454. #~ msgstr "Agora pode enviar e monitorizar trabalhos de impressão a partir de qualquer lugar através da sua conta Ultimaker."
  6455. #~ msgctxt "@info:status"
  6456. #~ msgid "Connected!"
  6457. #~ msgstr "Ligada!"
  6458. #~ msgctxt "@action"
  6459. #~ msgid "Review your connection"
  6460. #~ msgstr "Reveja a sua ligação"
  6461. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  6462. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6463. #~ msgstr "A máquina definida no perfil <filename>{0}</filename> ({1}) não corresponde à sua máquina atual ({2}), não foi possível importá-la."
  6464. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6465. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  6466. #~ msgstr "Falha ao importar perfil de <filename>{0}</filename>:"
  6467. #~ msgctxt "@window:title"
  6468. #~ msgid "Existing Connection"
  6469. #~ msgstr "Ligação Existente"
  6470. #~ msgctxt "@message:text"
  6471. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  6472. #~ msgstr "Esta impressora/grupo já foi adicionada ao Cura. Por favor selecione outra impressora/grupo."
  6473. #~ msgctxt "@label"
  6474. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6475. #~ msgstr "Introduza o endereço IP ou o nome de anfitrião da sua impressora na rede."
  6476. #~ msgctxt "@info:tooltip"
  6477. #~ msgid "Connect to a printer"
  6478. #~ msgstr "Ligar a uma impressora"
  6479. #~ msgctxt "@title"
  6480. #~ msgid "Cura Settings Guide"
  6481. #~ msgstr "Guia de definições do Cura"
  6482. #~ msgctxt "@info:tooltip"
  6483. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  6484. #~ msgstr "Fazer zoom em direção ao rato não é suportado na perspetiva ortogonal."
  6485. #~ msgid "Orthogonal"
  6486. #~ msgstr "Ortogonal"
  6487. #~ msgctxt "description"
  6488. #~ msgid "Manages network connections to Ultimaker 3 printers."
  6489. #~ msgstr "Gere as ligações de rede com as impressoras Ultimaker 3."
  6490. #~ msgctxt "name"
  6491. #~ msgid "UM3 Network Connection"
  6492. #~ msgstr "Ligação de rede UM3"
  6493. #~ msgctxt "description"
  6494. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  6495. #~ msgstr "Fornece informações e explicações adicionais sobre as definições do Cura, com imagens e animações."
  6496. #~ msgctxt "name"
  6497. #~ msgid "Settings Guide"
  6498. #~ msgstr "Guia de definições"
  6499. #~ msgctxt "@item:inmenu"
  6500. #~ msgid "Cura Settings Guide"
  6501. #~ msgstr "Guia de definições do Cura"
  6502. #~ msgctxt "@info:generic"
  6503. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  6504. #~ msgstr "As definições foram alteradas de forma a corresponder aos extrusores disponíveis de momento: [%s]"
  6505. #~ msgctxt "@title:groupbox"
  6506. #~ msgid "User description"
  6507. #~ msgstr "Descrição do utilizador"
  6508. #~ msgctxt "@info"
  6509. #~ msgid "These options are not available because you are monitoring a cloud printer."
  6510. #~ msgstr "Estas opções não estão disponíveis pois está a monitorizar uma impressora na cloud."
  6511. #~ msgctxt "@label link to connect manager"
  6512. #~ msgid "Go to Cura Connect"
  6513. #~ msgstr "Ir para o Cura Connect"
  6514. #~ msgctxt "@info"
  6515. #~ msgid "All jobs are printed."
  6516. #~ msgstr "Todos os trabalhos foram impressos."
  6517. #~ msgctxt "@label link to connect manager"
  6518. #~ msgid "View print history"
  6519. #~ msgstr "Ver histórico de impressão"
  6520. #~ msgctxt "@label"
  6521. #~ msgid ""
  6522. #~ "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"
  6523. #~ "\n"
  6524. #~ "Select your printer from the list below:"
  6525. #~ msgstr ""
  6526. #~ "Para imprimir diretamente para a sua impressora através da rede, certifique-se de que a sua impressora está ligada à rede por meio de um cabo de rede ou através de ligação à rede Wi-Fi. Se não ligar o Cura por rede à impressora, poderá ainda assim utilizar uma unidade USB para transferir ficheiros g-code para a impressora.\n"
  6527. #~ "\n"
  6528. #~ "Selecione a sua impressora na lista em baixo:"
  6529. #~ msgctxt "@info"
  6530. #~ msgid ""
  6531. #~ "Please make sure your printer has a connection:\n"
  6532. #~ "- Check if the printer is turned on.\n"
  6533. #~ "- Check if the printer is connected to the network."
  6534. #~ msgstr ""
  6535. #~ "Certifique-se de que é possível estabelecer ligação com a impressora:\n"
  6536. #~ "- Verifique se a impressora está ligada.\n"
  6537. #~ "- Verifique se a impressora está ligada à rede."
  6538. #~ msgctxt "@option:check"
  6539. #~ msgid "See only current build plate"
  6540. #~ msgstr "Ver só a base de construção ativa"
  6541. #~ msgctxt "@action:button"
  6542. #~ msgid "Arrange to all build plates"
  6543. #~ msgstr "Dispor em todas as bases"
  6544. #~ msgctxt "@action:button"
  6545. #~ msgid "Arrange current build plate"
  6546. #~ msgstr "Dispor só na base ativa"
  6547. #~ msgctxt "description"
  6548. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  6549. #~ msgstr "Permite guardar o resultado do seccionamento como um ficheiro X3G, para poder ser usado com impressoras 3D que usam este formato (Kalyan, Makerbot e outras impressoras baseadas no Sailfish)."
  6550. #~ msgctxt "name"
  6551. #~ msgid "X3GWriter"
  6552. #~ msgstr "X3GWriter"
  6553. #~ msgctxt "description"
  6554. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  6555. #~ msgstr "Lê ficheiros SVG como caminhos de ferramenta para efeitos de depuração dos movimentos da impressora."
  6556. #~ msgctxt "name"
  6557. #~ msgid "SVG Toolpath Reader"
  6558. #~ msgstr "Leitor de caminhos de ferramenta SVG"
  6559. #~ msgctxt "@item:inmenu"
  6560. #~ msgid "Changelog"
  6561. #~ msgstr "Lista das Alterações"
  6562. #~ msgctxt "@item:inmenu"
  6563. #~ msgid "Show Changelog"
  6564. #~ msgstr "Mostrar Lista das Alterações de cada Versão"
  6565. #~ msgctxt "@info:status"
  6566. #~ msgid "Sending data to remote cluster"
  6567. #~ msgstr "A enviar dados para o cluster remoto"
  6568. #~ msgctxt "@info:status"
  6569. #~ msgid "Connect to Ultimaker Cloud"
  6570. #~ msgstr "Ligar à Ultimaker Cloud"
  6571. #~ msgctxt "@info"
  6572. #~ msgid "Cura collects anonymized usage statistics."
  6573. #~ msgstr "O Cura recolhe, de forma anónima, estatísticas sobre as opções usadas."
  6574. #~ msgctxt "@info:title"
  6575. #~ msgid "Collecting Data"
  6576. #~ msgstr "A Recolher Dados"
  6577. #~ msgctxt "@action:button"
  6578. #~ msgid "More info"
  6579. #~ msgstr "Mais informação"
  6580. #~ msgctxt "@action:tooltip"
  6581. #~ msgid "See more information on what data Cura sends."
  6582. #~ msgstr "Saiba mais sobre que informação o Cura envia."
  6583. #~ msgctxt "@action:button"
  6584. #~ msgid "Allow"
  6585. #~ msgstr "Permitir"
  6586. #~ msgctxt "@action:tooltip"
  6587. #~ 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."
  6588. #~ msgstr "Permitir que o Cura envie de forma anónima, estatísticas sobre as opções usadas, para nos ajudar a estabelecer as prioridades para os futuros desenvolvimentos do Cura. São enviadas apenas algumas das preferências e definições usadas, a versão do Cura e um valor \"hash\" dos modelos que está a seccionar."
  6589. #~ msgctxt "@item:inmenu"
  6590. #~ msgid "Evaluation"
  6591. #~ msgstr "Avaliação"
  6592. #~ msgctxt "@info:title"
  6593. #~ msgid "Network enabled printers"
  6594. #~ msgstr "Impressoras em rede"
  6595. #~ msgctxt "@info:title"
  6596. #~ msgid "Local printers"
  6597. #~ msgstr "Impressoras locais"
  6598. #~ msgctxt "@info:backup_failed"
  6599. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  6600. #~ msgstr "Tentou restaurar um Cura backup que não corresponde á sua versão actual."
  6601. #~ msgctxt "@title"
  6602. #~ msgid "Machine Settings"
  6603. #~ msgstr "Definições da máquina"
  6604. #~ msgctxt "@label"
  6605. #~ msgid "Printer Settings"
  6606. #~ msgstr "Definições da Impressora"
  6607. #~ msgctxt "@option:check"
  6608. #~ msgid "Origin at center"
  6609. #~ msgstr "Origem no centro"
  6610. #~ msgctxt "@option:check"
  6611. #~ msgid "Heated bed"
  6612. #~ msgstr "Base aquecida"
  6613. #~ msgctxt "@label"
  6614. #~ msgid "Printhead Settings"
  6615. #~ msgstr "Definições Cabeça de Impressão"
  6616. #~ msgctxt "@tooltip"
  6617. #~ 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\"."
  6618. #~ msgstr "Distância desde a parte esquerda da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"."
  6619. #~ msgctxt "@tooltip"
  6620. #~ 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\"."
  6621. #~ msgstr "Distância desde a parte frontal da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"."
  6622. #~ msgctxt "@tooltip"
  6623. #~ 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\"."
  6624. #~ msgstr "Distância desde a parte direita da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"."
  6625. #~ msgctxt "@tooltip"
  6626. #~ 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\"."
  6627. #~ msgstr "Distância desde a parte posterior da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"."
  6628. #~ msgctxt "@label"
  6629. #~ msgid "Gantry height"
  6630. #~ msgstr "Altura do pórtico"
  6631. #~ msgctxt "@tooltip"
  6632. #~ 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\"."
  6633. #~ msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y). Utilizado para impedir colisões entre as impressões anteriores e o pórtico ao imprimir \"Individualmente\"."
  6634. #~ msgctxt "@label"
  6635. #~ msgid "Start G-code"
  6636. #~ msgstr "G-code Inicial"
  6637. #~ msgctxt "@tooltip"
  6638. #~ msgid "G-code commands to be executed at the very start."
  6639. #~ msgstr "Comandos G-code a serem executados no início."
  6640. #~ msgctxt "@label"
  6641. #~ msgid "End G-code"
  6642. #~ msgstr "G-code Final"
  6643. #~ msgctxt "@tooltip"
  6644. #~ msgid "G-code commands to be executed at the very end."
  6645. #~ msgstr "Comandos G-code a serem executados no final."
  6646. #~ msgctxt "@label"
  6647. #~ msgid "Nozzle Settings"
  6648. #~ msgstr "Definições do Nozzle"
  6649. #~ msgctxt "@tooltip"
  6650. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  6651. #~ msgstr "O diâmetro nominal do filamento suportado pela impressora. O diâmetro exato será substituído pelo material e/ou perfil."
  6652. #~ msgctxt "@label"
  6653. #~ msgid "Extruder Start G-code"
  6654. #~ msgstr "G-code Inicial do Extrusor"
  6655. #~ msgctxt "@label"
  6656. #~ msgid "Extruder End G-code"
  6657. #~ msgstr "G-code Final do Extrusor"
  6658. #~ msgctxt "@label"
  6659. #~ msgid "Changelog"
  6660. #~ msgstr "Lista das Alterações"
  6661. #~ msgctxt "@title:window"
  6662. #~ msgid "User Agreement"
  6663. #~ msgstr "Contrato de Utilizador"
  6664. #~ msgctxt "@alabel"
  6665. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6666. #~ msgstr "Introduza o endereço IP ou o hostname da sua impressora na rede."
  6667. #~ msgctxt "@info"
  6668. #~ msgid "Please select a network connected printer to monitor."
  6669. #~ msgstr "Selecione uma impressora ligada à rede para monitorizar."
  6670. #~ msgctxt "@info"
  6671. #~ msgid "Please connect your Ultimaker printer to your local network."
  6672. #~ msgstr "Ligue a sua impressora Ultimaker à sua rede local."
  6673. #~ msgctxt "@text:window"
  6674. #~ 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."
  6675. #~ msgstr "O Cura envia informação anónima para a Ultimaker, para nos ajudar a aperfeiçoar a qualidade da impressão e a melhorar a experiência do utilizador. De seguida pode ver um exemplo com toda a informação enviada."
  6676. #~ msgctxt "@text:window"
  6677. #~ msgid "I don't want to send this data"
  6678. #~ msgstr "Não pretendo enviar estes dados"
  6679. #~ msgctxt "@text:window"
  6680. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  6681. #~ msgstr "Permita o envio destes dados ao Ultimaker e ajude-nos a melhorar o Cura"
  6682. #~ msgctxt "@label"
  6683. #~ msgid "No print selected"
  6684. #~ msgstr "Nenhuma impressão selecionada"
  6685. #~ msgctxt "@info:tooltip"
  6686. #~ 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."
  6687. #~ msgstr "Por predefinição, os pixels brancos representam os pontos altos do objecto e os pixels pretos representam os pontos baixos do objecto. Altere esta opção para inverter o comportamento de forma que os pixels pretos representem os pontos altos do objecto e os pixels brancos representem os pontos baixos do objecto."
  6688. #~ msgctxt "@title"
  6689. #~ msgid "Select Printer Upgrades"
  6690. #~ msgstr "Selecionar Atualizações da Impressora"
  6691. # rever!
  6692. # mid air? no ar? no meio do ar?
  6693. # sagging? deformar?
  6694. # Isto irá construir estruturas de suporte debaixo do modelo para impedir a deformação de partes suspensas do modelo ou que a impressão seja feita no ar.
  6695. # a utilizar? usado?
  6696. #~ msgctxt "@label"
  6697. #~ 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."
  6698. #~ msgstr "Selecionar qual o extrusor usado para imprimir os suportes. Isto irá construir estruturas de suporte por debaixo do modelo para impedir que as partes suspensas do modelo se deformem ou que sejam impressas no ar."
  6699. #~ msgctxt "@tooltip"
  6700. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  6701. #~ msgstr "Este perfil de qualidade não se encontra disponível para a sua configuração atual de material e de bocal. Altere-a para ativar este perfil de qualidade"
  6702. #~ msgctxt "@label shown when we load a Gcode file"
  6703. #~ msgid "Print setup disabled. G code file can not be modified."
  6704. #~ msgstr "Configuração de impressão desativada. O ficheiro G-code não pode ser modificado."
  6705. #~ msgctxt "@label"
  6706. #~ msgid "See the material compatibility chart"
  6707. #~ msgstr "Ver o gráfico de compatibilidade de materiais"
  6708. #~ msgctxt "@label"
  6709. #~ msgid "View types"
  6710. #~ msgstr "Ver tipos"
  6711. #~ msgctxt "@label"
  6712. #~ msgid "Hi "
  6713. #~ msgstr "Olá "
  6714. #~ msgctxt "@text"
  6715. #~ msgid ""
  6716. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6717. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6718. #~ "- Get exclusive access to material profiles from leading brands"
  6719. #~ msgstr ""
  6720. #~ "- Envie trabalhos de impressão para impressoras Ultimaker fora da sua rede local\n"
  6721. #~ "- Guarde as definições do seu Ultimaker Cura na cloud para utilizar em qualquer lugar\n"
  6722. #~ "- Obtenha acesso exclusivo a perfis de materiais de marcas de referência"
  6723. #~ msgctxt "@label:PrintjobStatus"
  6724. #~ msgid "Unable to Slice"
  6725. #~ msgstr "Não é possível Seccionar"
  6726. #~ msgctxt "@label"
  6727. #~ msgid "Time specification"
  6728. #~ msgstr "Especificação de tempo"
  6729. #~ msgctxt "@label"
  6730. #~ msgid "Material specification"
  6731. #~ msgstr "Especificação do material"
  6732. #~ msgctxt "@title:tab"
  6733. #~ msgid "Add a printer to Cura"
  6734. #~ msgstr "Adicionar uma impressora ao Cura"
  6735. #~ msgctxt "@title:tab"
  6736. #~ msgid ""
  6737. #~ "Select the printer you want to use from the list below.\n"
  6738. #~ "\n"
  6739. #~ "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."
  6740. #~ msgstr ""
  6741. #~ "Selecione a impressora que deseja utilizar da lista abaixo.\n"
  6742. #~ "\n"
  6743. #~ "Se a sua impressora não constar da lista, utilize a opção \"Impressora FFF personalizada\" da categoria \"Personalizado\" e ajuste as definições para corresponder à sua impressora na próxima caixa de diálogo."
  6744. #~ msgctxt "@label"
  6745. #~ msgid "Printer Name"
  6746. #~ msgstr "Nome da impressora"
  6747. #~ msgctxt "@action:button"
  6748. #~ msgid "Add Printer"
  6749. #~ msgstr "Adicionar Impressora"
  6750. #~ msgid "Modify G-Code"
  6751. #~ msgstr "Modificar G-code"
  6752. # rever!
  6753. # models fit the
  6754. # dentro do?
  6755. # contido pelo
  6756. # se adapta?
  6757. # cabem no...?
  6758. #~ msgctxt "@info:status"
  6759. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  6760. #~ msgstr "Sem conteúdo para seccionar porque nenhum dos modelos está dentro do volume de construção. Por favor redimensione, mova ou rode os modelos para os adaptar ao volume de construção."
  6761. #~ msgctxt "@info:status"
  6762. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  6763. #~ msgstr "O material selecionado é incompatível com a máquina ou a configuração selecionada."
  6764. #~ msgctxt "@info:title"
  6765. #~ msgid "Incompatible Material"
  6766. #~ msgstr "Material incompatível"
  6767. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6768. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6769. #~ msgstr "Falha ao importar perfil de <filename>{0}</filename>: <message>{1}</message>"
  6770. #~ msgctxt "@title"
  6771. #~ msgid "Toolbox"
  6772. #~ msgstr "Toolbox"
  6773. #~ msgctxt "@label"
  6774. #~ msgid "Not available"
  6775. #~ msgstr "Não disponível"
  6776. #~ msgctxt "@label"
  6777. #~ msgid "Unreachable"
  6778. #~ msgstr "Inacessível"
  6779. #~ msgctxt "@label"
  6780. #~ msgid "Available"
  6781. #~ msgstr "Disponível"
  6782. #~ msgctxt "@label:status"
  6783. #~ msgid "Preparing"
  6784. #~ msgstr "A preparar"
  6785. #~ msgctxt "@label:status"
  6786. #~ msgid "Pausing"
  6787. #~ msgstr "A colocar em pausa"
  6788. #~ msgctxt "@label:status"
  6789. #~ msgid "Resuming"
  6790. #~ msgstr "A Recomeçar"
  6791. #~ msgctxt "@label"
  6792. #~ msgid "Waiting for: Unavailable printer"
  6793. #~ msgstr "A aguardar: Impressora indisponível"
  6794. #~ msgctxt "@label"
  6795. #~ msgid "Waiting for: First available"
  6796. #~ msgstr "A aguardar: Primeira disponível"
  6797. #~ msgctxt "@label"
  6798. #~ msgid "Waiting for: "
  6799. #~ msgstr "A aguardar: "
  6800. #~ msgctxt "@label"
  6801. #~ msgid "Configuration change"
  6802. #~ msgstr "Configuração alterada"
  6803. #~ msgctxt "@label"
  6804. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6805. #~ msgstr "A impressora atribuída %1 requer as seguintes alterações de configuração:"
  6806. #~ msgctxt "@label"
  6807. #~ msgid "Override"
  6808. #~ msgstr "Ignorar"
  6809. #~ msgctxt "@label"
  6810. #~ 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?"
  6811. #~ msgstr "Iniciar um trabalho de impressão com uma configuração incompatível pode danificar a impressora 3D. Tem a certeza de que pretende ignorar a configuração e imprimir %1?"
  6812. #~ msgctxt "@window:title"
  6813. #~ msgid "Override configuration configuration and start print"
  6814. #~ msgstr "Ignorar configuração e iniciar impressão"
  6815. #~ msgctxt "@label link to connect manager"
  6816. #~ msgid "Manage queue"
  6817. #~ msgstr "Gerir fila"
  6818. #~ msgctxt "@label"
  6819. #~ msgid "Printing"
  6820. #~ msgstr "A Imprimir"
  6821. #~ msgctxt "@label link to connect manager"
  6822. #~ msgid "Manage printers"
  6823. #~ msgstr "Gerir impressoras"
  6824. #~ msgctxt "@action:button"
  6825. #~ msgid "Activate Configuration"
  6826. #~ msgstr "Ativar Configuração"
  6827. #~ msgctxt "@info:tooltip"
  6828. #~ msgid "Load the configuration of the printer into Cura"
  6829. #~ msgstr "Importar a configuração da impressora para o Cura"
  6830. # rever!
  6831. # Mostrar...?
  6832. # Ver...?
  6833. #~ msgctxt "@label"
  6834. #~ msgid "Show Travels"
  6835. #~ msgstr "Deslocações"
  6836. #~ msgctxt "@label"
  6837. #~ msgid "Show Helpers"
  6838. #~ msgstr "Auxiliares"
  6839. #~ msgctxt "@label"
  6840. #~ msgid "Show Shell"
  6841. #~ msgstr "Invólucro"
  6842. #~ msgctxt "@label"
  6843. #~ msgid "Show Infill"
  6844. #~ msgstr "Enchimento"
  6845. #~ msgctxt "@text:window"
  6846. #~ msgid "I don't want to send these data"
  6847. #~ msgstr "Eu não quero enviar estes dados"
  6848. #~ msgctxt "@text:window"
  6849. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  6850. #~ msgstr "Permitir enviar estes dados para a Ultimaker para melhorar o Cura"
  6851. #~ msgctxt "@label"
  6852. #~ msgid "Printer type:"
  6853. #~ msgstr "Tipo de impressora:"
  6854. #~ msgctxt "@label"
  6855. #~ msgid "Connection:"
  6856. #~ msgstr "Ligação:"
  6857. #~ msgctxt "@label"
  6858. #~ msgid "State:"
  6859. #~ msgstr "Estado:"
  6860. #~ msgctxt "@label:MonitorStatus"
  6861. #~ msgid "Waiting for a printjob"
  6862. #~ msgstr "A aguardar por um trabalho de impressão"
  6863. #~ msgctxt "@label:MonitorStatus"
  6864. #~ msgid "Waiting for someone to clear the build plate"
  6865. #~ msgstr "A aguardar que alguém limpe a base de construção"
  6866. #~ msgctxt "@label:MonitorStatus"
  6867. #~ msgid "Aborting print..."
  6868. #~ msgstr "A cancelar impressão..."
  6869. #~ msgctxt "@label"
  6870. #~ msgid "Protected profiles"
  6871. #~ msgstr "Perfis protegidos"
  6872. #~ msgctxt "@label"
  6873. #~ msgid "Printer Name:"
  6874. #~ msgstr "Nome da Impressora:"
  6875. #~ msgctxt "@label"
  6876. #~ msgid "Profile:"
  6877. #~ msgstr "Perfil:"
  6878. #~ msgctxt "@label:textbox"
  6879. #~ msgid "Search..."
  6880. #~ msgstr "Procurar..."
  6881. #~ msgctxt "@action:inmenu"
  6882. #~ msgid "Collapse All"
  6883. #~ msgstr "Esconder Tudo"
  6884. #~ msgctxt "@action:inmenu"
  6885. #~ msgid "Expand All"
  6886. #~ msgstr "Mostrar Tudo"
  6887. #~ msgctxt "@label:header configurations"
  6888. #~ msgid "Available configurations"
  6889. #~ msgstr "Configurações disponíveis"
  6890. #~ msgctxt "@label:extruder label"
  6891. #~ msgid "Extruder"
  6892. #~ msgstr "Extrusor"
  6893. #~ msgctxt "@label:extruder label"
  6894. #~ msgid "Yes"
  6895. #~ msgstr "Sim"
  6896. #~ msgctxt "@label:extruder label"
  6897. #~ msgid "No"
  6898. #~ msgstr "Não"
  6899. # rever!
  6900. # Configuração da Impressão?
  6901. #~ msgctxt "@label:listbox"
  6902. #~ msgid "Print Setup"
  6903. #~ msgstr "Configurar a Impressão"
  6904. #~ msgctxt "@label:listbox"
  6905. #~ msgid ""
  6906. #~ "Print Setup disabled\n"
  6907. #~ "G-code files cannot be modified"
  6908. #~ msgstr ""
  6909. #~ "Configuração da Impressão desativada\n"
  6910. #~ "Os ficheiros G-code não podem ser modificados"
  6911. #~ msgctxt "@label Hours and minutes"
  6912. #~ msgid "00h 00min"
  6913. #~ msgstr "00h00min"
  6914. #~ msgctxt "@tooltip"
  6915. #~ msgid "Time specification"
  6916. #~ msgstr "Especificação de tempo"
  6917. #~ msgctxt "@label"
  6918. #~ msgid "Cost specification"
  6919. #~ msgstr "Especificação de custos"
  6920. #~ msgctxt "@label"
  6921. #~ msgid "Total:"
  6922. #~ msgstr "Total:"
  6923. #~ msgctxt "@tooltip"
  6924. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  6925. #~ msgstr "<b>Configuração de Impressão Recomendada</b><br/><br/>Imprimir com as definições recomendadas para a Impressora, Material e Qualidade selecionadas."
  6926. #~ msgctxt "@tooltip"
  6927. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  6928. #~ msgstr "<b>Configuração de Impressão Personalizada</b><br/><br/>Imprimir com um controlo detalhado de todas as definições específicas de cada uma das etapas do processo de seccionamento."
  6929. #~ msgctxt "@action:inmenu menubar:help"
  6930. #~ msgid "Show Engine &Log..."
  6931. #~ msgstr "Mostrar &registo de motor..."
  6932. #~ msgctxt "@action:menu"
  6933. #~ msgid "Browse packages..."
  6934. #~ msgstr "Procurar pacotes..."
  6935. #~ msgctxt "@action:inmenu menubar:view"
  6936. #~ msgid "Expand/Collapse Sidebar"
  6937. #~ msgstr "Mostrar/Esconder Barra Lateral"
  6938. #~ msgctxt "@label:PrintjobStatus"
  6939. #~ msgid "Please load a 3D model"
  6940. #~ msgstr "Por favor abra um Modelo 3D ou Projeto"
  6941. # rever!
  6942. # Pronto para?
  6943. # Preparado para?
  6944. #~ msgctxt "@label:PrintjobStatus"
  6945. #~ msgid "Ready to slice"
  6946. #~ msgstr "Disponível para seccionar"
  6947. # rever!
  6948. # Pronto para?
  6949. # Preparado para?
  6950. # Disponível para?
  6951. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  6952. #~ msgid "Ready to %1"
  6953. #~ msgstr "Pronto para %1"
  6954. #~ msgctxt "@label:PrintjobStatus"
  6955. #~ msgid "Slicing unavailable"
  6956. #~ msgstr "Seccionamento indisponível"
  6957. #~ msgctxt "@info:tooltip"
  6958. #~ msgid "Slice current printjob"
  6959. #~ msgstr "Seccionar o trabalho de impressão atual"
  6960. #~ msgctxt "@info:tooltip"
  6961. #~ msgid "Cancel slicing process"
  6962. #~ msgstr "Cancelar o processo de seccionamento"
  6963. #~ msgctxt "@label:Printjob"
  6964. #~ msgid "Prepare"
  6965. #~ msgstr "Preparar"
  6966. #~ msgctxt "@label:Printjob"
  6967. #~ msgid "Cancel"
  6968. #~ msgstr "Cancelar"
  6969. #~ msgctxt "@info:tooltip"
  6970. #~ msgid "Select the active output device"
  6971. #~ msgstr "Selecione o dispositivo de saída"
  6972. #~ msgctxt "@title:menu"
  6973. #~ msgid "&View"
  6974. #~ msgstr "&Visualizar"
  6975. #~ msgctxt "@title:menu"
  6976. #~ msgid "&Settings"
  6977. #~ msgstr "&Definições"
  6978. #~ msgctxt "@title:menu menubar:toplevel"
  6979. #~ msgid "&Toolbox"
  6980. #~ msgstr "&Toolbox"
  6981. #~ msgctxt "@action:button"
  6982. #~ msgid "Open File"
  6983. #~ msgstr "Abrir ficheiro"
  6984. #~ msgctxt "@tooltip"
  6985. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6986. #~ msgstr "Este perfil de qualidade não está disponível para a sua atual configuração de nozzle e material. Por favor altere-a para poder ativar este perfil de qualidade"
  6987. #~ msgctxt "@label"
  6988. #~ msgid "Print Speed"
  6989. #~ msgstr "Velocidade Impressão"
  6990. #~ msgctxt "@label"
  6991. #~ msgid "Slower"
  6992. #~ msgstr "Mais Lenta"
  6993. #~ msgctxt "@label"
  6994. #~ msgid "Faster"
  6995. #~ msgstr "Mais Rápida"
  6996. #~ msgctxt "@label"
  6997. #~ msgid "Enable gradual"
  6998. #~ msgstr "Enchimento Gradual"
  6999. #~ msgctxt "@label"
  7000. #~ msgid "Generate Support"
  7001. #~ msgstr "Criar Suportes"
  7002. #~ msgctxt "@label"
  7003. #~ msgid "Build Plate Adhesion"
  7004. #~ msgstr "Aderência à Base"
  7005. #~ msgctxt "@label"
  7006. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  7007. #~ msgstr "Precisa de ajuda para melhorar as suas impressões?<br>Por favor leia os <a href='%1'>Guias Ultimaker de Resolução de Problemas</a>"
  7008. # rever!
  7009. # contexto?!
  7010. # Relatório?
  7011. # Registo de motor?
  7012. # use english string?
  7013. #~ msgctxt "@title:window"
  7014. #~ msgid "Engine Log"
  7015. #~ msgstr "Engine Log"
  7016. #~ msgctxt "@label"
  7017. #~ msgid "Printer type"
  7018. #~ msgstr "Tipo de impressora"
  7019. #~ msgctxt "@label"
  7020. #~ msgid "Use glue with this material combination"
  7021. #~ msgstr "Utilizar cola com esta combinação de materiais"
  7022. #~ msgctxt "@label"
  7023. #~ msgid "Check compatibility"
  7024. #~ msgstr "Compatibilidade entre Materiais"
  7025. #~ msgctxt "@tooltip"
  7026. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  7027. #~ msgstr "Clique para verificar a compatibilidade entre os materiais em Ultimaker.com."
  7028. #~ msgctxt "description"
  7029. #~ msgid "Shows changes since latest checked version."
  7030. #~ msgstr "Mostra as novas alterações efetuadas desde a última versão."
  7031. #~ msgctxt "name"
  7032. #~ msgid "Changelog"
  7033. #~ msgstr "Lista das Alterações"
  7034. # rever!
  7035. # contexto!
  7036. # flattend - aplanado? nivelado? limpo? basico?
  7037. #~ msgctxt "description"
  7038. #~ msgid "Create a flattend quality changes profile."
  7039. #~ msgstr "Criar um perfil de qualidade aplanado."
  7040. #~ msgctxt "name"
  7041. #~ msgid "Profile flatener"
  7042. #~ msgstr "Aplanador de perfis"
  7043. #~ msgctxt "description"
  7044. #~ msgid "Ask the user once if he/she agrees with our license."
  7045. #~ msgstr "Perguntar, uma vez, ao utilizador, se concorda com a nossa licença."
  7046. # rever!
  7047. # check the legal term in pt
  7048. # licença?
  7049. # acordo?
  7050. # use the same term for label and description
  7051. #~ msgctxt "name"
  7052. #~ msgid "UserAgreement"
  7053. #~ msgstr "Contrato de Utilizador"
  7054. #~ msgctxt "@warning:status"
  7055. #~ msgid "Please generate G-code before saving."
  7056. #~ msgstr "Crie um G-code antes de guardar."
  7057. #~ msgctxt "@action"
  7058. #~ msgid "Upgrade Firmware"
  7059. #~ msgstr "Atualizar firmware"
  7060. #~ msgctxt "@label unknown material"
  7061. #~ msgid "Unknown"
  7062. #~ msgstr "Desconhecido"
  7063. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7064. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  7065. #~ msgstr "O ficheiro <filename>{0}</filename> não contém qualquer perfil personalizado para importar"
  7066. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7067. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  7068. #~ msgstr "O perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  7069. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7070. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  7071. #~ msgstr "A máquina definida no perfil <filename>{0}</filename> ({1}) não corresponde à sua máquina atual ({2}), e não foi possível importá-la."
  7072. #~ msgctxt "@title:window"
  7073. #~ msgid "Confirm uninstall "
  7074. #~ msgstr "Confirmar desinstalação "
  7075. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  7076. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7077. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7078. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  7079. #~ msgid "%1m / ~ %2g"
  7080. #~ msgstr "%1 m / ~ %2 g"
  7081. #~ msgctxt "@title"
  7082. #~ msgid "Upgrade Firmware"
  7083. #~ msgstr "Atualizar Firmware"
  7084. #~ msgctxt "@action:button"
  7085. #~ msgid "Print with Doodle3D WiFi-Box"
  7086. #~ msgstr "Imprimir com a Doodle3D WiFi-Box"
  7087. #~ msgctxt "@properties:tooltip"
  7088. #~ msgid "Print with Doodle3D WiFi-Box"
  7089. #~ msgstr "Imprimir com a Doodle3D WiFi-Box"
  7090. #~ msgctxt "@info:status"
  7091. #~ msgid "Connecting to Doodle3D Connect"
  7092. #~ msgstr "A ligar ao Doodle3D Connect"
  7093. #~ msgctxt "@info:status"
  7094. #~ msgid "Sending data to Doodle3D Connect"
  7095. #~ msgstr "A enviar dados para o Doodle3D Connect"
  7096. #~ msgctxt "@info:status"
  7097. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  7098. #~ msgstr "Não é possível enviar dados para o Doodle3D Connect. Será que há outro trabalho ainda ativo?"
  7099. #~ msgctxt "@info:status"
  7100. #~ msgid "Storing data on Doodle3D Connect"
  7101. #~ msgstr "A guardar dados no Doodle3D Connect"
  7102. #~ msgctxt "@info:status"
  7103. #~ msgid "File sent to Doodle3D Connect"
  7104. #~ msgstr "Ficheiro enviado para o Doodle3D Connect"
  7105. #~ msgctxt "@action:button"
  7106. #~ msgid "Open Connect..."
  7107. #~ msgstr "Abrir Connect..."
  7108. #~ msgctxt "@info:tooltip"
  7109. #~ msgid "Open the Doodle3D Connect web interface"
  7110. #~ msgstr "Abrir a interface web do Doodle3D Connect"
  7111. #~ msgctxt "@item:inlistbox"
  7112. #~ msgid "Blender file"
  7113. #~ msgstr "Ficheiro Blender"
  7114. #~ msgctxt "@info:status"
  7115. #~ msgid ""
  7116. #~ "Could not export using \"{}\" quality!\n"
  7117. #~ "Felt back to \"{}\"."
  7118. #~ msgstr ""
  7119. #~ "Não foi possível exportar utilizando a qualidade \"{}\"!\n"
  7120. #~ "Foi revertido para \"{}\"."
  7121. #~ msgctxt "@label"
  7122. #~ msgid "Contact"
  7123. #~ msgstr "Contacto"
  7124. #~ msgctxt "@label"
  7125. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  7126. #~ msgstr "Esta impressora não está configurada para ser Host de um grupo de impressoras Ultimaker 3."
  7127. #~ msgctxt "@label"
  7128. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  7129. #~ msgstr "Esta impressora é o Host de um grupo de %1 impressoras Ultimaker 3."
  7130. #~ msgctxt "@label: arg 1 is group name"
  7131. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  7132. #~ msgstr "%1 não está configurada para ser Host de um grupo de impressoras Ultimaker 3 ligadas em rede"
  7133. #~ msgctxt "@label link to connect manager"
  7134. #~ msgid "Add/Remove printers"
  7135. #~ msgstr "Adicionar / Remover Impressoras"
  7136. #~ msgctxt "@info:tooltip"
  7137. #~ msgid "Opens the print jobs page with your default web browser."
  7138. #~ msgstr "Abre a página com a lista dos trabalhos de impressão, no seu browser predefinido."
  7139. #~ msgctxt "@action:button"
  7140. #~ msgid "View print jobs"
  7141. #~ msgstr "Ver Trabalhos em Impressão"
  7142. #~ msgctxt "@label:status"
  7143. #~ msgid "Preparing to print"
  7144. #~ msgstr "A preparar para imprimir"
  7145. #~ msgctxt "@label:status"
  7146. #~ msgid "Available"
  7147. #~ msgstr "Disponível"
  7148. #~ msgctxt "@label:status"
  7149. #~ msgid "Lost connection with the printer"
  7150. #~ msgstr "Perdeu-se a ligação com a impressora"
  7151. #~ msgctxt "@label:status"
  7152. #~ msgid "Unknown"
  7153. #~ msgstr "Desconhecida"
  7154. #~ msgctxt "@label:status"
  7155. #~ msgid "Disabled"
  7156. #~ msgstr "Desativada"
  7157. #~ msgctxt "@label:status"
  7158. #~ msgid "Reserved"
  7159. #~ msgstr "Reservada"
  7160. #~ msgctxt "@label"
  7161. #~ msgid "Preparing to print"
  7162. #~ msgstr "A preparar para imprimir"
  7163. #~ msgctxt "@label:status"
  7164. #~ msgid "Print aborted"
  7165. #~ msgstr "Impressão cancelada"
  7166. #~ msgctxt "@label"
  7167. #~ msgid "Not accepting print jobs"
  7168. #~ msgstr "Não são aceites trabalhos de impressão"
  7169. #~ msgctxt "@label"
  7170. #~ msgid "Finishes at: "
  7171. #~ msgstr "Termina às: "
  7172. #~ msgctxt "@label"
  7173. #~ msgid "Clear build plate"
  7174. #~ msgstr "Limpar base de construção"
  7175. #~ msgctxt "@label"
  7176. #~ msgid "Waiting for configuration change"
  7177. #~ msgstr "A aguardar pela alteração de configuração"
  7178. #~ msgctxt "@title"
  7179. #~ msgid "Print jobs"
  7180. #~ msgstr "Trabalhos em Impressão"
  7181. #~ msgctxt "@label:title"
  7182. #~ msgid "Printers"
  7183. #~ msgstr "Impressoras"
  7184. #~ msgctxt "@action:button"
  7185. #~ msgid "View printers"
  7186. #~ msgstr "Ver Impressoras"
  7187. #~ msgctxt "@label:"
  7188. #~ msgid "Pause"
  7189. #~ msgstr "Colocar em pausa"
  7190. #~ msgctxt "@label:"
  7191. #~ msgid "Resume"
  7192. #~ msgstr "Retomar"
  7193. #~ msgctxt "@label:"
  7194. #~ msgid "Abort Print"
  7195. #~ msgstr "Cancelar impressão"
  7196. #~ msgctxt "@option:openProject"
  7197. #~ msgid "Always ask"
  7198. #~ msgstr "Perguntar sempre"
  7199. #~ msgctxt "@label"
  7200. #~ msgid "Override Profile"
  7201. #~ msgstr "Substituir perfil"
  7202. #~ msgctxt "@info:tooltip"
  7203. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  7204. #~ msgstr "Devem os novos modelos abertos ser dispostos na base de construção? Utilizado em conjunto com múltiplas bases de construção (EXPERIMENTAL)"
  7205. #~ msgctxt "@option:check"
  7206. #~ msgid "Do not arrange objects on load"
  7207. #~ msgstr "Não dispor os objectos ao abrir"
  7208. #~ msgctxt "@action:inmenu menubar:file"
  7209. #~ msgid "&Save Selection to File"
  7210. #~ msgstr "&Guardar seleção para ficheiro"
  7211. #~ msgctxt "@title:menu menubar:file"
  7212. #~ msgid "Save &As..."
  7213. #~ msgstr "Guardar &como..."
  7214. #~ msgctxt "@title:menu menubar:file"
  7215. #~ msgid "Save &Project..."
  7216. #~ msgstr "Guardar &Projeto..."
  7217. #~ msgctxt "@label"
  7218. #~ msgid "Use adhesion sheet or glue with this material combination"
  7219. #~ msgstr "Use folhas de adesão ou cola, com estes materiais"
  7220. #~ msgctxt "description"
  7221. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7222. #~ msgstr "Recebe ficheiros G-code e envia-os por Wi-Fi para uma Doodle3D Wi-Fi Box."
  7223. #~ msgctxt "name"
  7224. #~ msgid "Doodle3D WiFi-Box"
  7225. #~ msgstr "Doodle3D Wi-Fi Box"
  7226. #~ msgctxt "description"
  7227. #~ msgid "Provides an edit window for direct script editing."
  7228. #~ msgstr "Fornece uma janela de edição para a edição direta de scripts."
  7229. #~ msgctxt "name"
  7230. #~ msgid "Live scripting tool"
  7231. #~ msgstr "Ferramenta de scripting em direto"
  7232. #~ msgctxt "description"
  7233. #~ msgid "Helps to open Blender files directly in Cura."
  7234. #~ msgstr "Ajuda a abrir ficheiros do Blender diretamente no Cura."
  7235. #~ msgctxt "name"
  7236. #~ msgid "Blender Integration (experimental)"
  7237. #~ msgstr "Integração com o Blender (experimental)"
  7238. # rever!
  7239. #~ msgctxt "@info:title"
  7240. #~ msgid "Model Checker Warning"
  7241. #~ msgstr "Advertência do Verificador de Modelos"
  7242. #~ msgctxt "@info:status"
  7243. #~ msgid ""
  7244. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  7245. #~ "Tips that may be useful to improve the print quality:\n"
  7246. #~ "1) Use rounded corners.\n"
  7247. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  7248. #~ "3) Use a different material."
  7249. #~ msgstr ""
  7250. #~ "Alguns modelos poderão não ser impressos com a melhor qualidade devido ás dimensões do objecto e aos materiais escolhidos para os modelos: {model_names}.\n"
  7251. #~ "Sugestões que poderão ser úteis para melhorar a qualidade da impressão dos modelos:\n"
  7252. #~ "1) Utilize cantos arredondados.\n"
  7253. #~ "2) Desligue os ventiladores (apenas nos casos em que o modelo não têm pequenos detalhes ou pormenores).\n"
  7254. #~ "3) Usar um material diferente."
  7255. #~ msgctxt "@info:status"
  7256. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7257. #~ msgstr "O SolidWorks comunicou erros ao abrir o ficheiro. Recomendamos a resolução destes problemas no próprio SolidWorks."
  7258. #~ msgctxt "@info:status"
  7259. #~ msgid ""
  7260. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  7261. #~ "\n"
  7262. #~ "Thanks!"
  7263. #~ msgstr ""
  7264. #~ "Não foram encontrados quaisquer modelos no seu desenho. Por favor verifique novamente o conteúdo do desenho e confirme que este inclui uma peça ou uma \"assembly\"?\n"
  7265. #~ "\n"
  7266. #~ "Obrigado!"
  7267. #~ msgctxt "@info:status"
  7268. #~ msgid ""
  7269. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7270. #~ "\n"
  7271. #~ "Sorry!"
  7272. #~ msgstr ""
  7273. #~ "Foram encontradas mais do que uma peça ou uma \"assembly\" no seu desenho. De momento só são suportados ficheiros com uma só peça ou só uma \"assembly\".\n"
  7274. #~ "\n"
  7275. #~ "As nossa desculpas!"
  7276. # rever!
  7277. # versão PT do solidworks?
  7278. #~ msgctxt "@item:inlistbox"
  7279. #~ msgid "SolidWorks part file"
  7280. #~ msgstr "Ficheiro peça SolidWorks"
  7281. # rever!
  7282. # versão PT do solidworks?
  7283. #~ msgctxt "@item:inlistbox"
  7284. #~ msgid "SolidWorks assembly file"
  7285. #~ msgstr "Ficheiro \"assembly\" SolidWorks"
  7286. #~ msgctxt "@item:inlistbox"
  7287. #~ msgid "SolidWorks drawing file"
  7288. #~ msgstr "Ficheiro de desenho SolidWorks"
  7289. #~ msgctxt "@info:status"
  7290. #~ msgid ""
  7291. #~ "Dear customer,\n"
  7292. #~ "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"
  7293. #~ "\n"
  7294. #~ "With kind regards\n"
  7295. #~ " - Thomas Karl Pietrowski"
  7296. #~ msgstr ""
  7297. #~ "Caro Cliente,\n"
  7298. #~ "Não foi possível encontrar uma instalação válida do SolidWorks no seu sistema. O que significa que o SolidWorks não está instalado ou não dispõe de uma licença válida. Por favor verifique se o próprio SolidWorks funciona sem qualquer problema e/ou contacte o seu ICT.\n"
  7299. #~ "\n"
  7300. #~ "Atenciosamente\n"
  7301. #~ " – Thomas Karl Pietrowski"
  7302. #~ msgctxt "@info:status"
  7303. #~ msgid ""
  7304. #~ "Dear customer,\n"
  7305. #~ "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"
  7306. #~ "\n"
  7307. #~ "With kind regards\n"
  7308. #~ " - Thomas Karl Pietrowski"
  7309. #~ msgstr ""
  7310. #~ "Caro cliente,\n"
  7311. #~ "Está atualmente a executar este plug-in num sistema operativo que não o Windows. Este plug-in apenas funciona no Windows com o SolidWorks instalado e com uma licença válida. Instale este plug-in num computador com o Windows e com o SolidWorks instalado.\n"
  7312. #~ "\n"
  7313. #~ "Atenciosamente\n"
  7314. #~ " – Thomas Karl Pietrowski"
  7315. #~ msgid "Configure"
  7316. #~ msgstr "Configurar"
  7317. #~ msgid "Installation guide for SolidWorks macro"
  7318. #~ msgstr "Guia de instalação do macro SolidWorks"
  7319. #~ msgctxt "@action:button"
  7320. #~ msgid "Disable"
  7321. #~ msgstr "Desativar"
  7322. #~ msgctxt "@action:tooltip"
  7323. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  7324. #~ msgstr "Não permitir que o Cura envie de forma anónima, estatísticas sobre as opções usadas. Pode voltar a ser ativado novamente nas preferências do Cura."
  7325. #~ msgid "Install"
  7326. #~ msgstr "Instalar"
  7327. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  7328. #~ msgstr "Falha ao copiar os ficheiros do plug-in Siemens NX. Verifique o seu UGII_USER_DIR. Não está atribuído a um diretório."
  7329. #~ msgid "Successfully installed Siemens NX Cura plugin."
  7330. #~ msgstr "Plug-in Siemens NX Cura instalado com sucesso."
  7331. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  7332. #~ msgstr "Falha ao copiar os ficheiros do plug-in Siemens NX. Verifique o seu UGII_USER_DIR."
  7333. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  7334. #~ msgstr "Falha ao instalar o plug-in Siemens NX. Não foi possível definir a variável do ambiente UGII_USER_DIR para o Siemens NX."
  7335. #~ msgctxt "@info:status"
  7336. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  7337. #~ msgstr "Não foi possível obter o ID do plug-in <filename>{0}</filename>"
  7338. #~ msgctxt "@info:tile"
  7339. #~ msgid "Warning"
  7340. #~ msgstr "Atenção"
  7341. #~ msgctxt "@window:title"
  7342. #~ msgid "Plugin browser"
  7343. #~ msgstr "Browser de plug-ins"
  7344. #~ msgctxt "@label"
  7345. #~ msgid "Ultimaker 3"
  7346. #~ msgstr "Ultimaker 3"
  7347. #~ msgctxt "@label"
  7348. #~ msgid "Ultimaker 3 Extended"
  7349. #~ msgstr "Ultimaker 3 Extended"
  7350. #~ msgctxt "@title:window"
  7351. #~ msgid "SolidWorks: Export wizard"
  7352. #~ msgstr "SolidWorks: Assistente de Exportação"
  7353. #~ msgctxt "@action:label"
  7354. #~ msgid "Quality:"
  7355. #~ msgstr "Qualidade:"
  7356. #~ msgctxt "@option:curaSolidworksStlQuality"
  7357. #~ msgid "Fine (3D-printing)"
  7358. #~ msgstr "Alta Resolução (impressão 3D)"
  7359. #~ msgctxt "@option:curaSolidworksStlQuality"
  7360. #~ msgid "Coarse (3D-printing)"
  7361. #~ msgstr "Baixa Resolução (impressão 3D)"
  7362. #~ msgctxt "@option:curaSolidworksStlQuality"
  7363. #~ msgid "Fine (SolidWorks)"
  7364. #~ msgstr "Alta Resolução (SolidWorks)"
  7365. #~ msgctxt "@option:curaSolidworksStlQuality"
  7366. #~ msgid "Coarse (SolidWorks)"
  7367. #~ msgstr "Baixa Resolução (SolidWorks)"
  7368. #~ msgctxt "@text:window"
  7369. #~ msgid "Show this dialog again"
  7370. #~ msgstr "Mostrar esta caixa de diálogo novamente"
  7371. #~ msgctxt "@action:button"
  7372. #~ msgid "Continue"
  7373. #~ msgstr "Continuar"
  7374. #~ msgctxt "@action:button"
  7375. #~ msgid "Abort"
  7376. #~ msgstr "Cancelar"
  7377. #~ msgctxt "@title:window"
  7378. #~ msgid "How to install Cura SolidWorks macro"
  7379. #~ msgstr "Como instalar a macro Cura SolidWorks"
  7380. #~ msgctxt "@description:label"
  7381. #~ msgid "Steps:"
  7382. #~ msgstr "Passos:"
  7383. #~ msgctxt "@action:button"
  7384. #~ msgid ""
  7385. #~ "Open the directory\n"
  7386. #~ "with macro and icon"
  7387. #~ msgstr ""
  7388. #~ "Abrir o diretório\n"
  7389. #~ "com macro e ícone"
  7390. #~ msgctxt "@description:label"
  7391. #~ msgid "Instructions:"
  7392. #~ msgstr "Instruções:"
  7393. #~ msgctxt "@action:playpause"
  7394. #~ msgid "Play"
  7395. #~ msgstr "Reproduzir"
  7396. #~ msgctxt "@action:playpause"
  7397. #~ msgid "Pause"
  7398. #~ msgstr "Colocar em pausa"
  7399. #~ msgctxt "@action:button"
  7400. #~ msgid "Previous Step"
  7401. #~ msgstr "Passo Anterior"
  7402. #~ msgctxt "@action:button"
  7403. #~ msgid "Done"
  7404. #~ msgstr "Concluído"
  7405. #~ msgctxt "@action:button"
  7406. #~ msgid "Next Step"
  7407. #~ msgstr "Passo Seguinte"
  7408. #~ msgctxt "@title:window"
  7409. #~ msgid "SolidWorks plugin: Configuration"
  7410. #~ msgstr "Plug-in SolidWorks: Configuração"
  7411. #~ msgctxt "@title:tab"
  7412. #~ msgid "Conversion settings"
  7413. #~ msgstr "Definições de conversão"
  7414. #~ msgctxt "@label"
  7415. #~ msgid "First choice:"
  7416. #~ msgstr "Primeira escolha:"
  7417. #~ msgctxt "@text:menu"
  7418. #~ msgid "Latest installed version (Recommended)"
  7419. #~ msgstr "Última versão instalada (Recomendada)"
  7420. #~ msgctxt "@text:menu"
  7421. #~ msgid "Default version"
  7422. #~ msgstr "Versão predefinida"
  7423. #~ msgctxt "@label"
  7424. #~ msgid "Show wizard before opening SolidWorks files"
  7425. #~ msgstr "Mostrar o assistente antes de abrir ficheiros SolidWorks"
  7426. #~ msgctxt "@label"
  7427. #~ msgid "Automatically rotate opened file into normed orientation"
  7428. #~ msgstr "Rodar automaticamente o ficheiro aberto para uma orientação normalizada"
  7429. #~ msgctxt "@title:tab"
  7430. #~ msgid "Installation(s)"
  7431. #~ msgstr "Instalação(ões)"
  7432. #~ msgctxt "@label"
  7433. #~ msgid "COM service found"
  7434. #~ msgstr "Serviço COM encontrado"
  7435. #~ msgctxt "@label"
  7436. #~ msgid "Executable found"
  7437. #~ msgstr "Executável encontrado"
  7438. #~ msgctxt "@label"
  7439. #~ msgid "COM starting"
  7440. #~ msgstr "A iniciar COM"
  7441. #~ msgctxt "@label"
  7442. #~ msgid "Revision number"
  7443. #~ msgstr "Número da revisão"
  7444. #~ msgctxt "@label"
  7445. #~ msgid "Functions available"
  7446. #~ msgstr "Funções disponíveis"
  7447. #~ msgctxt "@label (%1 is object name)"
  7448. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  7449. #~ msgstr "O novo diâmetro do material está definido como %1 mm, o que não é compatível com a máquina atual. Pretende prosseguir?"
  7450. #~ msgctxt "@action:menu"
  7451. #~ msgid "Browse plugins..."
  7452. #~ msgstr "Procurar plug-ins..."
  7453. #~ msgctxt "@title:menu menubar:toplevel"
  7454. #~ msgid "P&lugins"
  7455. #~ msgstr "P&lug-ins"
  7456. #~ msgctxt "@window:title"
  7457. #~ msgid "Install Plugin"
  7458. #~ msgstr "Instalar plug-in"
  7459. #~ msgctxt "description"
  7460. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7461. #~ msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc)"
  7462. #~ msgctxt "description"
  7463. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7464. #~ msgstr "Gere as ligações de rede com as impressoras Ultimaker 3"
  7465. #~ msgctxt "description"
  7466. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  7467. #~ msgstr "Oferece a possibilidade de abrir determinados ficheiros utilizando o SolidWorks. A conversão é efetuada através deste plug-in e de otimizações adicionais."
  7468. #~ msgctxt "name"
  7469. #~ msgid "SolidWorks Integration"
  7470. #~ msgstr "SolidWorks Integration"
  7471. #~ msgctxt "description"
  7472. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7473. #~ msgstr "Guarda Automaticamente as Preferências, Máquinas e Perfis após fazer alterações."
  7474. #~ msgctxt "name"
  7475. #~ msgid "Auto Save"
  7476. #~ msgstr "Guardar Automaticamente"
  7477. #~ msgctxt "description"
  7478. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  7479. #~ msgstr "Ajuda a instalar um botão \"Exportar para o Cura\" no Siemens NX."
  7480. #~ msgctxt "name"
  7481. #~ msgid "Siemens NX Integration"
  7482. #~ msgstr "Siemens NX Integration"
  7483. #~ msgctxt "description"
  7484. #~ msgid "Find, manage and install new plugins."
  7485. #~ msgstr "Procura, gere e instala novos plug-ins."
  7486. #~ msgctxt "name"
  7487. #~ msgid "Plugin Browser"
  7488. #~ msgstr "Browser de plug-ins"
  7489. #~ msgctxt "description"
  7490. #~ msgid "Ask the user once if he/she agrees with our license"
  7491. #~ msgstr "Perguntar, uma vez, ao utilizador, se concorda com a licença"
  7492. #~ msgctxt "description"
  7493. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7494. #~ msgstr "Disponibiliza funções especificas para as máquinas Ultimaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)"