cura.po 247 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179
  1. # Cura
  2. # Copyright (C) 2022 UltiMaker.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2023-03-10 14:16+0000\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: pt_PT\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  20. #: cura/API/Account.py:199
  21. msgctxt "@info:title"
  22. msgid "Login failed"
  23. msgstr "Falha no início de sessão"
  24. #: cura/Arranging/ArrangeObjectsJob.py:25
  25. msgctxt "@info:status"
  26. msgid "Finding new location for objects"
  27. msgstr "A procurar nova posição para os objetos"
  28. #: cura/Arranging/ArrangeObjectsJob.py:29
  29. msgctxt "@info:title"
  30. msgid "Finding Location"
  31. msgstr "A Procurar Posição"
  32. #: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99
  33. msgctxt "@info:status"
  34. msgid "Unable to find a location within the build volume for all objects"
  35. msgstr "Não é possível posicionar todos os objetos dentro do volume de construção"
  36. #: cura/Arranging/ArrangeObjectsJob.py:43
  37. msgctxt "@info:title"
  38. msgid "Can't Find Location"
  39. msgstr "Não é Possível Posicionar"
  40. #: cura/Backups/Backup.py:115
  41. msgctxt "@info:backup_failed"
  42. msgid "Could not create archive from user data directory: {}"
  43. msgstr "Não é possível criar um arquivo a partir do directório de dados do utilizador: {}"
  44. #: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159
  45. #: plugins/CuraDrive/src/DrivePluginExtension.py:118
  46. #: plugins/CuraDrive/src/DrivePluginExtension.py:126
  47. msgctxt "@info:title"
  48. msgid "Backup"
  49. msgstr ""
  50. #: cura/Backups/Backup.py:134
  51. msgctxt "@info:backup_failed"
  52. msgid "Tried to restore a Cura backup without having proper data or meta data."
  53. msgstr "Tentou restaurar um Cura backup sem existirem dados ou metadados correctos."
  54. #: cura/Backups/Backup.py:145
  55. msgctxt "@info:backup_failed"
  56. msgid "Tried to restore a Cura backup that is higher than the current version."
  57. msgstr "Tentativa de reposição de uma cópia de segurança do Cura que é superior à versão atual."
  58. #: cura/Backups/Backup.py:158
  59. msgctxt "@info:backup_failed"
  60. msgid "The following error occurred while trying to restore a Cura backup:"
  61. msgstr "O seguinte erro ocorreu ao tentar restaurar uma cópia de segurança do Cura:"
  62. #: cura/BuildVolume.py:100
  63. msgctxt "@info:status"
  64. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  65. msgstr "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 impressos."
  66. #: cura/BuildVolume.py:103
  67. msgctxt "@info:title"
  68. msgid "Build Volume"
  69. msgstr "Volume de construção"
  70. #: cura/CrashHandler.py:107
  71. msgctxt "@title:window"
  72. msgid "Cura can't start"
  73. msgstr "Não é possível iniciar o Cura"
  74. #: cura/CrashHandler.py:113
  75. msgctxt "@label crash message"
  76. msgid ""
  77. "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n"
  78. " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  79. " <p>Backups can be found in the configuration folder.</p>\n"
  80. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  81. " "
  82. msgstr ""
  83. #: cura/CrashHandler.py:122
  84. msgctxt "@action:button"
  85. msgid "Send crash report to UltiMaker"
  86. msgstr "Enviar relatório de falhas para a UltiMaker"
  87. #: cura/CrashHandler.py:125
  88. msgctxt "@action:button"
  89. msgid "Show detailed crash report"
  90. msgstr "Mostrar relatório de falhas detalhado"
  91. #: cura/CrashHandler.py:129
  92. msgctxt "@action:button"
  93. msgid "Show configuration folder"
  94. msgstr "Mostrar pasta de configuração"
  95. #: cura/CrashHandler.py:140
  96. msgctxt "@action:button"
  97. msgid "Backup and Reset Configuration"
  98. msgstr "Backup e Repor a Configuração"
  99. #: cura/CrashHandler.py:171
  100. msgctxt "@title:window"
  101. msgid "Crash Report"
  102. msgstr "Relatório de Falhas"
  103. #: cura/CrashHandler.py:190
  104. msgctxt "@label crash message"
  105. msgid ""
  106. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  107. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  108. " "
  109. msgstr ""
  110. "<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"
  111. " <p>Por favor utilize o botão &quot;Enviar relatório&quot; para publicar um relatório de erros automaticamente nos nossos servidores</p>\n"
  112. " "
  113. #: cura/CrashHandler.py:198
  114. msgctxt "@title:groupbox"
  115. msgid "System information"
  116. msgstr "Informações do sistema"
  117. #: cura/CrashHandler.py:207
  118. msgctxt "@label unknown version of Cura"
  119. msgid "Unknown"
  120. msgstr "Desconhecido"
  121. #: cura/CrashHandler.py:228
  122. msgctxt "@label Cura version number"
  123. msgid "Cura version"
  124. msgstr "Versão do Cura"
  125. #: cura/CrashHandler.py:229
  126. msgctxt "@label"
  127. msgid "Cura language"
  128. msgstr "Idioma do Cura"
  129. #: cura/CrashHandler.py:230
  130. msgctxt "@label"
  131. msgid "OS language"
  132. msgstr "Idioma do Sistema Operativo"
  133. #: cura/CrashHandler.py:231
  134. msgctxt "@label Type of platform"
  135. msgid "Platform"
  136. msgstr "Plataforma"
  137. #: cura/CrashHandler.py:232
  138. msgctxt "@label"
  139. msgid "Qt version"
  140. msgstr "Versão Qt"
  141. #: cura/CrashHandler.py:233
  142. msgctxt "@label"
  143. msgid "PyQt version"
  144. msgstr "Versão PyQt"
  145. #: cura/CrashHandler.py:234
  146. msgctxt "@label OpenGL version"
  147. msgid "OpenGL"
  148. msgstr "OpenGL"
  149. #: cura/CrashHandler.py:264
  150. msgctxt "@label"
  151. msgid "Not yet initialized"
  152. msgstr "Ainda não foi inicializado"
  153. #: cura/CrashHandler.py:267
  154. #, python-brace-format
  155. msgctxt "@label OpenGL version"
  156. msgid "<li>OpenGL Version: {version}</li>"
  157. msgstr "<li>Versão do OpenGL: {version}</li>"
  158. #: cura/CrashHandler.py:268
  159. #, python-brace-format
  160. msgctxt "@label OpenGL vendor"
  161. msgid "<li>OpenGL Vendor: {vendor}</li>"
  162. msgstr "<li>Vendedor do OpenGL: {vendor}</li>"
  163. #: cura/CrashHandler.py:269
  164. #, python-brace-format
  165. msgctxt "@label OpenGL renderer"
  166. msgid "<li>OpenGL Renderer: {renderer}</li>"
  167. msgstr "<li>Processador do OpenGL: {renderer}</li>"
  168. #: cura/CrashHandler.py:304
  169. msgctxt "@title:groupbox"
  170. msgid "Error traceback"
  171. msgstr "Determinação da origem do erro"
  172. #: cura/CrashHandler.py:390
  173. msgctxt "@title:groupbox"
  174. msgid "Logs"
  175. msgstr "Relatórios"
  176. #: cura/CrashHandler.py:418
  177. msgctxt "@action:button"
  178. msgid "Send report"
  179. msgstr "Enviar relatório"
  180. #: cura/CuraApplication.py:540
  181. msgctxt "@info:progress"
  182. msgid "Loading machines..."
  183. msgstr "A carregar máquinas..."
  184. #: cura/CuraApplication.py:547
  185. msgctxt "@info:progress"
  186. msgid "Setting up preferences..."
  187. msgstr "A configurar as preferências..."
  188. #: cura/CuraApplication.py:692
  189. msgctxt "@info:progress"
  190. msgid "Initializing Active Machine..."
  191. msgstr "A Inicializar a Máquina Ativa..."
  192. #: cura/CuraApplication.py:839
  193. msgctxt "@info:progress"
  194. msgid "Initializing machine manager..."
  195. msgstr "A inicializar o gestor das máquinas..."
  196. #: cura/CuraApplication.py:853
  197. msgctxt "@info:progress"
  198. msgid "Initializing build volume..."
  199. msgstr "A inicializar o volume de construção..."
  200. #: cura/CuraApplication.py:921
  201. msgctxt "@info:progress"
  202. msgid "Setting up scene..."
  203. msgstr "A configurar cenário..."
  204. #: cura/CuraApplication.py:957
  205. msgctxt "@info:progress"
  206. msgid "Loading interface..."
  207. msgstr "A carregar interface..."
  208. #: cura/CuraApplication.py:962
  209. msgctxt "@info:progress"
  210. msgid "Initializing engine..."
  211. msgstr "A inicializar o motor..."
  212. #: cura/CuraApplication.py:1290
  213. #, python-format
  214. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  215. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  216. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  217. #: cura/CuraApplication.py:1816
  218. #, python-brace-format
  219. msgctxt "@info:status"
  220. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  221. msgstr "Apenas pode ser carregado um ficheiro G-code de cada vez. Importação {0} ignorada"
  222. #: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217
  223. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189
  224. msgctxt "@info:title"
  225. msgid "Warning"
  226. msgstr "Aviso"
  227. #: cura/CuraApplication.py:1828
  228. #, python-brace-format
  229. msgctxt "@info:status"
  230. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  231. msgstr "Não é possível abrir outro ficheiro enquanto o G-code estiver a carregar. Importação {0} ignorada"
  232. #: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156
  233. #: cura/Settings/CuraContainerRegistry.py:166
  234. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  235. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  236. msgctxt "@info:title"
  237. msgid "Error"
  238. msgstr "Erro"
  239. #: cura/Machines/Models/DiscoveredPrintersModel.py:83
  240. msgctxt "@label"
  241. msgid "Unknown"
  242. msgstr "Desconhecido"
  243. #: cura/Machines/Models/DiscoveredPrintersModel.py:113
  244. msgctxt "@label"
  245. msgid "The printer(s) below cannot be connected because they are part of a group"
  246. msgstr "Não é possível ligar a(s) impressora(s) abaixo porque faz(em) parte de um grupo"
  247. #: cura/Machines/Models/DiscoveredPrintersModel.py:115
  248. msgctxt "@label"
  249. msgid "Available networked printers"
  250. msgstr "Impressoras em rede disponíveis"
  251. #: cura/Machines/Models/ExtrudersModel.py:219
  252. msgctxt "@menuitem"
  253. msgid "Not overridden"
  254. msgstr "Manter"
  255. #: cura/Machines/Models/GlobalStacksModel.py:160
  256. #: resources/qml/PrinterSelector/MachineSelectorList.qml:28
  257. msgctxt "@label"
  258. msgid "Connected printers"
  259. msgstr "Impressoras ligadas"
  260. #: cura/Machines/Models/GlobalStacksModel.py:160
  261. msgctxt "@label"
  262. msgid "Preset printers"
  263. msgstr "Impressoras predefinidas"
  264. #: cura/Machines/Models/GlobalStacksModel.py:165
  265. #, python-brace-format
  266. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  267. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  268. msgstr "Tem a certeza de que pretende remover {0}? Esta ação não pode ser anulada!"
  269. #: cura/Machines/Models/IntentCategoryModel.py:42
  270. #: cura/Machines/Models/IntentSelectionModel.py:61
  271. #: cura/Machines/Models/IntentTranslations.py:11
  272. #: cura/Machines/Models/QualityManagementModel.py:347
  273. msgctxt "@label"
  274. msgid "Default"
  275. msgstr ""
  276. #: cura/Machines/Models/IntentCategoryModel.py:45
  277. #: cura/Machines/Models/IntentSelectionModel.py:65
  278. #: cura/Machines/Models/IntentTranslations.py:14
  279. msgctxt "@label"
  280. msgid "Visual"
  281. msgstr "Acabamento"
  282. #: cura/Machines/Models/IntentCategoryModel.py:46
  283. #: cura/Machines/Models/IntentSelectionModel.py:66
  284. #: cura/Machines/Models/IntentTranslations.py:15
  285. msgctxt "@text"
  286. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  287. 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 em termos visuais."
  288. #: cura/Machines/Models/IntentCategoryModel.py:49
  289. #: cura/Machines/Models/IntentSelectionModel.py:70
  290. #: cura/Machines/Models/IntentTranslations.py:18
  291. msgctxt "@label"
  292. msgid "Engineering"
  293. msgstr ""
  294. #: cura/Machines/Models/IntentCategoryModel.py:50
  295. #: cura/Machines/Models/IntentSelectionModel.py:71
  296. #: cura/Machines/Models/IntentTranslations.py:19
  297. msgctxt "@text"
  298. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  299. 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 tolerâncias menores."
  300. #: cura/Machines/Models/IntentCategoryModel.py:53
  301. #: cura/Machines/Models/IntentSelectionModel.py:75
  302. #: cura/Machines/Models/IntentTranslations.py:22
  303. msgctxt "@label"
  304. msgid "Draft"
  305. msgstr "Rascunho"
  306. #: cura/Machines/Models/IntentCategoryModel.py:54
  307. #: cura/Machines/Models/IntentSelectionModel.py:76
  308. #: cura/Machines/Models/IntentTranslations.py:23
  309. msgctxt "@text"
  310. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  311. 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 tempo de impressão."
  312. #: cura/Machines/Models/MaterialManagementModel.py:232
  313. msgctxt "@label"
  314. msgid "Custom Material"
  315. msgstr "Material Personalizado"
  316. #: cura/Machines/Models/MaterialManagementModel.py:233
  317. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340
  318. msgctxt "@label"
  319. msgid "Custom"
  320. msgstr "Personalizado"
  321. #: cura/Machines/Models/QualityManagementModel.py:400
  322. msgctxt "@label"
  323. msgid "Custom profiles"
  324. msgstr "Perfis personalizados"
  325. #: cura/Machines/Models/QualityManagementModel.py:435
  326. #, python-brace-format
  327. msgctxt "@item:inlistbox"
  328. msgid "All Supported Types ({0})"
  329. msgstr "Todos os Formatos Suportados ({0})"
  330. #: cura/Machines/Models/QualityManagementModel.py:436
  331. msgctxt "@item:inlistbox"
  332. msgid "All Files (*)"
  333. msgstr "Todos os Ficheiros (*)"
  334. #: cura/Machines/Models/QualitySettingsModel.py:182
  335. msgctxt "@info:status"
  336. msgid "Calculated"
  337. msgstr "Calculado"
  338. #: cura/MultiplyObjectsJob.py:30
  339. msgctxt "@info:status"
  340. msgid "Multiplying and placing objects"
  341. msgstr "Multiplicar e posicionar objetos"
  342. #: cura/MultiplyObjectsJob.py:32
  343. msgctxt "@info:title"
  344. msgid "Placing Objects"
  345. msgstr "A posicionar objetos"
  346. #: cura/MultiplyObjectsJob.py:100
  347. msgctxt "@info:title"
  348. msgid "Placing Object"
  349. msgstr "A Posicionar Objeto"
  350. #: cura/OAuth2/AuthorizationHelpers.py:89
  351. msgctxt "@message"
  352. msgid "Could not read response."
  353. msgstr "Não foi possível ler a resposta."
  354. #: cura/OAuth2/AuthorizationRequestHandler.py:75
  355. msgctxt "@message"
  356. msgid "The provided state is not correct."
  357. msgstr "O estado apresentado não está correto."
  358. #: cura/OAuth2/AuthorizationRequestHandler.py:80
  359. msgctxt "@message"
  360. msgid "Timeout when authenticating with the account server."
  361. msgstr "Foi excedido o tempo limite de autenticação com o servidor."
  362. #: cura/OAuth2/AuthorizationRequestHandler.py:97
  363. msgctxt "@message"
  364. msgid "Please give the required permissions when authorizing this application."
  365. msgstr "Forneça as permissões necessárias ao autorizar esta aplicação."
  366. #: cura/OAuth2/AuthorizationRequestHandler.py:104
  367. msgctxt "@message"
  368. msgid "Something unexpected happened when trying to log in, please try again."
  369. msgstr "Ocorreu algo inesperado ao tentar iniciar sessão, tente novamente."
  370. #: cura/OAuth2/AuthorizationService.py:216
  371. msgctxt "@info"
  372. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  373. 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."
  374. #: cura/OAuth2/AuthorizationService.py:277
  375. msgctxt "@info"
  376. msgid "Unable to reach the UltiMaker account server."
  377. msgstr "Não é possível aceder ao servidor da conta UltiMaker."
  378. #: cura/OAuth2/AuthorizationService.py:278
  379. msgctxt "@info:title"
  380. msgid "Log-in failed"
  381. msgstr "O Log-in falhou"
  382. #: cura/PrinterOutput/UploadMaterialsJob.py:104
  383. msgctxt "@text:error"
  384. msgid "Failed to create archive of materials to sync with printers."
  385. msgstr "Não foi possível criar o ficheiro de materiais para sincronizar com as impressoras."
  386. #: cura/PrinterOutput/UploadMaterialsJob.py:111
  387. #: cura/PrinterOutput/UploadMaterialsJob.py:165
  388. msgctxt "@text:error"
  389. msgid "Failed to load the archive of materials to sync it with printers."
  390. msgstr "Não foi possível carregar o ficheiro de materiais para sincronizá-lo com as impressoras."
  391. #: cura/PrinterOutput/UploadMaterialsJob.py:143
  392. msgctxt "@text:error"
  393. msgid "The response from Digital Factory appears to be corrupted."
  394. msgstr "A resposta da Digital Factory parece estar corrompida."
  395. #: cura/PrinterOutput/UploadMaterialsJob.py:147
  396. #: cura/PrinterOutput/UploadMaterialsJob.py:151
  397. #: cura/PrinterOutput/UploadMaterialsJob.py:155
  398. msgctxt "@text:error"
  399. msgid "The response from Digital Factory is missing important information."
  400. msgstr "A resposta da Digital Factory tem informações importantes em falta."
  401. #: cura/PrinterOutput/UploadMaterialsJob.py:218
  402. msgctxt "@text:error"
  403. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  404. msgstr "Não foi possível estabelecer a ligação com a Digital Factory para poder sincronizar os materiais com algumas das impressoras."
  405. #: cura/PrinterOutput/UploadMaterialsJob.py:232
  406. msgctxt "@text:error"
  407. msgid "Failed to connect to Digital Factory."
  408. msgstr "Não foi possível estabelecer a ligação com a Digital Factory."
  409. #: cura/Settings/ActiveQuality.py:43
  410. msgctxt "@label"
  411. msgid "Experimental"
  412. msgstr ""
  413. #: cura/Settings/ContainerManager.py:207
  414. #: cura/Settings/CuraContainerRegistry.py:140
  415. msgctxt "@title:window"
  416. msgid "File Already Exists"
  417. msgstr "O Ficheiro Já Existe"
  418. #: cura/Settings/ContainerManager.py:208
  419. #: cura/Settings/CuraContainerRegistry.py:141
  420. #, python-brace-format
  421. msgctxt "@label Don't translate the XML tag <filename>!"
  422. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  423. msgstr "O ficheiro <filename>{0}</filename> já existe. Tem a certeza de que deseja substituí-lo?"
  424. #: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462
  425. msgctxt "@info:status"
  426. msgid "Invalid file URL:"
  427. msgstr "URL de ficheiro inválido:"
  428. #: cura/Settings/CuraContainerRegistry.py:153
  429. #, python-brace-format
  430. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  431. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  432. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: <message>{1}</message>"
  433. #: cura/Settings/CuraContainerRegistry.py:163
  434. #, python-brace-format
  435. msgctxt "@info:status Don't translate the XML tag <filename>!"
  436. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  437. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: O plug-in de gravação comunicou uma falha."
  438. #: cura/Settings/CuraContainerRegistry.py:171
  439. #, python-brace-format
  440. msgctxt "@info:status Don't translate the XML tag <filename>!"
  441. msgid "Exported profile to <filename>{0}</filename>"
  442. msgstr "Perfil exportado para <filename>{0}</filename>"
  443. #: cura/Settings/CuraContainerRegistry.py:173
  444. msgctxt "@info:title"
  445. msgid "Export succeeded"
  446. msgstr "Exportação bem-sucedida"
  447. #: cura/Settings/CuraContainerRegistry.py:205
  448. #, python-brace-format
  449. msgctxt "@info:status Don't translate the XML tags <filename>!"
  450. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  451. msgstr "Falha ao importar perfil de <filename>{0}</filename>: {1}"
  452. #: cura/Settings/CuraContainerRegistry.py:209
  453. #, python-brace-format
  454. msgctxt "@info:status Don't translate the XML tags <filename>!"
  455. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  456. msgstr "Não é possível importar o perfil de <filename>{0}</filename> antes de ser adicionada uma impressora."
  457. #: cura/Settings/CuraContainerRegistry.py:224
  458. #, python-brace-format
  459. msgctxt "@info:status Don't translate the XML tags <filename>!"
  460. msgid "No custom profile to import in file <filename>{0}</filename>"
  461. msgstr "Nenhum perfil personalizado para importar no ficheiro <filename>{0}</filename>"
  462. #: cura/Settings/CuraContainerRegistry.py:228
  463. #, python-brace-format
  464. msgctxt "@info:status Don't translate the XML tags <filename>!"
  465. msgid "Failed to import profile from <filename>{0}</filename>:"
  466. msgstr "Falha ao importar perfil de <filename>{0}</filename>:"
  467. #: cura/Settings/CuraContainerRegistry.py:252
  468. #: cura/Settings/CuraContainerRegistry.py:262
  469. #, python-brace-format
  470. msgctxt "@info:status Don't translate the XML tags <filename>!"
  471. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  472. msgstr "O perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  473. #: cura/Settings/CuraContainerRegistry.py:355
  474. #, python-brace-format
  475. msgctxt "@info:status Don't translate the XML tag <filename>!"
  476. msgid "Failed to import profile from <filename>{0}</filename>:"
  477. msgstr "Falha ao importar perfil de <filename>{0}</filename>:"
  478. #: cura/Settings/CuraContainerRegistry.py:359
  479. #, python-brace-format
  480. msgctxt "@info:status"
  481. msgid "Successfully imported profile {0}."
  482. msgstr "Perfil {0} importado com êxito."
  483. #: cura/Settings/CuraContainerRegistry.py:366
  484. #, python-brace-format
  485. msgctxt "@info:status"
  486. msgid "File {0} does not contain any valid profile."
  487. msgstr "O ficheiro {0} não contém qualquer perfil válido."
  488. #: cura/Settings/CuraContainerRegistry.py:369
  489. #, python-brace-format
  490. msgctxt "@info:status"
  491. msgid "Profile {0} has an unknown file type or is corrupted."
  492. msgstr "O perfil {0} é de um formato de ficheiro desconhecido ou está corrompido."
  493. #: cura/Settings/CuraContainerRegistry.py:443
  494. msgctxt "@label"
  495. msgid "Custom profile"
  496. msgstr "Perfil personalizado"
  497. #: cura/Settings/CuraContainerRegistry.py:459
  498. msgctxt "@info:status"
  499. msgid "Profile is missing a quality type."
  500. msgstr "O perfil não inclui qualquer tipo de qualidade."
  501. #: cura/Settings/CuraContainerRegistry.py:463
  502. msgctxt "@info:status"
  503. msgid "There is no active printer yet."
  504. msgstr "Ainda não existe qualquer impressora ativa."
  505. #: cura/Settings/CuraContainerRegistry.py:469
  506. msgctxt "@info:status"
  507. msgid "Unable to add the profile."
  508. msgstr "Não é possível adicionar o perfil."
  509. #: cura/Settings/CuraContainerRegistry.py:483
  510. #, python-brace-format
  511. msgctxt "@info:status"
  512. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  513. msgstr "O tipo de qualidade '{0}' não é compatível com a definição de máquina atualmente ativa '{1}'."
  514. #: cura/Settings/CuraContainerRegistry.py:488
  515. #, python-brace-format
  516. msgctxt "@info:status"
  517. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  518. 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 que possa utilizar este tipo de qualidade."
  519. #: cura/Settings/MachineManager.py:746
  520. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:221
  521. msgctxt "@label"
  522. msgid "Nozzle"
  523. msgstr ""
  524. #: cura/Settings/MachineManager.py:890
  525. msgctxt "@info:message Followed by a list of settings."
  526. msgid "Settings have been changed to match the current availability of extruders:"
  527. msgstr "As definições foram alteradas de forma a corresponder aos extrusores disponíveis de momento:"
  528. #: cura/Settings/MachineManager.py:891
  529. msgctxt "@info:title"
  530. msgid "Settings updated"
  531. msgstr "Definições atualizadas"
  532. #: cura/Settings/MachineManager.py:1514
  533. msgctxt "@info:title"
  534. msgid "Extruder(s) Disabled"
  535. msgstr "Extrusor(es) desativado(s)"
  536. #: cura/Settings/cura_empty_instance_containers.py:36
  537. msgctxt "@info:not supported profile"
  538. msgid "Not supported"
  539. msgstr "Não suportado"
  540. #: cura/Settings/cura_empty_instance_containers.py:55
  541. msgctxt "@info:No intent profile selected"
  542. msgid "Default"
  543. msgstr ""
  544. #: cura/UI/AddPrinterPagesModel.py:17
  545. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  546. msgctxt "@action:button"
  547. msgid "Add"
  548. msgstr "Adicionar"
  549. #: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290
  550. msgctxt "@action:button"
  551. msgid "Finish"
  552. msgstr "Concluir"
  553. #: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386
  554. #: plugins/ImageReader/ConfigUI.qml:323
  555. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147
  556. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  557. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  558. #: resources/qml/ColorDialog.qml:143
  559. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  560. #: resources/qml/Dialogs/RenameDialog.qml:103
  561. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  562. msgctxt "@action:button"
  563. msgid "Cancel"
  564. msgstr "Cancelar"
  565. #: cura/UI/ObjectsModel.py:69
  566. #, python-brace-format
  567. msgctxt "@label"
  568. msgid "Group #{group_nr}"
  569. msgstr "Grupo #{group_nr}"
  570. #: cura/UI/PrintInformation.py:87
  571. msgctxt "@tooltip"
  572. msgid "Outer Wall"
  573. msgstr "Parede Exterior"
  574. #: cura/UI/PrintInformation.py:88
  575. msgctxt "@tooltip"
  576. msgid "Inner Walls"
  577. msgstr "Paredes Interiores"
  578. #: cura/UI/PrintInformation.py:89
  579. msgctxt "@tooltip"
  580. msgid "Skin"
  581. msgstr "Revestimento"
  582. #: cura/UI/PrintInformation.py:90
  583. msgctxt "@tooltip"
  584. msgid "Infill"
  585. msgstr "Enchimento"
  586. #: cura/UI/PrintInformation.py:91
  587. msgctxt "@tooltip"
  588. msgid "Support Infill"
  589. msgstr "Enchimento dos Suportes"
  590. #: cura/UI/PrintInformation.py:92
  591. msgctxt "@tooltip"
  592. msgid "Support Interface"
  593. msgstr "Interface dos Suportes"
  594. #: cura/UI/PrintInformation.py:93
  595. msgctxt "@tooltip"
  596. msgid "Support"
  597. msgstr "Suportes"
  598. #: cura/UI/PrintInformation.py:94
  599. msgctxt "@tooltip"
  600. msgid "Skirt"
  601. msgstr "Contorno"
  602. #: cura/UI/PrintInformation.py:95
  603. msgctxt "@tooltip"
  604. msgid "Prime Tower"
  605. msgstr "Torre de preparação"
  606. #: cura/UI/PrintInformation.py:96
  607. msgctxt "@tooltip"
  608. msgid "Travel"
  609. msgstr "Deslocação"
  610. #: cura/UI/PrintInformation.py:97
  611. msgctxt "@tooltip"
  612. msgid "Retractions"
  613. msgstr "Retrações"
  614. #: cura/UI/PrintInformation.py:98
  615. msgctxt "@tooltip"
  616. msgid "Other"
  617. msgstr "Outro"
  618. #: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63
  619. msgctxt "@text:window"
  620. msgid "The release notes could not be opened."
  621. msgstr "Não foi possível abrir as notas sobre a nova versão."
  622. #: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277
  623. msgctxt "@action:button"
  624. msgid "Next"
  625. msgstr "Seguinte"
  626. #: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68
  627. msgctxt "@action:button"
  628. msgid "Skip"
  629. msgstr "Ignorar"
  630. #: cura/UI/WhatsNewPagesModel.py:76
  631. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175
  632. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  633. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444
  634. #: resources/qml/Dialogs/AboutDialog.qml:188
  635. msgctxt "@action:button"
  636. msgid "Close"
  637. msgstr "Fechar"
  638. #: cura/UltimakerCloud/CloudMaterialSync.py:66
  639. msgctxt "@action:button"
  640. msgid "Please sync the material profiles with your printers before starting to print."
  641. msgstr "Sincronize os perfis de material com as suas impressoras antes de começar a imprimir."
  642. #: cura/UltimakerCloud/CloudMaterialSync.py:67
  643. msgctxt "@action:button"
  644. msgid "New materials installed"
  645. msgstr "Novos materiais instalados"
  646. #: cura/UltimakerCloud/CloudMaterialSync.py:74
  647. msgctxt "@action:button"
  648. msgid "Sync materials"
  649. msgstr "Sincronizar materiais"
  650. #: cura/UltimakerCloud/CloudMaterialSync.py:82
  651. #: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80
  652. msgctxt "@action:button"
  653. msgid "Learn more"
  654. msgstr "Saber mais"
  655. #: cura/UltimakerCloud/CloudMaterialSync.py:135
  656. msgctxt "@message:text"
  657. msgid "Could not save material archive to {}:"
  658. msgstr "Não foi possível guardar o arquivo de material em {}:"
  659. #: cura/UltimakerCloud/CloudMaterialSync.py:136
  660. msgctxt "@message:title"
  661. msgid "Failed to save material archive"
  662. msgstr "Erro ao guardar o arquivo de material"
  663. #: cura/UltimakerCloud/CloudMaterialSync.py:188
  664. msgctxt "@text"
  665. msgid "Unknown error."
  666. msgstr "Erro desconhecido."
  667. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
  668. #, python-brace-format
  669. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  670. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  671. 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 disso, serão importados os modelos."
  672. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
  673. msgctxt "@info:title"
  674. msgid "Open Project File"
  675. msgstr "Abrir ficheiro de projeto"
  676. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
  677. #: plugins/3MFReader/WorkspaceDialog.qml:99
  678. #: plugins/3MFReader/WorkspaceDialog.qml:127
  679. #: plugins/3MFReader/WorkspaceDialog.qml:134
  680. msgctxt "@button"
  681. msgid "Create new"
  682. msgstr "Criar nova"
  683. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
  684. #, python-brace-format
  685. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  686. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  687. msgstr "O projeto de ficheiro <filename>{0}</filename> ficou subitamente inacessível: <message>{1}</message>."
  688. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
  689. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
  690. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
  691. msgctxt "@info:title"
  692. msgid "Can't Open Project File"
  693. msgstr "Não é possível abrir o ficheiro de projeto"
  694. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
  695. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
  696. #, python-brace-format
  697. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  698. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  699. msgstr "O ficheiro de projeto <filename>{0}</filename> está corrompido: <message>{1}</message>."
  700. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
  701. #, python-brace-format
  702. msgctxt "@info:error Don't translate the XML tag <filename>!"
  703. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  704. msgstr "O ficheiro de projeto <filename>{0}</filename> foi criado utilizando perfis que são desconhecidos para esta versão do UltiMaker Cura."
  705. #: plugins/3MFReader/WorkspaceDialog.py:233
  706. msgctxt "@title:tab"
  707. msgid "Recommended"
  708. msgstr "Recomendado"
  709. #: plugins/3MFReader/WorkspaceDialog.py:235
  710. msgctxt "@title:tab"
  711. msgid "Custom"
  712. msgstr "Personalizado"
  713. #: plugins/3MFReader/WorkspaceDialog.py:411
  714. msgctxt "@info:status"
  715. msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace."
  716. msgstr "O material utilizado neste projeto baseia-se em algumas definições de material não disponíveis no Cura, o que pode produzir resultados de impressão indesejáveis. Recomendamos vivamente a instalação do pacote completo do material a partir do Marketplace."
  717. #: plugins/3MFReader/WorkspaceDialog.py:413
  718. msgctxt "@info:title"
  719. msgid "Material profiles not installed"
  720. msgstr "Perfis do material não instalados"
  721. #: plugins/3MFReader/WorkspaceDialog.py:426
  722. msgctxt "@action:button"
  723. msgid "Install Materials"
  724. msgstr "Instalar materiais"
  725. #: plugins/3MFReader/WorkspaceDialog.qml:15
  726. msgctxt "@title:window"
  727. msgid "Open Project"
  728. msgstr "Abrir Projeto"
  729. #: plugins/3MFReader/WorkspaceDialog.qml:31
  730. msgctxt "@action:title"
  731. msgid "UPDATED TITLE III"
  732. msgstr ""
  733. #: plugins/3MFReader/WorkspaceDialog.qml:65
  734. msgctxt "@action:ComboBox Update/override existing profile"
  735. msgid "Update existing"
  736. msgstr "Atualizar existente"
  737. #: plugins/3MFReader/WorkspaceDialog.qml:66
  738. msgctxt "@action:ComboBox Save settings in a new profile"
  739. msgid "Create new"
  740. msgstr "Criar nova"
  741. #: plugins/3MFReader/WorkspaceDialog.qml:83
  742. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  743. msgctxt "@action:label"
  744. msgid "Printer settings"
  745. msgstr "Definições da impressora"
  746. #: plugins/3MFReader/WorkspaceDialog.qml:92
  747. #: plugins/3MFReader/WorkspaceRow.qml:23
  748. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  749. msgctxt "@action:label"
  750. msgid "Type"
  751. msgstr "Tipo"
  752. #: plugins/3MFReader/WorkspaceDialog.qml:98
  753. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  754. msgctxt "@action:label"
  755. msgid "Printer Group"
  756. msgstr "Grupo da Impressora"
  757. #: plugins/3MFReader/WorkspaceDialog.qml:103
  758. msgctxt "@action:label"
  759. msgid "Open With"
  760. msgstr "Abrir"
  761. #: plugins/3MFReader/WorkspaceDialog.qml:104
  762. msgctxt "@info:tooltip"
  763. msgid "Printer settings will be updated to match the settings saved with the project."
  764. msgstr "As definições da impressora serão atualizadas para corresponder às definições guardadas com o projeto."
  765. #: plugins/3MFReader/WorkspaceDialog.qml:156
  766. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  767. msgctxt "@action:label"
  768. msgid "Profile settings"
  769. msgstr "Definições do perfil"
  770. #: plugins/3MFReader/WorkspaceDialog.qml:166
  771. #: plugins/3MFReader/WorkspaceDialog.qml:238
  772. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  773. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  774. msgctxt "@action:label"
  775. msgid "Name"
  776. msgstr "Nome"
  777. #: plugins/3MFReader/WorkspaceDialog.qml:172
  778. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  779. msgctxt "@action:label"
  780. msgid "Intent"
  781. msgstr ""
  782. #: plugins/3MFReader/WorkspaceDialog.qml:178
  783. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  784. msgctxt "@action:label"
  785. msgid "Not in profile"
  786. msgstr "Inexistente no perfil"
  787. #: plugins/3MFReader/WorkspaceDialog.qml:179
  788. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  789. msgctxt "@action:label"
  790. msgid "%1 override"
  791. msgid_plural "%1 overrides"
  792. msgstr[0] "%1 substituição"
  793. msgstr[1] "%1 substituições"
  794. #: plugins/3MFReader/WorkspaceDialog.qml:185
  795. msgctxt "@action:label"
  796. msgid "Derivative from"
  797. msgstr "Derivado de"
  798. #: plugins/3MFReader/WorkspaceDialog.qml:186
  799. msgctxt "@action:label"
  800. msgid "%1, %2 override"
  801. msgid_plural "%1, %2 overrides"
  802. msgstr[0] "%1, %2 substituição"
  803. msgstr[1] "%1, %2 substituições"
  804. #: plugins/3MFReader/WorkspaceDialog.qml:226
  805. msgctxt "@action:label"
  806. msgid "Material settings"
  807. msgstr "Definições de material"
  808. #: plugins/3MFReader/WorkspaceDialog.qml:280
  809. msgctxt "@action:label"
  810. msgid "Setting visibility"
  811. msgstr "Visibilidade das definições"
  812. #: plugins/3MFReader/WorkspaceDialog.qml:290
  813. msgctxt "@action:label"
  814. msgid "Mode"
  815. msgstr "Modo"
  816. #: plugins/3MFReader/WorkspaceDialog.qml:296
  817. msgctxt "@action:label"
  818. msgid "%1 out of %2"
  819. msgstr "%1 de %2"
  820. #: plugins/3MFReader/WorkspaceDialog.qml:321
  821. msgctxt "@action:warning"
  822. msgid "Loading a project will clear all models on the build plate."
  823. msgstr "Abrir um projeto irá apagar todos os modelos na base de construção."
  824. #: plugins/3MFReader/WorkspaceDialog.qml:367
  825. msgctxt "@label"
  826. msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  827. msgstr "O material usado neste projeto não está atualmente instalado no Cura.<br/>Instale o perfil de material e reabra o projeto."
  828. #: plugins/3MFReader/WorkspaceDialog.qml:392
  829. msgctxt "@action:button"
  830. msgid "Open"
  831. msgstr "Abrir"
  832. #: plugins/3MFReader/WorkspaceDialog.qml:398
  833. msgctxt "@action:button"
  834. msgid "Open project anyway"
  835. msgstr "De qualquer modo, abrir o projecto"
  836. #: plugins/3MFReader/WorkspaceDialog.qml:407
  837. msgctxt "@action:button"
  838. msgid "Install missing material"
  839. msgstr "Instalar material em falta"
  840. #: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33
  841. msgctxt "@item:inlistbox"
  842. msgid "3MF File"
  843. msgstr "Ficheiro 3MF"
  844. #: plugins/3MFReader/plugin.json
  845. msgctxt "name"
  846. msgid "3MF Reader"
  847. msgstr "Leitor de 3MF"
  848. #: plugins/3MFReader/plugin.json
  849. msgctxt "description"
  850. msgid "Provides support for reading 3MF files."
  851. msgstr "Fornece suporte para ler ficheiros 3MF."
  852. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  853. msgctxt "@error:zip"
  854. msgid "3MF Writer plug-in is corrupt."
  855. msgstr "O plug-in Gravador 3MF está danificado."
  856. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  857. msgctxt "@error"
  858. msgid "There is no workspace yet to write. Please add a printer first."
  859. msgstr "Ainda não existe um espaço de trabalho para gravar. Por favor, primeiro adicione uma impressora."
  860. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  861. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  862. msgctxt "@error:zip"
  863. msgid "No permission to write the workspace here."
  864. msgstr "Não tem permissão para escrever o espaço de trabalho aqui."
  865. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  866. msgctxt "@error:zip"
  867. msgid "The operating system does not allow saving a project file to this location or with this file name."
  868. msgstr "O sistema operativo não permite guardar um ficheiro de projeto nesta localização ou com este nome de ficheiro."
  869. #: plugins/3MFWriter/ThreeMFWriter.py:240
  870. msgctxt "@error:zip"
  871. msgid "Error writing 3mf file."
  872. msgstr "Erro ao gravar ficheiro 3mf."
  873. #: plugins/3MFWriter/__init__.py:28
  874. msgctxt "@item:inlistbox"
  875. msgid "3MF file"
  876. msgstr "Ficheiro 3MF"
  877. #: plugins/3MFWriter/__init__.py:36
  878. msgctxt "@item:inlistbox"
  879. msgid "Cura Project 3MF file"
  880. msgstr "Ficheiro 3MF de Projeto Cura"
  881. #: plugins/3MFWriter/plugin.json
  882. msgctxt "name"
  883. msgid "3MF Writer"
  884. msgstr "Gravador 3MF"
  885. #: plugins/3MFWriter/plugin.json
  886. msgctxt "description"
  887. msgid "Provides support for writing 3MF files."
  888. msgstr "Possiblita a gravação de ficheiros 3MF."
  889. #: plugins/AMFReader/__init__.py:15
  890. msgctxt "@item:inlistbox"
  891. msgid "AMF File"
  892. msgstr "Ficheiro AMF"
  893. #: plugins/AMFReader/plugin.json
  894. msgctxt "name"
  895. msgid "AMF Reader"
  896. msgstr "Leitor de AMF"
  897. #: plugins/AMFReader/plugin.json
  898. msgctxt "description"
  899. msgid "Provides support for reading AMF files."
  900. msgstr "Fornece suporte para ler ficheiros AMF."
  901. #: plugins/CuraDrive/plugin.json
  902. msgctxt "description"
  903. msgid "Backup and restore your configuration."
  904. msgstr "Efetua uma cópia de segurança e repõe a sua configuração."
  905. #: plugins/CuraDrive/plugin.json
  906. msgctxt "name"
  907. msgid "Cura Backups"
  908. msgstr "Cópias de segurança do Cura"
  909. #: plugins/CuraDrive/src/CreateBackupJob.py:25
  910. msgctxt "@info:title"
  911. msgid "Backups"
  912. msgstr "Cópias de segurança"
  913. #: plugins/CuraDrive/src/CreateBackupJob.py:26
  914. msgctxt "@info:backup_status"
  915. msgid "There was an error while uploading your backup."
  916. msgstr "Ocorreu um erro ao carregar a sua cópia de segurança."
  917. #: plugins/CuraDrive/src/CreateBackupJob.py:46
  918. msgctxt "@info:backup_status"
  919. msgid "Creating your backup..."
  920. msgstr "A criar a cópia de segurança..."
  921. #: plugins/CuraDrive/src/CreateBackupJob.py:55
  922. msgctxt "@info:backup_status"
  923. msgid "There was an error while creating your backup."
  924. msgstr "Ocorreu um erro ao criar a cópia de segurança."
  925. #: plugins/CuraDrive/src/CreateBackupJob.py:59
  926. msgctxt "@info:backup_status"
  927. msgid "Uploading your backup..."
  928. msgstr "A carregar a sua cópia de segurança..."
  929. #: plugins/CuraDrive/src/CreateBackupJob.py:69
  930. msgctxt "@info:backup_status"
  931. msgid "Your backup has finished uploading."
  932. msgstr "A cópia de segurança terminou o seu carregamento."
  933. #: plugins/CuraDrive/src/CreateBackupJob.py:103
  934. msgctxt "@error:file_size"
  935. msgid "The backup exceeds the maximum file size."
  936. msgstr "A cópia de segurança excede o tamanho de ficheiro máximo."
  937. #: plugins/CuraDrive/src/DriveApiService.py:86
  938. #: plugins/CuraDrive/src/RestoreBackupJob.py:26
  939. msgctxt "@info:backup_status"
  940. msgid "There was an error trying to restore your backup."
  941. msgstr "Ocorreu um erro ao tentar restaurar a sua cópia de segurança."
  942. #: plugins/CuraDrive/src/DrivePluginExtension.py:69
  943. msgctxt "@item:inmenu"
  944. msgid "Manage backups"
  945. msgstr "Gerir cópias de segurança"
  946. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  947. msgctxt "@button"
  948. msgid "Want more?"
  949. msgstr "Deseja mais?"
  950. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  951. msgctxt "@button"
  952. msgid "Backup Now"
  953. msgstr "Efetuar cópia de segurança agora"
  954. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  955. msgctxt "@checkbox:description"
  956. msgid "Auto Backup"
  957. msgstr "Efetuar cópia de segurança automaticamente"
  958. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  959. msgctxt "@checkbox:description"
  960. msgid "Automatically create a backup each day that Cura is started."
  961. msgstr "Criar automaticamente uma cópia de segurança sempre que o Cura é iniciado."
  962. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  963. msgctxt "@button"
  964. msgid "Restore"
  965. msgstr "Restaurar"
  966. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  967. msgctxt "@dialog:title"
  968. msgid "Delete Backup"
  969. msgstr "Eliminar cópia de segurança"
  970. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  971. msgctxt "@dialog:info"
  972. msgid "Are you sure you want to delete this backup? This cannot be undone."
  973. msgstr "Tem a certeza de que pretende eliminar esta cópia de segurança? Esta ação não pode ser anulada."
  974. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  975. msgctxt "@dialog:title"
  976. msgid "Restore Backup"
  977. msgstr "Restaurar cópia de segurança"
  978. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  979. msgctxt "@dialog:info"
  980. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  981. msgstr "É necessário reiniciar o Cura para restaurar a sua cópia de segurança. Pretende fechar o Cura agora?"
  982. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  983. msgctxt "@backuplist:label"
  984. msgid "Cura Version"
  985. msgstr "Versão do Cura"
  986. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  987. msgctxt "@backuplist:label"
  988. msgid "Machines"
  989. msgstr "Máquinas"
  990. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  991. msgctxt "@backuplist:label"
  992. msgid "Materials"
  993. msgstr "Materiais"
  994. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  995. msgctxt "@backuplist:label"
  996. msgid "Profiles"
  997. msgstr "Perfis"
  998. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  999. msgctxt "@backuplist:label"
  1000. msgid "Plugins"
  1001. msgstr "Plug-ins"
  1002. #: plugins/CuraDrive/src/qml/main.qml:25
  1003. msgctxt "@title:window"
  1004. msgid "Cura Backups"
  1005. msgstr "Cópias de segurança do Cura"
  1006. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1007. msgctxt "@title"
  1008. msgid "My Backups"
  1009. msgstr "As minhas cópias de segurança"
  1010. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36
  1011. msgctxt "@empty_state"
  1012. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1013. 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."
  1014. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55
  1015. msgctxt "@backup_limit_info"
  1016. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1017. 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."
  1018. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1019. msgctxt "@description"
  1020. msgid "Backup and synchronize your Cura settings."
  1021. msgstr "Efetue a cópia de segurança e sincronize as suas definições do Cura."
  1022. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  1023. #: plugins/Marketplace/resources/qml/Marketplace.qml:312
  1024. #: resources/qml/Account/GeneralOperations.qml:49
  1025. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180
  1026. #: resources/qml/WelcomePages/CloudContent.qml:212
  1027. msgctxt "@button"
  1028. msgid "Sign in"
  1029. msgstr "Iniciar sessão"
  1030. #: plugins/CuraEngineBackend/CuraEngineBackend.py:162
  1031. msgctxt "@message"
  1032. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  1033. msgstr "O seccionamento falhou com um erro inesperado. Por favor reportar um erro no nosso registo de problemas."
  1034. #: plugins/CuraEngineBackend/CuraEngineBackend.py:163
  1035. msgctxt "@message:title"
  1036. msgid "Slicing failed"
  1037. msgstr "O seccionamento falhou"
  1038. #: plugins/CuraEngineBackend/CuraEngineBackend.py:168
  1039. msgctxt "@message:button"
  1040. msgid "Report a bug"
  1041. msgstr "Reportar um erro"
  1042. #: plugins/CuraEngineBackend/CuraEngineBackend.py:169
  1043. msgctxt "@message:description"
  1044. msgid "Report a bug on UltiMaker Cura's issue tracker."
  1045. msgstr "Reportar um erro no registo de problemas do UltiMaker Cura."
  1046. #: plugins/CuraEngineBackend/CuraEngineBackend.py:416
  1047. msgctxt "@info:status"
  1048. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  1049. msgstr "Não é possível seccionar com o material atual, uma vez que é incompatível com a impressora ou configuração selecionada."
  1050. #: plugins/CuraEngineBackend/CuraEngineBackend.py:417
  1051. #: plugins/CuraEngineBackend/CuraEngineBackend.py:450
  1052. #: plugins/CuraEngineBackend/CuraEngineBackend.py:477
  1053. #: plugins/CuraEngineBackend/CuraEngineBackend.py:489
  1054. #: plugins/CuraEngineBackend/CuraEngineBackend.py:501
  1055. #: plugins/CuraEngineBackend/CuraEngineBackend.py:514
  1056. msgctxt "@info:title"
  1057. msgid "Unable to slice"
  1058. msgstr "Não é possível Seccionar"
  1059. #: plugins/CuraEngineBackend/CuraEngineBackend.py:449
  1060. #, python-brace-format
  1061. msgctxt "@info:status"
  1062. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  1063. msgstr "Não é possível seccionar com as definições atuais. As seguintes definições apresentam erros: {0}"
  1064. #: plugins/CuraEngineBackend/CuraEngineBackend.py:476
  1065. #, python-brace-format
  1066. msgctxt "@info:status"
  1067. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  1068. 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}"
  1069. #: plugins/CuraEngineBackend/CuraEngineBackend.py:488
  1070. msgctxt "@info:status"
  1071. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  1072. 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."
  1073. #: plugins/CuraEngineBackend/CuraEngineBackend.py:500
  1074. #, python-format
  1075. msgctxt "@info:status"
  1076. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  1077. msgstr "Não é possível seccionar porque existem objetos associados ao extrusor %s desativado."
  1078. #: plugins/CuraEngineBackend/CuraEngineBackend.py:510
  1079. msgctxt "@info:status"
  1080. msgid ""
  1081. "Please review settings and check if your models:\n"
  1082. "- Fit within the build volume\n"
  1083. "- Are assigned to an enabled extruder\n"
  1084. "- Are not all set as modifier meshes"
  1085. msgstr ""
  1086. "Reveja as definições e verifique se os seus modelos:\n"
  1087. "- Cabem dentro do volume de construção\n"
  1088. "- Estão atribuídos a uma extrusora ativada\n"
  1089. "- Não estão todos definidos como objetos modificadores"
  1090. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  1091. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  1092. msgctxt "@info:status"
  1093. msgid "Processing Layers"
  1094. msgstr "A Processar Camadas"
  1095. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  1096. msgctxt "@info:title"
  1097. msgid "Information"
  1098. msgstr "Informações"
  1099. #: plugins/CuraEngineBackend/plugin.json
  1100. msgctxt "name"
  1101. msgid "CuraEngine Backend"
  1102. msgstr "Back-end do CuraEngine"
  1103. #: plugins/CuraEngineBackend/plugin.json
  1104. msgctxt "description"
  1105. msgid "Provides the link to the CuraEngine slicing backend."
  1106. msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine."
  1107. #: plugins/CuraProfileReader/__init__.py:14
  1108. #: plugins/CuraProfileWriter/__init__.py:14
  1109. msgctxt "@item:inlistbox"
  1110. msgid "Cura Profile"
  1111. msgstr "Perfil Cura"
  1112. #: plugins/CuraProfileReader/plugin.json
  1113. msgctxt "name"
  1114. msgid "Cura Profile Reader"
  1115. msgstr "Leitor de Perfis Cura"
  1116. #: plugins/CuraProfileReader/plugin.json
  1117. msgctxt "description"
  1118. msgid "Provides support for importing Cura profiles."
  1119. msgstr "Fornece suporte para importar perfis Cura."
  1120. #: plugins/CuraProfileWriter/plugin.json
  1121. msgctxt "name"
  1122. msgid "Cura Profile Writer"
  1123. msgstr "Gravador de perfis Cura"
  1124. #: plugins/CuraProfileWriter/plugin.json
  1125. msgctxt "description"
  1126. msgid "Provides support for exporting Cura profiles."
  1127. msgstr "Possibilita a exportação de perfis do Cura."
  1128. #: plugins/DigitalLibrary/plugin.json
  1129. msgctxt "description"
  1130. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  1131. msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma."
  1132. #: plugins/DigitalLibrary/plugin.json
  1133. msgctxt "name"
  1134. msgid "Ultimaker Digital Library"
  1135. msgstr "Biblioteca Digital UltiMaker"
  1136. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216
  1137. msgctxt "@option"
  1138. msgid "Save Cura project and print file"
  1139. msgstr "Guardar o projeto Cura e o ficheiro de impressão"
  1140. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217
  1141. msgctxt "@option"
  1142. msgid "Save Cura project"
  1143. msgstr "Guardar projeto Cura"
  1144. #: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19
  1145. msgctxt "@text Placeholder for the username if it has been deleted"
  1146. msgid "deleted user"
  1147. msgstr "utilizador excluído"
  1148. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1149. msgctxt "@info"
  1150. msgid "Could not access update information."
  1151. msgstr "Não foi possível aceder às informações de atualização."
  1152. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1153. #, python-brace-format
  1154. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1155. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1156. 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 que atualize o firmware da sua impressora para a versão {latest_version}."
  1157. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1158. #, python-format
  1159. msgctxt "@info:title The %s gets replaced with the printer name."
  1160. msgid "New %s stable firmware available"
  1161. msgstr "A nova versão de firmware %s estável está disponível"
  1162. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1163. msgctxt "@action:button"
  1164. msgid "How to update"
  1165. msgstr "Como atualizar"
  1166. #: plugins/FirmwareUpdateChecker/plugin.json
  1167. msgctxt "description"
  1168. msgid "Checks for firmware updates."
  1169. msgstr "Procura e verifica se existem atualizações de firmware."
  1170. #: plugins/FirmwareUpdateChecker/plugin.json
  1171. msgctxt "name"
  1172. msgid "Firmware Update Checker"
  1173. msgstr "Verificador Atualizações Firmware"
  1174. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  1175. msgctxt "@action"
  1176. msgid "Update Firmware"
  1177. msgstr "Atualizar firmware"
  1178. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1179. msgctxt "@title"
  1180. msgid "Update Firmware"
  1181. msgstr "Atualizar firmware"
  1182. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1183. msgctxt "@label"
  1184. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1185. msgstr "O firmware é o software que é executado diretamente na sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e basicamente assegura o funcionamento da sua impressora."
  1186. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1187. msgctxt "@label"
  1188. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1189. msgstr "O firmware que é expedido com as novas impressoras funciona corretamente, mas as novas versões costumam ter mais funcionalidades e melhorias."
  1190. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1191. msgctxt "@action:button"
  1192. msgid "Automatically upgrade Firmware"
  1193. msgstr "Atualizar firmware automaticamente"
  1194. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1195. msgctxt "@action:button"
  1196. msgid "Upload custom Firmware"
  1197. msgstr "Carregar firmware personalizado"
  1198. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1199. msgctxt "@label"
  1200. msgid "Firmware can not be updated because there is no connection with the printer."
  1201. msgstr "O firmware não pode ser atualizado por não existir ligação com a impressora."
  1202. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1203. msgctxt "@label"
  1204. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1205. msgstr "O firmware não pode ser atualizado porque a ligação com a impressora não suporta a atualização de firmware."
  1206. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1207. msgctxt "@title:window"
  1208. msgid "Select custom firmware"
  1209. msgstr "Selecionar firmware personalizado"
  1210. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113
  1211. msgctxt "@title:window"
  1212. msgid "Firmware Update"
  1213. msgstr "Atualização de firmware"
  1214. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137
  1215. msgctxt "@label"
  1216. msgid "Updating firmware."
  1217. msgstr "A atualizar firmware."
  1218. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139
  1219. msgctxt "@label"
  1220. msgid "Firmware update completed."
  1221. msgstr "Atualização de firmware concluída."
  1222. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141
  1223. msgctxt "@label"
  1224. msgid "Firmware update failed due to an unknown error."
  1225. msgstr "A atualização de firmware falhou devido a um erro desconhecido."
  1226. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1227. msgctxt "@label"
  1228. msgid "Firmware update failed due to an communication error."
  1229. msgstr "A atualização de firmware falhou devido a um erro de comunicação."
  1230. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1231. msgctxt "@label"
  1232. msgid "Firmware update failed due to an input/output error."
  1233. msgstr "A atualização de firmware falhou devido a um erro de entrada/saída."
  1234. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1235. msgctxt "@label"
  1236. msgid "Firmware update failed due to missing firmware."
  1237. msgstr "A atualização de firmware falhou devido à ausência de firmware."
  1238. #: plugins/FirmwareUpdater/plugin.json
  1239. msgctxt "name"
  1240. msgid "Firmware Updater"
  1241. msgstr "Atualizador de firmware"
  1242. #: plugins/FirmwareUpdater/plugin.json
  1243. msgctxt "description"
  1244. msgid "Provides a machine actions for updating firmware."
  1245. msgstr "Disponibiliza as ações da máquina para atualizar o firmware."
  1246. #: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17
  1247. msgctxt "@item:inlistbox"
  1248. msgid "Compressed G-code File"
  1249. msgstr "Ficheiro G-code comprimido"
  1250. #: plugins/GCodeGzReader/plugin.json
  1251. msgctxt "name"
  1252. msgid "Compressed G-code Reader"
  1253. msgstr "Leitor de G-code comprimido"
  1254. #: plugins/GCodeGzReader/plugin.json
  1255. msgctxt "description"
  1256. msgid "Reads g-code from a compressed archive."
  1257. msgstr "Lê o g-code a partir de um arquivo comprimido."
  1258. #: plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1259. msgctxt "@error:not supported"
  1260. msgid "GCodeGzWriter does not support text mode."
  1261. msgstr "O GCodeGzWriter não suporta modo de texto."
  1262. #: plugins/GCodeGzWriter/plugin.json
  1263. msgctxt "name"
  1264. msgid "Compressed G-code Writer"
  1265. msgstr "Gravador de G-code comprimido"
  1266. #: plugins/GCodeGzWriter/plugin.json
  1267. msgctxt "description"
  1268. msgid "Writes g-code to a compressed archive."
  1269. msgstr "Grava o g-code num arquivo comprimido."
  1270. #: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14
  1271. #: plugins/GCodeWriter/__init__.py:16
  1272. msgctxt "@item:inlistbox"
  1273. msgid "G-code File"
  1274. msgstr "Ficheiro G-code"
  1275. #: plugins/GCodeProfileReader/plugin.json
  1276. msgctxt "name"
  1277. msgid "G-code Profile Reader"
  1278. msgstr "Leitor de perfis G-code"
  1279. #: plugins/GCodeProfileReader/plugin.json
  1280. msgctxt "description"
  1281. msgid "Provides support for importing profiles from g-code files."
  1282. msgstr "Permite importar perfis a partir de ficheiros g-code."
  1283. #: plugins/GCodeReader/FlavorParser.py:359
  1284. msgctxt "@info:status"
  1285. msgid "Parsing G-code"
  1286. msgstr "A analisar G-code"
  1287. #: plugins/GCodeReader/FlavorParser.py:361
  1288. #: plugins/GCodeReader/FlavorParser.py:515
  1289. msgctxt "@info:title"
  1290. msgid "G-code Details"
  1291. msgstr "Detalhes do G-code"
  1292. #: plugins/GCodeReader/FlavorParser.py:513
  1293. msgctxt "@info:generic"
  1294. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  1295. 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 do g-code poderá não ser exata."
  1296. #: plugins/GCodeReader/__init__.py:18
  1297. msgctxt "@item:inlistbox"
  1298. msgid "G File"
  1299. msgstr "Ficheiro G"
  1300. #: plugins/GCodeReader/plugin.json
  1301. msgctxt "description"
  1302. msgid "Allows loading and displaying G-code files."
  1303. msgstr "Permite abrir e visualizar ficheiros G-code."
  1304. #: plugins/GCodeReader/plugin.json
  1305. msgctxt "name"
  1306. msgid "G-code Reader"
  1307. msgstr "Leitor de G-code"
  1308. #: plugins/GCodeWriter/GCodeWriter.py:75
  1309. msgctxt "@error:not supported"
  1310. msgid "GCodeWriter does not support non-text mode."
  1311. msgstr "O GCodeWriter não suporta modo sem texto."
  1312. #: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97
  1313. msgctxt "@warning:status"
  1314. msgid "Please prepare G-code before exporting."
  1315. msgstr "Prepare um G-code antes de exportar."
  1316. #: plugins/GCodeWriter/plugin.json
  1317. msgctxt "name"
  1318. msgid "G-code Writer"
  1319. msgstr "Gravador de G-code"
  1320. #: plugins/GCodeWriter/plugin.json
  1321. msgctxt "description"
  1322. msgid "Writes g-code to a file."
  1323. msgstr "Grava o g-code num ficheiro."
  1324. #: plugins/ImageReader/ConfigUI.qml:14
  1325. msgctxt "@title:window"
  1326. msgid "Convert Image"
  1327. msgstr "Converter Imagem"
  1328. #: plugins/ImageReader/ConfigUI.qml:33
  1329. msgctxt "@action:label"
  1330. msgid "Height (mm)"
  1331. msgstr "Altura (mm)"
  1332. #: plugins/ImageReader/ConfigUI.qml:56
  1333. msgctxt "@info:tooltip"
  1334. msgid "The maximum distance of each pixel from \"Base.\""
  1335. msgstr "A distância máxima de cada pixel desde a \"Base\""
  1336. #: plugins/ImageReader/ConfigUI.qml:66
  1337. msgctxt "@action:label"
  1338. msgid "Base (mm)"
  1339. msgstr "Base (mm)"
  1340. #: plugins/ImageReader/ConfigUI.qml:90
  1341. msgctxt "@info:tooltip"
  1342. msgid "The base height from the build plate in millimeters."
  1343. msgstr "A altura da \"Base\" desde a base de construção em milímetros."
  1344. #: plugins/ImageReader/ConfigUI.qml:100
  1345. msgctxt "@action:label"
  1346. msgid "Width (mm)"
  1347. msgstr "Largura (mm)"
  1348. #: plugins/ImageReader/ConfigUI.qml:124
  1349. msgctxt "@info:tooltip"
  1350. msgid "The width in millimeters on the build plate"
  1351. msgstr "A largura em milímetros na base de construção"
  1352. #: plugins/ImageReader/ConfigUI.qml:134
  1353. msgctxt "@action:label"
  1354. msgid "Depth (mm)"
  1355. msgstr "Profundidade (mm)"
  1356. #: plugins/ImageReader/ConfigUI.qml:158
  1357. msgctxt "@info:tooltip"
  1358. msgid "The depth in millimeters on the build plate"
  1359. msgstr "A profundidade em milímetros na base de construção"
  1360. #: plugins/ImageReader/ConfigUI.qml:187
  1361. msgctxt "@item:inlistbox"
  1362. msgid "Darker is higher"
  1363. msgstr "Mais escuro é mais alto"
  1364. #: plugins/ImageReader/ConfigUI.qml:188
  1365. msgctxt "@item:inlistbox"
  1366. msgid "Lighter is higher"
  1367. msgstr "Mais claro é mais alto"
  1368. #: plugins/ImageReader/ConfigUI.qml:195
  1369. msgctxt "@info:tooltip"
  1370. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1371. 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 mais claros significam um terreno mais alto, por isso, os pixels mais claros devem corresponder a localizações mais espessas no modelo 3D gerado."
  1372. #: plugins/ImageReader/ConfigUI.qml:205
  1373. msgctxt "@action:label"
  1374. msgid "Color Model"
  1375. msgstr "Modelo de cor"
  1376. #: plugins/ImageReader/ConfigUI.qml:224
  1377. msgctxt "@item:inlistbox"
  1378. msgid "Linear"
  1379. msgstr "Linear"
  1380. #: plugins/ImageReader/ConfigUI.qml:225
  1381. msgctxt "@item:inlistbox"
  1382. msgid "Translucency"
  1383. msgstr "Translucidez"
  1384. #: plugins/ImageReader/ConfigUI.qml:232
  1385. msgctxt "@info:tooltip"
  1386. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1387. 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 linear à elevação."
  1388. #: plugins/ImageReader/ConfigUI.qml:242
  1389. msgctxt "@action:label"
  1390. msgid "1mm Transmittance (%)"
  1391. msgstr "(%) transmitância de 1 mm"
  1392. #: plugins/ImageReader/ConfigUI.qml:263
  1393. msgctxt "@info:tooltip"
  1394. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  1395. 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 o contraste em regiões claras da imagem."
  1396. #: plugins/ImageReader/ConfigUI.qml:274
  1397. msgctxt "@action:label"
  1398. msgid "Smoothing"
  1399. msgstr "Suavização"
  1400. #: plugins/ImageReader/ConfigUI.qml:298
  1401. msgctxt "@info:tooltip"
  1402. msgid "The amount of smoothing to apply to the image."
  1403. msgstr "A quantidade de suavização a aplicar à imagem."
  1404. #: plugins/ImageReader/ConfigUI.qml:329
  1405. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136
  1406. #: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25
  1407. msgctxt "@action:button"
  1408. msgid "OK"
  1409. msgstr "OK"
  1410. #: plugins/ImageReader/__init__.py:14
  1411. msgctxt "@item:inlistbox"
  1412. msgid "JPG Image"
  1413. msgstr "Imagem JPG"
  1414. #: plugins/ImageReader/__init__.py:18
  1415. msgctxt "@item:inlistbox"
  1416. msgid "JPEG Image"
  1417. msgstr "Imagem JPEG"
  1418. #: plugins/ImageReader/__init__.py:22
  1419. msgctxt "@item:inlistbox"
  1420. msgid "PNG Image"
  1421. msgstr "Imagem PNG"
  1422. #: plugins/ImageReader/__init__.py:26
  1423. msgctxt "@item:inlistbox"
  1424. msgid "BMP Image"
  1425. msgstr "Imagem BMP"
  1426. #: plugins/ImageReader/__init__.py:30
  1427. msgctxt "@item:inlistbox"
  1428. msgid "GIF Image"
  1429. msgstr "Imagem GIF"
  1430. #: plugins/ImageReader/plugin.json
  1431. msgctxt "description"
  1432. msgid "Enables ability to generate printable geometry from 2D image files."
  1433. msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D."
  1434. #: plugins/ImageReader/plugin.json
  1435. msgctxt "name"
  1436. msgid "Image Reader"
  1437. msgstr "Leitor de imagens"
  1438. #: plugins/LegacyProfileReader/__init__.py:14
  1439. msgctxt "@item:inlistbox"
  1440. msgid "Cura 15.04 profiles"
  1441. msgstr "Perfis Cura 15.04"
  1442. #: plugins/LegacyProfileReader/plugin.json
  1443. msgctxt "name"
  1444. msgid "Legacy Cura Profile Reader"
  1445. msgstr "Leitor de perfis antigos do Cura"
  1446. #: plugins/LegacyProfileReader/plugin.json
  1447. msgctxt "description"
  1448. msgid "Provides support for importing profiles from legacy Cura versions."
  1449. msgstr "Permite importar perfis de versões antigas do Cura."
  1450. #: plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1451. msgctxt "@action"
  1452. msgid "Machine Settings"
  1453. msgstr "Definições da Máquina"
  1454. #: plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1455. msgctxt "@title:tab"
  1456. msgid "Printer"
  1457. msgstr "Impressora"
  1458. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1459. msgctxt "@title:label"
  1460. msgid "Nozzle Settings"
  1461. msgstr "Definições do nozzle"
  1462. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74
  1463. msgctxt "@label"
  1464. msgid "Nozzle size"
  1465. msgstr "Tamanho do nozzle"
  1466. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78
  1467. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92
  1468. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108
  1469. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123
  1470. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72
  1471. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87
  1472. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  1473. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1474. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1475. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1476. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1477. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1478. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85
  1479. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99
  1480. msgctxt "@label"
  1481. msgid "mm"
  1482. msgstr "mm"
  1483. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88
  1484. msgctxt "@label"
  1485. msgid "Compatible material diameter"
  1486. msgstr "Diâmetro do material compatível"
  1487. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104
  1488. msgctxt "@label"
  1489. msgid "Nozzle offset X"
  1490. msgstr "Desvio X do Nozzle"
  1491. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119
  1492. msgctxt "@label"
  1493. msgid "Nozzle offset Y"
  1494. msgstr "Desvio Y do Nozzle"
  1495. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134
  1496. msgctxt "@label"
  1497. msgid "Cooling Fan Number"
  1498. msgstr "Número de ventoinha de arrefecimento"
  1499. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1500. msgctxt "@title:label"
  1501. msgid "Extruder Start G-code"
  1502. msgstr "G-code inicial do extrusor"
  1503. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1504. msgctxt "@title:label"
  1505. msgid "Extruder End G-code"
  1506. msgstr "G-code final do extrusor"
  1507. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1508. msgctxt "@title:label"
  1509. msgid "Printer Settings"
  1510. msgstr "Definições da impressora"
  1511. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68
  1512. msgctxt "@label"
  1513. msgid "X (Width)"
  1514. msgstr "X (Largura)"
  1515. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83
  1516. msgctxt "@label"
  1517. msgid "Y (Depth)"
  1518. msgstr "Y (Profundidade)"
  1519. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1520. msgctxt "@label"
  1521. msgid "Z (Height)"
  1522. msgstr "Z (Altura)"
  1523. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1524. msgctxt "@label"
  1525. msgid "Build plate shape"
  1526. msgstr "Forma da base de construção"
  1527. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1528. msgctxt "@label"
  1529. msgid "Origin at center"
  1530. msgstr "Origem no centro"
  1531. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1532. msgctxt "@label"
  1533. msgid "Heated bed"
  1534. msgstr "Base aquecida"
  1535. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1536. msgctxt "@label"
  1537. msgid "Heated build volume"
  1538. msgstr "Volume de construção aquecido"
  1539. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1540. msgctxt "@label"
  1541. msgid "G-code flavor"
  1542. msgstr "Variante do G-code"
  1543. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1544. msgctxt "@title:label"
  1545. msgid "Printhead Settings"
  1546. msgstr "Definições da cabeça de impressão"
  1547. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197
  1548. msgctxt "@label"
  1549. msgid "X min"
  1550. msgstr "X mín"
  1551. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217
  1552. msgctxt "@label"
  1553. msgid "Y min"
  1554. msgstr "Y mín"
  1555. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237
  1556. msgctxt "@label"
  1557. msgid "X max"
  1558. msgstr "X máx"
  1559. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257
  1560. msgctxt "@label"
  1561. msgid "Y max"
  1562. msgstr "Y máx"
  1563. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275
  1564. msgctxt "@label"
  1565. msgid "Gantry Height"
  1566. msgstr "Altura do pórtico"
  1567. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289
  1568. msgctxt "@label"
  1569. msgid "Number of Extruders"
  1570. msgstr "Número de Extrusores"
  1571. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341
  1572. msgctxt "@label"
  1573. msgid "Apply Extruder offsets to GCode"
  1574. msgstr "Aplicar desvios da extrusora ao GCode"
  1575. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389
  1576. msgctxt "@title:label"
  1577. msgid "Start G-code"
  1578. msgstr "G-code inicial"
  1579. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400
  1580. msgctxt "@title:label"
  1581. msgid "End G-code"
  1582. msgstr "G-code final"
  1583. #: plugins/MachineSettingsAction/plugin.json
  1584. msgctxt "name"
  1585. msgid "Machine Settings Action"
  1586. msgstr "Função Definições da Máquina"
  1587. #: plugins/MachineSettingsAction/plugin.json
  1588. msgctxt "description"
  1589. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  1590. msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)."
  1591. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  1592. msgctxt "@info:generic"
  1593. msgid "Do you want to sync material and software packages with your account?"
  1594. msgstr "Pretende sincronizar o material e os pacotes de software com a sua conta?"
  1595. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  1596. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  1597. msgctxt "@info:title"
  1598. msgid "Changes detected from your UltiMaker account"
  1599. msgstr "Foram detetadas alterações da sua conta UltiMaker"
  1600. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147
  1601. msgctxt "@action:button"
  1602. msgid "Sync"
  1603. msgstr "Sincronizar"
  1604. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  1605. msgctxt "@info:generic"
  1606. msgid "Syncing..."
  1607. msgstr "A sincronizar..."
  1608. #: plugins/Marketplace/CloudSync/LicenseModel.py:12
  1609. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:79
  1610. msgctxt "@button"
  1611. msgid "Decline"
  1612. msgstr "Rejeitar"
  1613. #: plugins/Marketplace/CloudSync/LicenseModel.py:13
  1614. #: resources/qml/WelcomePages/UserAgreementContent.qml:53
  1615. msgctxt "@button"
  1616. msgid "Agree"
  1617. msgstr "Concordar"
  1618. #: plugins/Marketplace/CloudSync/LicenseModel.py:77
  1619. msgctxt "@title:window"
  1620. msgid "Plugin License Agreement"
  1621. msgstr "Contrato de licença do plug-in"
  1622. #: plugins/Marketplace/CloudSync/LicensePresenter.py:42
  1623. msgctxt "@button"
  1624. msgid "Decline and remove from account"
  1625. msgstr "Rejeitar e remover da conta"
  1626. #: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  1627. msgctxt "@info:generic"
  1628. msgid "You need to quit and restart {} before changes have effect."
  1629. msgstr "É necessário reiniciar o {} para que as alterações tenham efeito."
  1630. #: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  1631. msgctxt "@info:generic"
  1632. msgid "{} plugins failed to download"
  1633. msgstr "Falhou a transferência de {} plug-ins"
  1634. #: plugins/Marketplace/LocalPackageList.py:28
  1635. msgctxt "@label"
  1636. msgid "Installed Plugins"
  1637. msgstr "Plug-ins instalados"
  1638. #: plugins/Marketplace/LocalPackageList.py:29
  1639. msgctxt "@label"
  1640. msgid "Installed Materials"
  1641. msgstr "Materiais instalados"
  1642. #: plugins/Marketplace/LocalPackageList.py:33
  1643. msgctxt "@label"
  1644. msgid "Bundled Plugins"
  1645. msgstr "Conjunto de Plug-ins"
  1646. #: plugins/Marketplace/LocalPackageList.py:34
  1647. msgctxt "@label"
  1648. msgid "Bundled Materials"
  1649. msgstr "Conjunto de Materiais"
  1650. #: plugins/Marketplace/PackageModel.py:43
  1651. msgctxt "@label:property"
  1652. msgid "Unknown Package"
  1653. msgstr "Pacote desconhecido"
  1654. #: plugins/Marketplace/PackageModel.py:66
  1655. msgctxt "@label:property"
  1656. msgid "Unknown Author"
  1657. msgstr "Autor desconhecido"
  1658. #: plugins/Marketplace/PackageModel.py:95
  1659. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  1660. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  1661. msgstr "Não foi possível encontrar o pacote de materiais associado ao projeto Cura no UltiMaker Marketplace. Use a definição de perfil do material parcial armazenada no arquivo do projeto Cura por sua conta e risco."
  1662. #: plugins/Marketplace/RemotePackageList.py:117
  1663. msgctxt "@info:error"
  1664. msgid "Could not interpret the server's response."
  1665. msgstr "Não foi possível interpretar a resposta do servidor."
  1666. #: plugins/Marketplace/RemotePackageList.py:148
  1667. msgctxt "@info:error"
  1668. msgid "Could not reach Marketplace."
  1669. msgstr "Não foi possível ligar ao Marketplace."
  1670. #: plugins/Marketplace/plugin.json
  1671. msgctxt "description"
  1672. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  1673. 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."
  1674. #: plugins/Marketplace/plugin.json
  1675. msgctxt "name"
  1676. msgid "Marketplace"
  1677. msgstr "Marketplace"
  1678. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  1679. msgctxt "@title"
  1680. msgid "Changes from your account"
  1681. msgstr "Alterações feitas desde a sua conta"
  1682. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  1683. msgctxt "@button"
  1684. msgid "Dismiss"
  1685. msgstr "Descartar"
  1686. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  1687. #: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76
  1688. #: resources/qml/WelcomePages/WhatsNewContent.qml:175
  1689. msgctxt "@button"
  1690. msgid "Next"
  1691. msgstr "Seguinte"
  1692. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  1693. msgctxt "@label"
  1694. msgid "The following packages will be added:"
  1695. msgstr "Os seguintes pacotes vão ser instalados:"
  1696. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94
  1697. msgctxt "@label"
  1698. msgid "The following packages can not be installed because of an incompatible Cura version:"
  1699. msgstr "Os seguintes pacotes não podem ser instalados devido a uma versão incompatível do Cura:"
  1700. #: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15
  1701. msgctxt "@title"
  1702. msgid "Install missing Materials"
  1703. msgstr "Instalar os materiais em falta"
  1704. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:15
  1705. msgctxt "@button"
  1706. msgid "Plugin license agreement"
  1707. msgstr "Contrato da licença do plug-in"
  1708. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:47
  1709. msgctxt "@text"
  1710. msgid "Please read and agree with the plugin licence."
  1711. msgstr "Leia e aceite a licença de utilização do plug-in."
  1712. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:70
  1713. msgctxt "@button"
  1714. msgid "Accept"
  1715. msgstr "Aceitar"
  1716. #: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  1717. msgctxt "@info:tooltip"
  1718. msgid "Manage packages"
  1719. msgstr "Gerir os pacotes"
  1720. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:12
  1721. msgctxt "@header"
  1722. msgid "Manage packages"
  1723. msgstr "Gerir os pacotes"
  1724. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:16
  1725. msgctxt "@text"
  1726. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1727. 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 uma cópia de segurança da sua configuração."
  1728. #: plugins/Marketplace/resources/qml/Marketplace.qml:87
  1729. msgctxt "@title"
  1730. msgid "Loading..."
  1731. msgstr "A carregar..."
  1732. #: plugins/Marketplace/resources/qml/Marketplace.qml:148
  1733. msgctxt "@button"
  1734. msgid "Plugins"
  1735. msgstr "Plug-ins"
  1736. #: plugins/Marketplace/resources/qml/Marketplace.qml:156
  1737. msgctxt "@button"
  1738. msgid "Materials"
  1739. msgstr "Materiais"
  1740. #: plugins/Marketplace/resources/qml/Marketplace.qml:193
  1741. msgctxt "@info"
  1742. msgid "Search in the browser"
  1743. msgstr "Pesquisar no browser"
  1744. #: plugins/Marketplace/resources/qml/Marketplace.qml:271
  1745. msgctxt "@button"
  1746. msgid "In order to use the package you will need to restart Cura"
  1747. msgstr "Para poder utilizar este pacote terá de reiniciar o Cura"
  1748. #: plugins/Marketplace/resources/qml/Marketplace.qml:279
  1749. msgctxt "@info:button, %1 is the application name"
  1750. msgid "Quit %1"
  1751. msgstr "Sair %1"
  1752. #: plugins/Marketplace/resources/qml/Marketplace.qml:300
  1753. msgctxt "@description"
  1754. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  1755. msgstr "Inicie sessão para obter plug-ins e materiais verificados para o UltiMaker Cura Enterprise"
  1756. #: plugins/Marketplace/resources/qml/Materials.qml:8
  1757. #: plugins/Marketplace/resources/qml/MissingPackages.qml:8
  1758. msgctxt "@header"
  1759. msgid "Install Materials"
  1760. msgstr "Instalar materiais"
  1761. #: plugins/Marketplace/resources/qml/Materials.qml:12
  1762. msgctxt "@text"
  1763. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  1764. msgstr "Selecione e instale perfis de materiais otimizados para as impressoras 3D UltiMaker."
  1765. #: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  1766. msgctxt "@label"
  1767. msgid "You need to accept the license to install the package"
  1768. msgstr "É necessário aceitar a licença para instalar o pacote"
  1769. #: plugins/Marketplace/resources/qml/OnboardBanner.qml:101
  1770. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205
  1771. msgctxt "@button:label"
  1772. msgid "Learn More"
  1773. msgstr "Saber Mais"
  1774. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170
  1775. msgctxt "@label Is followed by the name of an author"
  1776. msgid "By"
  1777. msgstr "Por"
  1778. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  1779. msgctxt "@button"
  1780. msgid "Disable"
  1781. msgstr "Desativar"
  1782. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  1783. msgctxt "@button"
  1784. msgid "Enable"
  1785. msgstr "Ativar"
  1786. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  1787. msgctxt "@button"
  1788. msgid "Downgrading..."
  1789. msgstr "A voltar para a versão anterior..."
  1790. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243
  1791. msgctxt "@button"
  1792. msgid "Downgrade"
  1793. msgstr "Repor a Versão Anterior"
  1794. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247
  1795. msgctxt "@button"
  1796. msgid "Installing..."
  1797. msgstr "A instalar..."
  1798. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248
  1799. msgctxt "@button"
  1800. msgid "Install"
  1801. msgstr "Instalar"
  1802. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252
  1803. msgctxt "@button"
  1804. msgid "Uninstall"
  1805. msgstr "Desinstalar"
  1806. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  1807. msgctxt "@button"
  1808. msgid "Update"
  1809. msgstr "Atualizar"
  1810. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  1811. msgctxt "@button"
  1812. msgid "Updating..."
  1813. msgstr "A actualizar..."
  1814. #: plugins/Marketplace/resources/qml/PackageDetails.qml:15
  1815. msgctxt "@header"
  1816. msgid "Package details"
  1817. msgstr "Detalhes do pacote"
  1818. #: plugins/Marketplace/resources/qml/PackageDetails.qml:40
  1819. msgctxt "@button:tooltip"
  1820. msgid "Back"
  1821. msgstr "Anterior"
  1822. #: plugins/Marketplace/resources/qml/PackagePage.qml:81
  1823. msgctxt "@header"
  1824. msgid "Description"
  1825. msgstr "Descrição"
  1826. #: plugins/Marketplace/resources/qml/PackagePage.qml:110
  1827. msgctxt "@header"
  1828. msgid "Compatible printers"
  1829. msgstr "Impressoras compatíveis"
  1830. #: plugins/Marketplace/resources/qml/PackagePage.qml:134
  1831. msgctxt "@info"
  1832. msgid "No compatibility information"
  1833. msgstr "Sem informações sobre compatibilidade"
  1834. #: plugins/Marketplace/resources/qml/PackagePage.qml:152
  1835. msgctxt "@header"
  1836. msgid "Compatible support materials"
  1837. msgstr "Materiais de suporte compatíveis"
  1838. #: plugins/Marketplace/resources/qml/PackagePage.qml:176
  1839. msgctxt "@info No materials"
  1840. msgid "None"
  1841. msgstr "Nenhum"
  1842. #: plugins/Marketplace/resources/qml/PackagePage.qml:193
  1843. msgctxt "@header"
  1844. msgid "Compatible with Material Station"
  1845. msgstr "Compatível com a Material Station"
  1846. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  1847. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  1848. msgctxt "@info"
  1849. msgid "No"
  1850. msgstr "Não"
  1851. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  1852. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  1853. msgctxt "@info"
  1854. msgid "Yes"
  1855. msgstr "Sim"
  1856. #: plugins/Marketplace/resources/qml/PackagePage.qml:219
  1857. msgctxt "@header"
  1858. msgid "Optimized for Air Manager"
  1859. msgstr "Otimizado para o Air Manager"
  1860. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  1861. msgctxt "@button"
  1862. msgid "Visit plug-in website"
  1863. msgstr "Visite o site do plug-in"
  1864. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  1865. msgctxt "@button"
  1866. msgid "Website"
  1867. msgstr "Website"
  1868. #: plugins/Marketplace/resources/qml/PackagePage.qml:252
  1869. msgctxt "@button"
  1870. msgid "Buy spool"
  1871. msgstr "Comprar bobinas"
  1872. #: plugins/Marketplace/resources/qml/PackagePage.qml:261
  1873. msgctxt "@button"
  1874. msgid "Safety datasheet"
  1875. msgstr "Ficha de segurança"
  1876. #: plugins/Marketplace/resources/qml/PackagePage.qml:270
  1877. msgctxt "@button"
  1878. msgid "Technical datasheet"
  1879. msgstr "Ficha técnica"
  1880. #: plugins/Marketplace/resources/qml/Packages.qml:151
  1881. msgctxt "@button"
  1882. msgid "Failed to load packages:"
  1883. msgstr "Erro ao carregar os pacotes:"
  1884. #: plugins/Marketplace/resources/qml/Packages.qml:151
  1885. msgctxt "@button"
  1886. msgid "Retry?"
  1887. msgstr "Tentar novamente?"
  1888. #: plugins/Marketplace/resources/qml/Packages.qml:167
  1889. msgctxt "@button"
  1890. msgid "Loading"
  1891. msgstr "A carregar"
  1892. #: plugins/Marketplace/resources/qml/Packages.qml:183
  1893. msgctxt "@message"
  1894. msgid "No more results to load"
  1895. msgstr "Sem mais resultados para mostrar"
  1896. #: plugins/Marketplace/resources/qml/Packages.qml:183
  1897. msgctxt "@message"
  1898. msgid "No results found with current filter"
  1899. msgstr "Não foram encontrados resultados com o filtro atual"
  1900. #: plugins/Marketplace/resources/qml/Packages.qml:226
  1901. msgctxt "@button"
  1902. msgid "Load more"
  1903. msgstr "Carregar mais"
  1904. #: plugins/Marketplace/resources/qml/Plugins.qml:8
  1905. msgctxt "@header"
  1906. msgid "Install Plugins"
  1907. msgstr "Instale plug-ins"
  1908. #: plugins/Marketplace/resources/qml/Plugins.qml:12
  1909. msgctxt "@text"
  1910. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  1911. 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."
  1912. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  1913. msgctxt "@info"
  1914. msgid "UltiMaker Verified Plug-in"
  1915. msgstr "Plug-in Aprovado pela UltiMaker"
  1916. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  1917. msgctxt "@info"
  1918. msgid "UltiMaker Certified Material"
  1919. msgstr "Material Certificado pela UltiMaker"
  1920. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  1921. msgctxt "@info"
  1922. msgid "UltiMaker Verified Package"
  1923. msgstr "Pacote Aprovado pela UltiMaker"
  1924. #: plugins/ModelChecker/ModelChecker.py:31
  1925. msgctxt "@info:title"
  1926. msgid "3D Model Assistant"
  1927. msgstr "Assistente de Modelos 3D"
  1928. #: plugins/ModelChecker/ModelChecker.py:97
  1929. #, python-brace-format
  1930. msgctxt "@info:status"
  1931. msgid ""
  1932. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1933. "<p>{model_names}</p>\n"
  1934. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1935. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1936. msgstr ""
  1937. "<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"
  1938. "<p>{model_names}</p>\n"
  1939. "<p>Descubra como assegurar a melhor qualidade e fiabilidade possível da impressão.</p>\n"
  1940. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver o guia de qualidade da impressão</a></p>"
  1941. #: plugins/ModelChecker/plugin.json
  1942. msgctxt "description"
  1943. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  1944. msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões."
  1945. #: plugins/ModelChecker/plugin.json
  1946. msgctxt "name"
  1947. msgid "Model Checker"
  1948. msgstr "Verificador de Modelos"
  1949. #: plugins/MonitorStage/MonitorMain.qml:100
  1950. msgctxt "@info"
  1951. msgid ""
  1952. "Please make sure your printer has a connection:\n"
  1953. "- Check if the printer is turned on.\n"
  1954. "- Check if the printer is connected to the network.\n"
  1955. "- Check if you are signed in to discover cloud-connected printers."
  1956. msgstr ""
  1957. "Certifique-se de que é possível estabelecer ligação com a impressora:\n"
  1958. "- Verifique se a impressora está ligada.\n"
  1959. "- Verifique se a impressora está ligada à rede.\n"
  1960. "- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud."
  1961. #: plugins/MonitorStage/MonitorMain.qml:113
  1962. msgctxt "@info"
  1963. msgid "Please connect your printer to the network."
  1964. msgstr "Ligue a impressora à sua rede."
  1965. #: plugins/MonitorStage/MonitorMain.qml:148
  1966. msgctxt "@label link to technical assistance"
  1967. msgid "View user manuals online"
  1968. msgstr "Ver manuais do utilizador online"
  1969. #: plugins/MonitorStage/MonitorMain.qml:164
  1970. msgctxt "@info"
  1971. msgid "In order to monitor your print from Cura, please connect the printer."
  1972. msgstr "Para monitorizar a sua impressão a partir do Cura, ligue a impressora."
  1973. #: plugins/MonitorStage/__init__.py:14
  1974. msgctxt "@item:inmenu"
  1975. msgid "Monitor"
  1976. msgstr "Monitorizar"
  1977. #: plugins/MonitorStage/plugin.json
  1978. msgctxt "name"
  1979. msgid "Monitor Stage"
  1980. msgstr "Fase de monitorização"
  1981. #: plugins/MonitorStage/plugin.json
  1982. msgctxt "description"
  1983. msgid "Provides a monitor stage in Cura."
  1984. msgstr "Fornece uma fase de monitorização no Cura."
  1985. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  1986. msgctxt "@label"
  1987. msgid "Mesh Type"
  1988. msgstr "Tipo de Objecto"
  1989. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  1990. msgctxt "@label"
  1991. msgid "Normal model"
  1992. msgstr "Modelo normal"
  1993. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  1994. msgctxt "@label"
  1995. msgid "Print as support"
  1996. msgstr "Imprimir como suporte"
  1997. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  1998. msgctxt "@label"
  1999. msgid "Modify settings for overlaps"
  2000. msgstr "Modificar definições para sobreposições"
  2001. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  2002. msgctxt "@label"
  2003. msgid "Don't support overlaps"
  2004. msgstr "Não suportar sobreposições"
  2005. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  2006. msgctxt "@item:inlistbox"
  2007. msgid "Infill mesh only"
  2008. msgstr "Apenas objeto de enchimento"
  2009. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161
  2010. msgctxt "@item:inlistbox"
  2011. msgid "Cutting mesh"
  2012. msgstr "Malha de corte"
  2013. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386
  2014. msgctxt "@action:button"
  2015. msgid "Select settings"
  2016. msgstr "Selecionar definições"
  2017. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  2018. msgctxt "@title:window"
  2019. msgid "Select Settings to Customize for this model"
  2020. msgstr "Selecionar definições a personalizar para este modelo"
  2021. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  2022. #: resources/qml/Preferences/SettingVisibilityPage.qml:102
  2023. msgctxt "@label:textbox"
  2024. msgid "Filter..."
  2025. msgstr "Filtrar..."
  2026. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  2027. msgctxt "@label:checkbox"
  2028. msgid "Show all"
  2029. msgstr "Mostrar tudo"
  2030. #: plugins/PerObjectSettingsTool/__init__.py:14
  2031. msgctxt "@label"
  2032. msgid "Per Model Settings"
  2033. msgstr "Definições Por-Modelo"
  2034. #: plugins/PerObjectSettingsTool/__init__.py:15
  2035. msgctxt "@info:tooltip"
  2036. msgid "Configure Per Model Settings"
  2037. msgstr "Configurar definições individuais Por-Modelo"
  2038. #: plugins/PerObjectSettingsTool/plugin.json
  2039. msgctxt "name"
  2040. msgid "Per Model Settings Tool"
  2041. msgstr "Ferramenta de definições Por-Modelo"
  2042. #: plugins/PerObjectSettingsTool/plugin.json
  2043. msgctxt "description"
  2044. msgid "Provides the Per Model Settings."
  2045. msgstr "Fornece as definições por-modelo."
  2046. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  2047. msgctxt "@item:inmenu"
  2048. msgid "Post Processing"
  2049. msgstr "Pós-Processamento"
  2050. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  2051. msgctxt "@item:inmenu"
  2052. msgid "Modify G-Code"
  2053. msgstr "Modificar G-Code"
  2054. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2055. msgctxt "@title:window"
  2056. msgid "Post Processing Plugin"
  2057. msgstr "Plug-in de pós-processamento"
  2058. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2059. msgctxt "@label"
  2060. msgid "Post Processing Scripts"
  2061. msgstr "Scripts de pós-processamento"
  2062. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215
  2063. msgctxt "@action"
  2064. msgid "Add a script"
  2065. msgstr "Adicionar um script"
  2066. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251
  2067. msgctxt "@label"
  2068. msgid "Settings"
  2069. msgstr "Definições"
  2070. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460
  2071. msgctxt "@info:tooltip"
  2072. msgid "Change active post-processing scripts."
  2073. msgstr "Altere os scripts de pós-processamento."
  2074. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  2075. msgctxt "@info:tooltip"
  2076. msgid "The following script is active:"
  2077. msgid_plural "The following scripts are active:"
  2078. msgstr[0] "O script a seguir está ativo:"
  2079. msgstr[1] "Os seguintes scripts estão ativos:"
  2080. #: plugins/PostProcessingPlugin/plugin.json
  2081. msgctxt "description"
  2082. msgid "Extension that allows for user created scripts for post processing"
  2083. msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento"
  2084. #: plugins/PostProcessingPlugin/plugin.json
  2085. msgctxt "name"
  2086. msgid "Post Processing"
  2087. msgstr "Pós-Processamento"
  2088. #: plugins/PrepareStage/PrepareMenu.qml:74
  2089. msgctxt "@button"
  2090. msgid "Add printer"
  2091. msgstr "Adicionar Impressora"
  2092. #: plugins/PrepareStage/PrepareMenu.qml:90
  2093. msgctxt "@button"
  2094. msgid "Manage printers"
  2095. msgstr "Gerir impressoras"
  2096. #: plugins/PrepareStage/__init__.py:12
  2097. msgctxt "@item:inmenu"
  2098. msgid "Prepare"
  2099. msgstr "Preparar"
  2100. #: plugins/PrepareStage/plugin.json
  2101. msgctxt "name"
  2102. msgid "Prepare Stage"
  2103. msgstr "Fase de preparação"
  2104. #: plugins/PrepareStage/plugin.json
  2105. msgctxt "description"
  2106. msgid "Provides a prepare stage in Cura."
  2107. msgstr "Fornece uma fase de preparação no Cura."
  2108. #: plugins/PreviewStage/__init__.py:13
  2109. msgctxt "@item:inmenu"
  2110. msgid "Preview"
  2111. msgstr "Pré-visualizar"
  2112. #: plugins/PreviewStage/plugin.json
  2113. msgctxt "name"
  2114. msgid "Preview Stage"
  2115. msgstr "Fase de pré-visualização"
  2116. #: plugins/PreviewStage/plugin.json
  2117. msgctxt "description"
  2118. msgid "Provides a preview stage in Cura."
  2119. msgstr "Fornece uma fase de pré-visualização no Cura."
  2120. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  2121. msgctxt "@action:button Preceded by 'Ready to'."
  2122. msgid "Save to Removable Drive"
  2123. msgstr "Guardar no Disco Externo"
  2124. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  2125. #, python-brace-format
  2126. msgctxt "@item:inlistbox"
  2127. msgid "Save to Removable Drive {0}"
  2128. msgstr "Guardar no Disco Externo {0}"
  2129. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  2130. #: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  2131. msgctxt "@info:status"
  2132. msgid "There are no file formats available to write with!"
  2133. msgstr "Não existem quaisquer formatos disponíveis para gravar o ficheiro!"
  2134. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  2135. #, python-brace-format
  2136. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2137. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2138. msgstr "A Guardar no Disco Externo <filename>{0}</filename>"
  2139. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110
  2140. msgctxt "@info:title"
  2141. msgid "Saving"
  2142. msgstr "A Guardar"
  2143. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120
  2144. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  2145. #, python-brace-format
  2146. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2147. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  2148. msgstr "Não foi possível guardar em <filename>{0}</filename>: <message>{1}</message>"
  2149. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  2150. #, python-brace-format
  2151. msgctxt "@info:status Don't translate the tag {device}!"
  2152. msgid "Could not find a file name when trying to write to {device}."
  2153. msgstr "Não foi possível encontrar um nome do ficheiro ao tentar gravar em {device}."
  2154. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152
  2155. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171
  2156. #, python-brace-format
  2157. msgctxt "@info:status"
  2158. msgid "Could not save to removable drive {0}: {1}"
  2159. msgstr "Não foi possível guardar no Disco Externo {0}: {1}"
  2160. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162
  2161. #, python-brace-format
  2162. msgctxt "@info:status"
  2163. msgid "Saved to Removable Drive {0} as {1}"
  2164. msgstr "Guardado no Disco Externo {0} como {1}"
  2165. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  2166. msgctxt "@info:title"
  2167. msgid "File Saved"
  2168. msgstr "Ficheiro Guardado"
  2169. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2170. msgctxt "@action:button"
  2171. msgid "Eject"
  2172. msgstr "Ejetar"
  2173. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2174. #, python-brace-format
  2175. msgctxt "@action"
  2176. msgid "Eject removable device {0}"
  2177. msgstr "Ejetar Disco Externo {0}"
  2178. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184
  2179. #, python-brace-format
  2180. msgctxt "@info:status"
  2181. msgid "Ejected {0}. You can now safely remove the drive."
  2182. msgstr "{0} foi ejetado. O Disco já pode ser removido de forma segura."
  2183. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185
  2184. msgctxt "@info:title"
  2185. msgid "Safely Remove Hardware"
  2186. msgstr "Remover Hardware de forma segura"
  2187. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188
  2188. #, python-brace-format
  2189. msgctxt "@info:status"
  2190. msgid "Failed to eject {0}. Another program may be using the drive."
  2191. msgstr "Não foi possível ejectar {0}. Outro programa pode estar a usar o disco."
  2192. #: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  2193. msgctxt "@item:intext"
  2194. msgid "Removable Drive"
  2195. msgstr "Disco Externo"
  2196. #: plugins/RemovableDriveOutputDevice/plugin.json
  2197. msgctxt "description"
  2198. msgid "Provides removable drive hotplugging and writing support."
  2199. msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação."
  2200. #: plugins/RemovableDriveOutputDevice/plugin.json
  2201. msgctxt "name"
  2202. msgid "Removable Drive Output Device Plugin"
  2203. msgstr "Plug-in de dispositivo de saída da unidade amovível"
  2204. #: plugins/SentryLogger/plugin.json
  2205. msgctxt "description"
  2206. msgid "Logs certain events so that they can be used by the crash reporter"
  2207. msgstr "Regista determinados eventos para que possam ser utilizados pelo \"crash reporter\""
  2208. #: plugins/SentryLogger/plugin.json
  2209. msgctxt "name"
  2210. msgid "Sentry Logger"
  2211. msgstr "Sentry Logger"
  2212. #: plugins/SimulationView/SimulationView.py:129
  2213. msgctxt "@info:status"
  2214. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  2215. msgstr "Quando a opção Wire Printing está ativa, o Cura não permite visualizar as camadas de uma forma precisa."
  2216. #: plugins/SimulationView/SimulationView.py:130
  2217. msgctxt "@info:title"
  2218. msgid "Simulation View"
  2219. msgstr "Visualização por Camadas"
  2220. #: plugins/SimulationView/SimulationView.py:133
  2221. msgctxt "@info:status"
  2222. msgid "Nothing is shown because you need to slice first."
  2223. msgstr "Não consegue visualizar, porque precisa de fazer o seccionamento primeiro."
  2224. #: plugins/SimulationView/SimulationView.py:134
  2225. msgctxt "@info:title"
  2226. msgid "No layers to show"
  2227. msgstr "Sem camadas para visualizar"
  2228. #: plugins/SimulationView/SimulationView.py:136
  2229. #: plugins/SolidView/SolidView.py:74
  2230. msgctxt "@info:option_text"
  2231. msgid "Do not show this message again"
  2232. msgstr "Não mostrar esta mensagem novamente"
  2233. #: plugins/SimulationView/SimulationViewMenuComponent.qml:18
  2234. #: plugins/SimulationView/SimulationViewMenuComponent.qml:47
  2235. msgctxt "@label"
  2236. msgid "Color scheme"
  2237. msgstr "Esquema de cores"
  2238. #: plugins/SimulationView/SimulationViewMenuComponent.qml:104
  2239. msgctxt "@label:listbox"
  2240. msgid "Material Color"
  2241. msgstr "Cor do Material"
  2242. #: plugins/SimulationView/SimulationViewMenuComponent.qml:108
  2243. msgctxt "@label:listbox"
  2244. msgid "Line Type"
  2245. msgstr "Tipo de Linha"
  2246. #: plugins/SimulationView/SimulationViewMenuComponent.qml:112
  2247. msgctxt "@label:listbox"
  2248. msgid "Speed"
  2249. msgstr "Velocidade"
  2250. #: plugins/SimulationView/SimulationViewMenuComponent.qml:116
  2251. msgctxt "@label:listbox"
  2252. msgid "Layer Thickness"
  2253. msgstr "Espessura da Camada"
  2254. #: plugins/SimulationView/SimulationViewMenuComponent.qml:120
  2255. msgctxt "@label:listbox"
  2256. msgid "Line Width"
  2257. msgstr "Diâmetro da Linha"
  2258. #: plugins/SimulationView/SimulationViewMenuComponent.qml:124
  2259. msgctxt "@label:listbox"
  2260. msgid "Flow"
  2261. msgstr "Fluxo"
  2262. #: plugins/SimulationView/SimulationViewMenuComponent.qml:164
  2263. msgctxt "@label"
  2264. msgid "Compatibility Mode"
  2265. msgstr "Modo Compatibilidade"
  2266. #: plugins/SimulationView/SimulationViewMenuComponent.qml:231
  2267. msgctxt "@label"
  2268. msgid "Travels"
  2269. msgstr "Deslocações"
  2270. #: plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2271. msgctxt "@label"
  2272. msgid "Helpers"
  2273. msgstr "Auxiliares"
  2274. #: plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2275. msgctxt "@label"
  2276. msgid "Shell"
  2277. msgstr "Invólucro"
  2278. #: plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2279. msgctxt "@label"
  2280. msgid "Infill"
  2281. msgstr "Enchimento"
  2282. #: plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2283. msgctxt "@label"
  2284. msgid "Starts"
  2285. msgstr "A Iniciar"
  2286. #: plugins/SimulationView/SimulationViewMenuComponent.qml:304
  2287. msgctxt "@label"
  2288. msgid "Only Show Top Layers"
  2289. msgstr "Só Camadas Superiores"
  2290. #: plugins/SimulationView/SimulationViewMenuComponent.qml:313
  2291. msgctxt "@label"
  2292. msgid "Show 5 Detailed Layers On Top"
  2293. msgstr "5 Camadas Superiores Detalhadas"
  2294. #: plugins/SimulationView/SimulationViewMenuComponent.qml:326
  2295. msgctxt "@label"
  2296. msgid "Top / Bottom"
  2297. msgstr "Superior / Inferior"
  2298. #: plugins/SimulationView/SimulationViewMenuComponent.qml:330
  2299. msgctxt "@label"
  2300. msgid "Inner Wall"
  2301. msgstr "Parede Interior"
  2302. #: plugins/SimulationView/SimulationViewMenuComponent.qml:397
  2303. msgctxt "@label"
  2304. msgid "min"
  2305. msgstr "mín"
  2306. #: plugins/SimulationView/SimulationViewMenuComponent.qml:462
  2307. msgctxt "@label"
  2308. msgid "max"
  2309. msgstr "máx"
  2310. #: plugins/SimulationView/__init__.py:15
  2311. msgctxt "@item:inlistbox"
  2312. msgid "Layer view"
  2313. msgstr "Vista Camadas"
  2314. #: plugins/SimulationView/plugin.json
  2315. msgctxt "description"
  2316. msgid "Provides the preview of sliced layerdata."
  2317. msgstr "Permite pré-visualizar os dados das camadas seccionadas."
  2318. #: plugins/SimulationView/plugin.json
  2319. msgctxt "name"
  2320. msgid "Simulation View"
  2321. msgstr "Visualização por camadas"
  2322. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2323. msgctxt "@title:window"
  2324. msgid "More information on anonymous data collection"
  2325. msgstr "Mais informações sobre a recolha anónima de dados"
  2326. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73
  2327. msgctxt "@text:window"
  2328. msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  2329. 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:"
  2330. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107
  2331. msgctxt "@text:window"
  2332. msgid "I don't want to send anonymous data"
  2333. msgstr "Não pretendo enviar dados anónimos"
  2334. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116
  2335. msgctxt "@text:window"
  2336. msgid "Allow sending anonymous data"
  2337. msgstr "Permitir o envio de dados anónimos"
  2338. #: plugins/SliceInfoPlugin/SliceInfo.py:95
  2339. msgctxt "@text"
  2340. msgid "Unable to read example data file."
  2341. msgstr "Não foi possível ler o ficheiro de dados de exemplo."
  2342. #: plugins/SliceInfoPlugin/plugin.json
  2343. msgctxt "name"
  2344. msgid "Slice info"
  2345. msgstr "Informações do seccionamento"
  2346. #: plugins/SliceInfoPlugin/plugin.json
  2347. msgctxt "description"
  2348. msgid "Submits anonymous slice info. Can be disabled through preferences."
  2349. msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências."
  2350. #: plugins/SolidView/SolidView.py:71
  2351. msgctxt "@info:status"
  2352. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  2353. msgstr "As áreas destacadas indicam superfícies em falta ou separadas. Corrija o modelo e volte a abri-lo no Cura."
  2354. #: plugins/SolidView/SolidView.py:73
  2355. msgctxt "@info:title"
  2356. msgid "Model Errors"
  2357. msgstr "Erros no modelo"
  2358. #: plugins/SolidView/__init__.py:12
  2359. msgctxt "@item:inmenu"
  2360. msgid "Solid view"
  2361. msgstr "Vista Sólidos"
  2362. #: plugins/SolidView/plugin.json
  2363. msgctxt "description"
  2364. msgid "Provides a normal solid mesh view."
  2365. msgstr "Permite a visualização (simples) dos objetos como sólidos."
  2366. #: plugins/SolidView/plugin.json
  2367. msgctxt "name"
  2368. msgid "Solid View"
  2369. msgstr "Vista Sólidos"
  2370. #: plugins/SupportEraser/__init__.py:12
  2371. msgctxt "@label"
  2372. msgid "Support Blocker"
  2373. msgstr "Remover Suportes"
  2374. #: plugins/SupportEraser/__init__.py:13
  2375. msgctxt "@info:tooltip"
  2376. msgid "Create a volume in which supports are not printed."
  2377. msgstr "Criar um volume dentro do qual não são impressos suportes."
  2378. #: plugins/SupportEraser/plugin.json
  2379. msgctxt "description"
  2380. msgid "Creates an eraser mesh to block the printing of support in certain places"
  2381. msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas"
  2382. #: plugins/SupportEraser/plugin.json
  2383. msgctxt "name"
  2384. msgid "Support Eraser"
  2385. msgstr "Eliminador de suportes"
  2386. #: plugins/TrimeshReader/__init__.py:15
  2387. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2388. msgid "Open Compressed Triangle Mesh"
  2389. msgstr "Open Compressed Triangle Mesh"
  2390. #: plugins/TrimeshReader/__init__.py:19
  2391. msgctxt "@item:inlistbox"
  2392. msgid "COLLADA Digital Asset Exchange"
  2393. msgstr "COLLADA Digital Asset Exchange"
  2394. #: plugins/TrimeshReader/__init__.py:23
  2395. msgctxt "@item:inlistbox"
  2396. msgid "glTF Binary"
  2397. msgstr "glTF Binary"
  2398. #: plugins/TrimeshReader/__init__.py:27
  2399. msgctxt "@item:inlistbox"
  2400. msgid "glTF Embedded JSON"
  2401. msgstr "glTF Embedded JSON"
  2402. #: plugins/TrimeshReader/__init__.py:36
  2403. msgctxt "@item:inlistbox"
  2404. msgid "Stanford Triangle Format"
  2405. msgstr "Stanford Triangle Format"
  2406. #: plugins/TrimeshReader/__init__.py:40
  2407. msgctxt "@item:inlistbox"
  2408. msgid "Compressed COLLADA Digital Asset Exchange"
  2409. msgstr "Compressed COLLADA Digital Asset Exchange"
  2410. #: plugins/TrimeshReader/plugin.json
  2411. msgctxt "description"
  2412. msgid "Provides support for reading model files."
  2413. msgstr "Fornece suporte para a leitura de ficheiros modelo."
  2414. #: plugins/TrimeshReader/plugin.json
  2415. msgctxt "name"
  2416. msgid "Trimesh Reader"
  2417. msgstr "Leitor de Trimesh"
  2418. #: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28
  2419. msgctxt "@item:inlistbox"
  2420. msgid "UltiMaker Format Package"
  2421. msgstr "Arquivo UltiMaker Format"
  2422. #: plugins/UFPReader/plugin.json
  2423. msgctxt "description"
  2424. msgid "Provides support for reading Ultimaker Format Packages."
  2425. msgstr "Fornece suporte para ler pacotes de formato Ultimaker."
  2426. #: plugins/UFPReader/plugin.json
  2427. msgctxt "name"
  2428. msgid "UFP Reader"
  2429. msgstr "Leitor de UFP"
  2430. #: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80
  2431. #: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115
  2432. #: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180
  2433. msgctxt "@info:error"
  2434. msgid "Can't write to UFP file:"
  2435. msgstr "Não é possível escrever no ficheiro UFP:"
  2436. #: plugins/UFPWriter/plugin.json
  2437. msgctxt "description"
  2438. msgid "Provides support for writing Ultimaker Format Packages."
  2439. msgstr "Permite a gravação de arquivos Ultimaker Format."
  2440. #: plugins/UFPWriter/plugin.json
  2441. msgctxt "name"
  2442. msgid "UFP Writer"
  2443. msgstr "Gravador de UFP"
  2444. #: plugins/UM3NetworkPrinting/plugin.json
  2445. msgctxt "description"
  2446. msgid "Manages network connections to UltiMaker networked printers."
  2447. msgstr "Gere as ligações de rede com as impressoras em rede UltiMaker."
  2448. #: plugins/UM3NetworkPrinting/plugin.json
  2449. msgctxt "name"
  2450. msgid "UltiMaker Network Connection"
  2451. msgstr "Ligação de rede UltiMaker"
  2452. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  2453. msgctxt "@title:window"
  2454. msgid "Connect to Networked Printer"
  2455. msgstr "Ligar a uma Impressora em Rede"
  2456. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2457. msgctxt "@label"
  2458. msgid "Select your printer from the list below:"
  2459. msgstr "Selecione a impressora a partir da lista abaixo:"
  2460. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2461. msgctxt "@label"
  2462. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  2463. 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 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."
  2464. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  2465. msgctxt "@action:button"
  2466. msgid "Edit"
  2467. msgstr "Editar"
  2468. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  2469. #: resources/qml/Preferences/MachinesPage.qml:153
  2470. #: resources/qml/Preferences/Materials/MaterialsPage.qml:186
  2471. #: resources/qml/Preferences/ProfilesPage.qml:321
  2472. msgctxt "@action:button"
  2473. msgid "Remove"
  2474. msgstr "Remover"
  2475. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  2476. msgctxt "@action:button"
  2477. msgid "Refresh"
  2478. msgstr "Atualizar"
  2479. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  2480. msgctxt "@label"
  2481. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2482. 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>"
  2483. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  2484. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247
  2485. msgctxt "@label"
  2486. msgid "Type"
  2487. msgstr "Tipo"
  2488. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  2489. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256
  2490. msgctxt "@label"
  2491. msgid "Firmware version"
  2492. msgstr "Versão de Firmware"
  2493. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  2494. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266
  2495. msgctxt "@label"
  2496. msgid "Address"
  2497. msgstr "Endereço"
  2498. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  2499. msgctxt "@label"
  2500. msgid "This printer is not set up to host a group of printers."
  2501. msgstr "Esta impressora não está configurada para alojar um grupo de impressoras."
  2502. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  2503. msgctxt "@label"
  2504. msgid "This printer is the host for a group of %1 printers."
  2505. msgstr "Esta impressora aloja um grupo de %1 impressoras."
  2506. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  2507. msgctxt "@label"
  2508. msgid "The printer at this address has not yet responded."
  2509. msgstr "A impressora neste endereço ainda não respondeu."
  2510. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  2511. msgctxt "@action:button"
  2512. msgid "Connect"
  2513. msgstr "Ligar"
  2514. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  2515. msgctxt "@title:window"
  2516. msgid "Invalid IP address"
  2517. msgstr "Endereço IP inválido"
  2518. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  2519. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141
  2520. msgctxt "@text"
  2521. msgid "Please enter a valid IP address."
  2522. msgstr "Introduza um endereço IP válido."
  2523. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  2524. msgctxt "@title:window"
  2525. msgid "Printer Address"
  2526. msgstr "Endereço da Impressora"
  2527. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2528. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97
  2529. msgctxt "@label"
  2530. msgid "Enter the IP address of your printer on the network."
  2531. msgstr "Introduza o endereço IP da sua impressora na rede."
  2532. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2533. msgctxt "@title:window"
  2534. msgid "Configuration Changes"
  2535. msgstr "Alterações na configuração"
  2536. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  2537. msgctxt "@action:button"
  2538. msgid "Override"
  2539. msgstr "Ignorar"
  2540. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  2541. msgctxt "@label"
  2542. msgid "The assigned printer, %1, requires the following configuration change:"
  2543. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2544. msgstr[0] "A impressora atribuída %1 requer a seguinte alteração na configuração:"
  2545. msgstr[1] "A impressora atribuída %1 requer as seguintes alterações na configuração:"
  2546. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  2547. msgctxt "@label"
  2548. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2549. msgstr "A impressora %1 está atribuída, mas o trabalho tem uma configuração de material desconhecida."
  2550. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  2551. msgctxt "@label"
  2552. msgid "Change material %1 from %2 to %3."
  2553. msgstr "Alterar o material %1 de %2 para %3."
  2554. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  2555. msgctxt "@label"
  2556. msgid "Load %3 as material %1 (This cannot be overridden)."
  2557. msgstr "Carregar %3 como material %1 (isto não pode ser substituído)."
  2558. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  2559. msgctxt "@label"
  2560. msgid "Change print core %1 from %2 to %3."
  2561. msgstr "Substituir o print core %1 de %2 para %3."
  2562. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110
  2563. msgctxt "@label"
  2564. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2565. msgstr "Ignorar utilizará as definições especificadas com a configuração da impressora existente. Tal pode resultar numa falha de impressão."
  2566. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2567. msgctxt "@label"
  2568. msgid "Move to top"
  2569. msgstr "Mover para o topo"
  2570. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155
  2571. msgctxt "@label"
  2572. msgid "Delete"
  2573. msgstr "Eliminar"
  2574. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186
  2575. #: resources/qml/MonitorButton.qml:284
  2576. msgctxt "@label"
  2577. msgid "Resume"
  2578. msgstr "Retomar"
  2579. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188
  2580. msgctxt "@label"
  2581. msgid "Pausing..."
  2582. msgstr "A colocar em pausa..."
  2583. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190
  2584. msgctxt "@label"
  2585. msgid "Resuming..."
  2586. msgstr "A recomeçar..."
  2587. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192
  2588. #: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288
  2589. msgctxt "@label"
  2590. msgid "Pause"
  2591. msgstr "Colocar em pausa"
  2592. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2593. msgctxt "@label"
  2594. msgid "Abort"
  2595. msgstr "Cancelar"
  2596. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2597. msgctxt "@label"
  2598. msgid "Aborting..."
  2599. msgstr "A cancelar..."
  2600. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218
  2601. msgctxt "@label %1 is the name of a print job."
  2602. msgid "Are you sure you want to move %1 to the top of the queue?"
  2603. msgstr "Tem a certeza de que pretende mover %1 para o topo da fila?"
  2604. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219
  2605. msgctxt "@window:title"
  2606. msgid "Move print job to top"
  2607. msgstr "Mover trabalho de impressão para o topo"
  2608. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227
  2609. msgctxt "@label %1 is the name of a print job."
  2610. msgid "Are you sure you want to delete %1?"
  2611. msgstr "Tem a certeza de que pretende eliminar %1?"
  2612. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228
  2613. msgctxt "@window:title"
  2614. msgid "Delete print job"
  2615. msgstr "Eliminar trabalho de impressão"
  2616. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236
  2617. msgctxt "@label %1 is the name of a print job."
  2618. msgid "Are you sure you want to abort %1?"
  2619. msgstr "Tem a certeza de que deseja cancelar %1?"
  2620. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237
  2621. #: resources/qml/MonitorButton.qml:326
  2622. msgctxt "@window:title"
  2623. msgid "Abort print"
  2624. msgstr "Cancelar impressão"
  2625. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  2626. msgctxt "@label"
  2627. msgid "Unavailable printer"
  2628. msgstr "Impressora indisponível"
  2629. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  2630. msgctxt "@label"
  2631. msgid "First available"
  2632. msgstr "Primeira disponível"
  2633. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242
  2634. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246
  2635. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472
  2636. msgctxt "@info"
  2637. msgid "Please update your printer's firmware to manage the queue remotely."
  2638. msgstr "Atualize o firmware da impressora para gerir a fila remotamente."
  2639. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  2640. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2641. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2642. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2643. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2644. msgctxt "@label:status"
  2645. msgid "Aborted"
  2646. msgstr "Cancelado"
  2647. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  2648. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  2649. msgctxt "@label:status"
  2650. msgid "Finished"
  2651. msgstr "Impressão terminada"
  2652. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  2653. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2654. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2655. msgctxt "@label:status"
  2656. msgid "Preparing..."
  2657. msgstr "A preparar..."
  2658. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2659. msgctxt "@label:status"
  2660. msgid "Aborting..."
  2661. msgstr "A cancelar..."
  2662. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2663. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2664. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2665. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2666. msgctxt "@label:status"
  2667. msgid "Failed"
  2668. msgstr "Falhou"
  2669. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2670. msgctxt "@label:status"
  2671. msgid "Pausing..."
  2672. msgstr "A colocar em pausa..."
  2673. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2674. msgctxt "@label:status"
  2675. msgid "Paused"
  2676. msgstr "Em Pausa"
  2677. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2678. msgctxt "@label:status"
  2679. msgid "Resuming..."
  2680. msgstr "A recomeçar..."
  2681. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2682. msgctxt "@label:status"
  2683. msgid "Action required"
  2684. msgstr "Ação necessária"
  2685. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2686. msgctxt "@label:status"
  2687. msgid "Finishes %1 at %2"
  2688. msgstr "Termina %1 a %2"
  2689. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  2690. msgctxt "@label link to Connect and Cloud interfaces"
  2691. msgid "Manage printer"
  2692. msgstr "Gerir impressora"
  2693. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280
  2694. msgctxt "@info"
  2695. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  2696. 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 Digital Factory e ver esta câmara."
  2697. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340
  2698. msgctxt "@label:status"
  2699. msgid "Loading..."
  2700. msgstr "A carregar..."
  2701. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344
  2702. msgctxt "@label:status"
  2703. msgid "Unavailable"
  2704. msgstr "Indisponível"
  2705. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2706. msgctxt "@label:status"
  2707. msgid "Unreachable"
  2708. msgstr "Inacessível"
  2709. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2710. msgctxt "@label:status"
  2711. msgid "Idle"
  2712. msgstr "Inativa"
  2713. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361
  2714. msgctxt "@label:status"
  2715. msgid "Printing"
  2716. msgstr "A Imprimir"
  2717. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402
  2718. msgctxt "@label"
  2719. msgid "Untitled"
  2720. msgstr "Sem título"
  2721. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417
  2722. msgctxt "@label"
  2723. msgid "Anonymous"
  2724. msgstr "Anónimo"
  2725. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438
  2726. msgctxt "@label:status"
  2727. msgid "Requires configuration changes"
  2728. msgstr "Requer alterações na configuração"
  2729. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452
  2730. msgctxt "@action:button"
  2731. msgid "Details"
  2732. msgstr "Detalhes"
  2733. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  2734. msgctxt "@label"
  2735. msgid "Queued"
  2736. msgstr "Em fila"
  2737. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64
  2738. msgctxt "@label link to connect manager"
  2739. msgid "Manage in browser"
  2740. msgstr "Gerir no browser"
  2741. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91
  2742. msgctxt "@label"
  2743. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2744. msgstr "Não existem trabalhos de impressão na fila. Para adicionar um trabalho, seccione e envie."
  2745. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2746. msgctxt "@label"
  2747. msgid "Print jobs"
  2748. msgstr "Trabalhos em Impressão"
  2749. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108
  2750. msgctxt "@label"
  2751. msgid "Total print time"
  2752. msgstr "Tempo de impressão total"
  2753. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117
  2754. msgctxt "@label"
  2755. msgid "Waiting for"
  2756. msgstr "A aguardar"
  2757. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117
  2758. msgctxt "@info"
  2759. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  2760. msgstr "Monitorize as suas impressoras de qualquer lugar usando a Ultimaker Digital Factory"
  2761. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129
  2762. msgctxt "@button"
  2763. msgid "View printers in Digital Factory"
  2764. msgstr "Visualize as impressoras na fábrica digital"
  2765. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  2766. msgctxt "@title:window"
  2767. msgid "Print over network"
  2768. msgstr "Imprimir Através da Rede"
  2769. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  2770. msgctxt "@action:button"
  2771. msgid "Print"
  2772. msgstr "Imprimir"
  2773. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  2774. msgctxt "@label"
  2775. msgid "Printer selection"
  2776. msgstr "Seleção de Impressora"
  2777. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80
  2778. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  2779. msgctxt "@action:button"
  2780. msgid "Print via cloud"
  2781. msgstr "Imprimir através da cloud"
  2782. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81
  2783. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  2784. msgctxt "@properties:tooltip"
  2785. msgid "Print via cloud"
  2786. msgstr "Imprimir através da cloud"
  2787. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82
  2788. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164
  2789. msgctxt "@info:status"
  2790. msgid "Connected via cloud"
  2791. msgstr "Ligada através da cloud"
  2792. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276
  2793. msgctxt "@action:button"
  2794. msgid "Monitor print"
  2795. msgstr "Monitorizar a impressão"
  2796. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278
  2797. msgctxt "@action:tooltip"
  2798. msgid "Track the print in Ultimaker Digital Factory"
  2799. msgstr "Controle a impressão no Ultimaker Digital Factory"
  2800. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298
  2801. #, python-brace-format
  2802. msgctxt "@error:send"
  2803. msgid "Unknown error code when uploading print job: {0}"
  2804. msgstr "Código de erro desconhecido ao carregar trabalho de impressão: {0}"
  2805. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  2806. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23
  2807. msgctxt "info:name"
  2808. msgid "Ultimaker Digital Factory"
  2809. msgstr "Ultimaker Digital Factory"
  2810. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  2811. #, python-brace-format
  2812. msgctxt "@message {printer_name} is replaced with the name of the printer"
  2813. msgid "{printer_name} will be removed until the next account sync."
  2814. msgstr "A impressora {printer_name} vai ser removida até à próxima sincronização de conta."
  2815. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426
  2816. #, python-brace-format
  2817. msgctxt "@message {printer_name} is replaced with the name of the printer"
  2818. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  2819. msgstr "Para remover a impressora {printer_name} de forma permanente, visite {digital_factory_link}"
  2820. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427
  2821. #, python-brace-format
  2822. msgctxt "@message {printer_name} is replaced with the name of the printer"
  2823. msgid "Are you sure you want to remove {printer_name} temporarily?"
  2824. msgstr "Tem a certeza de que pretende remover a impressora {printer_name} temporariamente?"
  2825. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474
  2826. msgctxt "@title:window"
  2827. msgid "Remove printers?"
  2828. msgstr "Remover impressoras?"
  2829. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477
  2830. #, python-brace-format
  2831. msgctxt "@label"
  2832. msgid ""
  2833. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  2834. "Are you sure you want to continue?"
  2835. msgid_plural ""
  2836. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  2837. "Are you sure you want to continue?"
  2838. msgstr[0] ""
  2839. "Está prestes a remover {0} impressora do Cura. Esta ação não pode ser anulada.\n"
  2840. "Tem a certeza de que pretende continuar?"
  2841. msgstr[1] ""
  2842. "Está prestes a remover {0} impressoras do Cura. Esta ação não pode ser anulada.\n"
  2843. "Tem a certeza de que pretende continuar?"
  2844. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484
  2845. msgctxt "@label"
  2846. msgid ""
  2847. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  2848. "Are you sure you want to continue?"
  2849. 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?"
  2850. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  2851. #, python-brace-format
  2852. msgctxt "@info:status"
  2853. msgid ""
  2854. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  2855. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  2856. msgstr ""
  2857. "A sua impressora <b>{printer_name}</b> pode ser ligada através da cloud.\n"
  2858. " Faça a gestão da sua fila de impressão e monitorize as suas impressões a partir de qualquer local ao ligar a sua impressora ao Digital Factory"
  2859. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  2860. msgctxt "@info:title"
  2861. msgid "Are you ready for cloud printing?"
  2862. msgstr "Está preparado para a impressão na cloud?"
  2863. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  2864. msgctxt "@action"
  2865. msgid "Get started"
  2866. msgstr "Iniciar"
  2867. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  2868. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24
  2869. msgctxt "@action"
  2870. msgid "Learn more"
  2871. msgstr "Saber mais"
  2872. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  2873. msgctxt "@info:status"
  2874. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  2875. msgstr "Está a tentar ligar a uma impressora que não tem o UltiMaker Connect. Atualize a impressora para o firmware mais recente."
  2876. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  2877. msgctxt "@info:title"
  2878. msgid "Update your printer"
  2879. msgstr "Atualizar a impressora"
  2880. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  2881. #, python-brace-format
  2882. msgctxt "@info:status"
  2883. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  2884. msgstr "O Cura detetou perfis de material que ainda não estavam instalados na impressora que aloja o grupo {0}."
  2885. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  2886. msgctxt "@info:title"
  2887. msgid "Sending materials to printer"
  2888. msgstr "Enviar materiais para a impressora"
  2889. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13
  2890. msgctxt "info:status"
  2891. msgid "New printer detected from your Ultimaker account"
  2892. msgid_plural "New printers detected from your Ultimaker account"
  2893. msgstr[0] "Nova impressora detetada a partir da sua conta Ultimaker"
  2894. msgstr[1] "Novas impressoras detetadas a partir da sua conta Ultimaker"
  2895. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29
  2896. #, python-brace-format
  2897. msgctxt "info:status Filled in with printer name and printer model."
  2898. msgid "Adding printer {name} ({model}) from your account"
  2899. msgstr "Adicionar impressora {name} ({model}) a partir da sua conta"
  2900. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48
  2901. #, python-brace-format
  2902. msgctxt "info:{0} gets replaced by a number of printers"
  2903. msgid "... and {0} other"
  2904. msgid_plural "... and {0} others"
  2905. msgstr[0] "... e {0} outra"
  2906. msgstr[1] "... e {0} outras"
  2907. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57
  2908. msgctxt "info:status"
  2909. msgid "Printers added from Digital Factory:"
  2910. msgstr "Impressoras adicionadas a partir da Digital Factory:"
  2911. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  2912. #, python-brace-format
  2913. msgctxt "@info:status"
  2914. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  2915. 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."
  2916. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  2917. msgctxt "@info:title"
  2918. msgid "Not a group host"
  2919. msgstr "Não é Host do grupo"
  2920. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  2921. msgctxt "@action"
  2922. msgid "Configure group"
  2923. msgstr "Configurar grupo"
  2924. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18
  2925. msgctxt "@info:status"
  2926. msgid "You will receive a confirmation via email when the print job is approved"
  2927. msgstr "Receberá uma confirmação por e-mail quando o trabalho de impressão for aprovado"
  2928. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19
  2929. msgctxt "@info:title"
  2930. msgid "The print job was successfully submitted"
  2931. msgstr "O trabalho de impressão foi enviado com sucesso"
  2932. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22
  2933. msgctxt "@action"
  2934. msgid "Manage print jobs"
  2935. msgstr "Gerir trabalhos de impressão"
  2936. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  2937. msgctxt "@info:status"
  2938. msgid "Please wait until the current job has been sent."
  2939. msgstr "Aguarde até o trabalho atual ter sido enviado."
  2940. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  2941. msgctxt "@info:title"
  2942. msgid "Print error"
  2943. msgstr "Erro de impressão"
  2944. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  2945. msgctxt "@info:text"
  2946. msgid "Could not upload the data to the printer."
  2947. msgstr "Não foi possível carregar os dados para a impressora."
  2948. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  2949. msgctxt "@info:title"
  2950. msgid "Network error"
  2951. msgstr "Erro de rede"
  2952. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  2953. msgctxt "@info:status"
  2954. msgid "Sending Print Job"
  2955. msgstr "A enviar trabalho de impressão"
  2956. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  2957. msgctxt "@info:status"
  2958. msgid "Uploading print job to printer."
  2959. msgstr "Carregar um trabalho de impressão na impressora."
  2960. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  2961. msgctxt "@info:status"
  2962. msgid "Print job queue is full. The printer can't accept a new job."
  2963. msgstr "A fila de trabalhos de impressão está cheia. A impressora não consegue aceitar um novo trabalho."
  2964. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  2965. msgctxt "@info:title"
  2966. msgid "Queue Full"
  2967. msgstr "Fila cheia"
  2968. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  2969. msgctxt "@info:status"
  2970. msgid "Print job was successfully sent to the printer."
  2971. msgstr "O trabalho de impressão foi enviado com sucesso para a impressora."
  2972. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  2973. msgctxt "@info:title"
  2974. msgid "Data Sent"
  2975. msgstr "Dados Enviados"
  2976. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17
  2977. msgctxt "info:status"
  2978. msgid "This printer is not linked to the Digital Factory:"
  2979. msgid_plural "These printers are not linked to the Digital Factory:"
  2980. msgstr[0] "Esta impressora não está associada à Digital Factory:"
  2981. msgstr[1] "Estas impressoras não estão associadas à Digital Factory:"
  2982. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29
  2983. #, python-brace-format
  2984. msgctxt "info:status"
  2985. msgid "To establish a connection, please visit the {website_link}"
  2986. msgstr "Para estabelecer uma ligação, visite {website_link}"
  2987. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33
  2988. msgctxt "info:status"
  2989. msgid "A cloud connection is not available for a printer"
  2990. msgid_plural "A cloud connection is not available for some printers"
  2991. msgstr[0] "Não existe uma conectividade de cloud disponível para a impressora"
  2992. msgstr[1] "Não existe uma conectividade de cloud disponível para algumas impressoras"
  2993. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41
  2994. msgctxt "@action:button"
  2995. msgid "Keep printer configurations"
  2996. msgstr "Manter configurações da impressora"
  2997. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46
  2998. msgctxt "@action:button"
  2999. msgid "Remove printers"
  3000. msgstr "Remover impressoras"
  3001. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
  3002. msgctxt "@action:button Preceded by 'Ready to'."
  3003. msgid "Print over network"
  3004. msgstr "Imprimir através da rede"
  3005. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
  3006. msgctxt "@properties:tooltip"
  3007. msgid "Print over network"
  3008. msgstr "Imprimir através da rede"
  3009. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
  3010. msgctxt "@info:status"
  3011. msgid "Connected over the network"
  3012. msgstr "Ligado através da rede"
  3013. #: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  3014. msgctxt "@action"
  3015. msgid "Connect via Network"
  3016. msgstr "Ligar Através da Rede"
  3017. #: plugins/UM3NetworkPrinting/src/Utils.py:27
  3018. msgctxt "@info:status"
  3019. msgid "tomorrow"
  3020. msgstr "amanhã"
  3021. #: plugins/UM3NetworkPrinting/src/Utils.py:30
  3022. msgctxt "@info:status"
  3023. msgid "today"
  3024. msgstr "hoje"
  3025. #: plugins/USBPrinting/USBPrinterOutputDevice.py:42
  3026. msgctxt "@item:inmenu"
  3027. msgid "USB printing"
  3028. msgstr "Impressão USB"
  3029. #: plugins/USBPrinting/USBPrinterOutputDevice.py:43
  3030. msgctxt "@action:button Preceded by 'Ready to'."
  3031. msgid "Print via USB"
  3032. msgstr "Imprimir por USB"
  3033. #: plugins/USBPrinting/USBPrinterOutputDevice.py:44
  3034. msgctxt "@info:tooltip"
  3035. msgid "Print via USB"
  3036. msgstr "Imprimir por USB"
  3037. #: plugins/USBPrinting/USBPrinterOutputDevice.py:80
  3038. msgctxt "@info:status"
  3039. msgid "Connected via USB"
  3040. msgstr "Ligado via USB"
  3041. #: plugins/USBPrinting/USBPrinterOutputDevice.py:110
  3042. msgctxt "@label"
  3043. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  3044. msgstr "Existe uma impressão por USB em curso; fechar o Cura irá interromper esta impressão. Tem a certeza?"
  3045. #: plugins/USBPrinting/USBPrinterOutputDevice.py:135
  3046. msgctxt "@message"
  3047. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  3048. 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."
  3049. #: plugins/USBPrinting/USBPrinterOutputDevice.py:136
  3050. msgctxt "@message"
  3051. msgid "Print in Progress"
  3052. msgstr "Impressão em curso"
  3053. #: plugins/USBPrinting/plugin.json
  3054. msgctxt "description"
  3055. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  3056. msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware."
  3057. #: plugins/USBPrinting/plugin.json
  3058. msgctxt "name"
  3059. msgid "USB printing"
  3060. msgstr "Impressão USB"
  3061. #: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  3062. msgctxt "@action"
  3063. msgid "Level build plate"
  3064. msgstr "Nivelar base de construção"
  3065. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  3066. msgctxt "@title"
  3067. msgid "Build Plate Leveling"
  3068. msgstr "Nivelamento da Base de Construção"
  3069. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42
  3070. msgctxt "@label"
  3071. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  3072. 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 irá deslocar-se para as diferentes posições que podem ser ajustadas."
  3073. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52
  3074. msgctxt "@label"
  3075. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  3076. 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 quando o papel fica ligeiramente preso pelo nozzle."
  3077. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67
  3078. msgctxt "@action:button"
  3079. msgid "Start Build Plate Leveling"
  3080. msgstr "Iniciar Nivelamento da base de construção"
  3081. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79
  3082. msgctxt "@action:button"
  3083. msgid "Move to Next Position"
  3084. msgstr "Avançar para Posição Seguinte"
  3085. #: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  3086. msgctxt "@action"
  3087. msgid "Select upgrades"
  3088. msgstr "Selecionar atualizações"
  3089. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  3090. msgctxt "@label"
  3091. msgid "Please select any upgrades made to this UltiMaker Original"
  3092. msgstr "Selecione quaisquer atualizações realizadas a esta UltiMaker Original"
  3093. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39
  3094. msgctxt "@label"
  3095. msgid "Heated Build Plate (official kit or self-built)"
  3096. msgstr "Base de Construção Aquecida (kit oficial ou de construção própria)"
  3097. #: plugins/UltimakerMachineActions/plugin.json
  3098. msgctxt "description"
  3099. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  3100. msgstr "Disponibiliza funções especificas para as máquinas UltiMaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)."
  3101. #: plugins/UltimakerMachineActions/plugin.json
  3102. msgctxt "name"
  3103. msgid "UltiMaker machine actions"
  3104. msgstr "Funções para impressoras Ultimaker"
  3105. #: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json
  3106. msgctxt "description"
  3107. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3108. msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2."
  3109. #: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json
  3110. msgctxt "name"
  3111. msgid "Version Upgrade 2.1 to 2.2"
  3112. msgstr "Atualização da versão 2.1 para 2.2"
  3113. #: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json
  3114. msgctxt "description"
  3115. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  3116. msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4."
  3117. #: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json
  3118. msgctxt "name"
  3119. msgid "Version Upgrade 2.2 to 2.4"
  3120. msgstr "Atualização da versão 2.2 para 2.4"
  3121. #: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json
  3122. msgctxt "description"
  3123. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3124. msgstr "Atualiza as configurações do Cura 2.5 para o Cura 2.6."
  3125. #: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json
  3126. msgctxt "name"
  3127. msgid "Version Upgrade 2.5 to 2.6"
  3128. msgstr "Atualização da versão 2.5 para 2.6"
  3129. #: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json
  3130. msgctxt "description"
  3131. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3132. msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7."
  3133. #: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json
  3134. msgctxt "name"
  3135. msgid "Version Upgrade 2.6 to 2.7"
  3136. msgstr "Atualização da versão 2.6 para 2.7"
  3137. #: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json
  3138. msgctxt "description"
  3139. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3140. msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0."
  3141. #: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json
  3142. msgctxt "name"
  3143. msgid "Version Upgrade 2.7 to 3.0"
  3144. msgstr "Atualização da versão 2.7 para 3.0"
  3145. #: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json
  3146. msgctxt "description"
  3147. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3148. msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1."
  3149. #: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json
  3150. msgctxt "name"
  3151. msgid "Version Upgrade 3.0 to 3.1"
  3152. msgstr "Atualização da versão 3.0 para 3.1"
  3153. #: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json
  3154. msgctxt "description"
  3155. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3156. msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3."
  3157. #: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json
  3158. msgctxt "name"
  3159. msgid "Version Upgrade 3.2 to 3.3"
  3160. msgstr "Atualização da versão 3.2 para 3.3"
  3161. #: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json
  3162. msgctxt "description"
  3163. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3164. msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4."
  3165. #: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json
  3166. msgctxt "name"
  3167. msgid "Version Upgrade 3.3 to 3.4"
  3168. msgstr "Atualização da versão 3.3 para 3.4"
  3169. #: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json
  3170. msgctxt "description"
  3171. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  3172. msgstr "Atualiza as configurações do Cura 3.4 para o Cura 3.5."
  3173. #: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json
  3174. msgctxt "name"
  3175. msgid "Version Upgrade 3.4 to 3.5"
  3176. msgstr "Atualização da versão 3.4 para 3.5"
  3177. #: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json
  3178. msgctxt "description"
  3179. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3180. msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0."
  3181. #: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json
  3182. msgctxt "name"
  3183. msgid "Version Upgrade 3.5 to 4.0"
  3184. msgstr "Atualização da versão 3.5 para 4.0"
  3185. #: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json
  3186. msgctxt "description"
  3187. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3188. msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1."
  3189. #: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json
  3190. msgctxt "name"
  3191. msgid "Version Upgrade 4.0 to 4.1"
  3192. msgstr "Atualização da versão 4.0 para 4.1"
  3193. #: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json
  3194. msgctxt "description"
  3195. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3196. msgstr "Atualiza as configurações do Cura 4.11 para o Cura 4.12."
  3197. #: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json
  3198. msgctxt "name"
  3199. msgid "Version Upgrade 4.11 to 4.12"
  3200. msgstr "Atualização da versão 4.11 para a versão 4.12"
  3201. #: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json
  3202. msgctxt "description"
  3203. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  3204. msgstr "Atualiza as configurações do Cura 4.13 para o Cura 5.0."
  3205. #: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json
  3206. msgctxt "name"
  3207. msgid "Version Upgrade 4.13 to 5.0"
  3208. msgstr "Atualização do Cura versão 4.13 para 5.0"
  3209. #: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json
  3210. msgctxt "description"
  3211. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3212. msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2."
  3213. #: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json
  3214. msgctxt "name"
  3215. msgid "Version Upgrade 4.1 to 4.2"
  3216. msgstr "Atualização da versão 4.1 para 4.2"
  3217. #: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json
  3218. msgctxt "description"
  3219. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3220. msgstr "Atualiza as configurações do Cura 4.2 para o Cura 4.3."
  3221. #: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json
  3222. msgctxt "name"
  3223. msgid "Version Upgrade 4.2 to 4.3"
  3224. msgstr "Atualização da versão 4.2 para 4.3"
  3225. #: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json
  3226. msgctxt "description"
  3227. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3228. msgstr "Configurações de atualizações do Cura 4.3 para o Cura 4.4."
  3229. #: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json
  3230. msgctxt "name"
  3231. msgid "Version Upgrade 4.3 to 4.4"
  3232. msgstr "Atualização da versão 4.3 para 4.4"
  3233. #: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json
  3234. msgctxt "description"
  3235. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3236. msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5."
  3237. #: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json
  3238. msgctxt "name"
  3239. msgid "Version Upgrade 4.4 to 4.5"
  3240. msgstr "Atualização da versão 4.4 para a versão 4.5"
  3241. #: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json
  3242. msgctxt "description"
  3243. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3244. msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6."
  3245. #: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json
  3246. msgctxt "name"
  3247. msgid "Version Upgrade 4.5 to 4.6"
  3248. msgstr "Atualização da versão 4.5 para a versão 4.6"
  3249. #: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json
  3250. msgctxt "description"
  3251. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3252. msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2."
  3253. #: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json
  3254. msgctxt "name"
  3255. msgid "Version Upgrade 4.6.0 to 4.6.2"
  3256. msgstr "Atualização da versão 4.6.0 para a versão 4.6.2"
  3257. #: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json
  3258. msgctxt "description"
  3259. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  3260. msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7."
  3261. #: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json
  3262. msgctxt "name"
  3263. msgid "Version Upgrade 4.6.2 to 4.7"
  3264. msgstr "Atualização da versão 4.6.2 para a versão 4.7"
  3265. #: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json
  3266. msgctxt "description"
  3267. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3268. msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8."
  3269. #: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json
  3270. msgctxt "name"
  3271. msgid "Version Upgrade 4.7 to 4.8"
  3272. msgstr "Atualização da versão 4.7 para 4.8"
  3273. #: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json
  3274. msgctxt "description"
  3275. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3276. msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9."
  3277. #: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json
  3278. msgctxt "name"
  3279. msgid "Version Upgrade 4.8 to 4.9"
  3280. msgstr "Atualização da versão 4.8 para 4.9"
  3281. #: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json
  3282. msgctxt "description"
  3283. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3284. msgstr "Atualiza as configurações do Cura 4.9 para o Cura 4.10."
  3285. #: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json
  3286. msgctxt "name"
  3287. msgid "Version Upgrade 4.9 to 4.10"
  3288. msgstr "Atualização da versão 4.9 para 4.10"
  3289. #: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json
  3290. msgctxt "description"
  3291. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3292. msgstr "Atualiza as configurações do Cura 5.2 para o Cura 5.3."
  3293. #: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json
  3294. msgctxt "name"
  3295. msgid "Version Upgrade 5.2 to 5.3"
  3296. msgstr "Atualização da versão 5.2 para 5.3"
  3297. #: plugins/X3DReader/__init__.py:13
  3298. msgctxt "@item:inlistbox"
  3299. msgid "X3D File"
  3300. msgstr "Ficheiro X3D"
  3301. #: plugins/X3DReader/plugin.json
  3302. msgctxt "description"
  3303. msgid "Provides support for reading X3D files."
  3304. msgstr "Fornece suporte para ler ficheiros X3D."
  3305. #: plugins/X3DReader/plugin.json
  3306. msgctxt "name"
  3307. msgid "X3D Reader"
  3308. msgstr "Leitor de X3D"
  3309. #: plugins/XRayView/__init__.py:12
  3310. msgctxt "@item:inlistbox"
  3311. msgid "X-Ray view"
  3312. msgstr "Vista Raio-X"
  3313. #: plugins/XRayView/plugin.json
  3314. msgctxt "description"
  3315. msgid "Provides the X-Ray view."
  3316. msgstr "Permite a visualização em Raio-X."
  3317. #: plugins/XRayView/plugin.json
  3318. msgctxt "name"
  3319. msgid "X-Ray View"
  3320. msgstr "Vista Raio-X"
  3321. #: plugins/XmlMaterialProfile/plugin.json
  3322. msgctxt "name"
  3323. msgid "Material Profiles"
  3324. msgstr "Perfis de Materiais"
  3325. #: plugins/XmlMaterialProfile/plugin.json
  3326. msgctxt "description"
  3327. msgid "Provides capabilities to read and write XML-based material profiles."
  3328. msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML."
  3329. #: resources/qml/Account/AccountWidget.qml:24
  3330. msgctxt "@action:button"
  3331. msgid "Sign in"
  3332. msgstr "Iniciar sessão"
  3333. #: resources/qml/Account/GeneralOperations.qml:19
  3334. #: resources/qml/WelcomePages/CloudContent.qml:64
  3335. msgctxt "@label"
  3336. msgid "Sign in to the UltiMaker platform"
  3337. msgstr "Inicie a sessão na plataforma UltiMaker"
  3338. #: resources/qml/Account/GeneralOperations.qml:39
  3339. msgctxt "@text"
  3340. msgid ""
  3341. "- Add material profiles and plug-ins from the Marketplace\n"
  3342. "- Back-up and sync your material profiles and plug-ins\n"
  3343. "- Share ideas and get help from 48,000+ users in the UltiMaker community"
  3344. msgstr ""
  3345. "- Adicione definições de materiais e plug-ins do Marketplace\n"
  3346. "- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins\n"
  3347. "- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker"
  3348. #: resources/qml/Account/GeneralOperations.qml:58
  3349. msgctxt "@button"
  3350. msgid "Create a free UltiMaker account"
  3351. msgstr "Crie uma conta UltiMaker gratuita"
  3352. #: resources/qml/Account/SyncState.qml:35
  3353. msgctxt "@label"
  3354. msgid "Checking..."
  3355. msgstr "A verificar..."
  3356. #: resources/qml/Account/SyncState.qml:42
  3357. msgctxt "@label"
  3358. msgid "Account synced"
  3359. msgstr "Conta sincronizada"
  3360. #: resources/qml/Account/SyncState.qml:49
  3361. msgctxt "@label"
  3362. msgid "Something went wrong..."
  3363. msgstr "Ocorreu um problema..."
  3364. #: resources/qml/Account/SyncState.qml:102
  3365. msgctxt "@button"
  3366. msgid "Install pending updates"
  3367. msgstr "Instalar atualizações pendentes"
  3368. #: resources/qml/Account/SyncState.qml:123
  3369. msgctxt "@button"
  3370. msgid "Check for account updates"
  3371. msgstr "Verificar atualizações de conta"
  3372. #: resources/qml/Account/UserOperations.qml:78
  3373. msgctxt "@label The argument is a timestamp"
  3374. msgid "Last update: %1"
  3375. msgstr "Atualização mais recente: %1"
  3376. #: resources/qml/Account/UserOperations.qml:107
  3377. msgctxt "@button"
  3378. msgid "UltiMaker Account"
  3379. msgstr "Conta UltiMaker"
  3380. #: resources/qml/Account/UserOperations.qml:126
  3381. msgctxt "@button"
  3382. msgid "Sign Out"
  3383. msgstr "Terminar sessão"
  3384. #: resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3385. msgctxt "@label"
  3386. msgid "No time estimation available"
  3387. msgstr "Nenhuma estimativa de tempo disponível"
  3388. #: resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3389. msgctxt "@label"
  3390. msgid "No cost estimation available"
  3391. msgstr "Nenhuma estimativa de custos disponível"
  3392. #: resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3393. msgctxt "@button"
  3394. msgid "Preview"
  3395. msgstr "Pré-visualizar"
  3396. #: resources/qml/ActionPanel/PrintJobInformation.qml:31
  3397. msgctxt "@label"
  3398. msgid "Time estimation"
  3399. msgstr "Estimativa de tempo"
  3400. #: resources/qml/ActionPanel/PrintJobInformation.qml:107
  3401. msgctxt "@label"
  3402. msgid "Material estimation"
  3403. msgstr "Estimativa de material"
  3404. #: resources/qml/ActionPanel/PrintJobInformation.qml:156
  3405. msgctxt "@label m for meter"
  3406. msgid "%1m"
  3407. msgstr "%1 m"
  3408. #: resources/qml/ActionPanel/PrintJobInformation.qml:157
  3409. msgctxt "@label g for grams"
  3410. msgid "%1g"
  3411. msgstr "%1 g"
  3412. #: resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3413. msgctxt "@label:PrintjobStatus"
  3414. msgid "Slicing..."
  3415. msgstr "A Seccionar..."
  3416. #: resources/qml/ActionPanel/SliceProcessWidget.qml:78
  3417. msgctxt "@label:PrintjobStatus"
  3418. msgid "Unable to slice"
  3419. msgstr "Não é possível seccionar"
  3420. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3421. msgctxt "@button"
  3422. msgid "Processing"
  3423. msgstr "A processar"
  3424. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3425. msgctxt "@button"
  3426. msgid "Slice"
  3427. msgstr "Segmentação"
  3428. #: resources/qml/ActionPanel/SliceProcessWidget.qml:115
  3429. msgctxt "@label"
  3430. msgid "Start the slicing process"
  3431. msgstr "Iniciar o processo de segmentação"
  3432. #: resources/qml/ActionPanel/SliceProcessWidget.qml:132
  3433. msgctxt "@button"
  3434. msgid "Cancel"
  3435. msgstr "Cancelar"
  3436. #: resources/qml/Actions.qml:81
  3437. msgctxt "@action:inmenu"
  3438. msgid "Show Online Troubleshooting"
  3439. msgstr "Ver online o guia de resolução de problemas"
  3440. #: resources/qml/Actions.qml:88
  3441. msgctxt "@action:inmenu"
  3442. msgid "Toggle Full Screen"
  3443. msgstr "Alternar para ecrã inteiro"
  3444. #: resources/qml/Actions.qml:96
  3445. msgctxt "@action:inmenu"
  3446. msgid "Exit Full Screen"
  3447. msgstr "Sair do Ecrã Inteiro"
  3448. #: resources/qml/Actions.qml:103
  3449. msgctxt "@action:inmenu menubar:edit"
  3450. msgid "&Undo"
  3451. msgstr "&Desfazer"
  3452. #: resources/qml/Actions.qml:113
  3453. msgctxt "@action:inmenu menubar:edit"
  3454. msgid "&Redo"
  3455. msgstr "&Refazer"
  3456. #: resources/qml/Actions.qml:131
  3457. msgctxt "@action:inmenu menubar:file"
  3458. msgid "&Quit"
  3459. msgstr "&Sair"
  3460. #: resources/qml/Actions.qml:139
  3461. msgctxt "@action:inmenu menubar:view"
  3462. msgid "3D View"
  3463. msgstr "Vista 3D"
  3464. #: resources/qml/Actions.qml:146
  3465. msgctxt "@action:inmenu menubar:view"
  3466. msgid "Front View"
  3467. msgstr "Vista Frente"
  3468. #: resources/qml/Actions.qml:153
  3469. msgctxt "@action:inmenu menubar:view"
  3470. msgid "Top View"
  3471. msgstr "Vista Cima"
  3472. #: resources/qml/Actions.qml:160
  3473. msgctxt "@action:inmenu menubar:view"
  3474. msgid "Bottom View"
  3475. msgstr "Vista Inferior"
  3476. #: resources/qml/Actions.qml:167
  3477. msgctxt "@action:inmenu menubar:view"
  3478. msgid "Left Side View"
  3479. msgstr "Vista Lado Esquerdo"
  3480. #: resources/qml/Actions.qml:174
  3481. msgctxt "@action:inmenu menubar:view"
  3482. msgid "Right Side View"
  3483. msgstr "Vista Lado Direito"
  3484. #: resources/qml/Actions.qml:188
  3485. msgctxt "@action:inmenu"
  3486. msgid "Configure Cura..."
  3487. msgstr "Configurar Cura..."
  3488. #: resources/qml/Actions.qml:197
  3489. msgctxt "@action:inmenu menubar:printer"
  3490. msgid "&Add Printer..."
  3491. msgstr "&Adicionar Impressora..."
  3492. #: resources/qml/Actions.qml:203
  3493. msgctxt "@action:inmenu menubar:printer"
  3494. msgid "Manage Pr&inters..."
  3495. msgstr "Gerir Im&pressoras..."
  3496. #: resources/qml/Actions.qml:210
  3497. msgctxt "@action:inmenu"
  3498. msgid "Manage Materials..."
  3499. msgstr "Gerir Materiais..."
  3500. #: resources/qml/Actions.qml:218
  3501. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  3502. msgid "Add more materials from Marketplace"
  3503. msgstr "Adicionar mais materiais disponíveis no Marketplace"
  3504. #: resources/qml/Actions.qml:225
  3505. msgctxt "@action:inmenu menubar:profile"
  3506. msgid "&Update profile with current settings/overrides"
  3507. msgstr "&Atualizar perfil com as definições/substituições atuais"
  3508. #: resources/qml/Actions.qml:233
  3509. msgctxt "@action:inmenu menubar:profile"
  3510. msgid "&Discard current changes"
  3511. msgstr "&Descartar alterações atuais"
  3512. #: resources/qml/Actions.qml:245
  3513. msgctxt "@action:inmenu menubar:profile"
  3514. msgid "&Create profile from current settings/overrides..."
  3515. msgstr "&Criar perfil a partir das definições/substituições atuais..."
  3516. #: resources/qml/Actions.qml:251
  3517. msgctxt "@action:inmenu menubar:profile"
  3518. msgid "Manage Profiles..."
  3519. msgstr "Gerir Perfis..."
  3520. #: resources/qml/Actions.qml:259
  3521. msgctxt "@action:inmenu menubar:help"
  3522. msgid "Show Online &Documentation"
  3523. msgstr "Mostrar &documentação online"
  3524. #: resources/qml/Actions.qml:267
  3525. msgctxt "@action:inmenu menubar:help"
  3526. msgid "Report a &Bug"
  3527. msgstr "Reportar um &erro"
  3528. #: resources/qml/Actions.qml:275
  3529. msgctxt "@action:inmenu menubar:help"
  3530. msgid "What's New"
  3531. msgstr "Novidades"
  3532. #: resources/qml/Actions.qml:289
  3533. msgctxt "@action:inmenu menubar:help"
  3534. msgid "About..."
  3535. msgstr "Sobre..."
  3536. #: resources/qml/Actions.qml:296
  3537. msgctxt "@action:inmenu menubar:edit"
  3538. msgid "Delete Selected"
  3539. msgstr "Apagar seleção"
  3540. #: resources/qml/Actions.qml:306
  3541. msgctxt "@action:inmenu menubar:edit"
  3542. msgid "Center Selected"
  3543. msgstr "Centrar seleção"
  3544. #: resources/qml/Actions.qml:315
  3545. msgctxt "@action:inmenu menubar:edit"
  3546. msgid "Multiply Selected"
  3547. msgstr "Multiplicar seleção"
  3548. #: resources/qml/Actions.qml:324
  3549. msgctxt "@action:inmenu"
  3550. msgid "Delete Model"
  3551. msgstr "Apagar Modelo"
  3552. #: resources/qml/Actions.qml:332
  3553. msgctxt "@action:inmenu"
  3554. msgid "Ce&nter Model on Platform"
  3555. msgstr "Ce&ntrar Modelo na Base"
  3556. #: resources/qml/Actions.qml:338
  3557. msgctxt "@action:inmenu menubar:edit"
  3558. msgid "&Group Models"
  3559. msgstr "&Agrupar Modelos"
  3560. #: resources/qml/Actions.qml:358
  3561. msgctxt "@action:inmenu menubar:edit"
  3562. msgid "Ungroup Models"
  3563. msgstr "Desagrupar Modelos"
  3564. #: resources/qml/Actions.qml:368
  3565. msgctxt "@action:inmenu menubar:edit"
  3566. msgid "&Merge Models"
  3567. msgstr "&Combinar Modelos"
  3568. #: resources/qml/Actions.qml:378
  3569. msgctxt "@action:inmenu"
  3570. msgid "&Multiply Model..."
  3571. msgstr "&Multiplicar Modelo..."
  3572. #: resources/qml/Actions.qml:385
  3573. msgctxt "@action:inmenu menubar:edit"
  3574. msgid "Select All Models"
  3575. msgstr "Selecionar todos os modelos"
  3576. #: resources/qml/Actions.qml:395
  3577. msgctxt "@action:inmenu menubar:edit"
  3578. msgid "Clear Build Plate"
  3579. msgstr "Limpar base de construção"
  3580. #: resources/qml/Actions.qml:405
  3581. msgctxt "@action:inmenu menubar:file"
  3582. msgid "Reload All Models"
  3583. msgstr "Recarregar todos os modelos"
  3584. #: resources/qml/Actions.qml:414
  3585. msgctxt "@action:inmenu menubar:edit"
  3586. msgid "Arrange All Models"
  3587. msgstr "Dispor todos os modelos"
  3588. #: resources/qml/Actions.qml:422
  3589. msgctxt "@action:inmenu menubar:edit"
  3590. msgid "Arrange Selection"
  3591. msgstr "Dispor seleção"
  3592. #: resources/qml/Actions.qml:429
  3593. msgctxt "@action:inmenu menubar:edit"
  3594. msgid "Reset All Model Positions"
  3595. msgstr "Repor todas as posições de modelos"
  3596. #: resources/qml/Actions.qml:436
  3597. msgctxt "@action:inmenu menubar:edit"
  3598. msgid "Reset All Model Transformations"
  3599. msgstr "Repor Todas as Transformações do Modelo"
  3600. #: resources/qml/Actions.qml:445
  3601. msgctxt "@action:inmenu menubar:file"
  3602. msgid "&Open File(s)..."
  3603. msgstr "&Abrir Ficheiro(s)..."
  3604. #: resources/qml/Actions.qml:455
  3605. msgctxt "@action:inmenu menubar:file"
  3606. msgid "&New Project..."
  3607. msgstr "&Novo Projeto..."
  3608. #: resources/qml/Actions.qml:462
  3609. msgctxt "@action:inmenu menubar:help"
  3610. msgid "Show Configuration Folder"
  3611. msgstr "Mostrar pasta de configuração"
  3612. #: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476
  3613. msgctxt "@action:menu"
  3614. msgid "Configure setting visibility..."
  3615. msgstr "Configurar visibilidade das definições..."
  3616. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  3617. msgctxt "@label:button"
  3618. msgid "My printers"
  3619. msgstr "As minhas impressoras"
  3620. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  3621. msgctxt "@tooltip:button"
  3622. msgid "Monitor printers in Ultimaker Digital Factory."
  3623. msgstr "Monitorize as impressoras no Ultimaker Digital Factory."
  3624. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  3625. msgctxt "@tooltip:button"
  3626. msgid "Create print projects in Digital Library."
  3627. msgstr "Crie projetos de impressão na Digital Library."
  3628. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  3629. msgctxt "@label:button"
  3630. msgid "Print jobs"
  3631. msgstr "Trabalhos em Impressão"
  3632. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  3633. msgctxt "@tooltip:button"
  3634. msgid "Monitor print jobs and reprint from your print history."
  3635. msgstr "Monitorize os trabalhos de impressão e volte a imprimir a partir do histórico de impressão."
  3636. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  3637. msgctxt "@tooltip:button"
  3638. msgid "Extend UltiMaker Cura with plugins and material profiles."
  3639. msgstr "Tire mais partido do UltiMaker Cura com plug-ins e perfis de materiais."
  3640. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  3641. msgctxt "@tooltip:button"
  3642. msgid "Become a 3D printing expert with UltiMaker e-learning."
  3643. msgstr "Torne-se um perito em impressão 3D com os cursos de e-learning da UltiMaker."
  3644. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  3645. msgctxt "@label:button"
  3646. msgid "UltiMaker support"
  3647. msgstr "Suporte da UltiMaker"
  3648. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  3649. msgctxt "@tooltip:button"
  3650. msgid "Learn how to get started with UltiMaker Cura."
  3651. msgstr "Saiba como começar a utilizar o UltiMaker Cura."
  3652. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  3653. msgctxt "@label:button"
  3654. msgid "Ask a question"
  3655. msgstr "Faça uma pergunta"
  3656. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  3657. msgctxt "@tooltip:button"
  3658. msgid "Consult the UltiMaker Community."
  3659. msgstr "Consulte a Comunidade UltiMaker."
  3660. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  3661. msgctxt "@label:button"
  3662. msgid "Report a bug"
  3663. msgstr "Reportar um erro"
  3664. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  3665. msgctxt "@tooltip:button"
  3666. msgid "Let developers know that something is going wrong."
  3667. msgstr "Informe os programadores quando houver algum problema."
  3668. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  3669. msgctxt "@tooltip:button"
  3670. msgid "Visit the UltiMaker website."
  3671. msgstr "Visite o site da UltiMaker."
  3672. #: resources/qml/ColorDialog.qml:110
  3673. msgctxt "@label"
  3674. msgid "Hex"
  3675. msgstr "Hex"
  3676. #: resources/qml/Cura.qml:256
  3677. msgctxt "@label"
  3678. msgid "This package will be installed after restarting."
  3679. msgstr "Este pacote será instalado após reiniciar."
  3680. #: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14
  3681. msgctxt "@title:tab"
  3682. msgid "General"
  3683. msgstr "Geral"
  3684. #: resources/qml/Cura.qml:470
  3685. msgctxt "@title:tab"
  3686. msgid "Settings"
  3687. msgstr "Definições"
  3688. #: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17
  3689. msgctxt "@title:tab"
  3690. msgid "Printers"
  3691. msgstr "Impressoras"
  3692. #: resources/qml/Cura.qml:474
  3693. #: resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3694. msgctxt "@title:tab"
  3695. msgid "Materials"
  3696. msgstr "Materiais"
  3697. #: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57
  3698. msgctxt "@title:tab"
  3699. msgid "Profiles"
  3700. msgstr "Perfis"
  3701. #: resources/qml/Cura.qml:581
  3702. msgctxt "@title:window %1 is the application name"
  3703. msgid "Closing %1"
  3704. msgstr "A fechar %1"
  3705. #: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591
  3706. msgctxt "@label %1 is the application name"
  3707. msgid "Are you sure you want to exit %1?"
  3708. msgstr "Tem a certeza de que pretende sair de %1?"
  3709. #: resources/qml/Cura.qml:629
  3710. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  3711. msgctxt "@title:window"
  3712. msgid "Open file(s)"
  3713. msgstr "Abrir ficheiro(s)"
  3714. #: resources/qml/Cura.qml:734
  3715. msgctxt "@window:title"
  3716. msgid "Install Package"
  3717. msgstr "Instalar Pacote"
  3718. #: resources/qml/Cura.qml:741
  3719. msgctxt "@title:window"
  3720. msgid "Open File(s)"
  3721. msgstr "Abrir ficheiro(s)"
  3722. #: resources/qml/Cura.qml:743
  3723. msgctxt "@text:window"
  3724. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  3725. 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 G-code, selecione apenas um."
  3726. #: resources/qml/Cura.qml:828
  3727. msgctxt "@title:window"
  3728. msgid "Add Printer"
  3729. msgstr "Adicionar Impressora"
  3730. #: resources/qml/Cura.qml:836
  3731. msgctxt "@title:window"
  3732. msgid "What's New"
  3733. msgstr "Novidades"
  3734. #: resources/qml/Cura.qml:890
  3735. msgctxt "@title:window"
  3736. msgid "Save Custom Profile"
  3737. msgstr ""
  3738. #: resources/qml/Cura.qml:891
  3739. msgctxt "@textfield:placeholder"
  3740. msgid "New Custom Profile"
  3741. msgstr ""
  3742. #: resources/qml/Cura.qml:892
  3743. msgctxt "@info"
  3744. msgid "Custom profile name:"
  3745. msgstr ""
  3746. #: resources/qml/Cura.qml:909
  3747. msgctxt "@label %i will be replaced with a profile name"
  3748. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  3749. msgstr "<b>Só as definições alteradas pelo utilizador é que serão guardadas no perfil personalizado.</b><br/>Para materiais que oferecem suporte, o novo perfil personalizado herdará propriedades de <b>%1</b>."
  3750. #: resources/qml/Cura.qml:917
  3751. msgctxt "@action:button"
  3752. msgid "Learn more about Cura print profiles"
  3753. msgstr "Saiba mais sobre os perfis de impressão Cura"
  3754. #: resources/qml/Cura.qml:926
  3755. msgctxt "@button"
  3756. msgid "Save new profile"
  3757. msgstr ""
  3758. #: resources/qml/Dialogs/AboutDialog.qml:15
  3759. msgctxt "@title:window The argument is the application name."
  3760. msgid "About %1"
  3761. msgstr "Acerca de %1"
  3762. #: resources/qml/Dialogs/AboutDialog.qml:59
  3763. msgctxt "@label"
  3764. msgid "version: %1"
  3765. msgstr "versão: %1"
  3766. #: resources/qml/Dialogs/AboutDialog.qml:74
  3767. msgctxt "@label"
  3768. msgid "End-to-end solution for fused filament 3D printing."
  3769. msgstr "A Solução completa para a impressão 3D por filamento fundido."
  3770. #: resources/qml/Dialogs/AboutDialog.qml:87
  3771. msgctxt "@info:credit"
  3772. msgid ""
  3773. "Cura is developed by UltiMaker in cooperation with the community.\n"
  3774. "Cura proudly uses the following open source projects:"
  3775. msgstr ""
  3776. "O Cura foi desenvolvido pela UltiMaker B.V. em colaboração com a comunidade.\n"
  3777. "O Cura tem o prazer de utilizar os seguintes projetos open source:"
  3778. #: resources/qml/Dialogs/AboutDialog.qml:138
  3779. msgctxt "@label Description for application component"
  3780. msgid "Graphical user interface"
  3781. msgstr "Interface gráfica do utilizador"
  3782. #: resources/qml/Dialogs/AboutDialog.qml:139
  3783. msgctxt "@label Description for application component"
  3784. msgid "Application framework"
  3785. msgstr "Framework da aplicação"
  3786. #: resources/qml/Dialogs/AboutDialog.qml:140
  3787. msgctxt "@label Description for application component"
  3788. msgid "G-code generator"
  3789. msgstr "Gerador de G-code"
  3790. #: resources/qml/Dialogs/AboutDialog.qml:141
  3791. msgctxt "@label Description for application component"
  3792. msgid "Interprocess communication library"
  3793. msgstr "Biblioteca de comunicação interprocessual"
  3794. #: resources/qml/Dialogs/AboutDialog.qml:142
  3795. msgctxt "@label Description for application component"
  3796. msgid "Python bindings for libnest2d"
  3797. msgstr "Ligações Python para libnest2d"
  3798. #: resources/qml/Dialogs/AboutDialog.qml:143
  3799. msgctxt "@label Description for application component"
  3800. msgid "Polygon packing library, developed by Prusa Research"
  3801. msgstr "Biblioteca de embalagens de polígonos, desenvolvida pela Prusa Research"
  3802. #: resources/qml/Dialogs/AboutDialog.qml:144
  3803. msgctxt "@label Description for application component"
  3804. msgid "Support library for handling 3MF files"
  3805. msgstr "Biblioteca de apoio para processamento de ficheiros 3MF"
  3806. #: resources/qml/Dialogs/AboutDialog.qml:145
  3807. msgctxt "@label Description for application component"
  3808. msgid "Support library for file metadata and streaming"
  3809. msgstr "Biblioteca de apoio para transmissões de fluxo e metadados de ficheiros"
  3810. #: resources/qml/Dialogs/AboutDialog.qml:148
  3811. msgctxt "@label Description for application dependency"
  3812. msgid "Programming language"
  3813. msgstr "Linguagem de programação"
  3814. #: resources/qml/Dialogs/AboutDialog.qml:149
  3815. msgctxt "@label Description for application dependency"
  3816. msgid "GUI framework"
  3817. msgstr ""
  3818. #: resources/qml/Dialogs/AboutDialog.qml:150
  3819. msgctxt "@label Description for application dependency"
  3820. msgid "GUI framework bindings"
  3821. msgstr "Ligações de estrutura da GUI"
  3822. #: resources/qml/Dialogs/AboutDialog.qml:151
  3823. msgctxt "@label Description for application dependency"
  3824. msgid "C/C++ Binding library"
  3825. msgstr "Biblioteca de ligações C/C++"
  3826. #: resources/qml/Dialogs/AboutDialog.qml:152
  3827. msgctxt "@label Description for application dependency"
  3828. msgid "Data interchange format"
  3829. msgstr "Formato de intercâmbio de dados"
  3830. #: resources/qml/Dialogs/AboutDialog.qml:153
  3831. msgctxt "@label"
  3832. msgid "Font"
  3833. msgstr "Tipo de letra"
  3834. #: resources/qml/Dialogs/AboutDialog.qml:156
  3835. msgctxt "@label Description for application dependency"
  3836. msgid "Polygon clipping library"
  3837. msgstr "Biblioteca de recortes de polígonos"
  3838. #: resources/qml/Dialogs/AboutDialog.qml:157
  3839. msgctxt "@label Description for application dependency"
  3840. msgid "JSON parser"
  3841. msgstr ""
  3842. #: resources/qml/Dialogs/AboutDialog.qml:158
  3843. msgctxt "@label Description for application dependency"
  3844. msgid "Utility functions, including an image loader"
  3845. msgstr "Funções utilitárias, incluindo um carregador de imagens"
  3846. #: resources/qml/Dialogs/AboutDialog.qml:159
  3847. msgctxt "@label Description for application dependency"
  3848. msgid "Utility library, including Voronoi generation"
  3849. msgstr "Biblioteca de utilidades, incluindo a geração em Voronoi"
  3850. #: resources/qml/Dialogs/AboutDialog.qml:162
  3851. #: resources/qml/Dialogs/AboutDialog.qml:163
  3852. msgctxt "@label Description for application dependency"
  3853. msgid "Root Certificates for validating SSL trustworthiness"
  3854. msgstr "Certificados de raiz para validar a credibilidade SSL"
  3855. #: resources/qml/Dialogs/AboutDialog.qml:164
  3856. msgctxt "@label Description for application dependency"
  3857. msgid "Compatibility between Python 2 and 3"
  3858. msgstr "Compatibilidade entre Python 2 e 3"
  3859. #: resources/qml/Dialogs/AboutDialog.qml:165
  3860. msgctxt "@label Description for application dependency"
  3861. msgid "Support library for system keyring access"
  3862. msgstr "Biblioteca de apoio para acesso às chaves de sistema"
  3863. #: resources/qml/Dialogs/AboutDialog.qml:166
  3864. msgctxt "@label Description for application dependency"
  3865. msgid "Support library for faster math"
  3866. msgstr "Biblioteca de apoio para cálculos mais rápidos"
  3867. #: resources/qml/Dialogs/AboutDialog.qml:167
  3868. msgctxt "@label Description for application dependency"
  3869. msgid "Support library for handling STL files"
  3870. msgstr "Biblioteca de apoio para processamento de ficheiros STL"
  3871. #: resources/qml/Dialogs/AboutDialog.qml:168
  3872. msgctxt "@label Description for application dependency"
  3873. msgid "Python bindings for Clipper"
  3874. msgstr "Ligações Python para Clipper"
  3875. #: resources/qml/Dialogs/AboutDialog.qml:169
  3876. msgctxt "@label Description for application dependency"
  3877. msgid "Serial communication library"
  3878. msgstr "Biblioteca de comunicação em série"
  3879. #: resources/qml/Dialogs/AboutDialog.qml:170
  3880. msgctxt "@label Description for application dependency"
  3881. msgid "Support library for scientific computing"
  3882. msgstr "Biblioteca de apoio para computação científica"
  3883. #: resources/qml/Dialogs/AboutDialog.qml:171
  3884. msgctxt "@Label Description for application dependency"
  3885. msgid "Python Error tracking library"
  3886. msgstr "Biblioteca de registo de Erros Python"
  3887. #: resources/qml/Dialogs/AboutDialog.qml:172
  3888. msgctxt "@label Description for application dependency"
  3889. msgid "Support library for handling triangular meshes"
  3890. msgstr "Biblioteca de apoio para processamento de malhas triangulares"
  3891. #: resources/qml/Dialogs/AboutDialog.qml:173
  3892. msgctxt "@label Description for application dependency"
  3893. msgid "ZeroConf discovery library"
  3894. msgstr "Biblioteca de deteção ZeroConf"
  3895. #: resources/qml/Dialogs/AboutDialog.qml:176
  3896. msgctxt "@label Description for development tool"
  3897. msgid "Universal build system configuration"
  3898. msgstr "Configuração de sistema de construção universal"
  3899. #: resources/qml/Dialogs/AboutDialog.qml:177
  3900. msgctxt "@label Description for development tool"
  3901. msgid "Dependency and package manager"
  3902. msgstr "Dependência e gestor de pacotes"
  3903. #: resources/qml/Dialogs/AboutDialog.qml:178
  3904. msgctxt "@label Description for development tool"
  3905. msgid "Packaging Python-applications"
  3906. msgstr "A empacotar aplicativos Python"
  3907. #: resources/qml/Dialogs/AboutDialog.qml:179
  3908. msgctxt "@label Description for development tool"
  3909. msgid "Linux cross-distribution application deployment"
  3910. msgstr "Implementação da aplicação de distribuição cruzada Linux"
  3911. #: resources/qml/Dialogs/AboutDialog.qml:180
  3912. msgctxt "@label Description for development tool"
  3913. msgid "Generating Windows installers"
  3914. msgstr "A gerar instaladores Windows"
  3915. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  3916. msgctxt "@title:window"
  3917. msgid "Open project file"
  3918. msgstr "Abrir ficheiro de projeto"
  3919. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84
  3920. msgctxt "@text:window"
  3921. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3922. msgstr "Este ficheiro é um Projeto do Cura. Pretende abrir como Projeto ou só importar os modelos 3D incluídos no Projeto?"
  3923. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  3924. msgctxt "@text:window"
  3925. msgid "Remember my choice"
  3926. msgstr "Memorizar a minha escolha"
  3927. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  3928. msgctxt "@action:button"
  3929. msgid "Open as project"
  3930. msgstr "Abrir como projeto"
  3931. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  3932. msgctxt "@action:button"
  3933. msgid "Import models"
  3934. msgstr "Importar modelos"
  3935. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:17
  3936. msgctxt "@title:window"
  3937. msgid "Select Printer"
  3938. msgstr "Selecionar impressora"
  3939. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:54
  3940. msgctxt "@title:label"
  3941. msgid "Compatible Printers"
  3942. msgstr "Impressoras compatíveis"
  3943. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:110
  3944. msgctxt "@description"
  3945. msgid "No compatible printers, that are currently online, were found."
  3946. msgstr "Nenhuma impressora compatível, que esteja online no momento, foi encontrada."
  3947. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13
  3948. msgctxt "@title:window"
  3949. msgid "Discard or Keep changes"
  3950. msgstr "Descartar ou Manter as alterações"
  3951. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64
  3952. msgctxt "@text:window, %1 is a profile name"
  3953. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  3954. msgstr ""
  3955. "Alterou algumas definições do perfil.\n"
  3956. "Pretende manter estas alterações depois de trocar de perfis?\n"
  3957. "Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'."
  3958. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90
  3959. msgctxt "@title:column"
  3960. msgid "Profile settings"
  3961. msgstr "Definições do perfil"
  3962. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92
  3963. msgctxt "@title:column"
  3964. msgid "Current changes"
  3965. msgstr "Alterações atuais"
  3966. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123
  3967. #: resources/qml/Preferences/GeneralPage.qml:820
  3968. msgctxt "@option:discardOrKeep"
  3969. msgid "Always ask me this"
  3970. msgstr "Perguntar sempre isto"
  3971. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124
  3972. msgctxt "@option:discardOrKeep"
  3973. msgid "Discard and never ask again"
  3974. msgstr "Descartar e não perguntar novamente"
  3975. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  3976. msgctxt "@option:discardOrKeep"
  3977. msgid "Keep and never ask again"
  3978. msgstr "Manter e não perguntar novamente"
  3979. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157
  3980. msgctxt "@action:button"
  3981. msgid "Discard changes"
  3982. msgstr "Descartar alterações"
  3983. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164
  3984. msgctxt "@action:button"
  3985. msgid "Keep changes"
  3986. msgstr "Manter alterações"
  3987. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171
  3988. msgctxt "@action:button"
  3989. msgid "Save as new custom profile"
  3990. msgstr ""
  3991. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178
  3992. msgctxt "@action:button"
  3993. msgid "Save changes"
  3994. msgstr ""
  3995. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  3996. msgctxt "@text:window"
  3997. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  3998. 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 3D desses Projetos do Cura. Deseja continuar?"
  3999. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  4000. msgctxt "@action:button"
  4001. msgid "Import all as models"
  4002. msgstr "Importar tudo como modelos 3D"
  4003. #: resources/qml/Dialogs/RenameDialog.qml:23
  4004. msgctxt "@title:window"
  4005. msgid "Rename"
  4006. msgstr "Mudar o nome"
  4007. #: resources/qml/Dialogs/RenameDialog.qml:24
  4008. msgctxt "@info"
  4009. msgid "Please provide a new name."
  4010. msgstr "Por favor, indique um novo nome."
  4011. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  4012. msgctxt "@title:window"
  4013. msgid "Save Project"
  4014. msgstr "Guardar projeto"
  4015. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61
  4016. msgctxt "@action:title"
  4017. msgid "Summary - Cura Project"
  4018. msgstr "Resumo – Projeto Cura"
  4019. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  4020. msgctxt "@action:label"
  4021. msgid "Extruder %1"
  4022. msgstr "Extrusor %1"
  4023. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  4024. msgctxt "@action:label"
  4025. msgid "%1 & material"
  4026. msgstr "%1 & material"
  4027. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  4028. msgctxt "@action:label"
  4029. msgid "Material"
  4030. msgstr "Material"
  4031. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  4032. msgctxt "@action:label"
  4033. msgid "Don't show project summary on save again"
  4034. msgstr "Não mostrar novamente o resumo do projeto ao guardar"
  4035. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298
  4036. msgctxt "@action:button"
  4037. msgid "Save"
  4038. msgstr "Guardar"
  4039. #: resources/qml/JobSpecs.qml:93
  4040. msgctxt "@text Print job name"
  4041. msgid "Untitled"
  4042. msgstr "Sem título"
  4043. #: resources/qml/MainWindow/ApplicationMenu.qml:63
  4044. #: resources/qml/Menus/SettingsMenu.qml:13
  4045. msgctxt "@title:menu menubar:toplevel"
  4046. msgid "&Settings"
  4047. msgstr "&Definições"
  4048. #: resources/qml/MainWindow/ApplicationMenu.qml:87
  4049. msgctxt "@title:window"
  4050. msgid "New project"
  4051. msgstr "Novo projeto"
  4052. #: resources/qml/MainWindow/ApplicationMenu.qml:88
  4053. msgctxt "@info:question"
  4054. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4055. 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."
  4056. #: resources/qml/MainWindow/MainWindowHeader.qml:135
  4057. msgctxt "@action:button"
  4058. msgid "Marketplace"
  4059. msgstr "Mercado"
  4060. #: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  4061. msgctxt "@header"
  4062. msgid "Configurations"
  4063. msgstr "Configurações"
  4064. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  4065. msgctxt "@label"
  4066. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  4067. 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."
  4068. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  4069. msgctxt "@label"
  4070. msgid "Marketplace"
  4071. msgstr "Mercado"
  4072. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  4073. msgctxt "@label"
  4074. msgid "Loading available configurations from the printer..."
  4075. msgstr "A carregar as configurações disponíveis da impressora..."
  4076. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  4077. msgctxt "@label"
  4078. msgid "The configurations are not available because the printer is disconnected."
  4079. msgstr "As configurações não estão disponíveis porque a impressora está desligada."
  4080. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  4081. msgctxt "@tooltip"
  4082. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  4083. msgstr "A configuração deste extrusor não é permitida o que impede o seccionamento."
  4084. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  4085. msgctxt "@tooltip"
  4086. msgid "There are no profiles matching the configuration of this extruder."
  4087. msgstr "Não existem perfis que correspondam à configuração deste extrusor."
  4088. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250
  4089. msgctxt "@label"
  4090. msgid "Select configuration"
  4091. msgstr "Selecionar configuração"
  4092. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358
  4093. msgctxt "@label"
  4094. msgid "Configurations"
  4095. msgstr "Configurações"
  4096. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  4097. msgctxt "@header"
  4098. msgid "Custom"
  4099. msgstr "Personalizado"
  4100. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173
  4101. msgctxt "@label"
  4102. msgid "Enabled"
  4103. msgstr "Ativado"
  4104. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222
  4105. msgctxt "@label"
  4106. msgid "Material"
  4107. msgstr "Material"
  4108. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348
  4109. msgctxt "@label"
  4110. msgid "Use glue for better adhesion with this material combination."
  4111. msgstr "Utilizar cola para melhor aderência com esta combinação de materiais."
  4112. #: resources/qml/Menus/ContextMenu.qml:29
  4113. msgctxt "@label"
  4114. msgid "Print Selected Model With:"
  4115. msgid_plural "Print Selected Models With:"
  4116. msgstr[0] "Imprimir Modelo Selecionado Com:"
  4117. msgstr[1] "Imprimir modelos selecionados com:"
  4118. #: resources/qml/Menus/ContextMenu.qml:92
  4119. msgctxt "@title:window"
  4120. msgid "Multiply Selected Model"
  4121. msgid_plural "Multiply Selected Models"
  4122. msgstr[0] "Multiplicar Modelo Selecionado"
  4123. msgstr[1] "Multiplicar modelos selecionados"
  4124. #: resources/qml/Menus/ContextMenu.qml:123
  4125. msgctxt "@label"
  4126. msgid "Number of Copies"
  4127. msgstr "Número de Cópias"
  4128. #: resources/qml/Menus/EditMenu.qml:12
  4129. msgctxt "@title:menu menubar:toplevel"
  4130. msgid "&Edit"
  4131. msgstr "&Editar"
  4132. #: resources/qml/Menus/ExtensionMenu.qml:13
  4133. msgctxt "@title:menu menubar:toplevel"
  4134. msgid "E&xtensions"
  4135. msgstr "E&xtensões"
  4136. #: resources/qml/Menus/FileMenu.qml:13
  4137. msgctxt "@title:menu menubar:toplevel"
  4138. msgid "&File"
  4139. msgstr "&Ficheiro"
  4140. #: resources/qml/Menus/FileMenu.qml:45
  4141. msgctxt "@title:menu menubar:file"
  4142. msgid "&Save Project..."
  4143. msgstr "&Guardar projeto..."
  4144. #: resources/qml/Menus/FileMenu.qml:78
  4145. msgctxt "@title:menu menubar:file"
  4146. msgid "&Export..."
  4147. msgstr "&Exportar..."
  4148. #: resources/qml/Menus/FileMenu.qml:89
  4149. msgctxt "@action:inmenu menubar:file"
  4150. msgid "Export Selection..."
  4151. msgstr "Exportar seleção..."
  4152. #: resources/qml/Menus/HelpMenu.qml:14
  4153. msgctxt "@title:menu menubar:toplevel"
  4154. msgid "&Help"
  4155. msgstr "&Ajuda"
  4156. #: resources/qml/Menus/MaterialMenu.qml:13
  4157. msgctxt "@label:category menu label"
  4158. msgid "Material"
  4159. msgstr "Material"
  4160. #: resources/qml/Menus/MaterialMenu.qml:53
  4161. msgctxt "@label:category menu label"
  4162. msgid "Favorites"
  4163. msgstr "Favoritos"
  4164. #: resources/qml/Menus/MaterialMenu.qml:78
  4165. msgctxt "@label:category menu label"
  4166. msgid "Generic"
  4167. msgstr "Genérico"
  4168. #: resources/qml/Menus/OpenFilesMenu.qml:15
  4169. msgctxt "@title:menu menubar:file"
  4170. msgid "Open File(s)..."
  4171. msgstr "Abrir ficheiro(s)..."
  4172. #: resources/qml/Menus/PreferencesMenu.qml:21
  4173. msgctxt "@title:menu menubar:toplevel"
  4174. msgid "P&references"
  4175. msgstr "P&referências"
  4176. #: resources/qml/Menus/PrinterMenu.qml:13
  4177. msgctxt "@title:menu menubar:settings"
  4178. msgid "&Printer"
  4179. msgstr "&Impressora"
  4180. #: resources/qml/Menus/PrinterMenu.qml:17
  4181. msgctxt "@label:category menu label"
  4182. msgid "Network enabled printers"
  4183. msgstr "Impressoras em rede"
  4184. #: resources/qml/Menus/PrinterMenu.qml:50
  4185. msgctxt "@label:category menu label"
  4186. msgid "Local printers"
  4187. msgstr "Impressoras locais"
  4188. #: resources/qml/Menus/RecentFilesMenu.qml:15
  4189. msgctxt "@title:menu menubar:file"
  4190. msgid "Open &Recent"
  4191. msgstr "Abrir &Recente"
  4192. #: resources/qml/Menus/SaveProjectMenu.qml:15
  4193. msgctxt "@title:menu menubar:file"
  4194. msgid "Save Project..."
  4195. msgstr "Guardar projeto..."
  4196. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  4197. msgctxt "@action:inmenu"
  4198. msgid "Visible Settings"
  4199. msgstr "Definições Visíveis"
  4200. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  4201. msgctxt "@action:inmenu"
  4202. msgid "Collapse All Categories"
  4203. msgstr "Fechar todas as categorias"
  4204. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  4205. msgctxt "@action:inmenu"
  4206. msgid "Manage Setting Visibility..."
  4207. msgstr "Gerir Visibilidade das Definições..."
  4208. #: resources/qml/Menus/SettingsMenu.qml:34
  4209. msgctxt "@title:menu"
  4210. msgid "&Material"
  4211. msgstr "&Material"
  4212. #: resources/qml/Menus/SettingsMenu.qml:49
  4213. msgctxt "@action:inmenu"
  4214. msgid "Set as Active Extruder"
  4215. msgstr "Definir como Extrusor Ativo"
  4216. #: resources/qml/Menus/SettingsMenu.qml:55
  4217. msgctxt "@action:inmenu"
  4218. msgid "Enable Extruder"
  4219. msgstr "Ativar Extrusor"
  4220. #: resources/qml/Menus/SettingsMenu.qml:63
  4221. msgctxt "@action:inmenu"
  4222. msgid "Disable Extruder"
  4223. msgstr "Desativar Extrusor"
  4224. #: resources/qml/Menus/ViewMenu.qml:13
  4225. msgctxt "@title:menu menubar:toplevel"
  4226. msgid "&View"
  4227. msgstr "&Visualizar"
  4228. #: resources/qml/Menus/ViewMenu.qml:17
  4229. msgctxt "@action:inmenu menubar:view"
  4230. msgid "&Camera position"
  4231. msgstr "&Posição da câmara"
  4232. #: resources/qml/Menus/ViewMenu.qml:30
  4233. msgctxt "@action:inmenu menubar:view"
  4234. msgid "Camera view"
  4235. msgstr "Vista da câmara"
  4236. #: resources/qml/Menus/ViewMenu.qml:48
  4237. msgctxt "@action:inmenu menubar:view"
  4238. msgid "Perspective"
  4239. msgstr "Perspetiva"
  4240. #: resources/qml/Menus/ViewMenu.qml:59
  4241. msgctxt "@action:inmenu menubar:view"
  4242. msgid "Orthographic"
  4243. msgstr "Ortográfica"
  4244. #: resources/qml/MonitorButton.qml:115
  4245. msgctxt "@label:MonitorStatus"
  4246. msgid "Not connected to a printer"
  4247. msgstr "Sem ligação a uma impressora"
  4248. #: resources/qml/MonitorButton.qml:119
  4249. msgctxt "@label:MonitorStatus"
  4250. msgid "Printer does not accept commands"
  4251. msgstr "A impressora não aceita comandos"
  4252. #: resources/qml/MonitorButton.qml:129
  4253. msgctxt "@label:MonitorStatus"
  4254. msgid "In maintenance. Please check the printer"
  4255. msgstr "Em manutenção. Verifique a impressora"
  4256. #: resources/qml/MonitorButton.qml:140
  4257. msgctxt "@label:MonitorStatus"
  4258. msgid "Lost connection with the printer"
  4259. msgstr "Perdeu-se a ligação com a impressora"
  4260. #: resources/qml/MonitorButton.qml:142
  4261. msgctxt "@label:MonitorStatus"
  4262. msgid "Printing..."
  4263. msgstr "A imprimir..."
  4264. #: resources/qml/MonitorButton.qml:145
  4265. msgctxt "@label:MonitorStatus"
  4266. msgid "Paused"
  4267. msgstr "Em pausa"
  4268. #: resources/qml/MonitorButton.qml:148
  4269. msgctxt "@label:MonitorStatus"
  4270. msgid "Preparing..."
  4271. msgstr "A preparar..."
  4272. #: resources/qml/MonitorButton.qml:150
  4273. msgctxt "@label:MonitorStatus"
  4274. msgid "Please remove the print"
  4275. msgstr "Remova a impressão"
  4276. #: resources/qml/MonitorButton.qml:318
  4277. msgctxt "@label"
  4278. msgid "Abort Print"
  4279. msgstr "Cancelar impressão"
  4280. #: resources/qml/MonitorButton.qml:327
  4281. msgctxt "@label"
  4282. msgid "Are you sure you want to abort the print?"
  4283. msgstr "Tem a certeza de que deseja cancelar a impressão?"
  4284. #: resources/qml/ObjectItemButton.qml:109
  4285. msgctxt "@label"
  4286. msgid "Is printed as support."
  4287. msgstr "É imprimido como suporte."
  4288. #: resources/qml/ObjectItemButton.qml:112
  4289. msgctxt "@label"
  4290. msgid "Other models overlapping with this model are modified."
  4291. msgstr "Foram modificados outros modelos sobrepostos com este modelo."
  4292. #: resources/qml/ObjectItemButton.qml:115
  4293. msgctxt "@label"
  4294. msgid "Infill overlapping with this model is modified."
  4295. msgstr "Foi modificada a sobreposição de enchimento com este modelo."
  4296. #: resources/qml/ObjectItemButton.qml:118
  4297. msgctxt "@label"
  4298. msgid "Overlaps with this model are not supported."
  4299. msgstr "Não são suportadas sobreposições com este modelo."
  4300. #: resources/qml/ObjectItemButton.qml:125
  4301. msgctxt "@label %1 is the number of settings it overrides."
  4302. msgid "Overrides %1 setting."
  4303. msgid_plural "Overrides %1 settings."
  4304. msgstr[0] "Substitui %1 definição."
  4305. msgstr[1] "Substitui %1 definições."
  4306. #: resources/qml/ObjectSelector.qml:59
  4307. msgctxt "@label"
  4308. msgid "Object list"
  4309. msgstr "Lista de objetos"
  4310. #: resources/qml/Preferences/GeneralPage.qml:134
  4311. #: resources/qml/Preferences/SettingVisibilityPage.qml:24
  4312. msgctxt "@action:button"
  4313. msgid "Defaults"
  4314. msgstr "Predefinições"
  4315. #: resources/qml/Preferences/GeneralPage.qml:172
  4316. msgctxt "@label"
  4317. msgid "Interface"
  4318. msgstr "Interface"
  4319. #: resources/qml/Preferences/GeneralPage.qml:215
  4320. msgctxt "@heading"
  4321. msgid "-- incomplete --"
  4322. msgstr "-- incompleto --"
  4323. #: resources/qml/Preferences/GeneralPage.qml:261
  4324. msgctxt "@label"
  4325. msgid "Currency:"
  4326. msgstr "Moeda:"
  4327. #: resources/qml/Preferences/GeneralPage.qml:277
  4328. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  4329. msgid "Theme*:"
  4330. msgstr "Tema*:"
  4331. #: resources/qml/Preferences/GeneralPage.qml:323
  4332. msgctxt "@info:tooltip"
  4333. msgid "Slice automatically when changing settings."
  4334. msgstr "Seccionar automaticamente ao alterar as definições."
  4335. #: resources/qml/Preferences/GeneralPage.qml:331
  4336. msgctxt "@option:check"
  4337. msgid "Slice automatically"
  4338. msgstr "Seccionar automaticamente"
  4339. #: resources/qml/Preferences/GeneralPage.qml:340
  4340. msgctxt "@info:tooltip"
  4341. msgid "Show an icon and notifications in the system notification area."
  4342. msgstr "Mostre um ícone e notificações na área de notificação do sistema."
  4343. #: resources/qml/Preferences/GeneralPage.qml:348
  4344. msgctxt "@option:check"
  4345. msgid "Add icon to system tray *"
  4346. msgstr "Adicione o ícone à bandeja do sistema *"
  4347. #: resources/qml/Preferences/GeneralPage.qml:357
  4348. msgctxt "@label"
  4349. msgid "*You will need to restart the application for these changes to have effect."
  4350. msgstr "*Terá de reiniciar a aplicação para ativar estas alterações."
  4351. #: resources/qml/Preferences/GeneralPage.qml:373
  4352. msgctxt "@label"
  4353. msgid "Viewport behavior"
  4354. msgstr "Comportamento da janela"
  4355. #: resources/qml/Preferences/GeneralPage.qml:381
  4356. msgctxt "@info:tooltip"
  4357. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  4358. msgstr "Realçar, a vermelho, as áreas do modelo sem apoio. Sem suporte, estas áreas podem não ser impressas correctamente."
  4359. #: resources/qml/Preferences/GeneralPage.qml:390
  4360. msgctxt "@option:check"
  4361. msgid "Display overhang"
  4362. msgstr "Mostrar Saliências (Overhangs)"
  4363. #: resources/qml/Preferences/GeneralPage.qml:400
  4364. msgctxt "@info:tooltip"
  4365. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  4366. 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 pretendida."
  4367. #: resources/qml/Preferences/GeneralPage.qml:409
  4368. msgctxt "@option:check"
  4369. msgid "Display model errors"
  4370. msgstr "Apresentar erros de modelo"
  4371. #: resources/qml/Preferences/GeneralPage.qml:417
  4372. msgctxt "@info:tooltip"
  4373. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  4374. msgstr "Move a câmara de forma que o modelo fique no centro da visualização quando é selecionado um modelo"
  4375. #: resources/qml/Preferences/GeneralPage.qml:422
  4376. msgctxt "@action:button"
  4377. msgid "Center camera when item is selected"
  4378. msgstr "Centrar câmara ao selecionar item"
  4379. #: resources/qml/Preferences/GeneralPage.qml:432
  4380. msgctxt "@info:tooltip"
  4381. msgid "Should the default zoom behavior of cura be inverted?"
  4382. msgstr "O comportamento de zoom predefinido do Cura deve ser invertido?"
  4383. #: resources/qml/Preferences/GeneralPage.qml:437
  4384. msgctxt "@action:button"
  4385. msgid "Invert the direction of camera zoom."
  4386. msgstr "Inverta a direção do zoom da câmera."
  4387. #: resources/qml/Preferences/GeneralPage.qml:453
  4388. msgctxt "@info:tooltip"
  4389. msgid "Should zooming move in the direction of the mouse?"
  4390. msgstr "O zoom deve deslocar-se na direção do rato?"
  4391. #: resources/qml/Preferences/GeneralPage.qml:453
  4392. msgctxt "@info:tooltip"
  4393. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  4394. msgstr "Fazer zoom em direção ao rato não é suportado na perspetiva ortográfica."
  4395. #: resources/qml/Preferences/GeneralPage.qml:458
  4396. msgctxt "@action:button"
  4397. msgid "Zoom toward mouse direction"
  4398. msgstr "Fazer Zoom na direção do rato"
  4399. #: resources/qml/Preferences/GeneralPage.qml:484
  4400. msgctxt "@info:tooltip"
  4401. msgid "Should models on the platform be moved so that they no longer intersect?"
  4402. msgstr "Os modelos, na plataforma, devem ser movidos para que não se intersectem?"
  4403. #: resources/qml/Preferences/GeneralPage.qml:489
  4404. msgctxt "@option:check"
  4405. msgid "Ensure models are kept apart"
  4406. msgstr "Garantir que os modelos não se interceptam"
  4407. #: resources/qml/Preferences/GeneralPage.qml:498
  4408. msgctxt "@info:tooltip"
  4409. msgid "Should models on the platform be moved down to touch the build plate?"
  4410. msgstr "Pousar os modelos na base de construção?"
  4411. #: resources/qml/Preferences/GeneralPage.qml:503
  4412. msgctxt "@option:check"
  4413. msgid "Automatically drop models to the build plate"
  4414. msgstr "Pousar automaticamente os modelos na base de construção"
  4415. #: resources/qml/Preferences/GeneralPage.qml:515
  4416. msgctxt "@info:tooltip"
  4417. msgid "Show caution message in g-code reader."
  4418. msgstr "Mostrar mensagem de aviso no leitor de g-code."
  4419. #: resources/qml/Preferences/GeneralPage.qml:524
  4420. msgctxt "@option:check"
  4421. msgid "Caution message in g-code reader"
  4422. msgstr "Mensagem de aviso no leitor de g-code"
  4423. #: resources/qml/Preferences/GeneralPage.qml:532
  4424. msgctxt "@info:tooltip"
  4425. msgid "Should layer be forced into compatibility mode?"
  4426. msgstr "A vista por camada deve ser forçada a utilizar o modo de compatibilidade?"
  4427. #: resources/qml/Preferences/GeneralPage.qml:537
  4428. msgctxt "@option:check"
  4429. msgid "Force layer view compatibility mode (restart required)"
  4430. msgstr "Forçar o modo de compatibilidade na visualização por camada (é necessário reiniciar)"
  4431. #: resources/qml/Preferences/GeneralPage.qml:547
  4432. msgctxt "@info:tooltip"
  4433. msgid "Should Cura open at the location it was closed?"
  4434. msgstr "O Cura deve abrir na localização onde foi fechado?"
  4435. #: resources/qml/Preferences/GeneralPage.qml:552
  4436. msgctxt "@option:check"
  4437. msgid "Restore window position on start"
  4438. msgstr "Restaurar posição da janela ao iniciar"
  4439. #: resources/qml/Preferences/GeneralPage.qml:562
  4440. msgctxt "@info:tooltip"
  4441. msgid "What type of camera rendering should be used?"
  4442. msgstr "Que tipo de composição de câmara deve ser utilizado?"
  4443. #: resources/qml/Preferences/GeneralPage.qml:569
  4444. msgctxt "@window:text"
  4445. msgid "Camera rendering:"
  4446. msgstr "Composição de câmara:"
  4447. #: resources/qml/Preferences/GeneralPage.qml:576
  4448. msgid "Perspective"
  4449. msgstr "Perspetiva"
  4450. #: resources/qml/Preferences/GeneralPage.qml:577
  4451. msgid "Orthographic"
  4452. msgstr "Ortográfica"
  4453. #: resources/qml/Preferences/GeneralPage.qml:617
  4454. msgctxt "@label"
  4455. msgid "Opening and saving files"
  4456. msgstr "Abrir e guardar ficheiros"
  4457. #: resources/qml/Preferences/GeneralPage.qml:624
  4458. msgctxt "@info:tooltip"
  4459. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  4460. 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?"
  4461. #: resources/qml/Preferences/GeneralPage.qml:629
  4462. msgctxt "@option:check"
  4463. msgid "Use a single instance of Cura"
  4464. msgstr "Utilizar uma única instância do Cura"
  4465. #: resources/qml/Preferences/GeneralPage.qml:640
  4466. msgctxt "@info:tooltip"
  4467. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  4468. msgstr "Limpar a base de construção antes de carregar um novo modelo na instância única do Cura?"
  4469. #: resources/qml/Preferences/GeneralPage.qml:646
  4470. msgctxt "@option:check"
  4471. msgid "Clear buildplate before loading model into the single instance"
  4472. msgstr "Limpar base de construção antes de carregar o modelo na instância única"
  4473. #: resources/qml/Preferences/GeneralPage.qml:656
  4474. msgctxt "@info:tooltip"
  4475. msgid "Should models be scaled to the build volume if they are too large?"
  4476. msgstr "Os modelos devem ser redimensionados até ao volume de construção se forem demasiado grandes?"
  4477. #: resources/qml/Preferences/GeneralPage.qml:661
  4478. msgctxt "@option:check"
  4479. msgid "Scale large models"
  4480. msgstr "Redimensionar modelos demasiado grandes"
  4481. #: resources/qml/Preferences/GeneralPage.qml:671
  4482. msgctxt "@info:tooltip"
  4483. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  4484. 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?"
  4485. #: resources/qml/Preferences/GeneralPage.qml:676
  4486. msgctxt "@option:check"
  4487. msgid "Scale extremely small models"
  4488. msgstr "Redimensionar modelos extremamente pequenos"
  4489. #: resources/qml/Preferences/GeneralPage.qml:686
  4490. msgctxt "@info:tooltip"
  4491. msgid "Should models be selected after they are loaded?"
  4492. msgstr "Selecionar os modelos depois de abertos?"
  4493. #: resources/qml/Preferences/GeneralPage.qml:691
  4494. msgctxt "@option:check"
  4495. msgid "Select models when loaded"
  4496. msgstr "Selecionar os modelos depois de abertos"
  4497. #: resources/qml/Preferences/GeneralPage.qml:701
  4498. msgctxt "@info:tooltip"
  4499. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  4500. msgstr "Deve um prefixo com base no nome da impressora ser adicionado ao nome do trabalho de impressão automaticamente?"
  4501. #: resources/qml/Preferences/GeneralPage.qml:706
  4502. msgctxt "@option:check"
  4503. msgid "Add machine prefix to job name"
  4504. msgstr "Adicionar prefixo da máquina ao nome do trabalho"
  4505. #: resources/qml/Preferences/GeneralPage.qml:716
  4506. msgctxt "@info:tooltip"
  4507. msgid "Should a summary be shown when saving a project file?"
  4508. msgstr "Deve ser apresentado um resumo ao guardar um ficheiro de projeto?"
  4509. #: resources/qml/Preferences/GeneralPage.qml:720
  4510. msgctxt "@option:check"
  4511. msgid "Show summary dialog when saving project"
  4512. msgstr "Mostrar caixa de diálogo de resumo ao guardar projeto"
  4513. #: resources/qml/Preferences/GeneralPage.qml:730
  4514. msgctxt "@info:tooltip"
  4515. msgid "Default behavior when opening a project file"
  4516. msgstr "Comportamento predefinido ao abrir um ficheiro de projeto"
  4517. #: resources/qml/Preferences/GeneralPage.qml:738
  4518. msgctxt "@window:text"
  4519. msgid "Default behavior when opening a project file: "
  4520. msgstr "Comportamento predefinido ao abrir um ficheiro de projeto: "
  4521. #: resources/qml/Preferences/GeneralPage.qml:753
  4522. msgctxt "@option:openProject"
  4523. msgid "Always ask me this"
  4524. msgstr "Perguntar sempre isto"
  4525. #: resources/qml/Preferences/GeneralPage.qml:754
  4526. msgctxt "@option:openProject"
  4527. msgid "Always open as a project"
  4528. msgstr "Abrir sempre como projeto"
  4529. #: resources/qml/Preferences/GeneralPage.qml:755
  4530. msgctxt "@option:openProject"
  4531. msgid "Always import models"
  4532. msgstr "Importar sempre modelos"
  4533. #: resources/qml/Preferences/GeneralPage.qml:792
  4534. msgctxt "@info:tooltip"
  4535. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  4536. 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. Caso contrário, pode escolher um comportamento predefinido, sendo que a caixa de diálogo nunca mais é apresentada."
  4537. #: resources/qml/Preferences/GeneralPage.qml:801
  4538. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46
  4539. msgctxt "@label"
  4540. msgid "Profiles"
  4541. msgstr "Perfis"
  4542. #: resources/qml/Preferences/GeneralPage.qml:806
  4543. msgctxt "@window:text"
  4544. msgid "Default behavior for changed setting values when switching to a different profile: "
  4545. msgstr "Comportamento predefinido para valores de definição alterados ao mudar para um perfil diferente: "
  4546. #: resources/qml/Preferences/GeneralPage.qml:821
  4547. msgctxt "@option:discardOrKeep"
  4548. msgid "Always discard changed settings"
  4549. msgstr "Descartar sempre definições alteradas"
  4550. #: resources/qml/Preferences/GeneralPage.qml:822
  4551. msgctxt "@option:discardOrKeep"
  4552. msgid "Always transfer changed settings to new profile"
  4553. msgstr "Transferir sempre definições alteradas para o novo perfil"
  4554. #: resources/qml/Preferences/GeneralPage.qml:856
  4555. msgctxt "@label"
  4556. msgid "Privacy"
  4557. msgstr "Privacidade"
  4558. #: resources/qml/Preferences/GeneralPage.qml:862
  4559. msgctxt "@info:tooltip"
  4560. msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  4561. 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 modelos, endereços IP ou outro tipo de identificação pessoal."
  4562. #: resources/qml/Preferences/GeneralPage.qml:867
  4563. msgctxt "@option:check"
  4564. msgid "Send (anonymous) print information"
  4565. msgstr "Enviar dados (anónimos) sobre a impressão"
  4566. #: resources/qml/Preferences/GeneralPage.qml:897
  4567. msgctxt "@label"
  4568. msgid "Updates"
  4569. msgstr "Atualizações"
  4570. #: resources/qml/Preferences/GeneralPage.qml:904
  4571. msgctxt "@info:tooltip"
  4572. msgid "Should Cura check for updates when the program is started?"
  4573. msgstr "O Cura deve procurar atualizações quando o programa é iniciado?"
  4574. #: resources/qml/Preferences/GeneralPage.qml:909
  4575. msgctxt "@option:check"
  4576. msgid "Check for updates on start"
  4577. msgstr "Procurar atualizações ao iniciar"
  4578. #: resources/qml/Preferences/GeneralPage.qml:925
  4579. msgctxt "@info:tooltip"
  4580. msgid "When checking for updates, only check for stable releases."
  4581. msgstr "Quando se verificar se existem atualizações, verificar apenas a existência de versões estáveis."
  4582. #: resources/qml/Preferences/GeneralPage.qml:931
  4583. msgctxt "@option:radio"
  4584. msgid "Stable releases only"
  4585. msgstr "Apenas versões estáveis"
  4586. #: resources/qml/Preferences/GeneralPage.qml:941
  4587. msgctxt "@info:tooltip"
  4588. msgid "When checking for updates, check for both stable and for beta releases."
  4589. msgstr "Quando se verificar se existem atualizações, verificar tanto a existência de versões estáveis como de versões beta."
  4590. #: resources/qml/Preferences/GeneralPage.qml:947
  4591. msgctxt "@option:radio"
  4592. msgid "Stable and Beta releases"
  4593. msgstr "Versões estáveis e beta"
  4594. #: resources/qml/Preferences/GeneralPage.qml:957
  4595. msgctxt "@info:tooltip"
  4596. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  4597. 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!"
  4598. #: resources/qml/Preferences/GeneralPage.qml:962
  4599. msgctxt "@option:check"
  4600. msgid "Get notifications for plugin updates"
  4601. msgstr "Receber notificações para atualizações de plug-ins"
  4602. #: resources/qml/Preferences/MachinesPage.qml:50
  4603. msgctxt "@action:button"
  4604. msgid "Add New"
  4605. msgstr "Adicionar novo"
  4606. #: resources/qml/Preferences/MachinesPage.qml:147
  4607. #: resources/qml/Preferences/Materials/MaterialsPage.qml:160
  4608. #: resources/qml/Preferences/ProfilesPage.qml:294
  4609. msgctxt "@action:button"
  4610. msgid "Activate"
  4611. msgstr "Ativar"
  4612. #: resources/qml/Preferences/MachinesPage.qml:159
  4613. #: resources/qml/Preferences/ProfilesPage.qml:331
  4614. msgctxt "@action:button"
  4615. msgid "Rename"
  4616. msgstr "Mudar Nome"
  4617. #: resources/qml/Preferences/Materials/MaterialsPage.qml:72
  4618. msgctxt "@label"
  4619. msgid "Materials compatible with active printer:"
  4620. msgstr "Materiais compatíveis com a impressora ativa:"
  4621. #: resources/qml/Preferences/Materials/MaterialsPage.qml:78
  4622. #: resources/qml/Preferences/ProfilesPage.qml:94
  4623. msgctxt "@action:button"
  4624. msgid "Create new"
  4625. msgstr "Criar novo"
  4626. #: resources/qml/Preferences/Materials/MaterialsPage.qml:90
  4627. #: resources/qml/Preferences/ProfilesPage.qml:88
  4628. msgctxt "@action:button"
  4629. msgid "Import"
  4630. msgstr "Importar"
  4631. #: resources/qml/Preferences/Materials/MaterialsPage.qml:101
  4632. msgctxt "@action:button"
  4633. msgid "Sync with Printers"
  4634. msgstr "Sincronizar com Impressoras"
  4635. #: resources/qml/Preferences/Materials/MaterialsPage.qml:174
  4636. #: resources/qml/Preferences/ProfilesPage.qml:311
  4637. msgctxt "@action:button"
  4638. msgid "Duplicate"
  4639. msgstr "Duplicar"
  4640. #: resources/qml/Preferences/Materials/MaterialsPage.qml:198
  4641. #: resources/qml/Preferences/ProfilesPage.qml:342
  4642. msgctxt "@action:button"
  4643. msgid "Export"
  4644. msgstr "Exportar"
  4645. #: resources/qml/Preferences/Materials/MaterialsPage.qml:212
  4646. #: resources/qml/Preferences/ProfilesPage.qml:392
  4647. msgctxt "@title:window"
  4648. msgid "Confirm Remove"
  4649. msgstr "Confirmar Remoção"
  4650. #: resources/qml/Preferences/Materials/MaterialsPage.qml:215
  4651. #: resources/qml/Preferences/ProfilesPage.qml:393
  4652. msgctxt "@label (%1 is object name)"
  4653. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  4654. msgstr "Tem a certeza de que deseja remover o perfil %1? Não é possível desfazer esta ação!"
  4655. #: resources/qml/Preferences/Materials/MaterialsPage.qml:228
  4656. #: resources/qml/Preferences/Materials/MaterialsPage.qml:238
  4657. msgctxt "@title:window"
  4658. msgid "Import Material"
  4659. msgstr "Importar material"
  4660. #: resources/qml/Preferences/Materials/MaterialsPage.qml:242
  4661. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4662. msgid "Successfully imported material <filename>%1</filename>"
  4663. msgstr "Material <filename>%1</filename> importado com êxito"
  4664. #: resources/qml/Preferences/Materials/MaterialsPage.qml:245
  4665. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4666. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  4667. msgstr "Não foi possível importar o material <filename>%1</filename>: <message>%2</message>"
  4668. #: resources/qml/Preferences/Materials/MaterialsPage.qml:256
  4669. #: resources/qml/Preferences/Materials/MaterialsPage.qml:267
  4670. msgctxt "@title:window"
  4671. msgid "Export Material"
  4672. msgstr "Exportar Material"
  4673. #: resources/qml/Preferences/Materials/MaterialsPage.qml:272
  4674. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4675. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4676. msgstr "Falha ao exportar material para <filename>%1</filename>: <message>%2</message>"
  4677. #: resources/qml/Preferences/Materials/MaterialsPage.qml:275
  4678. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4679. msgid "Successfully exported material to <filename>%1</filename>"
  4680. msgstr "Material exportado com êxito para <filename>%1</filename>"
  4681. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18
  4682. msgctxt "@title:window"
  4683. msgid "Sync materials with printers"
  4684. msgstr "Sincronizar materiais com impressoras"
  4685. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49
  4686. msgctxt "@title:header"
  4687. msgid "Sync materials with printers"
  4688. msgstr "Sincronizar materiais com impressoras"
  4689. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55
  4690. msgctxt "@text"
  4691. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  4692. msgstr "Com alguns passos simples poderá sincronizar todos os seus perfis de materiais com as suas impressoras."
  4693. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  4694. msgctxt "@button"
  4695. msgid "Why do I need to sync material profiles?"
  4696. msgstr "Por que motivo tenho de sincronizar os perfis de materiais?"
  4697. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86
  4698. msgctxt "@button"
  4699. msgid "Start"
  4700. msgstr "Começar"
  4701. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144
  4702. msgctxt "@title:header"
  4703. msgid "Sign in"
  4704. msgstr "Iniciar sessão"
  4705. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150
  4706. msgctxt "@text"
  4707. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  4708. msgstr "Para sincronizar automaticamente os perfis de materiais com todas as impressoras ligadas à Digital Factory, tem de ter uma sessão iniciada no Cura."
  4709. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174
  4710. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462
  4711. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602
  4712. msgctxt "@button"
  4713. msgid "Sync materials with USB"
  4714. msgstr "Sincronizar materiais através de USB"
  4715. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  4716. msgctxt "@title:header"
  4717. msgid "The following printers will receive the new material profiles:"
  4718. msgstr "As seguintes impressoras vão receber os novos perfis de materiais:"
  4719. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  4720. msgctxt "@title:header"
  4721. msgid "Something went wrong when sending the materials to the printers."
  4722. msgstr "Ocorreu um problema ao enviar os materiais para as impressoras."
  4723. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221
  4724. msgctxt "@title:header"
  4725. msgid "Material profiles successfully synced with the following printers:"
  4726. msgstr "Perfis de materiais foram sincronizados com êxito com as seguintes impressoras:"
  4727. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258
  4728. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445
  4729. msgctxt "@button"
  4730. msgid "Troubleshooting"
  4731. msgstr "Resolução de problemas"
  4732. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422
  4733. msgctxt "@text Asking the user whether printers are missing in a list."
  4734. msgid "Printers missing?"
  4735. msgstr "Faltam impressoras?"
  4736. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424
  4737. msgctxt "@text"
  4738. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  4739. msgstr "Certifique-se de que todas as impressoras estão ON e ligadas com a Digital Factory."
  4740. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433
  4741. msgctxt "@button"
  4742. msgid "Refresh List"
  4743. msgstr "Atualizar lista"
  4744. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473
  4745. msgctxt "@button"
  4746. msgid "Try again"
  4747. msgstr "Tente novamente"
  4748. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477
  4749. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4750. msgctxt "@button"
  4751. msgid "Done"
  4752. msgstr "Concluído"
  4753. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479
  4754. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622
  4755. msgctxt "@button"
  4756. msgid "Sync"
  4757. msgstr "Sincronizar"
  4758. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535
  4759. msgctxt "@button"
  4760. msgid "Syncing"
  4761. msgstr "A sincronizar"
  4762. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553
  4763. msgctxt "@title:header"
  4764. msgid "No printers found"
  4765. msgstr "Não foi encontrada nenhuma impressora"
  4766. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574
  4767. msgctxt "@text"
  4768. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  4769. 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 recente instalado."
  4770. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585
  4771. msgctxt "@button"
  4772. msgid "Learn how to connect your printer to Digital Factory"
  4773. msgstr "Saiba como ligar a sua impressora à Digital Factory"
  4774. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613
  4775. msgctxt "@button"
  4776. msgid "Refresh"
  4777. msgstr "Atualizar"
  4778. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642
  4779. msgctxt "@title:header"
  4780. msgid "Sync material profiles via USB"
  4781. msgstr "Sincronizar perfis de materiais via USB"
  4782. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648
  4783. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  4784. msgid "Follow the following steps to load the new material profiles to your printer."
  4785. msgstr "Siga os seguintes passos para instalar os novos perfis de materiais na sua impressora."
  4786. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  4787. msgctxt "@text"
  4788. msgid "Click the export material archive button."
  4789. msgstr "Clique no botão para exportar o ficheiro de material."
  4790. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  4791. msgctxt "@text"
  4792. msgid "Save the .umm file on a USB stick."
  4793. msgstr "Guarde o ficheiro .umm numa unidade USB."
  4794. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  4795. msgctxt "@text"
  4796. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  4797. msgstr "Insira a unidade USB na impressora e inicie o procedimento para carregar novos perfis de materiais."
  4798. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  4799. msgctxt "@button"
  4800. msgid "How to load new material profiles to my printer"
  4801. msgstr "Como carregar novos perfis de materiais para a minha impressora"
  4802. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703
  4803. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299
  4804. msgctxt "@button"
  4805. msgid "Back"
  4806. msgstr "Anterior"
  4807. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4808. msgctxt "@button"
  4809. msgid "Export material archive"
  4810. msgstr "Exportar ficheiro de material"
  4811. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747
  4812. msgctxt "@title:window"
  4813. msgid "Export All Materials"
  4814. msgstr "Exportar Todos os Materiais"
  4815. #: resources/qml/Preferences/Materials/MaterialsView.qml:121
  4816. msgctxt "@title:window"
  4817. msgid "Confirm Diameter Change"
  4818. msgstr "Confirmar Alteração de Diâmetro"
  4819. #: resources/qml/Preferences/Materials/MaterialsView.qml:122
  4820. msgctxt "@label (%1 is a number)"
  4821. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  4822. msgstr "O novo diâmetro do filamento está definido como %1 mm, o que não é compatível com o extrusor actual. Pretende prosseguir?"
  4823. #: resources/qml/Preferences/Materials/MaterialsView.qml:152
  4824. msgctxt "@label"
  4825. msgid "Display Name"
  4826. msgstr "Nome"
  4827. #: resources/qml/Preferences/Materials/MaterialsView.qml:171
  4828. msgctxt "@label"
  4829. msgid "Brand"
  4830. msgstr "Marca"
  4831. #: resources/qml/Preferences/Materials/MaterialsView.qml:190
  4832. msgctxt "@label"
  4833. msgid "Material Type"
  4834. msgstr "Tipo de Material"
  4835. #: resources/qml/Preferences/Materials/MaterialsView.qml:210
  4836. msgctxt "@label"
  4837. msgid "Color"
  4838. msgstr "Cor"
  4839. #: resources/qml/Preferences/Materials/MaterialsView.qml:262
  4840. msgctxt "@title"
  4841. msgid "Material color picker"
  4842. msgstr "Selecionador de cores do material"
  4843. #: resources/qml/Preferences/Materials/MaterialsView.qml:275
  4844. msgctxt "@label"
  4845. msgid "Properties"
  4846. msgstr "Propriedades"
  4847. #: resources/qml/Preferences/Materials/MaterialsView.qml:286
  4848. msgctxt "@label"
  4849. msgid "Density"
  4850. msgstr "Densidade"
  4851. #: resources/qml/Preferences/Materials/MaterialsView.qml:319
  4852. msgctxt "@label"
  4853. msgid "Diameter"
  4854. msgstr "Diâmetro"
  4855. #: resources/qml/Preferences/Materials/MaterialsView.qml:369
  4856. msgctxt "@label"
  4857. msgid "Filament Cost"
  4858. msgstr "Custo do Filamento"
  4859. #: resources/qml/Preferences/Materials/MaterialsView.qml:401
  4860. msgctxt "@label"
  4861. msgid "Filament weight"
  4862. msgstr "Peso do Filamento"
  4863. #: resources/qml/Preferences/Materials/MaterialsView.qml:433
  4864. msgctxt "@label"
  4865. msgid "Filament length"
  4866. msgstr "Comprimento do filamento"
  4867. #: resources/qml/Preferences/Materials/MaterialsView.qml:451
  4868. msgctxt "@label"
  4869. msgid "Cost per Meter"
  4870. msgstr "Custo por Metro"
  4871. #: resources/qml/Preferences/Materials/MaterialsView.qml:465
  4872. msgctxt "@label"
  4873. msgid "This material is linked to %1 and shares some of its properties."
  4874. msgstr "Este material está associado a %1 e partilha algumas das suas propriedades."
  4875. #: resources/qml/Preferences/Materials/MaterialsView.qml:472
  4876. msgctxt "@label"
  4877. msgid "Unlink Material"
  4878. msgstr "Desassociar Material"
  4879. #: resources/qml/Preferences/Materials/MaterialsView.qml:485
  4880. msgctxt "@label"
  4881. msgid "Description"
  4882. msgstr "Descrição"
  4883. #: resources/qml/Preferences/Materials/MaterialsView.qml:503
  4884. msgctxt "@label"
  4885. msgid "Adhesion Information"
  4886. msgstr "Informações de Aderência"
  4887. #: resources/qml/Preferences/Materials/MaterialsView.qml:642
  4888. msgctxt "@title"
  4889. msgid "Information"
  4890. msgstr "Informações"
  4891. #: resources/qml/Preferences/Materials/MaterialsView.qml:647
  4892. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18
  4893. msgctxt "@label"
  4894. msgid "Print settings"
  4895. msgstr "Definições de impressão"
  4896. #: resources/qml/Preferences/ProfilesPage.qml:59
  4897. msgctxt "@label"
  4898. msgid "Profiles compatible with active printer:"
  4899. msgstr "Perfis compatíveis com a impressora ativa:"
  4900. #: resources/qml/Preferences/ProfilesPage.qml:98
  4901. msgctxt "@action:tooltip"
  4902. msgid "Create new profile from current settings/overrides"
  4903. msgstr "Criar novo perfil a partir das definições/alterações atuais"
  4904. #: resources/qml/Preferences/ProfilesPage.qml:125
  4905. msgctxt "@action:label"
  4906. msgid "Some settings from current profile were overwritten."
  4907. msgstr "Algumas definições do perfil actual foram substituídas."
  4908. #: resources/qml/Preferences/ProfilesPage.qml:140
  4909. msgctxt "@action:button"
  4910. msgid "Update profile."
  4911. msgstr "Atualizar o perfil."
  4912. #: resources/qml/Preferences/ProfilesPage.qml:143
  4913. msgctxt "@action:tooltip"
  4914. msgid "Update profile with current settings/overrides"
  4915. msgstr "Atualizar perfil com as definições/substituições atuais"
  4916. #: resources/qml/Preferences/ProfilesPage.qml:148
  4917. msgctxt "@action:button"
  4918. msgid "Discard current changes"
  4919. msgstr "Descartar alterações atuais"
  4920. #: resources/qml/Preferences/ProfilesPage.qml:158
  4921. msgctxt "@action:label"
  4922. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  4923. msgstr "Este perfil utiliza as predefinições especificadas pela impressora, pelo que não tem quaisquer definições/substituições na lista seguinte."
  4924. #: resources/qml/Preferences/ProfilesPage.qml:165
  4925. msgctxt "@action:label"
  4926. msgid "Your current settings match the selected profile."
  4927. msgstr "As suas definições atuais correspondem ao perfil selecionado."
  4928. #: resources/qml/Preferences/ProfilesPage.qml:175
  4929. msgctxt "@title:tab"
  4930. msgid "Global Settings"
  4931. msgstr "Definições Globais"
  4932. #: resources/qml/Preferences/ProfilesPage.qml:278
  4933. msgctxt "@title:window"
  4934. msgid "Create Profile"
  4935. msgstr "Criar Perfil"
  4936. #: resources/qml/Preferences/ProfilesPage.qml:280
  4937. msgctxt "@info"
  4938. msgid "Please provide a name for this profile."
  4939. msgstr "Forneça um nome para este perfil."
  4940. #: resources/qml/Preferences/ProfilesPage.qml:352
  4941. #: resources/qml/Preferences/ProfilesPage.qml:368
  4942. msgctxt "@title:window"
  4943. msgid "Export Profile"
  4944. msgstr "Exportar Perfil"
  4945. #: resources/qml/Preferences/ProfilesPage.qml:382
  4946. msgctxt "@title:window"
  4947. msgid "Duplicate Profile"
  4948. msgstr "Duplicar Perfil"
  4949. #: resources/qml/Preferences/ProfilesPage.qml:409
  4950. msgctxt "@title:window"
  4951. msgid "Rename Profile"
  4952. msgstr "Mudar Nome do Perfil"
  4953. #: resources/qml/Preferences/ProfilesPage.qml:422
  4954. #: resources/qml/Preferences/ProfilesPage.qml:429
  4955. msgctxt "@title:window"
  4956. msgid "Import Profile"
  4957. msgstr "Importar Perfil"
  4958. #: resources/qml/Preferences/SettingVisibilityItem.qml:56
  4959. msgctxt "@item:tooltip"
  4960. msgid "This setting has been hidden by the active machine and will not be visible."
  4961. msgstr "Esta definição não é válida para a máquina ativa, e não será visível."
  4962. #: resources/qml/Preferences/SettingVisibilityItem.qml:73
  4963. msgctxt "@item:tooltip %1 is list of setting names"
  4964. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  4965. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  4966. 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."
  4967. 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."
  4968. #: resources/qml/Preferences/SettingVisibilityPage.qml:13
  4969. msgctxt "@title:tab"
  4970. msgid "Setting Visibility"
  4971. msgstr "Visibilidade das Definições"
  4972. #: resources/qml/Preferences/SettingVisibilityPage.qml:55
  4973. msgctxt "@label:textbox"
  4974. msgid "Check all"
  4975. msgstr "Selecionar tudo"
  4976. #: resources/qml/PrintMonitor.qml:156
  4977. msgctxt "@label"
  4978. msgid "Active print"
  4979. msgstr "Impressão ativa"
  4980. #: resources/qml/PrintMonitor.qml:164
  4981. msgctxt "@label"
  4982. msgid "Job Name"
  4983. msgstr "Nome do trabalho"
  4984. #: resources/qml/PrintMonitor.qml:172
  4985. msgctxt "@label"
  4986. msgid "Printing Time"
  4987. msgstr "Tempo de Impressão"
  4988. #: resources/qml/PrintMonitor.qml:180
  4989. msgctxt "@label"
  4990. msgid "Estimated time left"
  4991. msgstr "Tempo restante estimado"
  4992. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  4993. msgctxt "@label"
  4994. msgid "Profile"
  4995. msgstr "Perfil"
  4996. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136
  4997. msgctxt "@tooltip"
  4998. msgid ""
  4999. "Some setting/override values are different from the values stored in the profile.\n"
  5000. "\n"
  5001. "Click to open the profile manager."
  5002. msgstr ""
  5003. "Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil.\n"
  5004. "\n"
  5005. "Clique para abrir o gestor de perfis."
  5006. #: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  5007. msgctxt "@label:header"
  5008. msgid "Custom profiles"
  5009. msgstr "Perfis personalizados"
  5010. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20
  5011. msgctxt "@label shown when we load a Gcode file"
  5012. msgid "Print setup disabled. G-code file can not be modified."
  5013. msgstr "Configuração de impressão desativada. O ficheiro G-code não pode ser modificado."
  5014. #: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179
  5015. msgctxt "@button"
  5016. msgid "Recommended"
  5017. msgstr "Recomendado"
  5018. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  5019. msgctxt "@label:Should be short"
  5020. msgid "On"
  5021. msgstr "Ligado"
  5022. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  5023. msgctxt "@label:Should be short"
  5024. msgid "Off"
  5025. msgstr "Desligado"
  5026. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65
  5027. msgctxt "@info, %1 is the name of the custom profile"
  5028. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  5029. msgstr "<b>%1</b> perfil personalizado está ativo e sobrescreveu algumas configurações."
  5030. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78
  5031. msgctxt "@info, %1 is the name of the custom profile"
  5032. msgid "<b>%1</b> custom profile is overriding some settings."
  5033. msgstr "<b>%1</b> perfil personalizado está a sobrepor-se a algumas configurações."
  5034. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92
  5035. msgctxt "@info %1 is the name of a profile"
  5036. msgid "Recommended settings (for <b>%1</b>) were altered."
  5037. msgstr "As definições recomendadas (para <b>%1</b>) foram alteradas."
  5038. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106
  5039. msgctxt "@info %1 is the name of a profile"
  5040. msgid "Some setting-values defined in <b>%1</b> were overridden."
  5041. msgstr ""
  5042. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137
  5043. msgctxt "@info"
  5044. msgid "Reset to defaults."
  5045. msgstr "Repor predefinições."
  5046. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178
  5047. msgctxt "@info"
  5048. msgid "Compare and save."
  5049. msgstr "Compare e guarde."
  5050. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15
  5051. msgctxt "@label"
  5052. msgid "Adhesion"
  5053. msgstr "Aderência à Base de Construção"
  5054. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20
  5055. msgctxt "@label"
  5056. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
  5057. 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 posteriormente."
  5058. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102
  5059. msgctxt "@label"
  5060. msgid "Recommended print settings"
  5061. msgstr ""
  5062. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111
  5063. msgctxt "@button"
  5064. msgid "Show Custom"
  5065. msgstr ""
  5066. #: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27
  5067. msgctxt "@label"
  5068. msgid "Resolution"
  5069. msgstr "Resolução"
  5070. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16
  5071. msgctxt "@label"
  5072. msgid "Strength"
  5073. msgstr "Força"
  5074. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20
  5075. msgctxt "@label"
  5076. msgid "The following settings define the strength of your part."
  5077. msgstr "As seguintes definições definem a força da sua peça."
  5078. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34
  5079. msgctxt "infill_sparse_density description"
  5080. msgid "Infill Density"
  5081. msgstr ""
  5082. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35
  5083. msgctxt "@label"
  5084. msgid "Adjusts the density of infill of the print."
  5085. msgstr "Ajusta a densidade do enchimento da impressão."
  5086. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54
  5087. msgctxt "@action:label"
  5088. msgid "Infill Pattern"
  5089. msgstr "Padrão de Enchimento"
  5090. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56
  5091. msgctxt "@label"
  5092. msgid ""
  5093. "The pattern of the infill material of the print:\n"
  5094. "\n"
  5095. "For quick prints of non functional model choose line, zig zag or lightning infill.\n"
  5096. "\n"
  5097. "For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n"
  5098. "\n"
  5099. "For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  5100. msgstr ""
  5101. "O padrão do material de enchimento da impressão:\n"
  5102. "\n"
  5103. "Para impressões rápidas de modelo não funcional, escolha linha, ziguezague ou enchimento de iluminação.Para uma parte funcional não sujeita a muito stress recomendamos grelha ou triângulo ou tri hexágono.\n"
  5104. "\n"
  5105. "Para impressões 3D funcionais que exigem alta tensão em múltiplas direções, use a subdivisão cúbica, cúbica, quarto cúbica, octeto e tireoide."
  5106. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67
  5107. msgctxt "@action:label"
  5108. msgid "Shell Thickness"
  5109. msgstr ""
  5110. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68
  5111. msgctxt "@label"
  5112. msgid "Defines the thickness of your part side walls, roof and floor."
  5113. msgstr "Define a espessura das paredes laterais da peça, do telhado e do chão."
  5114. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16
  5115. msgctxt "@label"
  5116. msgid "Support"
  5117. msgstr "Suportes"
  5118. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21
  5119. msgctxt "@label"
  5120. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  5121. 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."
  5122. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40
  5123. msgctxt "@action:label"
  5124. msgid "Support Type"
  5125. msgstr ""
  5126. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41
  5127. msgctxt "@label"
  5128. msgid ""
  5129. "Chooses between the techniques available to generate support. \n"
  5130. "\n"
  5131. "\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n"
  5132. "\n"
  5133. "\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  5134. msgstr ""
  5135. "Escolha entre os tipos de estrutura de suportes disponíveis. ⏎⏎ O tipo \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e extrude estas áreas para baixo. \n"
  5136. "\n"
  5137. "A estrutura tipo \"Árvore\" cria ramos em direção às saliências, de forma a que estas sejam suportadas pelas pontas dos ramos, que crescem a partir da base de construção mesmo se for necessário andar em redor do modelos."
  5138. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53
  5139. msgctxt "@action:label"
  5140. msgid "Print with"
  5141. msgstr ""
  5142. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54
  5143. msgctxt "@label"
  5144. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  5145. msgstr "O extrusor a utilizar para imprimir os suportes. Definição usada com múltiplos extrusores."
  5146. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67
  5147. msgctxt "@action:label"
  5148. msgid "Placement"
  5149. msgstr "Colocação"
  5150. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68
  5151. msgctxt "support_type description"
  5152. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  5153. msgstr "Ajusta a colocação das estruturas de suporte. A colocação pode ser definida para tocar na base de construção ou em todo o lado. Quando definida para tocar em todo o lado, as estruturas de suporte também serão impressas no modelo."
  5154. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31
  5155. msgctxt "@error"
  5156. msgid "Configuration not supported"
  5157. msgstr "Configuração não suportada"
  5158. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39
  5159. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  5160. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  5161. msgstr "Não há perfis disponíveis para a configuração do material/%1 selecionado. Altere sua configuração."
  5162. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47
  5163. msgctxt "@button:label"
  5164. msgid "Learn more"
  5165. msgstr "Saber mais"
  5166. #: resources/qml/PrinterOutput/ExtruderBox.qml:40
  5167. msgctxt "@label"
  5168. msgid "Extruder"
  5169. msgstr "Extrusor"
  5170. #: resources/qml/PrinterOutput/ExtruderBox.qml:70
  5171. msgctxt "@tooltip"
  5172. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  5173. 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 será desligado."
  5174. #: resources/qml/PrinterOutput/ExtruderBox.qml:105
  5175. msgctxt "@tooltip"
  5176. msgid "The current temperature of this hotend."
  5177. msgstr "A temperatura atual deste extrusor."
  5178. #: resources/qml/PrinterOutput/ExtruderBox.qml:182
  5179. msgctxt "@tooltip of temperature input"
  5180. msgid "The temperature to pre-heat the hotend to."
  5181. msgstr "A temperatura-alvo de preaquecimento do extrusor."
  5182. #: resources/qml/PrinterOutput/ExtruderBox.qml:271
  5183. #: resources/qml/PrinterOutput/HeatedBedBox.qml:259
  5184. msgctxt "@button Cancel pre-heating"
  5185. msgid "Cancel"
  5186. msgstr "Cancelar"
  5187. #: resources/qml/PrinterOutput/ExtruderBox.qml:274
  5188. #: resources/qml/PrinterOutput/HeatedBedBox.qml:263
  5189. msgctxt "@button"
  5190. msgid "Pre-heat"
  5191. msgstr "Preaquecer"
  5192. #: resources/qml/PrinterOutput/ExtruderBox.qml:297
  5193. msgctxt "@tooltip of pre-heat"
  5194. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  5195. 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 que o extrusor aqueça quando começar a impressão."
  5196. #: resources/qml/PrinterOutput/ExtruderBox.qml:335
  5197. msgctxt "@tooltip"
  5198. msgid "The colour of the material in this extruder."
  5199. msgstr "A cor do material neste extrusor."
  5200. #: resources/qml/PrinterOutput/ExtruderBox.qml:367
  5201. msgctxt "@tooltip"
  5202. msgid "The material in this extruder."
  5203. msgstr "O material neste extrusor."
  5204. #: resources/qml/PrinterOutput/ExtruderBox.qml:400
  5205. msgctxt "@tooltip"
  5206. msgid "The nozzle inserted in this extruder."
  5207. msgstr "O nozzle inserido neste extrusor."
  5208. #: resources/qml/PrinterOutput/HeatedBedBox.qml:25
  5209. msgctxt "@label"
  5210. msgid "Build plate"
  5211. msgstr "Base de construção"
  5212. #: resources/qml/PrinterOutput/HeatedBedBox.qml:55
  5213. msgctxt "@tooltip"
  5214. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  5215. 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 será desligado."
  5216. #: resources/qml/PrinterOutput/HeatedBedBox.qml:88
  5217. msgctxt "@tooltip"
  5218. msgid "The current temperature of the heated bed."
  5219. msgstr "A temperatura atual da base aquecida."
  5220. #: resources/qml/PrinterOutput/HeatedBedBox.qml:162
  5221. msgctxt "@tooltip of temperature input"
  5222. msgid "The temperature to pre-heat the bed to."
  5223. msgstr "A temperatura de pré-aquecimento da base."
  5224. #: resources/qml/PrinterOutput/HeatedBedBox.qml:286
  5225. msgctxt "@tooltip of pre-heat"
  5226. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  5227. 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 que a base aqueça quando começar a impressão."
  5228. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  5229. msgctxt "@label"
  5230. msgid "Printer control"
  5231. msgstr "Controlo da impressora"
  5232. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  5233. msgctxt "@label"
  5234. msgid "Jog Position"
  5235. msgstr "Posição de deslocação"
  5236. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  5237. msgctxt "@label"
  5238. msgid "X/Y"
  5239. msgstr "X/Y"
  5240. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  5241. msgctxt "@label"
  5242. msgid "Z"
  5243. msgstr "Z"
  5244. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  5245. msgctxt "@label"
  5246. msgid "Jog Distance"
  5247. msgstr "Distância de deslocação"
  5248. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  5249. msgctxt "@label"
  5250. msgid "Send G-code"
  5251. msgstr "Enviar G-code"
  5252. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  5253. msgctxt "@tooltip of G-code command input"
  5254. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  5255. msgstr "Enviar um comando G-code personalizado para a impressora ligada. Prima \"Enter\" para enviar o comando."
  5256. #: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  5257. msgctxt "@info:status"
  5258. msgid "The printer is not connected."
  5259. msgstr "A impressora não está ligada."
  5260. #: resources/qml/PrinterSelector/MachineListButton.qml:34
  5261. msgctxt "@label"
  5262. msgid "Hide all connected printers"
  5263. msgstr "Ocultar todas as impressoras conectadas"
  5264. #: resources/qml/PrinterSelector/MachineListButton.qml:47
  5265. msgctxt "@label"
  5266. msgid "Show all connected printers"
  5267. msgstr "Mostrar todas as impressoras conectadas"
  5268. #: resources/qml/PrinterSelector/MachineSelector.qml:64
  5269. msgctxt "@status"
  5270. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  5271. msgstr "A impressora de cloud está offline. Verifique se a impressora está ligada e conectada à Internet."
  5272. #: resources/qml/PrinterSelector/MachineSelector.qml:68
  5273. msgctxt "@status"
  5274. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  5275. msgstr "Esta impressora não está associada à sua conta. Visite a Ultimaker Digital Factory para estabelecer uma ligação."
  5276. #: resources/qml/PrinterSelector/MachineSelector.qml:73
  5277. msgctxt "@status"
  5278. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  5279. msgstr "A conectividade de cloud está atualmente indisponível. Inicie sessão para estabelecer ligação com a impressora de cloud."
  5280. #: resources/qml/PrinterSelector/MachineSelector.qml:78
  5281. msgctxt "@status"
  5282. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  5283. msgstr "A conectividade de cloud está atualmente indisponível. Verifique a sua ligação à Internet."
  5284. #: resources/qml/PrinterSelector/MachineSelectorList.qml:30
  5285. #: resources/qml/PrinterSelector/MachineSelectorList.qml:32
  5286. msgctxt "@label"
  5287. msgid "Other printers"
  5288. msgstr "Outras impressoras"
  5289. #: resources/qml/ProfileOverview.qml:36
  5290. msgctxt "@title:column"
  5291. msgid "Setting"
  5292. msgstr "Definição"
  5293. #: resources/qml/ProfileOverview.qml:37
  5294. msgctxt "@title:column"
  5295. msgid "Profile"
  5296. msgstr "Perfil"
  5297. #: resources/qml/ProfileOverview.qml:38
  5298. msgctxt "@title:column"
  5299. msgid "Current"
  5300. msgstr "Atual"
  5301. #: resources/qml/ProfileOverview.qml:39
  5302. msgctxt "@title:column Unit of measurement"
  5303. msgid "Unit"
  5304. msgstr "Unidade"
  5305. #: resources/qml/SearchBar.qml:17
  5306. msgctxt "@placeholder"
  5307. msgid "Search"
  5308. msgstr "Pesquisar"
  5309. #: resources/qml/Settings/SettingCategory.qml:115
  5310. msgctxt "@label"
  5311. msgid ""
  5312. "Some hidden settings use values different from their normal calculated value.\n"
  5313. "\n"
  5314. "Click to make these settings visible."
  5315. msgstr ""
  5316. "Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente.\n"
  5317. "\n"
  5318. "Clique para tornar estas definições visíveis."
  5319. #: resources/qml/Settings/SettingItem.qml:84
  5320. msgctxt "@label"
  5321. msgid "This setting is not used because all the settings that it influences are overridden."
  5322. msgstr "Esta definição não é utilizada porque todas as definições influenciadas foram substituídas."
  5323. #: resources/qml/Settings/SettingItem.qml:89
  5324. msgctxt "@label Header for list of settings."
  5325. msgid "Affects"
  5326. msgstr "Modifica"
  5327. #: resources/qml/Settings/SettingItem.qml:94
  5328. msgctxt "@label Header for list of settings."
  5329. msgid "Affected By"
  5330. msgstr "Modificado Por"
  5331. #: resources/qml/Settings/SettingItem.qml:196
  5332. msgctxt "@label"
  5333. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  5334. msgstr "Esta definição é sempre partilhada entre todos os extrusores. Ao alterá-la aqui, o valor será alterado em todos os extrusores."
  5335. #: resources/qml/Settings/SettingItem.qml:200
  5336. msgctxt "@label"
  5337. msgid "This setting is resolved from conflicting extruder-specific values:"
  5338. msgstr "Esta definição está resolvida a partir de valores específicos da extrusora em conflito:"
  5339. #: resources/qml/Settings/SettingItem.qml:240
  5340. msgctxt "@label"
  5341. msgid ""
  5342. "This setting has a value that is different from the profile.\n"
  5343. "\n"
  5344. "Click to restore the value of the profile."
  5345. msgstr ""
  5346. "Esta definição tem um valor que é diferente do perfil.\n"
  5347. "\n"
  5348. "Clique para restaurar o valor do perfil."
  5349. #: resources/qml/Settings/SettingItem.qml:340
  5350. msgctxt "@label"
  5351. msgid ""
  5352. "This setting is normally calculated, but it currently has an absolute value set.\n"
  5353. "\n"
  5354. "Click to restore the calculated value."
  5355. msgstr ""
  5356. "Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente.\n"
  5357. "\n"
  5358. "Clique para restaurar o valor calculado."
  5359. #: resources/qml/Settings/SettingView.qml:48
  5360. msgctxt "@label:textbox"
  5361. msgid "Search settings"
  5362. msgstr "Procurar definições"
  5363. #: resources/qml/Settings/SettingView.qml:395
  5364. msgctxt "@action:menu"
  5365. msgid "Copy value to all extruders"
  5366. msgstr "Copiar valor para todos os extrusores"
  5367. #: resources/qml/Settings/SettingView.qml:404
  5368. msgctxt "@action:menu"
  5369. msgid "Copy all changed values to all extruders"
  5370. msgstr "Copiar todos os valores alterados para todos os extrusores"
  5371. #: resources/qml/Settings/SettingView.qml:440
  5372. msgctxt "@action:menu"
  5373. msgid "Hide this setting"
  5374. msgstr "Esconder esta definição"
  5375. #: resources/qml/Settings/SettingView.qml:453
  5376. msgctxt "@action:menu"
  5377. msgid "Don't show this setting"
  5378. msgstr "Não mostrar esta definição"
  5379. #: resources/qml/Settings/SettingView.qml:457
  5380. msgctxt "@action:menu"
  5381. msgid "Keep this setting visible"
  5382. msgstr "Manter esta definição visível"
  5383. #: resources/qml/Toolbar.qml:142
  5384. msgctxt "@label %1 is filled in with the name of an extruder"
  5385. msgid "Print Selected Model with %1"
  5386. msgid_plural "Print Selected Models with %1"
  5387. msgstr[0] "Imprimir Modelo Selecionado com o %1"
  5388. msgstr[1] "Imprimir Modelos Selecionados com o %1"
  5389. #: resources/qml/ViewOrientationControls.qml:25
  5390. msgctxt "@info:tooltip"
  5391. msgid "3D View"
  5392. msgstr "Vista 3D"
  5393. #: resources/qml/ViewOrientationControls.qml:38
  5394. msgctxt "@info:tooltip"
  5395. msgid "Front View"
  5396. msgstr "Vista Frente"
  5397. #: resources/qml/ViewOrientationControls.qml:51
  5398. msgctxt "@info:tooltip"
  5399. msgid "Top View"
  5400. msgstr "Vista Cima"
  5401. #: resources/qml/ViewOrientationControls.qml:64
  5402. msgctxt "@info:tooltip"
  5403. msgid "Left View"
  5404. msgstr "Vista esquerda"
  5405. #: resources/qml/ViewOrientationControls.qml:77
  5406. msgctxt "@info:tooltip"
  5407. msgid "Right View"
  5408. msgstr "Vista direita"
  5409. #: resources/qml/ViewsSelector.qml:50
  5410. msgctxt "@label"
  5411. msgid "View type"
  5412. msgstr "Ver tipo"
  5413. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  5414. msgctxt "@label"
  5415. msgid "Add a Cloud printer"
  5416. msgstr "Adicionar uma impressora de cloud"
  5417. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:73
  5418. msgctxt "@label"
  5419. msgid "Waiting for Cloud response"
  5420. msgstr "A aguardar resposta da cloud"
  5421. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:83
  5422. msgctxt "@label"
  5423. msgid "No printers found in your account?"
  5424. msgstr "Não foram encontradas impressoras na sua conta?"
  5425. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:117
  5426. msgctxt "@label"
  5427. msgid "The following printers in your account have been added in Cura:"
  5428. msgstr "As seguintes impressoras na sua conta foram adicionadas no Cura:"
  5429. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:186
  5430. msgctxt "@button"
  5431. msgid "Add printer manually"
  5432. msgstr "Adicionar impressora manualmente"
  5433. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203
  5434. msgctxt "@label"
  5435. msgid "Manufacturer"
  5436. msgstr "Fabricante"
  5437. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
  5438. msgctxt "@label"
  5439. msgid "Profile author"
  5440. msgstr "Autor do perfil"
  5441. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226
  5442. msgctxt "@label"
  5443. msgid "Printer name"
  5444. msgstr "Nome da impressora"
  5445. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232
  5446. msgctxt "@text"
  5447. msgid "Please name your printer"
  5448. msgstr "Atribuir um nome à impressora"
  5449. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  5450. msgctxt "@label"
  5451. msgid "There is no printer found over your network."
  5452. msgstr "Não foi encontrada nenhuma impressora na sua rede."
  5453. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  5454. msgctxt "@label"
  5455. msgid "Refresh"
  5456. msgstr "Atualizar"
  5457. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  5458. msgctxt "@label"
  5459. msgid "Add printer by IP"
  5460. msgstr "Adicionar impressora por IP"
  5461. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205
  5462. msgctxt "@label"
  5463. msgid "Troubleshooting"
  5464. msgstr "Resolução de problemas"
  5465. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  5466. msgctxt "@label"
  5467. msgid "Add printer by IP address"
  5468. msgstr "Adicionar impressora por endereço IP"
  5469. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128
  5470. msgctxt "@text"
  5471. msgid "Enter your printer's IP address."
  5472. msgstr "Introduza o endereço IP da sua impressora."
  5473. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150
  5474. msgctxt "@button"
  5475. msgid "Add"
  5476. msgstr "Adicionar"
  5477. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195
  5478. msgctxt "@label"
  5479. msgid "Could not connect to device."
  5480. msgstr "Não foi possível ligar ao dispositivo."
  5481. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196
  5482. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201
  5483. msgctxt "@label"
  5484. msgid "Can't connect to your UltiMaker printer?"
  5485. msgstr "Não se consegue ligar a uma impressora UltiMaker?"
  5486. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200
  5487. msgctxt "@label"
  5488. msgid "The printer at this address has not responded yet."
  5489. msgstr "A impressora neste endereço ainda não respondeu."
  5490. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231
  5491. msgctxt "@label"
  5492. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  5493. msgstr "Não foi possível adicionar esta impressora porque é uma impressora desconhecida ou não aloja um grupo."
  5494. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312
  5495. msgctxt "@button"
  5496. msgid "Connect"
  5497. msgstr "Ligar"
  5498. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29
  5499. msgctxt "@label"
  5500. msgid "Add a networked printer"
  5501. msgstr "Adicionar uma impressora em rede"
  5502. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78
  5503. msgctxt "@label"
  5504. msgid "Add a non-networked printer"
  5505. msgstr "Adicionar uma impressora sem rede"
  5506. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102
  5507. msgctxt "@button"
  5508. msgid "Add UltiMaker printer via Digital Factory"
  5509. msgstr ""
  5510. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29
  5511. msgctxt "@label"
  5512. msgid "In order to start using Cura you will need to configure a printer."
  5513. msgstr ""
  5514. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36
  5515. msgctxt "@label"
  5516. msgid "What printer would you like to setup?"
  5517. msgstr "Qual impressora gostaria de definir?"
  5518. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55
  5519. msgctxt "@button"
  5520. msgid "UltiMaker printer"
  5521. msgstr ""
  5522. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64
  5523. msgctxt "@button"
  5524. msgid "Non UltiMaker printer"
  5525. msgstr ""
  5526. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73
  5527. msgctxt "@button"
  5528. msgid "Learn more about adding printers to Cura"
  5529. msgstr "Saiba mais sobre como adicionar impressoras ao Cura"
  5530. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29
  5531. msgctxt "@label"
  5532. msgid "Add printer"
  5533. msgstr ""
  5534. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33
  5535. msgctxt "@label"
  5536. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  5537. msgstr ""
  5538. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70
  5539. msgctxt "@label"
  5540. msgid "If you are trying to add a new UltiMaker printer to Cura"
  5541. msgstr "Se estiver a tentar adicionar uma nova impressora UltiMaker ao Cura"
  5542. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80
  5543. msgctxt "@info"
  5544. msgid "Sign in into UltiMaker Digital Factory"
  5545. msgstr ""
  5546. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81
  5547. msgctxt "@info"
  5548. msgid "Follow the procedure to add a new printer"
  5549. msgstr "Siga o procedimento para adicionar uma nova impressora"
  5550. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82
  5551. msgctxt "@info"
  5552. msgid "Your new printer will automatically appear in Cura"
  5553. msgstr "A sua nova impressora aparecerá automaticamente no Cura"
  5554. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100
  5555. msgctxt "@button"
  5556. msgid "Learn more"
  5557. msgstr ""
  5558. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121
  5559. msgctxt "@button"
  5560. msgid "Add local printer"
  5561. msgstr ""
  5562. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129
  5563. msgctxt "@button"
  5564. msgid "Sign in to Digital Factory"
  5565. msgstr ""
  5566. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133
  5567. msgctxt "@button"
  5568. msgid "Waiting for new printers"
  5569. msgstr ""
  5570. #: resources/qml/WelcomePages/ChangelogContent.qml:24
  5571. msgctxt "@label"
  5572. msgid "Release Notes"
  5573. msgstr "Notas da versão"
  5574. #: resources/qml/WelcomePages/CloudContent.qml:123
  5575. msgctxt "@text"
  5576. msgid "Add material settings and plugins from the Marketplace"
  5577. msgstr "Adicione definições de materiais e plug-ins do Marketplace"
  5578. #: resources/qml/WelcomePages/CloudContent.qml:149
  5579. msgctxt "@text"
  5580. msgid "Backup and sync your material settings and plugins"
  5581. msgstr "Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins"
  5582. #: resources/qml/WelcomePages/CloudContent.qml:175
  5583. msgctxt "@text"
  5584. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  5585. msgstr "Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade UltiMaker"
  5586. #: resources/qml/WelcomePages/CloudContent.qml:189
  5587. msgctxt "@button"
  5588. msgid "Skip"
  5589. msgstr "Ignorar"
  5590. #: resources/qml/WelcomePages/CloudContent.qml:201
  5591. msgctxt "@text"
  5592. msgid "Create a free UltiMaker Account"
  5593. msgstr "Crie uma Conta UltiMaker gratuita"
  5594. #: resources/qml/WelcomePages/DropDownWidget.qml:93
  5595. msgctxt "@label"
  5596. msgid "Empty"
  5597. msgstr "Vazio"
  5598. #: resources/qml/WelcomePages/UserAgreementContent.qml:23
  5599. msgctxt "@label"
  5600. msgid "User Agreement"
  5601. msgstr "Contrato de utilizador"
  5602. #: resources/qml/WelcomePages/UserAgreementContent.qml:67
  5603. msgctxt "@button"
  5604. msgid "Decline and close"
  5605. msgstr "Rejeitar e fechar"
  5606. #: resources/qml/WelcomePages/WhatsNewContent.qml:28
  5607. msgctxt "@label"
  5608. msgid "What's New"
  5609. msgstr "Novidades"
  5610. #: resources/qml/Widgets/ComboBox.qml:18
  5611. msgctxt "@label"
  5612. msgid "No items to select from"
  5613. msgstr "Nenhum item para selecionar"
  5614. #~ msgctxt "@text"
  5615. #~ msgid ""
  5616. #~ "- Add material profiles and plug-ins from the Marketplace\n"
  5617. #~ "- Back-up and sync your material profiles and plug-ins\n"
  5618. #~ "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  5619. #~ msgstr ""
  5620. #~ "- Adicione definições de materiais e plug-ins do Marketplace\n"
  5621. #~ "- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins\n"
  5622. #~ "- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker"
  5623. #~ msgctxt "@label crash message"
  5624. #~ msgid ""
  5625. #~ "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  5626. #~ " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  5627. #~ " <p>Backups can be found in the configuration folder.</p>\n"
  5628. #~ " <p>Please send us this Crash Report to fix the problem.</p>\n"
  5629. #~ " "
  5630. #~ msgstr ""
  5631. #~ "<p><b>Ups, o Ultimaker Cura encontrou um possível problema.</p></b>\n"
  5632. #~ " <p>Foi encontrado um erro irrecuperável durante o arranque da 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"
  5633. #~ " <p>Os backups estão localizados na pasta de configuração.</p>\n"
  5634. #~ " <p>Por favor envie-nos este Relatório de Falhas para podermos resolver o problema.</p>\n"
  5635. #~ " "
  5636. #~ msgctxt "@label"
  5637. #~ msgid "Add a printer"
  5638. #~ msgstr "Adicionar uma impressora"
  5639. #~ msgctxt "@label"
  5640. #~ msgid "Add cloud printer"
  5641. #~ msgstr "Adicionar impressora de cloud"
  5642. #~ msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate."
  5643. #~ msgid "Add more materials from Marketplace"
  5644. #~ msgstr "Adicionar mais materiais disponíveis no Marketplace"
  5645. #~ msgctxt "@label"
  5646. #~ msgid "Aluminum"
  5647. #~ msgstr "Alumínio"
  5648. #~ msgctxt "@tooltip:button"
  5649. #~ msgid "Become a 3D printing expert with Ultimaker e-learning."
  5650. #~ msgstr "Torne-se um perito em impressão 3D com os cursos de e-learning da Ultimaker."
  5651. #~ msgctxt "@label"
  5652. #~ msgid "Can't connect to your Ultimaker printer?"
  5653. #~ msgstr "Não se consegue ligar a uma impressora Ultimaker?"
  5654. #~ msgctxt "@label"
  5655. #~ msgid "Change build plate to %1 (This cannot be overridden)."
  5656. #~ msgstr "Alterar base de construção para %1 (isto não pode ser substituído)."
  5657. #~ msgctxt "@info:title"
  5658. #~ msgid "Changes detected from your Ultimaker account"
  5659. #~ msgstr "Foram detetadas alterações da sua conta Ultimaker"
  5660. #~ msgctxt "@tooltip:button"
  5661. #~ msgid "Consult the Ultimaker Community."
  5662. #~ msgstr "Consulte a Comunidade Ultimaker."
  5663. #~ msgctxt "@text"
  5664. #~ msgid "Create a free Ultimaker Account"
  5665. #~ msgstr "Crie uma Conta Ultimaker gratuita"
  5666. #~ msgctxt "@button"
  5667. #~ msgid "Create a free Ultimaker account"
  5668. #~ msgstr "Crie uma conta Ultimaker gratuita"
  5669. #~ msgctxt "@info:credit"
  5670. #~ msgid ""
  5671. #~ "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  5672. #~ "Cura proudly uses the following open source projects:"
  5673. #~ msgstr ""
  5674. #~ "O Cura foi desenvolvido pela Ultimaker B.V. em colaboração com a comunidade.\n"
  5675. #~ "O Cura tem o prazer de utilizar os seguintes projetos open source:"
  5676. #~ msgctxt "@button"
  5677. #~ msgid "Custom"
  5678. #~ msgstr "Personalizado"
  5679. #~ msgctxt "@text"
  5680. #~ msgid "Data collected by Ultimaker Cura will not contain any personal information."
  5681. #~ msgstr "Os dados recolhidos pelo Ultimaker Cura não conterão quaisquer informações pessoais."
  5682. #~ msgctxt "@tooltip:button"
  5683. #~ msgid "Extend Ultimaker Cura with plugins and material profiles."
  5684. #~ msgstr "Tire mais partido do Ultimaker Cura com plug-ins e perfis de materiais."
  5685. #~ msgctxt "@label"
  5686. #~ msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  5687. #~ 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."
  5688. #~ msgctxt "@button"
  5689. #~ msgid "Get started"
  5690. #~ msgstr "Iniciar"
  5691. #~ msgctxt "@label"
  5692. #~ msgid "Glass"
  5693. #~ msgstr "Vidro"
  5694. #~ msgctxt "@label"
  5695. #~ msgid "Gradual infill"
  5696. #~ msgstr "Enchimento gradual"
  5697. #~ msgctxt "@label"
  5698. #~ msgid "Gradual infill will gradually increase the amount of infill towards the top."
  5699. #~ msgstr "O enchimento gradual irá aumentar progressivamente a densidade do enchimento em direção ao topo."
  5700. #~ msgctxt "@label"
  5701. #~ msgid "Help us to improve UltiMaker Cura"
  5702. #~ msgstr "Ajude-nos a melhorar o UltiMaker Cura"
  5703. #~ msgctxt "@label"
  5704. #~ msgid "Help us to improve Ultimaker Cura"
  5705. #~ msgstr "Ajude-nos a melhorar o Ultimaker Cura"
  5706. #~ msgctxt "@info:tooltip"
  5707. #~ msgid "How should the conflict in the machine be resolved?"
  5708. #~ msgstr "Como deve ser resolvido o conflito da máquina?"
  5709. #~ msgctxt "@info:tooltip"
  5710. #~ msgid "How should the conflict in the material be resolved?"
  5711. #~ msgstr "Como deve ser resolvido o conflito no material?"
  5712. #~ msgctxt "@info:tooltip"
  5713. #~ msgid "How should the conflict in the profile be resolved?"
  5714. #~ msgstr "Como deve ser resolvido o conflito no perfil?"
  5715. #~ msgctxt "@tooltip:button"
  5716. #~ msgid "Learn how to get started with Ultimaker Cura."
  5717. #~ msgstr "Saiba como começar a utilizar o Ultimaker Cura."
  5718. #~ msgctxt "@text"
  5719. #~ msgid "Machine types"
  5720. #~ msgstr "Tipos de máquina"
  5721. #~ msgctxt "@text"
  5722. #~ msgid "Manage your Ultimaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  5723. #~ 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 uma cópia de segurança da sua configuração."
  5724. #~ msgctxt "@text"
  5725. #~ msgid "Material usage"
  5726. #~ msgstr "Utilização do material"
  5727. #~ msgctxt "@text"
  5728. #~ msgid "More information"
  5729. #~ msgstr "Mais informações"
  5730. #~ msgctxt "@text"
  5731. #~ msgid "Number of slices"
  5732. #~ msgstr "Número de segmentos"
  5733. #~ msgctxt "@text"
  5734. #~ msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  5735. #~ msgstr "Siga estes passos para configurar o Ultimaker Cura. Este processo irá demorar apenas alguns momentos."
  5736. #~ msgctxt "@label"
  5737. #~ msgid "Please select any upgrades made to this Ultimaker Original"
  5738. #~ msgstr "Selecione quaisquer atualizações realizadas a esta Ultimaker Original"
  5739. #~ msgctxt "@description"
  5740. #~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  5741. #~ msgstr "Inicie sessão para obter plug-ins e materiais verificados para o Ultimaker Cura Enterprise"
  5742. #~ msgctxt "@text"
  5743. #~ msgid "Print settings"
  5744. #~ msgstr "Definições de impressão"
  5745. #~ msgctxt "@message:description"
  5746. #~ msgid "Report a bug on Ultimaker Cura's issue tracker."
  5747. #~ msgstr "Reportar um erro no registo de problemas do Ultimaker Cura."
  5748. #~ msgctxt "@text"
  5749. #~ msgid "Select and install material profiles optimised for your Ultimaker 3D printers."
  5750. #~ msgstr "Selecione e instale perfis de materiais otimizados para as impressoras 3D Ultimaker."
  5751. #~ msgctxt "@action:button"
  5752. #~ msgid "Send crash report to Ultimaker"
  5753. #~ msgstr "Enviar relatório de falhas para a Ultimaker"
  5754. #~ msgctxt "@text"
  5755. #~ msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  5756. #~ msgstr "Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker"
  5757. #~ msgctxt "@info:tooltip"
  5758. #~ msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  5759. #~ 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 modelos, endereços IP ou outro tipo de identificação pessoal."
  5760. #~ msgctxt "@label"
  5761. #~ msgid "Sign in to the Ultimaker platform"
  5762. #~ msgstr "Inicie a sessão na plataforma Ultimaker"
  5763. #~ msgctxt "@info"
  5764. #~ msgid "Some settings were changed."
  5765. #~ msgstr "Algumas definições foram alteradas."
  5766. #~ msgctxt "@text"
  5767. #~ msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users."
  5768. #~ 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."
  5769. #~ msgctxt "@button"
  5770. #~ msgid "Ultimaker Account"
  5771. #~ msgstr "Conta Ultimaker"
  5772. #~ msgctxt "@info"
  5773. #~ msgid "Ultimaker Certified Material"
  5774. #~ msgstr "Material Certificado pela Ultimaker"
  5775. #~ msgctxt "@text:window"
  5776. #~ msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  5777. #~ 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:"
  5778. #~ msgctxt "@text"
  5779. #~ msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  5780. #~ msgstr "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador, incluindo:"
  5781. #~ msgctxt "@item:inlistbox"
  5782. #~ msgid "Ultimaker Format Package"
  5783. #~ msgstr "Arquivo Ultimaker Format"
  5784. #~ msgctxt "@info"
  5785. #~ msgid "Ultimaker Verified Package"
  5786. #~ msgstr "Pacote Aprovado pela Ultimaker"
  5787. #~ msgctxt "@info"
  5788. #~ msgid "Ultimaker Verified Plug-in"
  5789. #~ msgstr "Plug-in Aprovado pela Ultimaker"
  5790. #~ msgctxt "@label:button"
  5791. #~ msgid "Ultimaker support"
  5792. #~ msgstr "Suporte da Ultimaker"
  5793. #~ msgctxt "@info"
  5794. #~ msgid "Unable to reach the Ultimaker account server."
  5795. #~ msgstr "Não é possível aceder ao servidor da conta Ultimaker."
  5796. #~ msgctxt "@action:label"
  5797. #~ msgid "Visible settings:"
  5798. #~ msgstr "Definições visíveis:"
  5799. #~ msgctxt "@tooltip:button"
  5800. #~ msgid "Visit the Ultimaker website."
  5801. #~ msgstr "Visite o site da Ultimaker."
  5802. #~ msgctxt "@info"
  5803. #~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  5804. #~ 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 Digital Factory e ver esta câmara."
  5805. #~ msgctxt "@label"
  5806. #~ msgid "Welcome to UltiMaker Cura"
  5807. #~ msgstr "Bem-vindo ao UltiMaker Cura"
  5808. #~ msgctxt "@label"
  5809. #~ msgid "Welcome to Ultimaker Cura"
  5810. #~ msgstr "Bem-vindo ao Ultimaker Cura"