cura.po 322 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774
  1. # Cura
  2. # Copyright (C) 2020 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.6\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2020-04-06 16:33+0200\n"
  10. "PO-Revision-Date: 2020-04-13 06:00+0100\n"
  11. "Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
  12. "Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
  13. "Language: pt_BR\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  18. "X-Generator: Poedit 2.2.3\n"
  19. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:85
  20. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:104
  21. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:340
  22. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1490
  23. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:188
  24. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:229
  25. msgctxt "@label"
  26. msgid "Unknown"
  27. msgstr "Desconhecido"
  28. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  29. msgctxt "@label"
  30. msgid "The printer(s) below cannot be connected because they are part of a group"
  31. msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo"
  32. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:117
  33. msgctxt "@label"
  34. msgid "Available networked printers"
  35. msgstr "Impressoras de rede disponíveis"
  36. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:208
  37. msgctxt "@menuitem"
  38. msgid "Not overridden"
  39. msgstr "Não sobreposto"
  40. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:41
  41. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
  42. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:321
  43. msgctxt "@label"
  44. msgid "Default"
  45. msgstr "Default"
  46. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:44
  47. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
  48. msgctxt "@label"
  49. msgid "Visual"
  50. msgstr "Visual"
  51. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  52. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
  53. msgctxt "@text"
  54. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  55. msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície."
  56. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:48
  57. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
  58. msgctxt "@label"
  59. msgid "Engineering"
  60. msgstr "Engenharia"
  61. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  62. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
  63. msgctxt "@text"
  64. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  65. msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas."
  66. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:52
  67. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
  68. msgctxt "@label"
  69. msgid "Draft"
  70. msgstr "Rascunho"
  71. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  72. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
  73. msgctxt "@text"
  74. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  75. msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão."
  76. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:213
  77. msgctxt "@label"
  78. msgid "Custom Material"
  79. msgstr "Material Personalizado"
  80. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:214
  81. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
  82. msgctxt "@label"
  83. msgid "Custom"
  84. msgstr "Personalizado"
  85. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:359
  86. msgctxt "@label"
  87. msgid "Custom profiles"
  88. msgstr "Perfis personalizados"
  89. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:393
  90. #, python-brace-format
  91. msgctxt "@item:inlistbox"
  92. msgid "All Supported Types ({0})"
  93. msgstr "Todos Os Tipos Suportados ({0})"
  94. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:394
  95. msgctxt "@item:inlistbox"
  96. msgid "All Files (*)"
  97. msgstr "Todos Os Arquivos (*)"
  98. #: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:81
  99. msgctxt "@info:title"
  100. msgid "Login failed"
  101. msgstr "Login falhou"
  102. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66
  103. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30
  104. msgctxt "@info:status"
  105. msgid "Finding new location for objects"
  106. msgstr "Achando novos lugares para objetos"
  107. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70
  108. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34
  109. msgctxt "@info:title"
  110. msgid "Finding Location"
  111. msgstr "Buscando Localização"
  112. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149
  113. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:103
  114. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:108
  115. msgctxt "@info:status"
  116. msgid "Unable to find a location within the build volume for all objects"
  117. msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos"
  118. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  119. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:104
  120. msgctxt "@info:title"
  121. msgid "Can't Find Location"
  122. msgstr "Não Foi Encontrada Localização"
  123. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:99
  124. msgctxt "@info:backup_failed"
  125. msgid "Could not create archive from user data directory: {}"
  126. msgstr "Não pude criar arquivo do diretório de dados de usuário: {}"
  127. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:104
  128. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
  129. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  130. msgctxt "@info:title"
  131. msgid "Backup"
  132. msgstr "Backup"
  133. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:114
  134. msgctxt "@info:backup_failed"
  135. msgid "Tried to restore a Cura backup without having proper data or meta data."
  136. msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados."
  137. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:125
  138. msgctxt "@info:backup_failed"
  139. msgid "Tried to restore a Cura backup that is higher than the current version."
  140. msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual."
  141. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:95
  142. msgctxt "@info:status"
  143. 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."
  144. msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos."
  145. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:97
  146. msgctxt "@info:title"
  147. msgid "Build Volume"
  148. msgstr "Volume de Impressão"
  149. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
  150. msgctxt "@title:window"
  151. msgid "Cura can't start"
  152. msgstr "O Cura não consegue iniciar"
  153. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
  154. msgctxt "@label crash message"
  155. msgid ""
  156. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  157. " <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"
  158. " <p>Backups can be found in the configuration folder.</p>\n"
  159. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  160. " "
  161. msgstr ""
  162. "<p><b>Oops, o Ultimaker Cura encontrou algo que não parece estar correto.</p></b>\n"
  163. " <p>Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causa por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.</p>\n"
  164. " <p>Cópias salvas podem ser encontradas na pasta de configuração.</p>\n"
  165. " <p>Por favor nos envie este Relatório de Falha para consertar o problema.</p>\n"
  166. " "
  167. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
  168. msgctxt "@action:button"
  169. msgid "Send crash report to Ultimaker"
  170. msgstr "Enviar relatório de falha à Ultimaker"
  171. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
  172. msgctxt "@action:button"
  173. msgid "Show detailed crash report"
  174. msgstr "Exibir relatório de falha detalhado"
  175. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
  176. msgctxt "@action:button"
  177. msgid "Show configuration folder"
  178. msgstr "Mostrar a pasta de configuração"
  179. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
  180. msgctxt "@action:button"
  181. msgid "Backup and Reset Configuration"
  182. msgstr "Salvar e Restabelecer Configuração"
  183. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:169
  184. msgctxt "@title:window"
  185. msgid "Crash Report"
  186. msgstr "Relatório de Problema"
  187. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:188
  188. msgctxt "@label crash message"
  189. msgid ""
  190. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  191. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  192. " "
  193. msgstr ""
  194. "<p><b>Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema</p></b>\n"
  195. " <p>Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores</p>\n"
  196. " "
  197. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:196
  198. msgctxt "@title:groupbox"
  199. msgid "System information"
  200. msgstr "Informação do Sistema"
  201. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:205
  202. msgctxt "@label unknown version of Cura"
  203. msgid "Unknown"
  204. msgstr "Desconhecida"
  205. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:216
  206. msgctxt "@label Cura version number"
  207. msgid "Cura version"
  208. msgstr "Versão do Cura"
  209. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:217
  210. msgctxt "@label"
  211. msgid "Cura language"
  212. msgstr "Linguagem do Cura"
  213. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:218
  214. msgctxt "@label"
  215. msgid "OS language"
  216. msgstr "Linguagem do SO"
  217. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:219
  218. msgctxt "@label Type of platform"
  219. msgid "Platform"
  220. msgstr "Plataforma"
  221. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:220
  222. msgctxt "@label"
  223. msgid "Qt version"
  224. msgstr "Versão do Qt"
  225. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:221
  226. msgctxt "@label"
  227. msgid "PyQt version"
  228. msgstr "Versão do PyQt"
  229. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:222
  230. msgctxt "@label OpenGL version"
  231. msgid "OpenGL"
  232. msgstr "OpenGL"
  233. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:247
  234. msgctxt "@label"
  235. msgid "Not yet initialized<br/>"
  236. msgstr "Ainda não inicializado<br/>"
  237. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:250
  238. #, python-brace-format
  239. msgctxt "@label OpenGL version"
  240. msgid "<li>OpenGL Version: {version}</li>"
  241. msgstr "<li>Versão da OpenGL: {version}</li>"
  242. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:251
  243. #, python-brace-format
  244. msgctxt "@label OpenGL vendor"
  245. msgid "<li>OpenGL Vendor: {vendor}</li>"
  246. msgstr "<li>Fornecedor da OpenGL: {vendor}</li>"
  247. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:252
  248. #, python-brace-format
  249. msgctxt "@label OpenGL renderer"
  250. msgid "<li>OpenGL Renderer: {renderer}</li>"
  251. msgstr "<li>Renderizador da OpenGL: {renderer}</li>"
  252. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:286
  253. msgctxt "@title:groupbox"
  254. msgid "Error traceback"
  255. msgstr "Traceback do erro"
  256. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:372
  257. msgctxt "@title:groupbox"
  258. msgid "Logs"
  259. msgstr "Registros"
  260. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:400
  261. msgctxt "@action:button"
  262. msgid "Send report"
  263. msgstr "Enviar relatório"
  264. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:495
  265. msgctxt "@info:progress"
  266. msgid "Loading machines..."
  267. msgstr "Carregando máquinas..."
  268. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:502
  269. msgctxt "@info:progress"
  270. msgid "Setting up preferences..."
  271. msgstr "Ajustando preferências..."
  272. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:630
  273. msgctxt "@info:progress"
  274. msgid "Initializing Active Machine..."
  275. msgstr "Inicializando Máquina Ativa..."
  276. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:757
  277. msgctxt "@info:progress"
  278. msgid "Initializing machine manager..."
  279. msgstr "Inicializando gestor de máquinas..."
  280. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:771
  281. msgctxt "@info:progress"
  282. msgid "Initializing build volume..."
  283. msgstr "Inicializando volume de impressão..."
  284. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:833
  285. msgctxt "@info:progress"
  286. msgid "Setting up scene..."
  287. msgstr "Configurando cena..."
  288. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:868
  289. msgctxt "@info:progress"
  290. msgid "Loading interface..."
  291. msgstr "Carregando interface..."
  292. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:873
  293. msgctxt "@info:progress"
  294. msgid "Initializing engine..."
  295. msgstr "Inicializando motor..."
  296. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1166
  297. #, python-format
  298. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  299. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  300. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  301. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1676
  302. #, python-brace-format
  303. msgctxt "@info:status"
  304. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  305. msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}"
  306. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1677
  307. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1777
  308. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:201
  309. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  310. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  311. msgctxt "@info:title"
  312. msgid "Warning"
  313. msgstr "Aviso"
  314. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1686
  315. #, python-brace-format
  316. msgctxt "@info:status"
  317. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  318. msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}"
  319. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1687
  320. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:138
  321. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:145
  322. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137
  323. msgctxt "@info:title"
  324. msgid "Error"
  325. msgstr "Erro"
  326. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1776
  327. msgctxt "@info:status"
  328. msgid "The selected model was too small to load."
  329. msgstr "O modelo selecionado é pequenos demais para carregar."
  330. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:29
  331. msgctxt "@info:status"
  332. msgid "Multiplying and placing objects"
  333. msgstr "Multiplicando e colocando objetos"
  334. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30
  335. msgctxt "@info:title"
  336. msgid "Placing Objects"
  337. msgstr "Colocando Objetos"
  338. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:108
  339. msgctxt "@info:title"
  340. msgid "Placing Object"
  341. msgstr "Colocando Objeto"
  342. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:79
  343. msgctxt "@message"
  344. msgid "Could not read response."
  345. msgstr "Não foi possível ler a resposta."
  346. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:68
  347. msgctxt "@message"
  348. msgid "The provided state is not correct."
  349. msgstr "O estado provido não está correto."
  350. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:79
  351. msgctxt "@message"
  352. msgid "Please give the required permissions when authorizing this application."
  353. msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação."
  354. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:86
  355. msgctxt "@message"
  356. msgid "Something unexpected happened when trying to log in, please try again."
  357. msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente."
  358. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:201
  359. msgctxt "@info"
  360. msgid "Unable to reach the Ultimaker account server."
  361. msgstr "Não foi possível contactar o servidor de contas da Ultimaker."
  362. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:196
  363. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:124
  364. msgctxt "@title:window"
  365. msgid "File Already Exists"
  366. msgstr "O Arquivo Já Existe"
  367. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:197
  368. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:125
  369. #, python-brace-format
  370. msgctxt "@label Don't translate the XML tag <filename>!"
  371. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  372. msgstr "O arquivo <filename>{0}</filename> já existe. Tem certeza que quer sobrescrevê-lo?"
  373. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:432
  374. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:435
  375. msgctxt "@info:status"
  376. msgid "Invalid file URL:"
  377. msgstr "URL de arquivo inválida:"
  378. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:136
  379. #, python-brace-format
  380. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  381. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  382. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: <message>{1}</message>"
  383. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:143
  384. #, python-brace-format
  385. msgctxt "@info:status Don't translate the XML tag <filename>!"
  386. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  387. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: complemento escritor relatou erro."
  388. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:148
  389. #, python-brace-format
  390. msgctxt "@info:status Don't translate the XML tag <filename>!"
  391. msgid "Exported profile to <filename>{0}</filename>"
  392. msgstr "Perfil exportado para <filename>{0}</filename>"
  393. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:149
  394. msgctxt "@info:title"
  395. msgid "Export succeeded"
  396. msgstr "Exportação concluída"
  397. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:176
  398. #, python-brace-format
  399. msgctxt "@info:status Don't translate the XML tags <filename>!"
  400. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  401. msgstr "Falha ao importar perfil de <filename>{0}</filename>: {1}"
  402. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:180
  403. #, python-brace-format
  404. msgctxt "@info:status Don't translate the XML tags <filename>!"
  405. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  406. msgstr "Não foi possível importar perfil de <filename>{0}</filename> antes de uma impressora ser adicionada."
  407. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:197
  408. #, python-brace-format
  409. msgctxt "@info:status Don't translate the XML tags <filename>!"
  410. msgid "No custom profile to import in file <filename>{0}</filename>"
  411. msgstr "Não há perfil personalizado a importar no arquivo <filename>{0}</filename>"
  412. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:201
  413. #, python-brace-format
  414. msgctxt "@info:status Don't translate the XML tags <filename>!"
  415. msgid "Failed to import profile from <filename>{0}</filename>:"
  416. msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  417. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:225
  418. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
  419. #, python-brace-format
  420. msgctxt "@info:status Don't translate the XML tags <filename>!"
  421. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  422. msgstr "Este perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  423. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:324
  424. #, python-brace-format
  425. msgctxt "@info:status Don't translate the XML tag <filename>!"
  426. msgid "Failed to import profile from <filename>{0}</filename>:"
  427. msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  428. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:327
  429. #, python-brace-format
  430. msgctxt "@info:status"
  431. msgid "Successfully imported profile {0}"
  432. msgstr "Perfil {0} importado com sucesso"
  433. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:330
  434. #, python-brace-format
  435. msgctxt "@info:status"
  436. msgid "File {0} does not contain any valid profile."
  437. msgstr "Arquivo {0} não contém nenhum perfil válido."
  438. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:333
  439. #, python-brace-format
  440. msgctxt "@info:status"
  441. msgid "Profile {0} has an unknown file type or is corrupted."
  442. msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido."
  443. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368
  444. msgctxt "@label"
  445. msgid "Custom profile"
  446. msgstr "Perfil personalizado"
  447. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:384
  448. msgctxt "@info:status"
  449. msgid "Profile is missing a quality type."
  450. msgstr "Falta um tipo de qualidade ao Perfil."
  451. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:398
  452. #, python-brace-format
  453. msgctxt "@info:status"
  454. msgid "Could not find a quality type {0} for the current configuration."
  455. msgstr "Não foi possível encontrar tipo de qualidade {0} para a configuração atual."
  456. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
  457. msgctxt "@info:not supported profile"
  458. msgid "Not supported"
  459. msgstr "Não Suportado"
  460. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
  461. msgctxt "@info:No intent profile selected"
  462. msgid "Default"
  463. msgstr "Default"
  464. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:659
  465. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199
  466. msgctxt "@label"
  467. msgid "Nozzle"
  468. msgstr "Bico"
  469. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:796
  470. msgctxt "@info:message Followed by a list of settings."
  471. msgid "Settings have been changed to match the current availability of extruders:"
  472. msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:"
  473. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:798
  474. msgctxt "@info:title"
  475. msgid "Settings updated"
  476. msgstr "Ajustes atualizados"
  477. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1367
  478. msgctxt "@info:title"
  479. msgid "Extruder(s) Disabled"
  480. msgstr "Extrusor(es) Desabilitado(s)"
  481. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
  482. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  483. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
  484. msgctxt "@action:button"
  485. msgid "Add"
  486. msgstr "Adicionar"
  487. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:18
  488. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:406
  489. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
  490. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  491. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  492. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  493. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  494. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  495. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  496. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:87
  497. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296
  498. msgctxt "@action:button"
  499. msgid "Cancel"
  500. msgstr "Cancelar"
  501. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:62
  502. #, python-brace-format
  503. msgctxt "@label"
  504. msgid "Group #{group_nr}"
  505. msgstr "Grupo #{group_nr}"
  506. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:81
  507. msgctxt "@tooltip"
  508. msgid "Outer Wall"
  509. msgstr "Parede Externa"
  510. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82
  511. msgctxt "@tooltip"
  512. msgid "Inner Walls"
  513. msgstr "Paredes Internas"
  514. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
  515. msgctxt "@tooltip"
  516. msgid "Skin"
  517. msgstr "Contorno"
  518. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
  519. msgctxt "@tooltip"
  520. msgid "Infill"
  521. msgstr "Preenchimento"
  522. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
  523. msgctxt "@tooltip"
  524. msgid "Support Infill"
  525. msgstr "Preenchimento de Suporte"
  526. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
  527. msgctxt "@tooltip"
  528. msgid "Support Interface"
  529. msgstr "Interface de Suporte"
  530. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
  531. msgctxt "@tooltip"
  532. msgid "Support"
  533. msgstr "Suporte"
  534. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
  535. msgctxt "@tooltip"
  536. msgid "Skirt"
  537. msgstr "Skirt (Saia)"
  538. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
  539. msgctxt "@tooltip"
  540. msgid "Prime Tower"
  541. msgstr "Torre de Prime"
  542. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
  543. msgctxt "@tooltip"
  544. msgid "Travel"
  545. msgstr "Percurso"
  546. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
  547. msgctxt "@tooltip"
  548. msgid "Retractions"
  549. msgstr "Retrações"
  550. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
  551. msgctxt "@tooltip"
  552. msgid "Other"
  553. msgstr "Outros"
  554. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
  555. msgctxt "@action:button"
  556. msgid "Next"
  557. msgstr "Próximo"
  558. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:17
  559. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  560. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:131
  561. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
  562. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169
  563. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
  564. msgctxt "@action:button"
  565. msgid "Close"
  566. msgstr "Fechar"
  567. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
  568. msgctxt "@info:title"
  569. msgid "3D Model Assistant"
  570. msgstr "Assistente de Modelo 3D"
  571. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:94
  572. #, python-brace-format
  573. msgctxt "@info:status"
  574. msgid ""
  575. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  576. "<p>{model_names}</p>\n"
  577. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  578. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  579. msgstr ""
  580. "<p>Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:</p>\n"
  581. "<p>{model_names}</p>\n"
  582. "<p>Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.</p>\n"
  583. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver guia de qualidade de impressão</a></p>"
  584. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:497
  585. #, python-brace-format
  586. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  587. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  588. msgstr "O arquivo de projeto <filename>{0}</filename> contém um tipo de máquina desconhecido <message>{1}</message>. Não foi possível importar a máquina. Os modelos serão importados ao invés dela."
  589. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:500
  590. msgctxt "@info:title"
  591. msgid "Open Project File"
  592. msgstr "Abrir Arquivo de Projeto"
  593. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:186
  594. msgctxt "@title:tab"
  595. msgid "Recommended"
  596. msgstr "Recomendado"
  597. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:188
  598. msgctxt "@title:tab"
  599. msgid "Custom"
  600. msgstr "Personalizado"
  601. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27
  602. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
  603. msgctxt "@item:inlistbox"
  604. msgid "3MF File"
  605. msgstr "Arquivo 3MF"
  606. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  607. msgctxt "@error:zip"
  608. msgid "3MF Writer plug-in is corrupt."
  609. msgstr "O complemento de Escrita 3MF está corrompido."
  610. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
  611. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
  612. msgctxt "@error:zip"
  613. msgid "No permission to write the workspace here."
  614. msgstr "Sem permissão para gravar o espaço de trabalho aqui."
  615. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:181
  616. msgctxt "@error:zip"
  617. msgid "Error writing 3mf file."
  618. msgstr "Erro ao escrever arquivo 3mf."
  619. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
  620. msgctxt "@item:inlistbox"
  621. msgid "3MF file"
  622. msgstr "Arquivo 3MF"
  623. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
  624. msgctxt "@item:inlistbox"
  625. msgid "Cura Project 3MF file"
  626. msgstr "Arquivo de Projeto 3MF do Cura"
  627. #: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
  628. msgctxt "@item:inlistbox"
  629. msgid "AMF File"
  630. msgstr "Arquivo AMF"
  631. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  632. msgctxt "@info:title"
  633. msgid "Backups"
  634. msgstr "Backups"
  635. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
  636. msgctxt "@info:backup_status"
  637. msgid "There was an error while uploading your backup."
  638. msgstr "Houve um erro ao transferir seu backup."
  639. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
  640. msgctxt "@info:backup_status"
  641. msgid "Creating your backup..."
  642. msgstr "Criando seu backup..."
  643. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
  644. msgctxt "@info:backup_status"
  645. msgid "There was an error while creating your backup."
  646. msgstr "Houve um erro ao criar seu backup."
  647. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
  648. msgctxt "@info:backup_status"
  649. msgid "Uploading your backup..."
  650. msgstr "Enviando seu backup..."
  651. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
  652. msgctxt "@info:backup_status"
  653. msgid "Your backup has finished uploading."
  654. msgstr "Seu backup terminou de ser enviado."
  655. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
  656. msgctxt "@error:file_size"
  657. msgid "The backup exceeds the maximum file size."
  658. msgstr "O backup excede o tamanho máximo de arquivo."
  659. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:82
  660. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
  661. msgctxt "@info:backup_status"
  662. msgid "There was an error trying to restore your backup."
  663. msgstr "Houve um erro ao tentar restaurar seu backup."
  664. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  665. msgctxt "@item:inmenu"
  666. msgid "Manage backups"
  667. msgstr "Gerenciar backups"
  668. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343
  669. msgctxt "@info:status"
  670. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  671. msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada."
  672. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343
  673. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:374
  674. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:398
  675. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:407
  676. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:416
  677. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  678. msgctxt "@info:title"
  679. msgid "Unable to slice"
  680. msgstr "Não foi possível fatiar"
  681. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:373
  682. #, python-brace-format
  683. msgctxt "@info:status"
  684. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  685. msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}"
  686. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397
  687. #, python-brace-format
  688. msgctxt "@info:status"
  689. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  690. msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}"
  691. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406
  692. msgctxt "@info:status"
  693. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  694. msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas."
  695. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415
  696. #, python-format
  697. msgctxt "@info:status"
  698. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  699. msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s."
  700. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:424
  701. msgctxt "@info:status"
  702. msgid ""
  703. "Please review settings and check if your models:\n"
  704. "- Fit within the build volume\n"
  705. "- Are assigned to an enabled extruder\n"
  706. "- Are not all set as modifier meshes"
  707. msgstr ""
  708. "Por favor revise os ajustes e verifique se seus modelos:\n"
  709. "- Cabem dentro do volume de impressão\n"
  710. "- Estão associados a um extrusor habilitado\n"
  711. "- Não estão todos configurados como malhas de modificação"
  712. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50
  713. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:256
  714. msgctxt "@info:status"
  715. msgid "Processing Layers"
  716. msgstr "Processando Camadas"
  717. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:256
  718. msgctxt "@info:title"
  719. msgid "Information"
  720. msgstr "Informação"
  721. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
  722. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
  723. msgctxt "@item:inlistbox"
  724. msgid "Cura Profile"
  725. msgstr "Perfil do Cura"
  726. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:126
  727. msgctxt "@info"
  728. msgid "Could not access update information."
  729. msgstr "Não foi possível acessar informação de atualização."
  730. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  731. #, python-brace-format
  732. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  733. msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  734. msgstr "Novos recursos estão disponível para sua {machine_name}! Recomenda-se atualizar o firmware da impressora."
  735. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:21
  736. #, python-format
  737. msgctxt "@info:title The %s gets replaced with the printer name."
  738. msgid "New %s firmware available"
  739. msgstr "Novo firmware de %s disponível"
  740. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:27
  741. msgctxt "@action:button"
  742. msgid "How to update"
  743. msgstr "Como atualizar"
  744. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:25
  745. msgctxt "@action"
  746. msgid "Update Firmware"
  747. msgstr "Atualizar Firmware"
  748. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
  749. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
  750. msgctxt "@item:inlistbox"
  751. msgid "Compressed G-code File"
  752. msgstr "Arquivo de G-Code Comprimido"
  753. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38
  754. msgctxt "@error:not supported"
  755. msgid "GCodeGzWriter does not support text mode."
  756. msgstr "O GCodeGzWriter não suporta modo binário."
  757. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
  758. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14
  759. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
  760. msgctxt "@item:inlistbox"
  761. msgid "G-code File"
  762. msgstr "Arquivo G-Code"
  763. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:341
  764. msgctxt "@info:status"
  765. msgid "Parsing G-code"
  766. msgstr "Interpretando G-Code"
  767. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:343
  768. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:497
  769. msgctxt "@info:title"
  770. msgid "G-code Details"
  771. msgstr "Detalhes do G-Code"
  772. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:495
  773. msgctxt "@info:generic"
  774. 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."
  775. msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada."
  776. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
  777. msgctxt "@item:inlistbox"
  778. msgid "G File"
  779. msgstr "Arquivo G"
  780. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:66
  781. msgctxt "@error:not supported"
  782. msgid "GCodeWriter does not support non-text mode."
  783. msgstr "O GCodeWriter não suporta modo binário."
  784. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:72
  785. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:88
  786. msgctxt "@warning:status"
  787. msgid "Please prepare G-code before exporting."
  788. msgstr "Por favor prepare o G-Code antes de exportar."
  789. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
  790. msgctxt "@item:inlistbox"
  791. msgid "JPG Image"
  792. msgstr "Imagem JPG"
  793. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
  794. msgctxt "@item:inlistbox"
  795. msgid "JPEG Image"
  796. msgstr "Imagem JPEG"
  797. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
  798. msgctxt "@item:inlistbox"
  799. msgid "PNG Image"
  800. msgstr "Imagem PNG"
  801. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
  802. msgctxt "@item:inlistbox"
  803. msgid "BMP Image"
  804. msgstr "Imagem BMP"
  805. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
  806. msgctxt "@item:inlistbox"
  807. msgid "GIF Image"
  808. msgstr "Imagem GIF"
  809. #: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
  810. msgctxt "@item:inlistbox"
  811. msgid "Cura 15.04 profiles"
  812. msgstr "Perfis do Cura 15.04"
  813. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:30
  814. msgctxt "@action"
  815. msgid "Machine Settings"
  816. msgstr "Ajustes da Máquina"
  817. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
  818. msgctxt "@item:inmenu"
  819. msgid "Monitor"
  820. msgstr "Monitor"
  821. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  822. msgctxt "@label"
  823. msgid "Per Model Settings"
  824. msgstr "Ajustes por Modelo"
  825. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  826. msgctxt "@info:tooltip"
  827. msgid "Configure Per Model Settings"
  828. msgstr "Configurar ajustes por Modelo"
  829. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  830. msgctxt "@item:inmenu"
  831. msgid "Post Processing"
  832. msgstr "Pós-Processamento"
  833. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:37
  834. msgctxt "@item:inmenu"
  835. msgid "Modify G-Code"
  836. msgstr "Modificar G-Code"
  837. #: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
  838. msgctxt "@item:inmenu"
  839. msgid "Prepare"
  840. msgstr "Preparar"
  841. #: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
  842. msgctxt "@item:inmenu"
  843. msgid "Preview"
  844. msgstr "Pré-visualização"
  845. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  846. msgctxt "@action:button Preceded by 'Ready to'."
  847. msgid "Save to Removable Drive"
  848. msgstr "Salvar em Unidade Removível"
  849. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  850. #, python-brace-format
  851. msgctxt "@item:inlistbox"
  852. msgid "Save to Removable Drive {0}"
  853. msgstr "Salvar em Unidade Removível {0}"
  854. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64
  855. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:107
  856. msgctxt "@info:status"
  857. msgid "There are no file formats available to write with!"
  858. msgstr "Não há formatos de arquivo disponíveis com os quais escrever!"
  859. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  860. #, python-brace-format
  861. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  862. msgid "Saving to Removable Drive <filename>{0}</filename>"
  863. msgstr "Salvando na Unidade Removível <filename>{0}</filename>"
  864. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  865. msgctxt "@info:title"
  866. msgid "Saving"
  867. msgstr "Salvando"
  868. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:104
  869. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:107
  870. #, python-brace-format
  871. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  872. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  873. msgstr "Não foi possível salvar em <filename>{0}</filename>: <message>{1}</message>"
  874. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  875. #, python-brace-format
  876. msgctxt "@info:status Don't translate the tag {device}!"
  877. msgid "Could not find a file name when trying to write to {device}."
  878. msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}."
  879. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:136
  880. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  881. #, python-brace-format
  882. msgctxt "@info:status"
  883. msgid "Could not save to removable drive {0}: {1}"
  884. msgstr "Não foi possível salvar em unidade removível {0}: {1}"
  885. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  886. #, python-brace-format
  887. msgctxt "@info:status"
  888. msgid "Saved to Removable Drive {0} as {1}"
  889. msgstr "Salvo em Unidade Removível {0} como {1}"
  890. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  891. msgctxt "@info:title"
  892. msgid "File Saved"
  893. msgstr "Arquivo Salvo"
  894. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  895. msgctxt "@action:button"
  896. msgid "Eject"
  897. msgstr "Ejetar"
  898. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  899. #, python-brace-format
  900. msgctxt "@action"
  901. msgid "Eject removable device {0}"
  902. msgstr "Ejetar dispositivo removível {0}"
  903. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  904. #, python-brace-format
  905. msgctxt "@info:status"
  906. msgid "Ejected {0}. You can now safely remove the drive."
  907. msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura."
  908. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  909. msgctxt "@info:title"
  910. msgid "Safely Remove Hardware"
  911. msgstr "Remover Hardware com Segurança"
  912. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  913. #, python-brace-format
  914. msgctxt "@info:status"
  915. msgid "Failed to eject {0}. Another program may be using the drive."
  916. msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade."
  917. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:75
  918. msgctxt "@item:intext"
  919. msgid "Removable Drive"
  920. msgstr "Unidade Removível"
  921. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:119
  922. msgctxt "@info:status"
  923. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  924. msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada."
  925. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:120
  926. msgctxt "@info:title"
  927. msgid "Simulation View"
  928. msgstr "Visão Simulada"
  929. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:121
  930. msgctxt "@info:status"
  931. msgid "Nothing is shown because you need to slice first."
  932. msgstr "Nada está exibido porque você precisa fatiar primeiro."
  933. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:121
  934. msgctxt "@info:title"
  935. msgid "No layers to show"
  936. msgstr "Não há camadas a exibir"
  937. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:122
  938. msgctxt "@info:option_text"
  939. msgid "Do not show this message again"
  940. msgstr "Não mostrar essa mensagem novamente"
  941. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
  942. msgctxt "@item:inlistbox"
  943. msgid "Layer view"
  944. msgstr "Visão de Camadas"
  945. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
  946. msgctxt "@item:inmenu"
  947. msgid "Solid view"
  948. msgstr "Visão sólida"
  949. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
  950. msgctxt "@label"
  951. msgid "Support Blocker"
  952. msgstr "Bloqueador de Suporte"
  953. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
  954. msgctxt "@info:tooltip"
  955. msgid "Create a volume in which supports are not printed."
  956. msgstr "Cria um volume em que os suportes não são impressos."
  957. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:101
  958. msgctxt "@info:generic"
  959. msgid "Do you want to sync material and software packages with your account?"
  960. msgstr "Você quer sincronizar os pacotes de material e software com sua conta?"
  961. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:102
  962. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91
  963. msgctxt "@info:title"
  964. msgid "Changes detected from your Ultimaker account"
  965. msgstr "Alterações detectadas de sua conta Ultimaker"
  966. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:105
  967. msgctxt "@action:button"
  968. msgid "Sync"
  969. msgstr "Sincronizar"
  970. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:87
  971. msgctxt "@info:generic"
  972. msgid "Syncing..."
  973. msgstr "Sincronizando..."
  974. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  975. msgctxt "@button"
  976. msgid "Decline"
  977. msgstr "Recusar"
  978. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
  979. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  980. msgctxt "@button"
  981. msgid "Agree"
  982. msgstr "Concordar"
  983. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  984. msgctxt "@title:window"
  985. msgid "Plugin License Agreement"
  986. msgstr "Acordo de Licença do Complemento"
  987. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
  988. msgctxt "@button"
  989. msgid "Decline and remove from account"
  990. msgstr "Recusar e remover da conta"
  991. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:18
  992. msgctxt "@info:generic"
  993. msgid "You need to quit and restart {} before changes have effect."
  994. msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito."
  995. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:71
  996. msgctxt "@info:generic"
  997. msgid "{} plugins failed to download"
  998. msgstr "{} complementos falharam em baixar"
  999. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
  1000. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1001. msgid "Open Compressed Triangle Mesh"
  1002. msgstr "Open Compressed Triangle Mesh"
  1003. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
  1004. msgctxt "@item:inlistbox"
  1005. msgid "COLLADA Digital Asset Exchange"
  1006. msgstr "Câmbio de Ativos Digitais COLLADA"
  1007. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
  1008. msgctxt "@item:inlistbox"
  1009. msgid "glTF Binary"
  1010. msgstr "Binário glTF"
  1011. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
  1012. msgctxt "@item:inlistbox"
  1013. msgid "glTF Embedded JSON"
  1014. msgstr "JSON Embutido glTF"
  1015. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
  1016. msgctxt "@item:inlistbox"
  1017. msgid "Stanford Triangle Format"
  1018. msgstr "Formato de Triângulos de Stanford"
  1019. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
  1020. msgctxt "@item:inlistbox"
  1021. msgid "Compressed COLLADA Digital Asset Exchange"
  1022. msgstr "Câmbio de Ativos Digitais COLLADA Comprimido"
  1023. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22
  1024. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
  1025. msgctxt "@item:inlistbox"
  1026. msgid "Ultimaker Format Package"
  1027. msgstr "Pacote de Formato da Ultimaker"
  1028. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:21
  1029. msgctxt "@action"
  1030. msgid "Level build plate"
  1031. msgstr "Nivelar mesa"
  1032. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18
  1033. msgctxt "@action"
  1034. msgid "Select upgrades"
  1035. msgstr "Selecionar Atualizações"
  1036. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:139
  1037. msgctxt "@action:button"
  1038. msgid "Print via Cloud"
  1039. msgstr "Imprimir por Nuvem"
  1040. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:140
  1041. msgctxt "@properties:tooltip"
  1042. msgid "Print via Cloud"
  1043. msgstr "Imprimir por Nuvem"
  1044. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:141
  1045. msgctxt "@info:status"
  1046. msgid "Connected via Cloud"
  1047. msgstr "Conectado por Nuvem"
  1048. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  1049. msgctxt "@info:status"
  1050. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  1051. msgstr "Envia e monitora trabalhos de impressão de qualquer lugar usando sua conta Ultimaker."
  1052. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  1053. msgctxt "@info:status Ultimaker Cloud should not be translated."
  1054. msgid "Connect to Ultimaker Cloud"
  1055. msgstr "Conectar à Nuvem Ultimaker"
  1056. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  1057. msgctxt "@action"
  1058. msgid "Get started"
  1059. msgstr "Começar"
  1060. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1061. msgctxt "@info:status"
  1062. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1063. msgstr "Você está tentando conectar a uma impressora que não está rodando Ultimaker Connect. Por favor atualiza a impressora para o firmware mais recente."
  1064. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1065. msgctxt "@info:title"
  1066. msgid "Update your printer"
  1067. msgstr "Atualize sua impressora"
  1068. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1069. #, python-brace-format
  1070. msgctxt "@info:status"
  1071. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1072. msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}."
  1073. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1074. msgctxt "@info:title"
  1075. msgid "Sending materials to printer"
  1076. msgstr "Enviando material para a impressora"
  1077. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  1078. #, python-brace-format
  1079. msgctxt "@info:status"
  1080. 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."
  1081. msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo."
  1082. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  1083. msgctxt "@info:title"
  1084. msgid "Not a group host"
  1085. msgstr "Não é host de grupo"
  1086. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
  1087. msgctxt "@action"
  1088. msgid "Configure group"
  1089. msgstr "Configurar grupo"
  1090. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  1091. msgctxt "@info:status"
  1092. msgid "Please wait until the current job has been sent."
  1093. msgstr "Por favor espere até que o trabalho atual tenha sido enviado."
  1094. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  1095. msgctxt "@info:title"
  1096. msgid "Print error"
  1097. msgstr "Erro de impressão"
  1098. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  1099. msgctxt "@info:text"
  1100. msgid "Could not upload the data to the printer."
  1101. msgstr "Não foi possível transferir os dados para a impressora."
  1102. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1103. msgctxt "@info:title"
  1104. msgid "Network error"
  1105. msgstr "Erro de rede"
  1106. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:14
  1107. msgctxt "@info:status"
  1108. msgid "Sending Print Job"
  1109. msgstr "Enviando Trabalho de Impressão"
  1110. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  1111. msgctxt "@info:status"
  1112. msgid "Uploading print job to printer."
  1113. msgstr "Transferindo trabalho de impressão para a impressora."
  1114. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1115. msgctxt "@info:status"
  1116. msgid "Print job was successfully sent to the printer."
  1117. msgstr "Trabalho de impressão enviado à impressora com sucesso."
  1118. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1119. msgctxt "@info:title"
  1120. msgid "Data Sent"
  1121. msgstr "Dados Enviados"
  1122. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:57
  1123. msgctxt "@action:button Preceded by 'Ready to'."
  1124. msgid "Print over network"
  1125. msgstr "Imprimir pela rede"
  1126. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1127. msgctxt "@properties:tooltip"
  1128. msgid "Print over network"
  1129. msgstr "Imprime pela rede"
  1130. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1131. msgctxt "@info:status"
  1132. msgid "Connected over the network"
  1133. msgstr "Conectado pela rede"
  1134. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:26
  1135. msgctxt "@action"
  1136. msgid "Connect via Network"
  1137. msgstr "Conectar pela rede"
  1138. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  1139. msgctxt "@info:status"
  1140. msgid "tomorrow"
  1141. msgstr "amanhã"
  1142. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  1143. msgctxt "@info:status"
  1144. msgid "today"
  1145. msgstr "hoje"
  1146. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  1147. msgctxt "@item:inmenu"
  1148. msgid "USB printing"
  1149. msgstr "Impressão USB"
  1150. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  1151. msgctxt "@action:button Preceded by 'Ready to'."
  1152. msgid "Print via USB"
  1153. msgstr "Imprimir pela USB"
  1154. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  1155. msgctxt "@info:tooltip"
  1156. msgid "Print via USB"
  1157. msgstr "Imprimir pela USB"
  1158. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  1159. msgctxt "@info:status"
  1160. msgid "Connected via USB"
  1161. msgstr "Conectado via USB"
  1162. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:106
  1163. msgctxt "@label"
  1164. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  1165. msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?"
  1166. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:128
  1167. msgctxt "@message"
  1168. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  1169. msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado."
  1170. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:128
  1171. msgctxt "@message"
  1172. msgid "Print in Progress"
  1173. msgstr "Impressão em Progresso"
  1174. #: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
  1175. msgctxt "@item:inlistbox"
  1176. msgid "X3D File"
  1177. msgstr "Arquivo X3D"
  1178. #: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
  1179. msgctxt "@item:inlistbox"
  1180. msgid "X-Ray view"
  1181. msgstr "Visão de Raios-X"
  1182. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
  1183. msgctxt "@info:tooltip"
  1184. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  1185. msgstr "Algumas coisas podem ser problemáticas nesta impressão. Clique para ver dicas de correção."
  1186. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:14
  1187. msgctxt "@title:window"
  1188. msgid "Open Project"
  1189. msgstr "Abrir Projeto"
  1190. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:58
  1191. msgctxt "@action:ComboBox Update/override existing profile"
  1192. msgid "Update existing"
  1193. msgstr "Atualizar existentes"
  1194. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:59
  1195. msgctxt "@action:ComboBox Save settings in a new profile"
  1196. msgid "Create new"
  1197. msgstr "Criar novos"
  1198. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70
  1199. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:73
  1200. msgctxt "@action:title"
  1201. msgid "Summary - Cura Project"
  1202. msgstr "Resumo - Projeto do Cura"
  1203. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92
  1204. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  1205. msgctxt "@action:label"
  1206. msgid "Printer settings"
  1207. msgstr "Ajustes da impressora"
  1208. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108
  1209. msgctxt "@info:tooltip"
  1210. msgid "How should the conflict in the machine be resolved?"
  1211. msgstr "Como o conflito na máquina deve ser resolvido?"
  1212. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:115
  1213. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:124
  1214. msgctxt "@action:ComboBox option"
  1215. msgid "Update"
  1216. msgstr "Atualizar"
  1217. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:116
  1218. msgctxt "@action:ComboBox option"
  1219. msgid "Create new"
  1220. msgstr "Criar novo"
  1221. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143
  1222. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  1223. msgctxt "@action:label"
  1224. msgid "Type"
  1225. msgstr "Tipo"
  1226. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:159
  1227. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  1228. msgctxt "@action:label"
  1229. msgid "Printer Group"
  1230. msgstr "Grupo de Impressora"
  1231. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180
  1232. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  1233. msgctxt "@action:label"
  1234. msgid "Profile settings"
  1235. msgstr "Ajustes de perfil"
  1236. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:196
  1237. msgctxt "@info:tooltip"
  1238. msgid "How should the conflict in the profile be resolved?"
  1239. msgstr "Como o conflito no perfil deve ser resolvido?"
  1240. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216
  1241. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:323
  1242. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  1243. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  1244. msgctxt "@action:label"
  1245. msgid "Name"
  1246. msgstr "Nome"
  1247. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231
  1248. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  1249. msgctxt "@action:label"
  1250. msgid "Intent"
  1251. msgstr "Objetivo"
  1252. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:246
  1253. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  1254. msgctxt "@action:label"
  1255. msgid "Not in profile"
  1256. msgstr "Ausente no perfil"
  1257. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:251
  1258. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  1259. msgctxt "@action:label"
  1260. msgid "%1 override"
  1261. msgid_plural "%1 overrides"
  1262. msgstr[0] "%1 sobreposto"
  1263. msgstr[1] "%1 sobrepostos"
  1264. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:262
  1265. msgctxt "@action:label"
  1266. msgid "Derivative from"
  1267. msgstr "Derivado de"
  1268. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:267
  1269. msgctxt "@action:label"
  1270. msgid "%1, %2 override"
  1271. msgid_plural "%1, %2 overrides"
  1272. msgstr[0] "%1, %2 sobreposição"
  1273. msgstr[1] "%1, %2 sobreposições"
  1274. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:283
  1275. msgctxt "@action:label"
  1276. msgid "Material settings"
  1277. msgstr "Ajustes de material"
  1278. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:299
  1279. msgctxt "@info:tooltip"
  1280. msgid "How should the conflict in the material be resolved?"
  1281. msgstr "Como o conflito no material deve ser resolvido?"
  1282. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:342
  1283. msgctxt "@action:label"
  1284. msgid "Setting visibility"
  1285. msgstr "Visibilidade dos ajustes"
  1286. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:351
  1287. msgctxt "@action:label"
  1288. msgid "Mode"
  1289. msgstr "Modo"
  1290. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:367
  1291. msgctxt "@action:label"
  1292. msgid "Visible settings:"
  1293. msgstr "Ajustes visíveis:"
  1294. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:372
  1295. msgctxt "@action:label"
  1296. msgid "%1 out of %2"
  1297. msgstr "%1 de %2"
  1298. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  1299. msgctxt "@action:warning"
  1300. msgid "Loading a project will clear all models on the build plate."
  1301. msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão."
  1302. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:416
  1303. msgctxt "@action:button"
  1304. msgid "Open"
  1305. msgstr "Abrir"
  1306. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1307. msgctxt "@button"
  1308. msgid "Want more?"
  1309. msgstr "Quer mais?"
  1310. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1311. msgctxt "@button"
  1312. msgid "Backup Now"
  1313. msgstr "Backup Agora"
  1314. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1315. msgctxt "@checkbox:description"
  1316. msgid "Auto Backup"
  1317. msgstr "Auto Backup"
  1318. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1319. msgctxt "@checkbox:description"
  1320. msgid "Automatically create a backup each day that Cura is started."
  1321. msgstr "Criar um backup automaticamente toda vez que o Cura iniciar."
  1322. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  1323. msgctxt "@button"
  1324. msgid "Restore"
  1325. msgstr "Restaurar"
  1326. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  1327. msgctxt "@dialog:title"
  1328. msgid "Delete Backup"
  1329. msgstr "Apagar o Backup"
  1330. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  1331. msgctxt "@dialog:info"
  1332. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1333. msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito."
  1334. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  1335. msgctxt "@dialog:title"
  1336. msgid "Restore Backup"
  1337. msgstr "Restaurar Backup"
  1338. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  1339. msgctxt "@dialog:info"
  1340. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1341. msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?"
  1342. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1343. msgctxt "@backuplist:label"
  1344. msgid "Cura Version"
  1345. msgstr "Versão do Cura"
  1346. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1347. msgctxt "@backuplist:label"
  1348. msgid "Machines"
  1349. msgstr "Máquinas"
  1350. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1351. msgctxt "@backuplist:label"
  1352. msgid "Materials"
  1353. msgstr "Materiais"
  1354. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1355. msgctxt "@backuplist:label"
  1356. msgid "Profiles"
  1357. msgstr "Perfis"
  1358. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1359. msgctxt "@backuplist:label"
  1360. msgid "Plugins"
  1361. msgstr "Complementos"
  1362. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
  1363. msgctxt "@title:window"
  1364. msgid "Cura Backups"
  1365. msgstr "Backups do Cura"
  1366. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1367. msgctxt "@title"
  1368. msgid "My Backups"
  1369. msgstr "Meus backups"
  1370. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  1371. msgctxt "@empty_state"
  1372. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1373. msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um."
  1374. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  1375. msgctxt "@backup_limit_info"
  1376. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1377. msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos."
  1378. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1379. msgctxt "@description"
  1380. msgid "Backup and synchronize your Cura settings."
  1381. msgstr "Fazer backup e sincronizar os ajustes do Cura."
  1382. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  1383. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:48
  1384. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:68
  1385. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:138
  1386. msgctxt "@button"
  1387. msgid "Sign in"
  1388. msgstr "Entrar"
  1389. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1390. msgctxt "@title"
  1391. msgid "Update Firmware"
  1392. msgstr "Atualizar Firmware"
  1393. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1394. msgctxt "@label"
  1395. 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."
  1396. msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar."
  1397. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1398. msgctxt "@label"
  1399. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1400. msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias."
  1401. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1402. msgctxt "@action:button"
  1403. msgid "Automatically upgrade Firmware"
  1404. msgstr "Automaticamente atualizar Firmware"
  1405. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1406. msgctxt "@action:button"
  1407. msgid "Upload custom Firmware"
  1408. msgstr "Carregar Firmware personalizado"
  1409. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1410. msgctxt "@label"
  1411. msgid "Firmware can not be updated because there is no connection with the printer."
  1412. msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora."
  1413. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1414. msgctxt "@label"
  1415. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1416. msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware."
  1417. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1418. msgctxt "@title:window"
  1419. msgid "Select custom firmware"
  1420. msgstr "Selecionar firmware personalizado"
  1421. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1422. msgctxt "@title:window"
  1423. msgid "Firmware Update"
  1424. msgstr "Atualização do Firmware"
  1425. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1426. msgctxt "@label"
  1427. msgid "Updating firmware."
  1428. msgstr "Atualizando firmware."
  1429. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1430. msgctxt "@label"
  1431. msgid "Firmware update completed."
  1432. msgstr "Atualização do Firmware completada."
  1433. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1434. msgctxt "@label"
  1435. msgid "Firmware update failed due to an unknown error."
  1436. msgstr "A atualização de Firmware falhou devido a um erro desconhecido."
  1437. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1438. msgctxt "@label"
  1439. msgid "Firmware update failed due to an communication error."
  1440. msgstr "A atualização de firmware falhou devido a um erro de comunicação."
  1441. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1442. msgctxt "@label"
  1443. msgid "Firmware update failed due to an input/output error."
  1444. msgstr "A atualização de firmware falhou devido a um erro de entrada e saída."
  1445. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1446. msgctxt "@label"
  1447. msgid "Firmware update failed due to missing firmware."
  1448. msgstr "A atualização de firmware falhou devido a firmware não encontrado."
  1449. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
  1450. msgctxt "@title:window"
  1451. msgid "Convert Image..."
  1452. msgstr "Converter imagem..."
  1453. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
  1454. msgctxt "@info:tooltip"
  1455. msgid "The maximum distance of each pixel from \"Base.\""
  1456. msgstr "A distância máxima de cada pixel da \"Base\"."
  1457. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
  1458. msgctxt "@action:label"
  1459. msgid "Height (mm)"
  1460. msgstr "Altura (mm)"
  1461. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
  1462. msgctxt "@info:tooltip"
  1463. msgid "The base height from the build plate in millimeters."
  1464. msgstr "A altura-base da mesa de impressão em milímetros."
  1465. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
  1466. msgctxt "@action:label"
  1467. msgid "Base (mm)"
  1468. msgstr "Base (mm)"
  1469. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
  1470. msgctxt "@info:tooltip"
  1471. msgid "The width in millimeters on the build plate."
  1472. msgstr "A largura da mesa de impressão em milímetros."
  1473. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
  1474. msgctxt "@action:label"
  1475. msgid "Width (mm)"
  1476. msgstr "Largura (mm)"
  1477. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
  1478. msgctxt "@info:tooltip"
  1479. msgid "The depth in millimeters on the build plate"
  1480. msgstr "A profundidade da mesa de impressão em milímetros"
  1481. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
  1482. msgctxt "@action:label"
  1483. msgid "Depth (mm)"
  1484. msgstr "Profundidade (mm)"
  1485. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
  1486. msgctxt "@info:tooltip"
  1487. 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."
  1488. msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado."
  1489. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1490. msgctxt "@item:inlistbox"
  1491. msgid "Darker is higher"
  1492. msgstr "Mais escuro é mais alto"
  1493. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1494. msgctxt "@item:inlistbox"
  1495. msgid "Lighter is higher"
  1496. msgstr "Mais claro é mais alto"
  1497. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
  1498. msgctxt "@info:tooltip"
  1499. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1500. msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente."
  1501. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  1502. msgctxt "@item:inlistbox"
  1503. msgid "Linear"
  1504. msgstr "Linear"
  1505. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  1506. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
  1507. msgctxt "@item:inlistbox"
  1508. msgid "Translucency"
  1509. msgstr "Translucidez"
  1510. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
  1511. msgctxt "@info:tooltip"
  1512. 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."
  1513. msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem."
  1514. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
  1515. msgctxt "@action:label"
  1516. msgid "1mm Transmittance (%)"
  1517. msgstr "Transmitância de 1mm (%)"
  1518. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
  1519. msgctxt "@info:tooltip"
  1520. msgid "The amount of smoothing to apply to the image."
  1521. msgstr "A quantidade de suavização para aplicar na imagem."
  1522. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
  1523. msgctxt "@action:label"
  1524. msgid "Smoothing"
  1525. msgstr "Suavização"
  1526. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
  1527. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  1528. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  1529. msgctxt "@action:button"
  1530. msgid "OK"
  1531. msgstr "Ok"
  1532. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1533. msgctxt "@title:tab"
  1534. msgid "Printer"
  1535. msgstr "Impressora"
  1536. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1537. msgctxt "@title:label"
  1538. msgid "Nozzle Settings"
  1539. msgstr "Ajustes do Bico"
  1540. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  1541. msgctxt "@label"
  1542. msgid "Nozzle size"
  1543. msgstr "Tamanho do bico"
  1544. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  1545. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  1546. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  1547. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  1548. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  1549. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  1550. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  1551. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  1552. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  1553. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  1554. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  1555. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  1556. msgctxt "@label"
  1557. msgid "mm"
  1558. msgstr "mm"
  1559. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  1560. msgctxt "@label"
  1561. msgid "Compatible material diameter"
  1562. msgstr "Diâmetro de material compatível"
  1563. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  1564. msgctxt "@label"
  1565. msgid "Nozzle offset X"
  1566. msgstr "Deslocamento X do Bico"
  1567. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  1568. msgctxt "@label"
  1569. msgid "Nozzle offset Y"
  1570. msgstr "Deslocamento Y do Bico"
  1571. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  1572. msgctxt "@label"
  1573. msgid "Cooling Fan Number"
  1574. msgstr "Número da Ventoinha de Resfriamento"
  1575. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1576. msgctxt "@title:label"
  1577. msgid "Extruder Start G-code"
  1578. msgstr "G-Code Inicial do Extrusor"
  1579. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1580. msgctxt "@title:label"
  1581. msgid "Extruder End G-code"
  1582. msgstr "G-Code Final do Extrusor"
  1583. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1584. msgctxt "@title:label"
  1585. msgid "Printer Settings"
  1586. msgstr "Ajustes de Impressora"
  1587. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  1588. msgctxt "@label"
  1589. msgid "X (Width)"
  1590. msgstr "X (largura)"
  1591. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  1592. msgctxt "@label"
  1593. msgid "Y (Depth)"
  1594. msgstr "Y (Profundidade)"
  1595. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  1596. msgctxt "@label"
  1597. msgid "Z (Height)"
  1598. msgstr "Z (Altura)"
  1599. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  1600. msgctxt "@label"
  1601. msgid "Build plate shape"
  1602. msgstr "Forma da plataforma de impressão"
  1603. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  1604. msgctxt "@label"
  1605. msgid "Origin at center"
  1606. msgstr "Origem no centro"
  1607. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  1608. msgctxt "@label"
  1609. msgid "Heated bed"
  1610. msgstr "Mesa aquecida"
  1611. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  1612. msgctxt "@label"
  1613. msgid "Heated build volume"
  1614. msgstr "Volume de construção aquecido"
  1615. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  1616. msgctxt "@label"
  1617. msgid "G-code flavor"
  1618. msgstr "Sabor de G-Code"
  1619. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  1620. msgctxt "@title:label"
  1621. msgid "Printhead Settings"
  1622. msgstr "Ajustes da Cabeça de Impressão"
  1623. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1624. msgctxt "@label"
  1625. msgid "X min"
  1626. msgstr "X mín."
  1627. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1628. msgctxt "@label"
  1629. msgid "Y min"
  1630. msgstr "Y mín."
  1631. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1632. msgctxt "@label"
  1633. msgid "X max"
  1634. msgstr "X máx."
  1635. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1636. msgctxt "@label"
  1637. msgid "Y max"
  1638. msgstr "Y máx."
  1639. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1640. msgctxt "@label"
  1641. msgid "Gantry Height"
  1642. msgstr "Altura do Eixo"
  1643. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  1644. msgctxt "@label"
  1645. msgid "Number of Extruders"
  1646. msgstr "Número de Extrusores"
  1647. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:339
  1648. msgctxt "@label"
  1649. msgid "Shared Heater"
  1650. msgstr "Aquecedor Compartilhado"
  1651. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:365
  1652. msgctxt "@title:label"
  1653. msgid "Start G-code"
  1654. msgstr "G-Code Inicial"
  1655. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:376
  1656. msgctxt "@title:label"
  1657. msgid "End G-code"
  1658. msgstr "G-Code Final"
  1659. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1660. msgctxt "@info"
  1661. msgid ""
  1662. "Please make sure your printer has a connection:\n"
  1663. "- Check if the printer is turned on.\n"
  1664. "- Check if the printer is connected to the network.\n"
  1665. "- Check if you are signed in to discover cloud-connected printers."
  1666. msgstr ""
  1667. "Por favor certifique-se que sua impressora está conectada>\n"
  1668. "- Verifique se ela está ligada.\n"
  1669. "- Verifique se ela está conectada à rede.\n"
  1670. "- Verifique se você está logado para descobrir impressoras conectadas à nuvem."
  1671. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
  1672. msgctxt "@info"
  1673. msgid "Please connect your printer to the network."
  1674. msgstr "Por favor conecte sua impressora à rede."
  1675. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:156
  1676. msgctxt "@label link to technical assistance"
  1677. msgid "View user manuals online"
  1678. msgstr "Ver manuais de usuário online"
  1679. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:45
  1680. msgctxt "@label"
  1681. msgid "Mesh Type"
  1682. msgstr "Tipo de Malha"
  1683. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75
  1684. msgctxt "@label"
  1685. msgid "Normal model"
  1686. msgstr "Modelo normal"
  1687. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:87
  1688. msgctxt "@label"
  1689. msgid "Print as support"
  1690. msgstr "Imprimir como suporte"
  1691. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99
  1692. msgctxt "@label"
  1693. msgid "Modify settings for overlaps"
  1694. msgstr "Modificar ajustes para sobreposições"
  1695. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  1696. msgctxt "@label"
  1697. msgid "Don't support overlaps"
  1698. msgstr "Não suportar sobreposições"
  1699. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:142
  1700. msgctxt "@item:inlistbox"
  1701. msgid "Infill mesh only"
  1702. msgstr "Somente malha de preenchimento"
  1703. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:143
  1704. msgctxt "@item:inlistbox"
  1705. msgid "Cutting mesh"
  1706. msgstr "Malha de corte"
  1707. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:373
  1708. msgctxt "@action:button"
  1709. msgid "Select settings"
  1710. msgstr "Selecionar ajustes"
  1711. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1712. msgctxt "@title:window"
  1713. msgid "Select Settings to Customize for this model"
  1714. msgstr "Selecionar Ajustes a Personalizar para este modelo"
  1715. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
  1716. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  1717. msgctxt "@label:textbox"
  1718. msgid "Filter..."
  1719. msgstr "Filtrar..."
  1720. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:70
  1721. msgctxt "@label:checkbox"
  1722. msgid "Show all"
  1723. msgstr "Exibir tudo"
  1724. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1725. msgctxt "@title:window"
  1726. msgid "Post Processing Plugin"
  1727. msgstr "Complemento de Pós-Processamento"
  1728. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1729. msgctxt "@label"
  1730. msgid "Post Processing Scripts"
  1731. msgstr "Scripts de Pós-Processamento"
  1732. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  1733. msgctxt "@action"
  1734. msgid "Add a script"
  1735. msgstr "Adicionar um script"
  1736. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  1737. msgctxt "@label"
  1738. msgid "Settings"
  1739. msgstr "Ajustes"
  1740. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
  1741. msgctxt "@info:tooltip"
  1742. msgid "Change active post-processing scripts."
  1743. msgstr "Alterar scripts de pós-processamento ativos."
  1744. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
  1745. msgctxt "@info:tooltip"
  1746. msgid "The following script is active:"
  1747. msgid_plural "The following scripts are active:"
  1748. msgstr[0] "O seguinte script está ativo:"
  1749. msgstr[1] "Os seguintes scripts estão ativos:"
  1750. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  1751. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  1752. msgctxt "@label"
  1753. msgid "Color scheme"
  1754. msgstr "Esquema de Cores"
  1755. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:107
  1756. msgctxt "@label:listbox"
  1757. msgid "Material Color"
  1758. msgstr "Cor do Material"
  1759. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:111
  1760. msgctxt "@label:listbox"
  1761. msgid "Line Type"
  1762. msgstr "Tipo de Linha"
  1763. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:115
  1764. msgctxt "@label:listbox"
  1765. msgid "Speed"
  1766. msgstr "Velocidade"
  1767. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:119
  1768. msgctxt "@label:listbox"
  1769. msgid "Layer thickness"
  1770. msgstr "Largura de camada"
  1771. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:156
  1772. msgctxt "@label"
  1773. msgid "Compatibility Mode"
  1774. msgstr "Modo de Compatibilidade"
  1775. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:230
  1776. msgctxt "@label"
  1777. msgid "Travels"
  1778. msgstr "Percursos"
  1779. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:236
  1780. msgctxt "@label"
  1781. msgid "Helpers"
  1782. msgstr "Assistentes"
  1783. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:242
  1784. msgctxt "@label"
  1785. msgid "Shell"
  1786. msgstr "Perímetro"
  1787. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:248
  1788. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  1789. msgctxt "@label"
  1790. msgid "Infill"
  1791. msgstr "Preenchimento"
  1792. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:298
  1793. msgctxt "@label"
  1794. msgid "Only Show Top Layers"
  1795. msgstr "Somente Exibir Camadas Superiores"
  1796. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:308
  1797. msgctxt "@label"
  1798. msgid "Show 5 Detailed Layers On Top"
  1799. msgstr "Exibir 5 Camadas Superiores Detalhadas"
  1800. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
  1801. msgctxt "@label"
  1802. msgid "Top / Bottom"
  1803. msgstr "Topo / Base"
  1804. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326
  1805. msgctxt "@label"
  1806. msgid "Inner Wall"
  1807. msgstr "Parede Interna"
  1808. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:384
  1809. msgctxt "@label"
  1810. msgid "min"
  1811. msgstr "mín"
  1812. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:433
  1813. msgctxt "@label"
  1814. msgid "max"
  1815. msgstr "máx"
  1816. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  1817. msgctxt "@title:window"
  1818. msgid "More information on anonymous data collection"
  1819. msgstr "Mais informações em coleção anônima de dados"
  1820. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  1821. msgctxt "@text:window"
  1822. 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:"
  1823. msgstr "O Ultimaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:"
  1824. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  1825. msgctxt "@text:window"
  1826. msgid "I don't want to send anonymous data"
  1827. msgstr "Recusar enviar dados anônimos"
  1828. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  1829. msgctxt "@text:window"
  1830. msgid "Allow sending anonymous data"
  1831. msgstr "Permitir enviar dados anônimos"
  1832. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/RatingWidget.qml:54
  1833. msgctxt "@label"
  1834. msgid "You need to login first before you can rate"
  1835. msgstr "Você precisa entrar em sua conta para dar notas"
  1836. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/RatingWidget.qml:54
  1837. msgctxt "@label"
  1838. msgid "You need to install the package before you can rate"
  1839. msgstr "Você precisa instalar o pacote para dar notas"
  1840. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/SmallRatingWidget.qml:27
  1841. msgctxt "@label"
  1842. msgid "ratings"
  1843. msgstr "notas"
  1844. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  1845. msgctxt "@action:button"
  1846. msgid "Back"
  1847. msgstr "Voltar"
  1848. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  1849. msgctxt "@label"
  1850. msgid "Compatibility"
  1851. msgstr "Compatibilidade"
  1852. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  1853. msgctxt "@label:table_header"
  1854. msgid "Machine"
  1855. msgstr "Máquina"
  1856. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  1857. msgctxt "@label:table_header"
  1858. msgid "Build Plate"
  1859. msgstr "Plataforma de Impressão"
  1860. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  1861. msgctxt "@label:table_header"
  1862. msgid "Support"
  1863. msgstr "Suporte"
  1864. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  1865. msgctxt "@label:table_header"
  1866. msgid "Quality"
  1867. msgstr "Qualidade"
  1868. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  1869. msgctxt "@action:label"
  1870. msgid "Technical Data Sheet"
  1871. msgstr "Documento de Dados Técnicos"
  1872. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  1873. msgctxt "@action:label"
  1874. msgid "Safety Data Sheet"
  1875. msgstr "Documento de Dados de Segurança"
  1876. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  1877. msgctxt "@action:label"
  1878. msgid "Printing Guidelines"
  1879. msgstr "Diretrizes de Impressão"
  1880. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  1881. msgctxt "@action:label"
  1882. msgid "Website"
  1883. msgstr "Sítio Web"
  1884. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  1885. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  1886. msgctxt "@action:button"
  1887. msgid "Installed"
  1888. msgstr "Instalado"
  1889. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  1890. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1891. msgid "<a href='%1'>Log in</a> is required to install or update"
  1892. msgstr "<a href='%1'>Entrar</a> na conta é necessário para instalar ou atualizar"
  1893. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  1894. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1895. msgid "<a href='%1'>Buy material spools</a>"
  1896. msgstr "<a href='%1'>Comprar rolos de material</a>"
  1897. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  1898. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  1899. msgctxt "@action:button"
  1900. msgid "Update"
  1901. msgstr "Atualizar"
  1902. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  1903. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  1904. msgctxt "@action:button"
  1905. msgid "Updating"
  1906. msgstr "Atualizando"
  1907. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  1908. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  1909. msgctxt "@action:button"
  1910. msgid "Updated"
  1911. msgstr "Atualizado"
  1912. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  1913. msgctxt "@label"
  1914. msgid "Featured"
  1915. msgstr "Em destaque"
  1916. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  1917. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  1918. msgctxt "@info:tooltip"
  1919. msgid "Go to Web Marketplace"
  1920. msgstr "Ir ao Mercado Web"
  1921. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  1922. msgctxt "@label"
  1923. msgid "Search materials"
  1924. msgstr "Buscar materiais"
  1925. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  1926. msgctxt "@info"
  1927. msgid "You will need to restart Cura before changes in packages have effect."
  1928. msgstr "Você precisará reiniciar o Cura para que as alterações tenham efeito."
  1929. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  1930. msgctxt "@info:button, %1 is the application name"
  1931. msgid "Quit %1"
  1932. msgstr "Sair de %1"
  1933. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  1934. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:34
  1935. msgctxt "@title:tab"
  1936. msgid "Plugins"
  1937. msgstr "Complementos"
  1938. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
  1939. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:79
  1940. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:442
  1941. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  1942. msgctxt "@title:tab"
  1943. msgid "Materials"
  1944. msgstr "Materiais"
  1945. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  1946. msgctxt "@title:tab"
  1947. msgid "Installed"
  1948. msgstr "Instalado"
  1949. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  1950. msgctxt "@label"
  1951. msgid "Will install upon restarting"
  1952. msgstr "Será instalado ao reiniciar"
  1953. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  1954. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1955. msgid "<a href='%1'>Log in</a> is required to update"
  1956. msgstr "<a href='%1'>Entrar</a> na conta é necessário para atualizar"
  1957. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1958. msgctxt "@action:button"
  1959. msgid "Downgrade"
  1960. msgstr "Downgrade"
  1961. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1962. msgctxt "@action:button"
  1963. msgid "Uninstall"
  1964. msgstr "Desinstalar"
  1965. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  1966. msgctxt "@action:button"
  1967. msgid "Install"
  1968. msgstr "Instalar"
  1969. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  1970. msgctxt "@title"
  1971. msgid "Changes from your account"
  1972. msgstr "Alterações da sua conta"
  1973. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  1974. msgctxt "@button"
  1975. msgid "Dismiss"
  1976. msgstr "Dispensar"
  1977. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  1978. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  1979. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  1980. msgctxt "@button"
  1981. msgid "Next"
  1982. msgstr "Próximo"
  1983. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  1984. msgctxt "@label"
  1985. msgid "The following packages will be added:"
  1986. msgstr "Os seguintes pacotes serão adicionados:"
  1987. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  1988. msgctxt "@label"
  1989. msgid "The following packages can not be installed because of an incompatible Cura version:"
  1990. msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:"
  1991. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  1992. msgctxt "@title:window"
  1993. msgid "Confirm uninstall"
  1994. msgstr "Confirme a desinstalação"
  1995. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  1996. msgctxt "@text:window"
  1997. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  1998. msgstr "Você está desinstalando material e/ou perfis que ainda estão em uso. Confirmar irá restaurar os materiais e perfis seguintes a seus defaults."
  1999. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  2000. msgctxt "@text:window"
  2001. msgid "Materials"
  2002. msgstr "Materiais"
  2003. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  2004. msgctxt "@text:window"
  2005. msgid "Profiles"
  2006. msgstr "Perfis"
  2007. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  2008. msgctxt "@action:button"
  2009. msgid "Confirm"
  2010. msgstr "Confirmar"
  2011. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  2012. msgctxt "@label"
  2013. msgid "You need to accept the license to install the package"
  2014. msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado"
  2015. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:93
  2016. msgctxt "@label"
  2017. msgid "Website"
  2018. msgstr "Sítio Web"
  2019. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:100
  2020. msgctxt "@label"
  2021. msgid "Email"
  2022. msgstr "Email"
  2023. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:97
  2024. msgctxt "@label"
  2025. msgid "Your rating"
  2026. msgstr "Sua nota"
  2027. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:105
  2028. msgctxt "@label"
  2029. msgid "Version"
  2030. msgstr "Versão"
  2031. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:112
  2032. msgctxt "@label"
  2033. msgid "Last updated"
  2034. msgstr "Última atualização"
  2035. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:119
  2036. msgctxt "@label"
  2037. msgid "Author"
  2038. msgstr "Autor"
  2039. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:126
  2040. msgctxt "@label"
  2041. msgid "Downloads"
  2042. msgstr "Downloads"
  2043. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2044. msgctxt "@label"
  2045. msgid "Community Contributions"
  2046. msgstr "Contribuições da Comunidade"
  2047. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2048. msgctxt "@label"
  2049. msgid "Community Plugins"
  2050. msgstr "Complementos da Comunidade"
  2051. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  2052. msgctxt "@label"
  2053. msgid "Generic Materials"
  2054. msgstr "Materiais Genéricos"
  2055. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  2056. msgctxt "@info"
  2057. msgid "Could not connect to the Cura Package database. Please check your connection."
  2058. msgstr "Não foi possível conectar-se à base de dados de Pacotes do Cura. Por favor verifique sua conexão."
  2059. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:16
  2060. msgctxt "@info"
  2061. msgid "Fetching packages..."
  2062. msgstr "Obtendo pacotes..."
  2063. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:31
  2064. msgctxt "@description"
  2065. msgid "Get plugins and materials verified by Ultimaker"
  2066. msgstr "Obter complementos e materiais verificados pela Ultimaker"
  2067. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  2068. msgctxt "@title"
  2069. msgid "Marketplace"
  2070. msgstr "Mercado"
  2071. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2072. msgctxt "@title"
  2073. msgid "Build Plate Leveling"
  2074. msgstr "Nivelamento da mesa de impressão"
  2075. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2076. msgctxt "@label"
  2077. 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."
  2078. msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas."
  2079. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2080. msgctxt "@label"
  2081. 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."
  2082. msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico."
  2083. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2084. msgctxt "@action:button"
  2085. msgid "Start Build Plate Leveling"
  2086. msgstr "Iniciar Nivelamento da Mesa de Impressão"
  2087. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2088. msgctxt "@action:button"
  2089. msgid "Move to Next Position"
  2090. msgstr "Mover pra a Posição Seguinte"
  2091. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2092. msgctxt "@label"
  2093. msgid "Please select any upgrades made to this Ultimaker Original"
  2094. msgstr "Por favor selecionar quaisquer atualizações feitas nesta Ultimaker Original"
  2095. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2096. msgctxt "@label"
  2097. msgid "Heated Build Plate (official kit or self-built)"
  2098. msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)"
  2099. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  2100. msgctxt "@title:window"
  2101. msgid "Connect to Networked Printer"
  2102. msgstr "Conectar a Impressora de Rede"
  2103. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2104. msgctxt "@label"
  2105. 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."
  2106. msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela."
  2107. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2108. msgctxt "@label"
  2109. msgid "Select your printer from the list below:"
  2110. msgstr "Selecione sua impressora da lista abaixo:"
  2111. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  2112. msgctxt "@action:button"
  2113. msgid "Edit"
  2114. msgstr "Editar"
  2115. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  2116. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
  2117. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  2118. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  2119. msgctxt "@action:button"
  2120. msgid "Remove"
  2121. msgstr "Remover"
  2122. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  2123. msgctxt "@action:button"
  2124. msgid "Refresh"
  2125. msgstr "Atualizar"
  2126. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  2127. msgctxt "@label"
  2128. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2129. msgstr "Se sua impressora não está listada, leia o <a href='%1'>guia de resolução de problemas de impressão em rede</a>"
  2130. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  2131. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  2132. msgctxt "@label"
  2133. msgid "Type"
  2134. msgstr "Tipo"
  2135. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  2136. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  2137. msgctxt "@label"
  2138. msgid "Firmware version"
  2139. msgstr "Versão do firmware"
  2140. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  2141. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  2142. msgctxt "@label"
  2143. msgid "Address"
  2144. msgstr "Endereço"
  2145. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  2146. msgctxt "@label"
  2147. msgid "This printer is not set up to host a group of printers."
  2148. msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras."
  2149. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  2150. msgctxt "@label"
  2151. msgid "This printer is the host for a group of %1 printers."
  2152. msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras."
  2153. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  2154. msgctxt "@label"
  2155. msgid "The printer at this address has not yet responded."
  2156. msgstr "A impressora neste endereço ainda não respondeu."
  2157. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  2158. msgctxt "@action:button"
  2159. msgid "Connect"
  2160. msgstr "Conectar"
  2161. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  2162. msgctxt "@title:window"
  2163. msgid "Invalid IP address"
  2164. msgstr "Endereço IP inválido"
  2165. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2166. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  2167. msgctxt "@text"
  2168. msgid "Please enter a valid IP address."
  2169. msgstr "Por favor entre um endereço IP válido."
  2170. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  2171. msgctxt "@title:window"
  2172. msgid "Printer Address"
  2173. msgstr "Endereço da Impressora"
  2174. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  2175. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  2176. msgctxt "@label"
  2177. msgid "Enter the IP address of your printer on the network."
  2178. msgstr "Entre o endereço IP da sua impressora na rede."
  2179. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2180. msgctxt "@title:window"
  2181. msgid "Configuration Changes"
  2182. msgstr "Alterações de Configuração"
  2183. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  2184. msgctxt "@action:button"
  2185. msgid "Override"
  2186. msgstr "Sobrepor"
  2187. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  2188. msgctxt "@label"
  2189. msgid "The assigned printer, %1, requires the following configuration change:"
  2190. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2191. msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:"
  2192. msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:"
  2193. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  2194. msgctxt "@label"
  2195. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2196. msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida."
  2197. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  2198. msgctxt "@label"
  2199. msgid "Change material %1 from %2 to %3."
  2200. msgstr "Alterar material %1 de %2 para %3."
  2201. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  2202. msgctxt "@label"
  2203. msgid "Load %3 as material %1 (This cannot be overridden)."
  2204. msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)."
  2205. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  2206. msgctxt "@label"
  2207. msgid "Change print core %1 from %2 to %3."
  2208. msgstr "Alterar núcleo de impressão %1 de %2 para %3."
  2209. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  2210. msgctxt "@label"
  2211. msgid "Change build plate to %1 (This cannot be overridden)."
  2212. msgstr "Alterar mesa de impressão para %1 (Isto não pode ser sobreposto)."
  2213. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  2214. msgctxt "@label"
  2215. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2216. msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão."
  2217. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  2218. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:192
  2219. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  2220. msgctxt "@label"
  2221. msgid "Glass"
  2222. msgstr "Vidro"
  2223. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  2224. msgctxt "@label"
  2225. msgid "Aluminum"
  2226. msgstr "Alumínio"
  2227. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  2228. msgctxt "@label"
  2229. msgid "Move to top"
  2230. msgstr "Mover para o topo"
  2231. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  2232. msgctxt "@label"
  2233. msgid "Delete"
  2234. msgstr "Remover"
  2235. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  2236. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:289
  2237. msgctxt "@label"
  2238. msgid "Resume"
  2239. msgstr "Continuar"
  2240. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  2241. msgctxt "@label"
  2242. msgid "Pausing..."
  2243. msgstr "Pausando..."
  2244. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  2245. msgctxt "@label"
  2246. msgid "Resuming..."
  2247. msgstr "Continuando..."
  2248. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  2249. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284
  2250. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:293
  2251. msgctxt "@label"
  2252. msgid "Pause"
  2253. msgstr "Pausar"
  2254. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2255. msgctxt "@label"
  2256. msgid "Aborting..."
  2257. msgstr "Abortando..."
  2258. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2259. msgctxt "@label"
  2260. msgid "Abort"
  2261. msgstr "Abortar"
  2262. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  2263. msgctxt "@label %1 is the name of a print job."
  2264. msgid "Are you sure you want to move %1 to the top of the queue?"
  2265. msgstr "Você tem certeza que quer mover %1 para o topo da fila?"
  2266. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2267. msgctxt "@window:title"
  2268. msgid "Move print job to top"
  2269. msgstr "Move o trabalho de impressão para o topo da fila"
  2270. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  2271. msgctxt "@label %1 is the name of a print job."
  2272. msgid "Are you sure you want to delete %1?"
  2273. msgstr "Você tem certeza que quer remover %1?"
  2274. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  2275. msgctxt "@window:title"
  2276. msgid "Delete print job"
  2277. msgstr "Remover trabalho de impressão"
  2278. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  2279. msgctxt "@label %1 is the name of a print job."
  2280. msgid "Are you sure you want to abort %1?"
  2281. msgstr "Você tem certeza que quer abortar %1?"
  2282. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  2283. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:335
  2284. msgctxt "@window:title"
  2285. msgid "Abort print"
  2286. msgstr "Abortar impressão"
  2287. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:155
  2288. msgctxt "@label link to Connect and Cloud interfaces"
  2289. msgid "Manage printer"
  2290. msgstr "Gerir Impressora"
  2291. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:256
  2292. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:514
  2293. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  2294. msgctxt "@info"
  2295. msgid "Please update your printer's firmware to manage the queue remotely."
  2296. msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente."
  2297. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:289
  2298. msgctxt "@info"
  2299. msgid "The webcam is not available because you are monitoring a cloud printer."
  2300. msgstr "A webcam não está disponível porque você está monitorando uma impressora de nuvem."
  2301. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2302. msgctxt "@label:status"
  2303. msgid "Loading..."
  2304. msgstr "Carregando..."
  2305. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2306. msgctxt "@label:status"
  2307. msgid "Unavailable"
  2308. msgstr "Indisponível"
  2309. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2310. msgctxt "@label:status"
  2311. msgid "Unreachable"
  2312. msgstr "Inacessivel"
  2313. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2314. msgctxt "@label:status"
  2315. msgid "Idle"
  2316. msgstr "Ocioso"
  2317. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:401
  2318. msgctxt "@label"
  2319. msgid "Untitled"
  2320. msgstr "Sem Título"
  2321. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:422
  2322. msgctxt "@label"
  2323. msgid "Anonymous"
  2324. msgstr "Anônimo"
  2325. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:449
  2326. msgctxt "@label:status"
  2327. msgid "Requires configuration changes"
  2328. msgstr "Requer mudanças na configuração"
  2329. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:487
  2330. msgctxt "@action:button"
  2331. msgid "Details"
  2332. msgstr "Detalhes"
  2333. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  2334. msgctxt "@label"
  2335. msgid "Unavailable printer"
  2336. msgstr "Impressora indisponível"
  2337. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  2338. msgctxt "@label"
  2339. msgid "First available"
  2340. msgstr "Primeira disponível"
  2341. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2342. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2343. msgctxt "@label:status"
  2344. msgid "Aborted"
  2345. msgstr "Abortado"
  2346. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2347. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2348. msgctxt "@label:status"
  2349. msgid "Finished"
  2350. msgstr "Finalizado"
  2351. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2352. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2353. msgctxt "@label:status"
  2354. msgid "Preparing..."
  2355. msgstr "Preparando..."
  2356. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2357. msgctxt "@label:status"
  2358. msgid "Aborting..."
  2359. msgstr "Abortando..."
  2360. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2361. msgctxt "@label:status"
  2362. msgid "Pausing..."
  2363. msgstr "Pausando..."
  2364. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2365. msgctxt "@label:status"
  2366. msgid "Paused"
  2367. msgstr "Pausado"
  2368. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2369. msgctxt "@label:status"
  2370. msgid "Resuming..."
  2371. msgstr "Continuando..."
  2372. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2373. msgctxt "@label:status"
  2374. msgid "Action required"
  2375. msgstr "Necessária uma ação"
  2376. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2377. msgctxt "@label:status"
  2378. msgid "Finishes %1 at %2"
  2379. msgstr "Termina %1 em %2"
  2380. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  2381. msgctxt "@label"
  2382. msgid "Queued"
  2383. msgstr "Enfileirados"
  2384. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:67
  2385. msgctxt "@label link to connect manager"
  2386. msgid "Manage in browser"
  2387. msgstr "Gerir no navegador"
  2388. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:100
  2389. msgctxt "@label"
  2390. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2391. msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo."
  2392. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:115
  2393. msgctxt "@label"
  2394. msgid "Print jobs"
  2395. msgstr "Trabalhos de impressão"
  2396. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:131
  2397. msgctxt "@label"
  2398. msgid "Total print time"
  2399. msgstr "Tempo total de impressão"
  2400. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:147
  2401. msgctxt "@label"
  2402. msgid "Waiting for"
  2403. msgstr "Esperando por"
  2404. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  2405. msgctxt "@title:window"
  2406. msgid "Print over network"
  2407. msgstr "Imprimir pela rede"
  2408. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  2409. msgctxt "@action:button"
  2410. msgid "Print"
  2411. msgstr "Imprimir"
  2412. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  2413. msgctxt "@label"
  2414. msgid "Printer selection"
  2415. msgstr "Seleção de impressora"
  2416. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
  2417. msgctxt "@action:button"
  2418. msgid "Sign in"
  2419. msgstr "Entrar"
  2420. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:40
  2421. msgctxt "@label"
  2422. msgid "Your key to connected 3D printing"
  2423. msgstr "Sua chave para impressão 3D conectada"
  2424. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:51
  2425. msgctxt "@text"
  2426. msgid ""
  2427. "- Customize your experience with more print profiles and plugins\n"
  2428. "- Stay flexible by syncing your setup and loading it anywhere\n"
  2429. "- Increase efficiency with a remote workflow on Ultimaker printers"
  2430. msgstr ""
  2431. "- Personalize sua experiência com mais perfis de impressão e complementos\n"
  2432. "- Flexibilize-se ao sincronizar sua configuração e a acessar em qualquer lugar\n"
  2433. "- Melhor a eficiência com um fluxo de trabalho remoto com as impressoras Ultimaker"
  2434. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:78
  2435. msgctxt "@button"
  2436. msgid "Create account"
  2437. msgstr "Criar conta"
  2438. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:22
  2439. msgctxt "@label The argument is a username."
  2440. msgid "Hi %1"
  2441. msgstr "Oi, %1"
  2442. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:33
  2443. msgctxt "@button"
  2444. msgid "Ultimaker account"
  2445. msgstr "Conta da Ultimaker"
  2446. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:42
  2447. msgctxt "@button"
  2448. msgid "Sign out"
  2449. msgstr "Sair da conta"
  2450. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  2451. msgctxt "@label"
  2452. msgid "No time estimation available"
  2453. msgstr "Sem estimativa de tempo disponível"
  2454. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  2455. msgctxt "@label"
  2456. msgid "No cost estimation available"
  2457. msgstr "Sem estimativa de custo disponível"
  2458. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  2459. msgctxt "@button"
  2460. msgid "Preview"
  2461. msgstr "Pré-visualização"
  2462. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  2463. msgctxt "@label"
  2464. msgid "Time estimation"
  2465. msgstr "Estimativa de tempo"
  2466. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  2467. msgctxt "@label"
  2468. msgid "Material estimation"
  2469. msgstr "Estimativa de material"
  2470. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  2471. msgctxt "@label m for meter"
  2472. msgid "%1m"
  2473. msgstr "%1m"
  2474. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  2475. msgctxt "@label g for grams"
  2476. msgid "%1g"
  2477. msgstr "%1g"
  2478. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  2479. msgctxt "@label:PrintjobStatus"
  2480. msgid "Slicing..."
  2481. msgstr "Fatiando..."
  2482. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
  2483. msgctxt "@label:PrintjobStatus"
  2484. msgid "Unable to slice"
  2485. msgstr "Não foi possível fatiar"
  2486. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  2487. msgctxt "@button"
  2488. msgid "Processing"
  2489. msgstr "Processando"
  2490. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  2491. msgctxt "@button"
  2492. msgid "Slice"
  2493. msgstr "Fatiar"
  2494. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
  2495. msgctxt "@label"
  2496. msgid "Start the slicing process"
  2497. msgstr "Inicia o processo de fatiamento"
  2498. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
  2499. msgctxt "@button"
  2500. msgid "Cancel"
  2501. msgstr "Cancelar"
  2502. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:82
  2503. msgctxt "@action:inmenu"
  2504. msgid "Show Online Troubleshooting Guide"
  2505. msgstr "Mostra Guia de Resolução de Problemas Online"
  2506. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:89
  2507. msgctxt "@action:inmenu"
  2508. msgid "Toggle Full Screen"
  2509. msgstr "Alternar Tela Cheia"
  2510. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:97
  2511. msgctxt "@action:inmenu"
  2512. msgid "Exit Full Screen"
  2513. msgstr "Sair da Tela Cheia"
  2514. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:104
  2515. msgctxt "@action:inmenu menubar:edit"
  2516. msgid "&Undo"
  2517. msgstr "Desfazer (&U)"
  2518. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:114
  2519. msgctxt "@action:inmenu menubar:edit"
  2520. msgid "&Redo"
  2521. msgstr "&Refazer"
  2522. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:124
  2523. msgctxt "@action:inmenu menubar:file"
  2524. msgid "&Quit"
  2525. msgstr "Sair (&Q)"
  2526. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:132
  2527. msgctxt "@action:inmenu menubar:view"
  2528. msgid "3D View"
  2529. msgstr "Visão &3D"
  2530. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139
  2531. msgctxt "@action:inmenu menubar:view"
  2532. msgid "Front View"
  2533. msgstr "Visão Frontal"
  2534. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146
  2535. msgctxt "@action:inmenu menubar:view"
  2536. msgid "Top View"
  2537. msgstr "Visão Superior"
  2538. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153
  2539. msgctxt "@action:inmenu menubar:view"
  2540. msgid "Left Side View"
  2541. msgstr "Visão do Lado Esquerdo"
  2542. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160
  2543. msgctxt "@action:inmenu menubar:view"
  2544. msgid "Right Side View"
  2545. msgstr "Visão do Lado Direito"
  2546. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167
  2547. msgctxt "@action:inmenu"
  2548. msgid "Configure Cura..."
  2549. msgstr "Configurar Cura..."
  2550. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174
  2551. msgctxt "@action:inmenu menubar:printer"
  2552. msgid "&Add Printer..."
  2553. msgstr "&Adicionar Impressora..."
  2554. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:180
  2555. msgctxt "@action:inmenu menubar:printer"
  2556. msgid "Manage Pr&inters..."
  2557. msgstr "Adm&inistrar Impressoras..."
  2558. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:187
  2559. msgctxt "@action:inmenu"
  2560. msgid "Manage Materials..."
  2561. msgstr "Administrar Materiais..."
  2562. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195
  2563. msgctxt "@action:inmenu"
  2564. msgid "Add more materials from Marketplace"
  2565. msgstr "Adicionar mais materiais do Mercado"
  2566. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:202
  2567. msgctxt "@action:inmenu menubar:profile"
  2568. msgid "&Update profile with current settings/overrides"
  2569. msgstr "At&ualizar perfil com valores e sobreposições atuais"
  2570. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
  2571. msgctxt "@action:inmenu menubar:profile"
  2572. msgid "&Discard current changes"
  2573. msgstr "&Descartar ajustes atuais"
  2574. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:222
  2575. msgctxt "@action:inmenu menubar:profile"
  2576. msgid "&Create profile from current settings/overrides..."
  2577. msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..."
  2578. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:228
  2579. msgctxt "@action:inmenu menubar:profile"
  2580. msgid "Manage Profiles..."
  2581. msgstr "Administrar perfis..."
  2582. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236
  2583. msgctxt "@action:inmenu menubar:help"
  2584. msgid "Show Online &Documentation"
  2585. msgstr "Exibir &Documentação Online"
  2586. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244
  2587. msgctxt "@action:inmenu menubar:help"
  2588. msgid "Report a &Bug"
  2589. msgstr "Relatar um &Bug"
  2590. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252
  2591. msgctxt "@action:inmenu menubar:help"
  2592. msgid "What's New"
  2593. msgstr "Novidades"
  2594. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:258
  2595. msgctxt "@action:inmenu menubar:help"
  2596. msgid "About..."
  2597. msgstr "Sobre..."
  2598. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265
  2599. msgctxt "@action:inmenu menubar:edit"
  2600. msgid "Delete Selected Model"
  2601. msgid_plural "Delete Selected Models"
  2602. msgstr[0] "Remover Modelo Selecionado"
  2603. msgstr[1] "Remover Modelos Selecionados"
  2604. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:275
  2605. msgctxt "@action:inmenu menubar:edit"
  2606. msgid "Center Selected Model"
  2607. msgid_plural "Center Selected Models"
  2608. msgstr[0] "Centralizar Modelo Selecionado"
  2609. msgstr[1] "Centralizar Modelos Selecionados"
  2610. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:284
  2611. msgctxt "@action:inmenu menubar:edit"
  2612. msgid "Multiply Selected Model"
  2613. msgid_plural "Multiply Selected Models"
  2614. msgstr[0] "Multiplicar Modelo Selecionado"
  2615. msgstr[1] "Multiplicar Modelos Selecionados"
  2616. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:293
  2617. msgctxt "@action:inmenu"
  2618. msgid "Delete Model"
  2619. msgstr "Remover Modelo"
  2620. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301
  2621. msgctxt "@action:inmenu"
  2622. msgid "Ce&nter Model on Platform"
  2623. msgstr "Ce&ntralizar Modelo na Mesa"
  2624. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:307
  2625. msgctxt "@action:inmenu menubar:edit"
  2626. msgid "&Group Models"
  2627. msgstr "A&grupar Modelos"
  2628. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:327
  2629. msgctxt "@action:inmenu menubar:edit"
  2630. msgid "Ungroup Models"
  2631. msgstr "Desagrupar Modelos"
  2632. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:337
  2633. msgctxt "@action:inmenu menubar:edit"
  2634. msgid "&Merge Models"
  2635. msgstr "Co&mbinar Modelos"
  2636. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:347
  2637. msgctxt "@action:inmenu"
  2638. msgid "&Multiply Model..."
  2639. msgstr "&Multiplicar Modelo..."
  2640. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:354
  2641. msgctxt "@action:inmenu menubar:edit"
  2642. msgid "Select All Models"
  2643. msgstr "Selecionar Todos Os Modelos"
  2644. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:364
  2645. msgctxt "@action:inmenu menubar:edit"
  2646. msgid "Clear Build Plate"
  2647. msgstr "Esvaziar a Mesa de Impressão"
  2648. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:374
  2649. msgctxt "@action:inmenu menubar:file"
  2650. msgid "Reload All Models"
  2651. msgstr "Recarregar Todos Os Modelos"
  2652. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383
  2653. msgctxt "@action:inmenu menubar:edit"
  2654. msgid "Arrange All Models To All Build Plates"
  2655. msgstr "Posicionar Todos os Modelos em Todas as Plataformas de Impressão"
  2656. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:390
  2657. msgctxt "@action:inmenu menubar:edit"
  2658. msgid "Arrange All Models"
  2659. msgstr "Posicionar Todos os Modelos"
  2660. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398
  2661. msgctxt "@action:inmenu menubar:edit"
  2662. msgid "Arrange Selection"
  2663. msgstr "Posicionar Seleção"
  2664. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:405
  2665. msgctxt "@action:inmenu menubar:edit"
  2666. msgid "Reset All Model Positions"
  2667. msgstr "Reestabelecer as Posições de Todos Os Modelos"
  2668. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412
  2669. msgctxt "@action:inmenu menubar:edit"
  2670. msgid "Reset All Model Transformations"
  2671. msgstr "Remover as Transformações de Todos Os Modelos"
  2672. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:419
  2673. msgctxt "@action:inmenu menubar:file"
  2674. msgid "&Open File(s)..."
  2675. msgstr "Abrir Arquiv&o(s)..."
  2676. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427
  2677. msgctxt "@action:inmenu menubar:file"
  2678. msgid "&New Project..."
  2679. msgstr "&Novo Projeto..."
  2680. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434
  2681. msgctxt "@action:inmenu menubar:help"
  2682. msgid "Show Configuration Folder"
  2683. msgstr "Exibir Pasta de Configuração"
  2684. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:441
  2685. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:545
  2686. msgctxt "@action:menu"
  2687. msgid "Configure setting visibility..."
  2688. msgstr "Configurar a visibilidade dos ajustes..."
  2689. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:448
  2690. msgctxt "@action:menu"
  2691. msgid "&Marketplace"
  2692. msgstr "&Mercado"
  2693. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:242
  2694. msgctxt "@label"
  2695. msgid "This package will be installed after restarting."
  2696. msgstr "Este pacote será instalado após o reinício."
  2697. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:435
  2698. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15
  2699. msgctxt "@title:tab"
  2700. msgid "General"
  2701. msgstr "Geral"
  2702. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:438
  2703. msgctxt "@title:tab"
  2704. msgid "Settings"
  2705. msgstr "Ajustes"
  2706. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:440
  2707. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
  2708. msgctxt "@title:tab"
  2709. msgid "Printers"
  2710. msgstr "Impressoras"
  2711. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:444
  2712. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  2713. msgctxt "@title:tab"
  2714. msgid "Profiles"
  2715. msgstr "Perfis"
  2716. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:563
  2717. msgctxt "@title:window %1 is the application name"
  2718. msgid "Closing %1"
  2719. msgstr "Fechando %1"
  2720. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:564
  2721. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576
  2722. msgctxt "@label %1 is the application name"
  2723. msgid "Are you sure you want to exit %1?"
  2724. msgstr "Tem certeza que quer sair de %1?"
  2725. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:614
  2726. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  2727. msgctxt "@title:window"
  2728. msgid "Open file(s)"
  2729. msgstr "Abrir arquivo(s)"
  2730. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:720
  2731. msgctxt "@window:title"
  2732. msgid "Install Package"
  2733. msgstr "Instalar Pacote"
  2734. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:728
  2735. msgctxt "@title:window"
  2736. msgid "Open File(s)"
  2737. msgstr "Abrir Arquivo(s)"
  2738. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:731
  2739. msgctxt "@text:window"
  2740. 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."
  2741. msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um."
  2742. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:834
  2743. msgctxt "@title:window"
  2744. msgid "Add Printer"
  2745. msgstr "Adicionar Impressora"
  2746. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:842
  2747. msgctxt "@title:window"
  2748. msgid "What's New"
  2749. msgstr "Novidades"
  2750. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2751. msgctxt "@title:window The argument is the application name."
  2752. msgid "About %1"
  2753. msgstr "Sobre %1"
  2754. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2755. msgctxt "@label"
  2756. msgid "version: %1"
  2757. msgstr "versão: %1"
  2758. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2759. msgctxt "@label"
  2760. msgid "End-to-end solution for fused filament 3D printing."
  2761. msgstr "Solução completa para impressão 3D com filamento fundido."
  2762. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2763. msgctxt "@info:credit"
  2764. msgid ""
  2765. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2766. "Cura proudly uses the following open source projects:"
  2767. msgstr ""
  2768. "Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n"
  2769. "Cura orgulhosamente usa os seguintes projetos open-source:"
  2770. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2771. msgctxt "@label"
  2772. msgid "Graphical user interface"
  2773. msgstr "Interface Gráfica de usuário"
  2774. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2775. msgctxt "@label"
  2776. msgid "Application framework"
  2777. msgstr "Framework de Aplicações"
  2778. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2779. msgctxt "@label"
  2780. msgid "G-code generator"
  2781. msgstr "Gerador de G-Code"
  2782. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2783. msgctxt "@label"
  2784. msgid "Interprocess communication library"
  2785. msgstr "Biblioteca de comunicação interprocessos"
  2786. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2787. msgctxt "@label"
  2788. msgid "Programming language"
  2789. msgstr "Linguagem de Programação"
  2790. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2791. msgctxt "@label"
  2792. msgid "GUI framework"
  2793. msgstr "Framework Gráfica"
  2794. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2795. msgctxt "@label"
  2796. msgid "GUI framework bindings"
  2797. msgstr "Ligações da Framework Gráfica"
  2798. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2799. msgctxt "@label"
  2800. msgid "C/C++ Binding library"
  2801. msgstr "Biblioteca de Ligações C/C++"
  2802. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2803. msgctxt "@label"
  2804. msgid "Data interchange format"
  2805. msgstr "Formato de Intercâmbio de Dados"
  2806. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2807. msgctxt "@label"
  2808. msgid "Support library for scientific computing"
  2809. msgstr "Bibliteca de suporte para computação científica"
  2810. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2811. msgctxt "@label"
  2812. msgid "Support library for faster math"
  2813. msgstr "Biblioteca de suporte para matemática acelerada"
  2814. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2815. msgctxt "@label"
  2816. msgid "Support library for handling STL files"
  2817. msgstr "Biblioteca de suporte para manuseamento de arquivos STL"
  2818. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2819. msgctxt "@label"
  2820. msgid "Support library for handling planar objects"
  2821. msgstr "Biblioteca de suporte para manuseamento de objetos planares"
  2822. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  2823. msgctxt "@label"
  2824. msgid "Support library for handling triangular meshes"
  2825. msgstr "Biblioteca de suporte para manuseamento de malhas triangulares"
  2826. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  2827. msgctxt "@label"
  2828. msgid "Support library for analysis of complex networks"
  2829. msgstr "Biblioteca de suporte para análises de redes complexas"
  2830. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  2831. msgctxt "@label"
  2832. msgid "Support library for handling 3MF files"
  2833. msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF"
  2834. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  2835. msgctxt "@label"
  2836. msgid "Support library for file metadata and streaming"
  2837. msgstr "Biblioteca de suporte para streaming e metadados de arquivo"
  2838. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  2839. msgctxt "@label"
  2840. msgid "Serial communication library"
  2841. msgstr "Biblioteca de comunicação serial"
  2842. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  2843. msgctxt "@label"
  2844. msgid "ZeroConf discovery library"
  2845. msgstr "Biblioteca de descoberta 'ZeroConf'"
  2846. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  2847. msgctxt "@label"
  2848. msgid "Polygon clipping library"
  2849. msgstr "Biblioteca de recorte de polígonos"
  2850. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  2851. msgctxt "@Label"
  2852. msgid "Python HTTP library"
  2853. msgstr "Biblioteca de HTTP Python"
  2854. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  2855. msgctxt "@label"
  2856. msgid "Font"
  2857. msgstr "Fonte"
  2858. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  2859. msgctxt "@label"
  2860. msgid "SVG icons"
  2861. msgstr "Ícones SVG"
  2862. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  2863. msgctxt "@label"
  2864. msgid "Linux cross-distribution application deployment"
  2865. msgstr "Implementação de aplicação multidistribuição em Linux"
  2866. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  2867. msgctxt "@title:window"
  2868. msgid "Open project file"
  2869. msgstr "Abrir arquivo de projeto"
  2870. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:93
  2871. msgctxt "@text:window"
  2872. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  2873. msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?"
  2874. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:103
  2875. msgctxt "@text:window"
  2876. msgid "Remember my choice"
  2877. msgstr "Lembrar minha escolha"
  2878. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:122
  2879. msgctxt "@action:button"
  2880. msgid "Open as project"
  2881. msgstr "Abrir como projeto"
  2882. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:131
  2883. msgctxt "@action:button"
  2884. msgid "Import models"
  2885. msgstr "Importar modelos"
  2886. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  2887. msgctxt "@title:window"
  2888. msgid "Discard or Keep changes"
  2889. msgstr "Descartar ou Manter alterações"
  2890. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  2891. msgctxt "@text:window"
  2892. msgid ""
  2893. "You have customized some profile settings.\n"
  2894. "Would you like to keep or discard those settings?"
  2895. msgstr ""
  2896. "Você personalizou alguns ajustes de perfil.\n"
  2897. "Gostaria de manter ou descartar estes ajustes?"
  2898. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:109
  2899. msgctxt "@title:column"
  2900. msgid "Profile settings"
  2901. msgstr "Ajustes de perfil"
  2902. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:116
  2903. msgctxt "@title:column"
  2904. msgid "Default"
  2905. msgstr "Default"
  2906. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123
  2907. msgctxt "@title:column"
  2908. msgid "Customized"
  2909. msgstr "Personalizado"
  2910. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:156
  2911. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708
  2912. msgctxt "@option:discardOrKeep"
  2913. msgid "Always ask me this"
  2914. msgstr "Sempre perguntar"
  2915. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157
  2916. msgctxt "@option:discardOrKeep"
  2917. msgid "Discard and never ask again"
  2918. msgstr "Descartar e não perguntar novamente"
  2919. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
  2920. msgctxt "@option:discardOrKeep"
  2921. msgid "Keep and never ask again"
  2922. msgstr "Manter e não perguntar novamente"
  2923. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:195
  2924. msgctxt "@action:button"
  2925. msgid "Discard"
  2926. msgstr "Descartar"
  2927. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:208
  2928. msgctxt "@action:button"
  2929. msgid "Keep"
  2930. msgstr "Manter"
  2931. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:221
  2932. msgctxt "@action:button"
  2933. msgid "Create New Profile"
  2934. msgstr "Criar Novo Perfil"
  2935. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  2936. msgctxt "@text:window"
  2937. 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?"
  2938. msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?"
  2939. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:99
  2940. msgctxt "@action:button"
  2941. msgid "Import all as models"
  2942. msgstr "Importar todos como modelos"
  2943. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  2944. msgctxt "@title:window"
  2945. msgid "Save Project"
  2946. msgstr "Salvar Projeto"
  2947. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  2948. msgctxt "@action:label"
  2949. msgid "Extruder %1"
  2950. msgstr "Extrusor %1"
  2951. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  2952. msgctxt "@action:label"
  2953. msgid "%1 & material"
  2954. msgstr "%1 & material"
  2955. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  2956. msgctxt "@action:label"
  2957. msgid "Material"
  2958. msgstr "Material"
  2959. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:285
  2960. msgctxt "@action:label"
  2961. msgid "Don't show project summary on save again"
  2962. msgstr "Não exibir resumo do projeto ao salvar novamente"
  2963. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:304
  2964. msgctxt "@action:button"
  2965. msgid "Save"
  2966. msgstr "Salvar"
  2967. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
  2968. msgctxt "@label %1 is filled in with the name of an extruder"
  2969. msgid "Print Selected Model with %1"
  2970. msgid_plural "Print Selected Models with %1"
  2971. msgstr[0] "Imprimir Modelo Selecionado com %1"
  2972. msgstr[1] "Imprimir Modelos Selecionados com %1"
  2973. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
  2974. msgctxt "@text Print job name"
  2975. msgid "Untitled"
  2976. msgstr "Sem Título"
  2977. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  2978. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
  2979. msgctxt "@title:menu menubar:toplevel"
  2980. msgid "&File"
  2981. msgstr "Arquivo (&F)"
  2982. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  2983. msgctxt "@title:menu menubar:toplevel"
  2984. msgid "&Edit"
  2985. msgstr "&Editar"
  2986. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:48
  2987. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
  2988. msgctxt "@title:menu menubar:toplevel"
  2989. msgid "&View"
  2990. msgstr "&Ver"
  2991. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:50
  2992. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2993. msgctxt "@title:menu menubar:toplevel"
  2994. msgid "&Settings"
  2995. msgstr "Aju&stes"
  2996. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:55
  2997. msgctxt "@title:menu menubar:toplevel"
  2998. msgid "E&xtensions"
  2999. msgstr "E&xtensões"
  3000. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:93
  3001. msgctxt "@title:menu menubar:toplevel"
  3002. msgid "P&references"
  3003. msgstr "P&referências"
  3004. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:101
  3005. msgctxt "@title:menu menubar:toplevel"
  3006. msgid "&Help"
  3007. msgstr "Ajuda (&H)"
  3008. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:147
  3009. msgctxt "@title:window"
  3010. msgid "New project"
  3011. msgstr "Novo projeto"
  3012. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
  3013. msgctxt "@info:question"
  3014. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  3015. msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos."
  3016. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  3017. msgctxt "@action:button"
  3018. msgid "Marketplace"
  3019. msgstr "Mercado"
  3020. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3021. msgctxt "@header"
  3022. msgid "Configurations"
  3023. msgstr "Configurações"
  3024. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3025. msgctxt "@label"
  3026. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3027. msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto."
  3028. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3029. msgctxt "@label"
  3030. msgid "Marketplace"
  3031. msgstr "Mercado"
  3032. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  3033. msgctxt "@label"
  3034. msgid "Loading available configurations from the printer..."
  3035. msgstr "Carregando configurações disponíveis da impressora..."
  3036. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  3037. msgctxt "@label"
  3038. msgid "The configurations are not available because the printer is disconnected."
  3039. msgstr "As configurações não estão disponíveis porque a impressora está desconectada."
  3040. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
  3041. msgctxt "@label"
  3042. msgid "Select configuration"
  3043. msgstr "Selecione configuração"
  3044. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
  3045. msgctxt "@label"
  3046. msgid "Configurations"
  3047. msgstr "Configurações"
  3048. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  3049. msgctxt "@header"
  3050. msgid "Custom"
  3051. msgstr "Personalizado"
  3052. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  3053. msgctxt "@label"
  3054. msgid "Printer"
  3055. msgstr "Impressora"
  3056. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  3057. msgctxt "@label"
  3058. msgid "Enabled"
  3059. msgstr "Habilitado"
  3060. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:251
  3061. msgctxt "@label"
  3062. msgid "Material"
  3063. msgstr "Material"
  3064. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:378
  3065. msgctxt "@label"
  3066. msgid "Use glue for better adhesion with this material combination."
  3067. msgstr "Use cola para melhor aderência com essa combinação de materiais."
  3068. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
  3069. msgctxt "@label"
  3070. msgid "Print Selected Model With:"
  3071. msgid_plural "Print Selected Models With:"
  3072. msgstr[0] "Imprimir Modelo Selecionado Com:"
  3073. msgstr[1] "Imprimir Modelos Selecionados Com:"
  3074. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
  3075. msgctxt "@title:window"
  3076. msgid "Multiply Selected Model"
  3077. msgid_plural "Multiply Selected Models"
  3078. msgstr[0] "Multiplicar Modelo Selecionado"
  3079. msgstr[1] "Multiplicar Modelos Selecionados"
  3080. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
  3081. msgctxt "@label"
  3082. msgid "Number of Copies"
  3083. msgstr "Número de Cópias"
  3084. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:33
  3085. msgctxt "@title:menu menubar:file"
  3086. msgid "&Save..."
  3087. msgstr "&Salvar..."
  3088. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:54
  3089. msgctxt "@title:menu menubar:file"
  3090. msgid "&Export..."
  3091. msgstr "&Exportar..."
  3092. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:65
  3093. msgctxt "@action:inmenu menubar:file"
  3094. msgid "Export Selection..."
  3095. msgstr "Exportar Seleção..."
  3096. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3097. msgctxt "@label:category menu label"
  3098. msgid "Material"
  3099. msgstr "Material"
  3100. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
  3101. msgctxt "@label:category menu label"
  3102. msgid "Favorites"
  3103. msgstr "Favoritos"
  3104. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
  3105. msgctxt "@label:category menu label"
  3106. msgid "Generic"
  3107. msgstr "Genérico"
  3108. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3109. msgctxt "@label:category menu label"
  3110. msgid "Network enabled printers"
  3111. msgstr "Impressoras habilitadas pela rede"
  3112. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3113. msgctxt "@label:category menu label"
  3114. msgid "Local printers"
  3115. msgstr "Impressoras locais"
  3116. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3117. msgctxt "@title:menu menubar:file"
  3118. msgid "Open &Recent"
  3119. msgstr "Abrir &Recente"
  3120. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
  3121. msgctxt "@title:menu menubar:settings"
  3122. msgid "&Printer"
  3123. msgstr "Im&pressora"
  3124. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:27
  3125. msgctxt "@title:menu"
  3126. msgid "&Material"
  3127. msgstr "&Material"
  3128. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:36
  3129. msgctxt "@action:inmenu"
  3130. msgid "Set as Active Extruder"
  3131. msgstr "Definir Como Extrusor Ativo"
  3132. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:42
  3133. msgctxt "@action:inmenu"
  3134. msgid "Enable Extruder"
  3135. msgstr "Habilitar Extrusor"
  3136. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49
  3137. msgctxt "@action:inmenu"
  3138. msgid "Disable Extruder"
  3139. msgstr "Desabilitar Extrusor"
  3140. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  3141. msgctxt "@action:inmenu"
  3142. msgid "Visible Settings"
  3143. msgstr "Ajustes Visíveis"
  3144. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  3145. msgctxt "@action:inmenu"
  3146. msgid "Collapse All Categories"
  3147. msgstr "Encolher Todas As Categorias"
  3148. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  3149. msgctxt "@action:inmenu"
  3150. msgid "Manage Setting Visibility..."
  3151. msgstr "Gerenciar Visibilidade dos Ajustes..."
  3152. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
  3153. msgctxt "@action:inmenu menubar:view"
  3154. msgid "&Camera position"
  3155. msgstr "Posição da &câmera"
  3156. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:44
  3157. msgctxt "@action:inmenu menubar:view"
  3158. msgid "Camera view"
  3159. msgstr "Visão de câmera"
  3160. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:47
  3161. msgctxt "@action:inmenu menubar:view"
  3162. msgid "Perspective"
  3163. msgstr "Perspectiva"
  3164. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59
  3165. msgctxt "@action:inmenu menubar:view"
  3166. msgid "Orthographic"
  3167. msgstr "Ortográfico"
  3168. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:80
  3169. msgctxt "@action:inmenu menubar:view"
  3170. msgid "&Build plate"
  3171. msgstr "Plataforma de Impressão (&B)"
  3172. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
  3173. msgctxt "@label:MonitorStatus"
  3174. msgid "Not connected to a printer"
  3175. msgstr "Não conectado a nenhuma impressora"
  3176. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
  3177. msgctxt "@label:MonitorStatus"
  3178. msgid "Printer does not accept commands"
  3179. msgstr "A impressora não aceita comandos"
  3180. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
  3181. msgctxt "@label:MonitorStatus"
  3182. msgid "In maintenance. Please check the printer"
  3183. msgstr "Em manutenção. Por favor verifique a impressora"
  3184. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
  3185. msgctxt "@label:MonitorStatus"
  3186. msgid "Lost connection with the printer"
  3187. msgstr "A conexão à impressora foi perdida"
  3188. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
  3189. msgctxt "@label:MonitorStatus"
  3190. msgid "Printing..."
  3191. msgstr "Imprimindo..."
  3192. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
  3193. msgctxt "@label:MonitorStatus"
  3194. msgid "Paused"
  3195. msgstr "Pausado"
  3196. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
  3197. msgctxt "@label:MonitorStatus"
  3198. msgid "Preparing..."
  3199. msgstr "Preparando..."
  3200. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
  3201. msgctxt "@label:MonitorStatus"
  3202. msgid "Please remove the print"
  3203. msgstr "Por favor remova a impressão"
  3204. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:325
  3205. msgctxt "@label"
  3206. msgid "Abort Print"
  3207. msgstr "Abortar Impressão"
  3208. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:337
  3209. msgctxt "@label"
  3210. msgid "Are you sure you want to abort the print?"
  3211. msgstr "Tem certeza que deseja abortar a impressão?"
  3212. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
  3213. msgctxt "@label"
  3214. msgid "Object list"
  3215. msgstr "Lista de objetos"
  3216. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:132
  3217. msgctxt "@label"
  3218. msgid "Interface"
  3219. msgstr "Interface"
  3220. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:211
  3221. msgctxt "@label"
  3222. msgid "Currency:"
  3223. msgstr "Moeda:"
  3224. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:224
  3225. msgctxt "@label"
  3226. msgid "Theme:"
  3227. msgstr "Tema:"
  3228. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:280
  3229. msgctxt "@label"
  3230. msgid "You will need to restart the application for these changes to have effect."
  3231. msgstr "Você precisará reiniciar a aplicação para que essas mudanças tenham efeito."
  3232. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:297
  3233. msgctxt "@info:tooltip"
  3234. msgid "Slice automatically when changing settings."
  3235. msgstr "Fatiar automaticamente quando mudar ajustes."
  3236. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:305
  3237. msgctxt "@option:check"
  3238. msgid "Slice automatically"
  3239. msgstr "Fatiar automaticamente"
  3240. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:319
  3241. msgctxt "@label"
  3242. msgid "Viewport behavior"
  3243. msgstr "Comportamento da área de visualização"
  3244. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:327
  3245. msgctxt "@info:tooltip"
  3246. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3247. msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente."
  3248. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:336
  3249. msgctxt "@option:check"
  3250. msgid "Display overhang"
  3251. msgstr "Exibir seções pendentes"
  3252. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:344
  3253. msgctxt "@info:tooltip"
  3254. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3255. msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado"
  3256. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:349
  3257. msgctxt "@action:button"
  3258. msgid "Center camera when item is selected"
  3259. msgstr "Centralizar câmera quanto o item é selecionado"
  3260. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:359
  3261. msgctxt "@info:tooltip"
  3262. msgid "Should the default zoom behavior of cura be inverted?"
  3263. msgstr "O comportamento default de ampliação deve ser invertido?"
  3264. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:364
  3265. msgctxt "@action:button"
  3266. msgid "Invert the direction of camera zoom."
  3267. msgstr "Inverter a direção da ampliação de câmera."
  3268. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:380
  3269. msgctxt "@info:tooltip"
  3270. msgid "Should zooming move in the direction of the mouse?"
  3271. msgstr "A ampliação (zoom) deve se mover na direção do mouse?"
  3272. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:380
  3273. msgctxt "@info:tooltip"
  3274. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3275. msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica."
  3276. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:385
  3277. msgctxt "@action:button"
  3278. msgid "Zoom toward mouse direction"
  3279. msgstr "Ampliar na direção do mouse"
  3280. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411
  3281. msgctxt "@info:tooltip"
  3282. msgid "Should models on the platform be moved so that they no longer intersect?"
  3283. msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?"
  3284. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416
  3285. msgctxt "@option:check"
  3286. msgid "Ensure models are kept apart"
  3287. msgstr "Assegurar que os modelos sejam mantidos separados"
  3288. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:425
  3289. msgctxt "@info:tooltip"
  3290. msgid "Should models on the platform be moved down to touch the build plate?"
  3291. msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?"
  3292. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:430
  3293. msgctxt "@option:check"
  3294. msgid "Automatically drop models to the build plate"
  3295. msgstr "Automaticamente fazer os modelos caírem na mesa de impressão"
  3296. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:442
  3297. msgctxt "@info:tooltip"
  3298. msgid "Show caution message in g-code reader."
  3299. msgstr "Exibir mensagem de alerta no leitor de G-Code."
  3300. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:451
  3301. msgctxt "@option:check"
  3302. msgid "Caution message in g-code reader"
  3303. msgstr "Mensagem de alera no leitor de G-Code"
  3304. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:459
  3305. msgctxt "@info:tooltip"
  3306. msgid "Should layer be forced into compatibility mode?"
  3307. msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?"
  3308. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:464
  3309. msgctxt "@option:check"
  3310. msgid "Force layer view compatibility mode (restart required)"
  3311. msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)"
  3312. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:474
  3313. msgctxt "@info:tooltip"
  3314. msgid "Should Cura open at the location it was closed?"
  3315. msgstr "O Cura deve abrir no lugar onde foi fechado?"
  3316. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:479
  3317. msgctxt "@option:check"
  3318. msgid "Restore window position on start"
  3319. msgstr "Restaurar posição da janela no início"
  3320. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:489
  3321. msgctxt "@info:tooltip"
  3322. msgid "What type of camera rendering should be used?"
  3323. msgstr "Que tipo de renderização de câmera deve ser usada?"
  3324. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:496
  3325. msgctxt "@window:text"
  3326. msgid "Camera rendering:"
  3327. msgstr "Renderização de câmera:"
  3328. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:507
  3329. msgid "Perspective"
  3330. msgstr "Perspectiva"
  3331. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:508
  3332. msgid "Orthographic"
  3333. msgstr "Ortográfica"
  3334. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:539
  3335. msgctxt "@label"
  3336. msgid "Opening and saving files"
  3337. msgstr "Abrindo e salvando arquivos"
  3338. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:546
  3339. msgctxt "@info:tooltip"
  3340. msgid "Should models be scaled to the build volume if they are too large?"
  3341. msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?"
  3342. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:551
  3343. msgctxt "@option:check"
  3344. msgid "Scale large models"
  3345. msgstr "Redimensionar modelos grandes"
  3346. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:561
  3347. msgctxt "@info:tooltip"
  3348. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3349. msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?"
  3350. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:566
  3351. msgctxt "@option:check"
  3352. msgid "Scale extremely small models"
  3353. msgstr "Redimensionar modelos minúsculos"
  3354. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:576
  3355. msgctxt "@info:tooltip"
  3356. msgid "Should models be selected after they are loaded?"
  3357. msgstr "Os modelos devem ser selecionados após serem carregados?"
  3358. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:581
  3359. msgctxt "@option:check"
  3360. msgid "Select models when loaded"
  3361. msgstr "Selecionar modelos ao carregar"
  3362. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:591
  3363. msgctxt "@info:tooltip"
  3364. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3365. msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?"
  3366. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596
  3367. msgctxt "@option:check"
  3368. msgid "Add machine prefix to job name"
  3369. msgstr "Adicionar prefixo de máquina ao nome do trabalho"
  3370. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:606
  3371. msgctxt "@info:tooltip"
  3372. msgid "Should a summary be shown when saving a project file?"
  3373. msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?"
  3374. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:610
  3375. msgctxt "@option:check"
  3376. msgid "Show summary dialog when saving project"
  3377. msgstr "Exibir diálogo de resumo ao salvar projeto"
  3378. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
  3379. msgctxt "@info:tooltip"
  3380. msgid "Default behavior when opening a project file"
  3381. msgstr "Comportamento default ao abrir um arquivo de projeto"
  3382. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:628
  3383. msgctxt "@window:text"
  3384. msgid "Default behavior when opening a project file: "
  3385. msgstr "Comportamento default ao abrir um arquivo de projeto: "
  3386. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:642
  3387. msgctxt "@option:openProject"
  3388. msgid "Always ask me this"
  3389. msgstr "Sempre me perguntar"
  3390. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:643
  3391. msgctxt "@option:openProject"
  3392. msgid "Always open as a project"
  3393. msgstr "Sempre abrir como projeto"
  3394. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644
  3395. msgctxt "@option:openProject"
  3396. msgid "Always import models"
  3397. msgstr "Sempre importar modelos"
  3398. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680
  3399. msgctxt "@info:tooltip"
  3400. 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."
  3401. msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo."
  3402. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:689
  3403. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  3404. msgctxt "@label"
  3405. msgid "Profiles"
  3406. msgstr "Perfis"
  3407. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694
  3408. msgctxt "@window:text"
  3409. msgid "Default behavior for changed setting values when switching to a different profile: "
  3410. msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: "
  3411. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709
  3412. msgctxt "@option:discardOrKeep"
  3413. msgid "Always discard changed settings"
  3414. msgstr "Sempre descartar alterações da configuração"
  3415. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:710
  3416. msgctxt "@option:discardOrKeep"
  3417. msgid "Always transfer changed settings to new profile"
  3418. msgstr "Sempre transferir as alterações para o novo perfil"
  3419. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:744
  3420. msgctxt "@label"
  3421. msgid "Privacy"
  3422. msgstr "Privacidade"
  3423. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:751
  3424. msgctxt "@info:tooltip"
  3425. msgid "Should Cura check for updates when the program is started?"
  3426. msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?"
  3427. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:756
  3428. msgctxt "@option:check"
  3429. msgid "Check for updates on start"
  3430. msgstr "Verificar atualizações na inicialização"
  3431. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:766
  3432. msgctxt "@info:tooltip"
  3433. 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."
  3434. msgstr "Dados anônimos sobre sua impressão podem ser enviados para a Ultimaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados."
  3435. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771
  3436. msgctxt "@option:check"
  3437. msgid "Send (anonymous) print information"
  3438. msgstr "Enviar informação (anônima) de impressão"
  3439. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780
  3440. msgctxt "@action:button"
  3441. msgid "More information"
  3442. msgstr "Mais informações"
  3443. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
  3444. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  3445. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3446. msgctxt "@action:button"
  3447. msgid "Activate"
  3448. msgstr "Ativar"
  3449. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
  3450. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3451. msgctxt "@action:button"
  3452. msgid "Rename"
  3453. msgstr "Renomear"
  3454. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3455. msgctxt "@action:button"
  3456. msgid "Create"
  3457. msgstr "Criar"
  3458. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3459. msgctxt "@action:button"
  3460. msgid "Duplicate"
  3461. msgstr "Duplicar"
  3462. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  3463. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3464. msgctxt "@action:button"
  3465. msgid "Import"
  3466. msgstr "Importar"
  3467. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  3468. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3469. msgctxt "@action:button"
  3470. msgid "Export"
  3471. msgstr "Exportar"
  3472. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
  3473. msgctxt "@action:label"
  3474. msgid "Printer"
  3475. msgstr "Impressora"
  3476. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298
  3477. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:274
  3478. msgctxt "@title:window"
  3479. msgid "Confirm Remove"
  3480. msgstr "Confirmar Remoção"
  3481. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301
  3482. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:275
  3483. msgctxt "@label (%1 is object name)"
  3484. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3485. msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!"
  3486. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
  3487. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
  3488. msgctxt "@title:window"
  3489. msgid "Import Material"
  3490. msgstr "Importar Material"
  3491. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
  3492. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3493. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3494. msgstr "Não foi possível importar material <filename>%1</filename>: <message>%2</message>"
  3495. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
  3496. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3497. msgid "Successfully imported material <filename>%1</filename>"
  3498. msgstr "Material <filename>%1</filename> importado com sucesso"
  3499. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346
  3500. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
  3501. msgctxt "@title:window"
  3502. msgid "Export Material"
  3503. msgstr "Exportar Material"
  3504. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
  3505. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3506. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3507. msgstr "Falha em exportar material para <filename>%1</filename>: <message>%2</message>"
  3508. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
  3509. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3510. msgid "Successfully exported material to <filename>%1</filename>"
  3511. msgstr "Material exportado para <filename>%1</filename> com sucesso"
  3512. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3513. msgctxt "@title"
  3514. msgid "Information"
  3515. msgstr "Informação"
  3516. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3517. msgctxt "@title:window"
  3518. msgid "Confirm Diameter Change"
  3519. msgstr "Confirmar Mudança de Diâmetro"
  3520. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3521. msgctxt "@label (%1 is a number)"
  3522. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3523. msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?"
  3524. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3525. msgctxt "@label"
  3526. msgid "Display Name"
  3527. msgstr "Exibir Nome"
  3528. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  3529. msgctxt "@label"
  3530. msgid "Brand"
  3531. msgstr "Marca"
  3532. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3533. msgctxt "@label"
  3534. msgid "Material Type"
  3535. msgstr "Tipo de Material"
  3536. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3537. msgctxt "@label"
  3538. msgid "Color"
  3539. msgstr "Cor"
  3540. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3541. msgctxt "@label"
  3542. msgid "Properties"
  3543. msgstr "Propriedades"
  3544. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3545. msgctxt "@label"
  3546. msgid "Density"
  3547. msgstr "Densidade"
  3548. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3549. msgctxt "@label"
  3550. msgid "Diameter"
  3551. msgstr "Diâmetro"
  3552. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3553. msgctxt "@label"
  3554. msgid "Filament Cost"
  3555. msgstr "Custo do Filamento"
  3556. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3557. msgctxt "@label"
  3558. msgid "Filament weight"
  3559. msgstr "Peso do Filamento"
  3560. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3561. msgctxt "@label"
  3562. msgid "Filament length"
  3563. msgstr "Comprimento do Filamento"
  3564. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3565. msgctxt "@label"
  3566. msgid "Cost per Meter"
  3567. msgstr "Custo por Metro"
  3568. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3569. msgctxt "@label"
  3570. msgid "This material is linked to %1 and shares some of its properties."
  3571. msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades."
  3572. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  3573. msgctxt "@label"
  3574. msgid "Unlink Material"
  3575. msgstr "Desvincular Material"
  3576. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  3577. msgctxt "@label"
  3578. msgid "Description"
  3579. msgstr "Descrição"
  3580. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  3581. msgctxt "@label"
  3582. msgid "Adhesion Information"
  3583. msgstr "Informação sobre Aderência"
  3584. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  3585. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3586. msgctxt "@label"
  3587. msgid "Print settings"
  3588. msgstr "Ajustes de impressão"
  3589. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3590. msgctxt "@label"
  3591. msgid "Create"
  3592. msgstr "Criar"
  3593. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3594. msgctxt "@label"
  3595. msgid "Duplicate"
  3596. msgstr "Duplicar"
  3597. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3598. msgctxt "@title:window"
  3599. msgid "Create Profile"
  3600. msgstr "Criar Perfil"
  3601. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3602. msgctxt "@info"
  3603. msgid "Please provide a name for this profile."
  3604. msgstr "Por favor dê um nome a este perfil."
  3605. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:260
  3606. msgctxt "@title:window"
  3607. msgid "Duplicate Profile"
  3608. msgstr "Duplicar Perfil"
  3609. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:291
  3610. msgctxt "@title:window"
  3611. msgid "Rename Profile"
  3612. msgstr "Renomear Perfil"
  3613. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:304
  3614. msgctxt "@title:window"
  3615. msgid "Import Profile"
  3616. msgstr "Importar Perfil"
  3617. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:333
  3618. msgctxt "@title:window"
  3619. msgid "Export Profile"
  3620. msgstr "Exportar Perfil"
  3621. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:396
  3622. msgctxt "@label %1 is printer name"
  3623. msgid "Printer: %1"
  3624. msgstr "Impressora: %1"
  3625. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:554
  3626. msgctxt "@action:button"
  3627. msgid "Update profile with current settings/overrides"
  3628. msgstr "Atualizar perfil com ajustes/sobreposições atuais"
  3629. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:561
  3630. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:258
  3631. msgctxt "@action:button"
  3632. msgid "Discard current changes"
  3633. msgstr "Descartar ajustes atuais"
  3634. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:580
  3635. msgctxt "@action:label"
  3636. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3637. msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo."
  3638. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:588
  3639. msgctxt "@action:label"
  3640. msgid "Your current settings match the selected profile."
  3641. msgstr "Seus ajustes atuais coincidem com o perfil selecionado."
  3642. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:606
  3643. msgctxt "@title:tab"
  3644. msgid "Global Settings"
  3645. msgstr "Ajustes globais"
  3646. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
  3647. msgctxt "@info:status"
  3648. msgid "Calculated"
  3649. msgstr "Calculado"
  3650. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
  3651. msgctxt "@title:column"
  3652. msgid "Setting"
  3653. msgstr "Ajustes"
  3654. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
  3655. msgctxt "@title:column"
  3656. msgid "Profile"
  3657. msgstr "Perfil"
  3658. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
  3659. msgctxt "@title:column"
  3660. msgid "Current"
  3661. msgstr "Atual"
  3662. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
  3663. msgctxt "@title:column"
  3664. msgid "Unit"
  3665. msgstr "Unidade"
  3666. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  3667. msgctxt "@title:tab"
  3668. msgid "Setting Visibility"
  3669. msgstr "Visibilidade dos Ajustes"
  3670. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  3671. msgctxt "@label:textbox"
  3672. msgid "Check all"
  3673. msgstr "Verificar tudo"
  3674. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  3675. msgctxt "@label"
  3676. msgid "Extruder"
  3677. msgstr "Extrusor"
  3678. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  3679. msgctxt "@tooltip"
  3680. 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."
  3681. msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado."
  3682. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  3683. msgctxt "@tooltip"
  3684. msgid "The current temperature of this hotend."
  3685. msgstr "A temperatura atual deste hotend."
  3686. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  3687. msgctxt "@tooltip of temperature input"
  3688. msgid "The temperature to pre-heat the hotend to."
  3689. msgstr "A temperatura com a qual pré-aquecer o hotend."
  3690. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  3691. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  3692. msgctxt "@button Cancel pre-heating"
  3693. msgid "Cancel"
  3694. msgstr "Cancelar"
  3695. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  3696. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  3697. msgctxt "@button"
  3698. msgid "Pre-heat"
  3699. msgstr "Pré-aquecer"
  3700. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  3701. msgctxt "@tooltip of pre-heat"
  3702. 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."
  3703. msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir."
  3704. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  3705. msgctxt "@tooltip"
  3706. msgid "The colour of the material in this extruder."
  3707. msgstr "A cor do material neste extrusor."
  3708. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  3709. msgctxt "@tooltip"
  3710. msgid "The material in this extruder."
  3711. msgstr "O material neste extrusor."
  3712. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  3713. msgctxt "@tooltip"
  3714. msgid "The nozzle inserted in this extruder."
  3715. msgstr "O bico inserido neste extrusor."
  3716. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  3717. msgctxt "@label"
  3718. msgid "Build plate"
  3719. msgstr "Mesa de Impressão"
  3720. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  3721. msgctxt "@tooltip"
  3722. 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."
  3723. msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado."
  3724. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  3725. msgctxt "@tooltip"
  3726. msgid "The current temperature of the heated bed."
  3727. msgstr "A temperatura atual da mesa aquecida."
  3728. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  3729. msgctxt "@tooltip of temperature input"
  3730. msgid "The temperature to pre-heat the bed to."
  3731. msgstr "A temperatura em que pré-aquecer a mesa."
  3732. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  3733. msgctxt "@tooltip of pre-heat"
  3734. 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."
  3735. msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir."
  3736. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  3737. msgctxt "@label"
  3738. msgid "Printer control"
  3739. msgstr "Controle da Impressora"
  3740. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  3741. msgctxt "@label"
  3742. msgid "Jog Position"
  3743. msgstr "Posição de Trote"
  3744. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  3745. msgctxt "@label"
  3746. msgid "X/Y"
  3747. msgstr "X/Y"
  3748. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  3749. msgctxt "@label"
  3750. msgid "Z"
  3751. msgstr "Z"
  3752. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  3753. msgctxt "@label"
  3754. msgid "Jog Distance"
  3755. msgstr "Distância de Trote"
  3756. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  3757. msgctxt "@label"
  3758. msgid "Send G-code"
  3759. msgstr "Enviar G-Code"
  3760. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  3761. msgctxt "@tooltip of G-code command input"
  3762. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  3763. msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando."
  3764. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  3765. msgctxt "@info:status"
  3766. msgid "The printer is not connected."
  3767. msgstr "A impressora não está conectada."
  3768. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:166
  3769. msgctxt "@button"
  3770. msgid "Add printer"
  3771. msgstr "Adicionar impressora"
  3772. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:182
  3773. msgctxt "@button"
  3774. msgid "Manage printers"
  3775. msgstr "Gerenciar impressoras"
  3776. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3777. msgctxt "@label"
  3778. msgid "Connected printers"
  3779. msgstr "Impressoras conectadas"
  3780. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3781. msgctxt "@label"
  3782. msgid "Preset printers"
  3783. msgstr "Impressoras pré-ajustadas"
  3784. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
  3785. msgctxt "@label"
  3786. msgid "Active print"
  3787. msgstr "Impressão ativa"
  3788. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
  3789. msgctxt "@label"
  3790. msgid "Job Name"
  3791. msgstr "Nome do Trabalho"
  3792. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
  3793. msgctxt "@label"
  3794. msgid "Printing Time"
  3795. msgstr "Tempo de Impressão"
  3796. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
  3797. msgctxt "@label"
  3798. msgid "Estimated time left"
  3799. msgstr "Tempo restante estimado"
  3800. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  3801. msgctxt "@label"
  3802. msgid "Profile"
  3803. msgstr "Perfil"
  3804. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:172
  3805. msgctxt "@tooltip"
  3806. msgid ""
  3807. "Some setting/override values are different from the values stored in the profile.\n"
  3808. "\n"
  3809. "Click to open the profile manager."
  3810. msgstr ""
  3811. "Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n"
  3812. "\n"
  3813. "Clique para abrir o gerenciador de perfis."
  3814. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:160
  3815. msgctxt "@label:header"
  3816. msgid "Custom profiles"
  3817. msgstr "Perfis personalizados"
  3818. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  3819. msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  3820. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  3821. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  3822. msgstr[0] "Não há perfil %1 para a configuração no extrusor %2. O objetivo default será usado no lugar dele"
  3823. msgstr[1] "Não há perfis %1 para a configurações nos extrusores %2. O objetivo default será usado no lugar deles"
  3824. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  3825. msgctxt "@label shown when we load a Gcode file"
  3826. msgid "Print setup disabled. G-code file can not be modified."
  3827. msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado."
  3828. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  3829. msgctxt "@button"
  3830. msgid "Recommended"
  3831. msgstr "Recomendado"
  3832. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  3833. msgctxt "@button"
  3834. msgid "Custom"
  3835. msgstr "Personalizado"
  3836. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  3837. msgctxt "@label:Should be short"
  3838. msgid "On"
  3839. msgstr "On"
  3840. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  3841. msgctxt "@label:Should be short"
  3842. msgid "Off"
  3843. msgstr "Off"
  3844. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
  3845. msgctxt "@label"
  3846. msgid "Experimental"
  3847. msgstr "Experimental"
  3848. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  3849. msgctxt "@label"
  3850. msgid "Adhesion"
  3851. msgstr "Aderência"
  3852. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
  3853. msgctxt "@label"
  3854. 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."
  3855. msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado."
  3856. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  3857. msgctxt "@label"
  3858. msgid "Gradual infill"
  3859. msgstr "Preenchimento gradual"
  3860. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  3861. msgctxt "@label"
  3862. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  3863. msgstr "Preenchimento gradual aumentará gradualmente a quantidade de preenchimento em direção ao topo."
  3864. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
  3865. msgctxt "@tooltip"
  3866. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  3867. msgstr "Você modificou alguns ajustes de perfil. Se você quiser alterá-los, use o modo personalizado."
  3868. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  3869. msgctxt "@label"
  3870. msgid "Support"
  3871. msgstr "Suporte"
  3872. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
  3873. msgctxt "@label"
  3874. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  3875. msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão."
  3876. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:234
  3877. msgctxt "@label"
  3878. msgid ""
  3879. "Some hidden settings use values different from their normal calculated value.\n"
  3880. "\n"
  3881. "Click to make these settings visible."
  3882. msgstr ""
  3883. "Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n"
  3884. "\n"
  3885. "Clique para tornar estes ajustes visíveis."
  3886. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
  3887. msgctxt "@label"
  3888. msgid "This setting is not used because all the settings that it influences are overridden."
  3889. msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos."
  3890. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
  3891. msgctxt "@label Header for list of settings."
  3892. msgid "Affects"
  3893. msgstr "Afeta"
  3894. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
  3895. msgctxt "@label Header for list of settings."
  3896. msgid "Affected By"
  3897. msgstr "Afetado Por"
  3898. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
  3899. msgctxt "@label"
  3900. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3901. msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos."
  3902. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
  3903. msgctxt "@label"
  3904. msgid "This setting is resolved from conflicting extruder-specific values:"
  3905. msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:"
  3906. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
  3907. msgctxt "@label"
  3908. msgid ""
  3909. "This setting has a value that is different from the profile.\n"
  3910. "\n"
  3911. "Click to restore the value of the profile."
  3912. msgstr ""
  3913. "Este ajuste tem um valor que é diferente do perfil.\n"
  3914. "\n"
  3915. "Clique para restaurar o valor do perfil."
  3916. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
  3917. msgctxt "@label"
  3918. msgid ""
  3919. "This setting is normally calculated, but it currently has an absolute value set.\n"
  3920. "\n"
  3921. "Click to restore the calculated value."
  3922. msgstr ""
  3923. "Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n"
  3924. "\n"
  3925. "Clique para restaurar o valor calculado."
  3926. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68
  3927. msgctxt "@label:textbox"
  3928. msgid "Search settings"
  3929. msgstr "Ajustes de busca"
  3930. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:463
  3931. msgctxt "@action:menu"
  3932. msgid "Copy value to all extruders"
  3933. msgstr "Copiar valor para todos os extrusores"
  3934. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:472
  3935. msgctxt "@action:menu"
  3936. msgid "Copy all changed values to all extruders"
  3937. msgstr "Copiar todos os valores alterados para todos os extrusores"
  3938. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:509
  3939. msgctxt "@action:menu"
  3940. msgid "Hide this setting"
  3941. msgstr "Ocultar este ajuste"
  3942. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:522
  3943. msgctxt "@action:menu"
  3944. msgid "Don't show this setting"
  3945. msgstr "Não exibir este ajuste"
  3946. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:526
  3947. msgctxt "@action:menu"
  3948. msgid "Keep this setting visible"
  3949. msgstr "Manter este ajuste visível"
  3950. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
  3951. msgctxt "@info:tooltip"
  3952. msgid "3D View"
  3953. msgstr "Visão 3D"
  3954. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
  3955. msgctxt "@info:tooltip"
  3956. msgid "Front View"
  3957. msgstr "Viso de Frente"
  3958. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
  3959. msgctxt "@info:tooltip"
  3960. msgid "Top View"
  3961. msgstr "Visão de Cima"
  3962. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
  3963. msgctxt "@info:tooltip"
  3964. msgid "Left View"
  3965. msgstr "Visão à Esquerda"
  3966. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
  3967. msgctxt "@info:tooltip"
  3968. msgid "Right View"
  3969. msgstr "Visão à Direita"
  3970. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
  3971. msgctxt "@label"
  3972. msgid "View type"
  3973. msgstr "Tipo de Visão"
  3974. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212
  3975. msgctxt "@label"
  3976. msgid "Printer name"
  3977. msgstr "Nome da impressora"
  3978. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
  3979. msgctxt "@text"
  3980. msgid "Please give your printer a name"
  3981. msgstr "Por favor dê um nome à sua impressora"
  3982. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  3983. msgctxt "@label"
  3984. msgid "Add a printer"
  3985. msgstr "Adicionar uma impressora"
  3986. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  3987. msgctxt "@label"
  3988. msgid "Add a networked printer"
  3989. msgstr "Adicionar uma impressora de rede"
  3990. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:81
  3991. msgctxt "@label"
  3992. msgid "Add a non-networked printer"
  3993. msgstr "Adicionar uma impressora local"
  3994. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:42
  3995. msgctxt "@label"
  3996. msgid "There is no printer found over your network."
  3997. msgstr "Não foi encontrada nenhuma impressora em sua rede."
  3998. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:180
  3999. msgctxt "@label"
  4000. msgid "Refresh"
  4001. msgstr "Atualizar"
  4002. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:191
  4003. msgctxt "@label"
  4004. msgid "Add printer by IP"
  4005. msgstr "Adicionar impressora por IP"
  4006. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:224
  4007. msgctxt "@label"
  4008. msgid "Troubleshooting"
  4009. msgstr "Resolução de problemas"
  4010. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4011. msgctxt "@label"
  4012. msgid "Add printer by IP address"
  4013. msgstr "Adicionar impressora por endereço IP"
  4014. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  4015. msgctxt "@text"
  4016. msgid "Place enter your printer's IP address."
  4017. msgstr "Por favor entre o endereço IP da sua impressora."
  4018. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  4019. msgctxt "@button"
  4020. msgid "Add"
  4021. msgstr "Adicionar"
  4022. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  4023. msgctxt "@label"
  4024. msgid "Could not connect to device."
  4025. msgstr "Não foi possível conectar ao dispositivo."
  4026. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  4027. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  4028. msgctxt "@label"
  4029. msgid "Can't connect to your Ultimaker printer?"
  4030. msgstr "Não consegue conectar à sua impressora Ultimaker?"
  4031. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  4032. msgctxt "@label"
  4033. msgid "The printer at this address has not responded yet."
  4034. msgstr "A impressora neste endereço ainda não respondeu."
  4035. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  4036. msgctxt "@label"
  4037. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  4038. msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo."
  4039. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  4040. msgctxt "@button"
  4041. msgid "Back"
  4042. msgstr "Voltar"
  4043. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  4044. msgctxt "@button"
  4045. msgid "Connect"
  4046. msgstr "Conectar"
  4047. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:36
  4048. msgctxt "@label"
  4049. msgid "Ultimaker Account"
  4050. msgstr "Conta da Ultimaker"
  4051. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:77
  4052. msgctxt "@text"
  4053. msgid "Your key to connected 3D printing"
  4054. msgstr "Sua chave para a impressão 3D conectada"
  4055. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:94
  4056. msgctxt "@text"
  4057. msgid "- Customize your experience with more print profiles and plugins"
  4058. msgstr "- Personalize sua experiência com mais perfis de impressão e complementos"
  4059. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:97
  4060. msgctxt "@text"
  4061. msgid "- Stay flexible by syncing your setup and loading it anywhere"
  4062. msgstr "- Flexibilize-se ao sincronizar sua configuração e a acessar de qualquer lugar"
  4063. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:100
  4064. msgctxt "@text"
  4065. msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  4066. msgstr "- Melhore a eficiência com um fluxo de trabalho remoto com as impressoras Ultimaker"
  4067. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:119
  4068. msgctxt "@button"
  4069. msgid "Finish"
  4070. msgstr "Finalizar"
  4071. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:128
  4072. msgctxt "@button"
  4073. msgid "Create an account"
  4074. msgstr "Criar uma conta"
  4075. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  4076. msgctxt "@label"
  4077. msgid "Help us to improve Ultimaker Cura"
  4078. msgstr "Nos ajude a melhor o Ultimaker Cura"
  4079. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  4080. msgctxt "@text"
  4081. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  4082. msgstr "O Ultimaker Cura coleta dados anônimos para melhor a qualidade de impressão e experiência do usuário, incluindo:"
  4083. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  4084. msgctxt "@text"
  4085. msgid "Machine types"
  4086. msgstr "Tipos de máquina"
  4087. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  4088. msgctxt "@text"
  4089. msgid "Material usage"
  4090. msgstr "Uso do material"
  4091. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  4092. msgctxt "@text"
  4093. msgid "Number of slices"
  4094. msgstr "Número de fatias"
  4095. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  4096. msgctxt "@text"
  4097. msgid "Print settings"
  4098. msgstr "Ajustes de impressão"
  4099. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  4100. msgctxt "@text"
  4101. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  4102. msgstr "Dados coletados pelo Ultimaker Cura não conterão nenhuma informação pessoal."
  4103. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  4104. msgctxt "@text"
  4105. msgid "More information"
  4106. msgstr "Mais informações"
  4107. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  4108. msgctxt "@label"
  4109. msgid "Empty"
  4110. msgstr "Vazio"
  4111. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  4112. msgctxt "@label"
  4113. msgid "User Agreement"
  4114. msgstr "Contrato de Usuário"
  4115. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  4116. msgctxt "@button"
  4117. msgid "Decline and close"
  4118. msgstr "Rejeitar e fechar"
  4119. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:29
  4120. msgctxt "@label"
  4121. msgid "Welcome to Ultimaker Cura"
  4122. msgstr "Bem-vindo ao Ultimaker Cura"
  4123. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:47
  4124. msgctxt "@text"
  4125. msgid ""
  4126. "Please follow these steps to set up\n"
  4127. "Ultimaker Cura. This will only take a few moments."
  4128. msgstr ""
  4129. "Por favor sigue esses passos para configurar\n"
  4130. "o Ultimaker Cura. Isto tomará apenas alguns momentos."
  4131. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:58
  4132. msgctxt "@button"
  4133. msgid "Get started"
  4134. msgstr "Começar"
  4135. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:24
  4136. msgctxt "@label"
  4137. msgid "What's new in Ultimaker Cura"
  4138. msgstr "O que há de novo no Ultimaker Cura"
  4139. #: ModelChecker/plugin.json
  4140. msgctxt "description"
  4141. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4142. msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões."
  4143. #: ModelChecker/plugin.json
  4144. msgctxt "name"
  4145. msgid "Model Checker"
  4146. msgstr "Verificador de Modelo"
  4147. #: 3MFReader/plugin.json
  4148. msgctxt "description"
  4149. msgid "Provides support for reading 3MF files."
  4150. msgstr "Provê suporte à leitura de arquivos 3MF."
  4151. #: 3MFReader/plugin.json
  4152. msgctxt "name"
  4153. msgid "3MF Reader"
  4154. msgstr "Leitor de 3MF"
  4155. #: 3MFWriter/plugin.json
  4156. msgctxt "description"
  4157. msgid "Provides support for writing 3MF files."
  4158. msgstr "Provê suporte à escrita de arquivos 3MF."
  4159. #: 3MFWriter/plugin.json
  4160. msgctxt "name"
  4161. msgid "3MF Writer"
  4162. msgstr "Gerador de 3MF"
  4163. #: AMFReader/plugin.json
  4164. msgctxt "description"
  4165. msgid "Provides support for reading AMF files."
  4166. msgstr "Provê suporta à leitura de arquivos AMF."
  4167. #: AMFReader/plugin.json
  4168. msgctxt "name"
  4169. msgid "AMF Reader"
  4170. msgstr "Leitor AMF"
  4171. #: CuraDrive/plugin.json
  4172. msgctxt "description"
  4173. msgid "Backup and restore your configuration."
  4174. msgstr "Permite backup e restauração da configuração."
  4175. #: CuraDrive/plugin.json
  4176. msgctxt "name"
  4177. msgid "Cura Backups"
  4178. msgstr "Backups Cura"
  4179. #: CuraEngineBackend/plugin.json
  4180. msgctxt "description"
  4181. msgid "Provides the link to the CuraEngine slicing backend."
  4182. msgstr "Provê a ligação ao backend de fatiamento CuraEngine."
  4183. #: CuraEngineBackend/plugin.json
  4184. msgctxt "name"
  4185. msgid "CuraEngine Backend"
  4186. msgstr "CuraEngine Backend"
  4187. #: CuraProfileReader/plugin.json
  4188. msgctxt "description"
  4189. msgid "Provides support for importing Cura profiles."
  4190. msgstr "Provê suporte à importação de perfis do Cura."
  4191. #: CuraProfileReader/plugin.json
  4192. msgctxt "name"
  4193. msgid "Cura Profile Reader"
  4194. msgstr "Leitor de Perfis do Cura"
  4195. #: CuraProfileWriter/plugin.json
  4196. msgctxt "description"
  4197. msgid "Provides support for exporting Cura profiles."
  4198. msgstr "Provê suporte à exportação de perfis do Cura."
  4199. #: CuraProfileWriter/plugin.json
  4200. msgctxt "name"
  4201. msgid "Cura Profile Writer"
  4202. msgstr "Gravador de Perfis do Cura"
  4203. #: FirmwareUpdateChecker/plugin.json
  4204. msgctxt "description"
  4205. msgid "Checks for firmware updates."
  4206. msgstr "Verifica por atualizações de firmware."
  4207. #: FirmwareUpdateChecker/plugin.json
  4208. msgctxt "name"
  4209. msgid "Firmware Update Checker"
  4210. msgstr "Verificador de Atualizações de Firmware"
  4211. #: FirmwareUpdater/plugin.json
  4212. msgctxt "description"
  4213. msgid "Provides a machine actions for updating firmware."
  4214. msgstr "Provê ações de máquina para atualização do firmware."
  4215. #: FirmwareUpdater/plugin.json
  4216. msgctxt "name"
  4217. msgid "Firmware Updater"
  4218. msgstr "Atualizador de Firmware"
  4219. #: GCodeGzReader/plugin.json
  4220. msgctxt "description"
  4221. msgid "Reads g-code from a compressed archive."
  4222. msgstr "Lê G-Code de um arquivo comprimido."
  4223. #: GCodeGzReader/plugin.json
  4224. msgctxt "name"
  4225. msgid "Compressed G-code Reader"
  4226. msgstr "Leitor de G-Code Comprimido"
  4227. #: GCodeGzWriter/plugin.json
  4228. msgctxt "description"
  4229. msgid "Writes g-code to a compressed archive."
  4230. msgstr "Escreve em formato G-Code comprimido."
  4231. #: GCodeGzWriter/plugin.json
  4232. msgctxt "name"
  4233. msgid "Compressed G-code Writer"
  4234. msgstr "Gerador de G-Code Comprimido"
  4235. #: GCodeProfileReader/plugin.json
  4236. msgctxt "description"
  4237. msgid "Provides support for importing profiles from g-code files."
  4238. msgstr "Provê suporte a importar perfis de arquivos G-Code."
  4239. #: GCodeProfileReader/plugin.json
  4240. msgctxt "name"
  4241. msgid "G-code Profile Reader"
  4242. msgstr "Leitor de Perfil de G-Code"
  4243. #: GCodeReader/plugin.json
  4244. msgctxt "description"
  4245. msgid "Allows loading and displaying G-code files."
  4246. msgstr "Permite carregar e exibir arquivos G-Code."
  4247. #: GCodeReader/plugin.json
  4248. msgctxt "name"
  4249. msgid "G-code Reader"
  4250. msgstr "Leitor de G-Code"
  4251. #: GCodeWriter/plugin.json
  4252. msgctxt "description"
  4253. msgid "Writes g-code to a file."
  4254. msgstr "Escreve em formato G-Code."
  4255. #: GCodeWriter/plugin.json
  4256. msgctxt "name"
  4257. msgid "G-code Writer"
  4258. msgstr "Gerador de G-Code"
  4259. #: ImageReader/plugin.json
  4260. msgctxt "description"
  4261. msgid "Enables ability to generate printable geometry from 2D image files."
  4262. msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D."
  4263. #: ImageReader/plugin.json
  4264. msgctxt "name"
  4265. msgid "Image Reader"
  4266. msgstr "Leitor de Imagens"
  4267. #: LegacyProfileReader/plugin.json
  4268. msgctxt "description"
  4269. msgid "Provides support for importing profiles from legacy Cura versions."
  4270. msgstr "Provê suporte a importação de perfis de versões legadas do Cura."
  4271. #: LegacyProfileReader/plugin.json
  4272. msgctxt "name"
  4273. msgid "Legacy Cura Profile Reader"
  4274. msgstr "Leitor de Perfis de Cura Legado"
  4275. #: MachineSettingsAction/plugin.json
  4276. msgctxt "description"
  4277. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4278. msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)."
  4279. #: MachineSettingsAction/plugin.json
  4280. msgctxt "name"
  4281. msgid "Machine Settings Action"
  4282. msgstr "Ação de Ajustes de Máquina"
  4283. #: MonitorStage/plugin.json
  4284. msgctxt "description"
  4285. msgid "Provides a monitor stage in Cura."
  4286. msgstr "Provê um estágio de monitor no Cura."
  4287. #: MonitorStage/plugin.json
  4288. msgctxt "name"
  4289. msgid "Monitor Stage"
  4290. msgstr "Estágio de Monitor"
  4291. #: PerObjectSettingsTool/plugin.json
  4292. msgctxt "description"
  4293. msgid "Provides the Per Model Settings."
  4294. msgstr "Provê Ajustes Por Modelo."
  4295. #: PerObjectSettingsTool/plugin.json
  4296. msgctxt "name"
  4297. msgid "Per Model Settings Tool"
  4298. msgstr "Ferramenta de Ajustes Por Modelo"
  4299. #: PostProcessingPlugin/plugin.json
  4300. msgctxt "description"
  4301. msgid "Extension that allows for user created scripts for post processing"
  4302. msgstr "Extensão que permite scripts criados por usuários para pós-processamento"
  4303. #: PostProcessingPlugin/plugin.json
  4304. msgctxt "name"
  4305. msgid "Post Processing"
  4306. msgstr "Pós-processamento"
  4307. #: PrepareStage/plugin.json
  4308. msgctxt "description"
  4309. msgid "Provides a prepare stage in Cura."
  4310. msgstr "Provê um estágio de preparação no Cura."
  4311. #: PrepareStage/plugin.json
  4312. msgctxt "name"
  4313. msgid "Prepare Stage"
  4314. msgstr "Estágio de Preparação"
  4315. #: PreviewStage/plugin.json
  4316. msgctxt "description"
  4317. msgid "Provides a preview stage in Cura."
  4318. msgstr "Provê uma etapa de pré-visualização ao Cura."
  4319. #: PreviewStage/plugin.json
  4320. msgctxt "name"
  4321. msgid "Preview Stage"
  4322. msgstr "Estágio de Pré-visualização"
  4323. #: RemovableDriveOutputDevice/plugin.json
  4324. msgctxt "description"
  4325. msgid "Provides removable drive hotplugging and writing support."
  4326. msgstr "Provê suporte a escrita e reconhecimento de drives a quente."
  4327. #: RemovableDriveOutputDevice/plugin.json
  4328. msgctxt "name"
  4329. msgid "Removable Drive Output Device Plugin"
  4330. msgstr "Complemento de Dispositivo de Escrita Removível"
  4331. #: SentryLogger/plugin.json
  4332. msgctxt "description"
  4333. msgid "Logs certain events so that they can be used by the crash reporter"
  4334. msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes"
  4335. #: SentryLogger/plugin.json
  4336. msgctxt "name"
  4337. msgid "Sentry Logger"
  4338. msgstr "Sentinela para Registro"
  4339. #: SimulationView/plugin.json
  4340. msgctxt "description"
  4341. msgid "Provides the Simulation view."
  4342. msgstr "Provê a Visão Simulada."
  4343. #: SimulationView/plugin.json
  4344. msgctxt "name"
  4345. msgid "Simulation View"
  4346. msgstr "Visão Simulada"
  4347. #: SliceInfoPlugin/plugin.json
  4348. msgctxt "description"
  4349. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4350. msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências."
  4351. #: SliceInfoPlugin/plugin.json
  4352. msgctxt "name"
  4353. msgid "Slice info"
  4354. msgstr "Informação de fatiamento"
  4355. #: SolidView/plugin.json
  4356. msgctxt "description"
  4357. msgid "Provides a normal solid mesh view."
  4358. msgstr "Provê uma visualização de malha sólida normal."
  4359. #: SolidView/plugin.json
  4360. msgctxt "name"
  4361. msgid "Solid View"
  4362. msgstr "Visão Sólida"
  4363. #: SupportEraser/plugin.json
  4364. msgctxt "description"
  4365. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4366. msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares"
  4367. #: SupportEraser/plugin.json
  4368. msgctxt "name"
  4369. msgid "Support Eraser"
  4370. msgstr "Apagador de Suporte"
  4371. #: Toolbox/plugin.json
  4372. msgctxt "description"
  4373. msgid "Find, manage and install new Cura packages."
  4374. msgstr "Buscar, gerenciar e instalar novos pacotes do Cura."
  4375. #: Toolbox/plugin.json
  4376. msgctxt "name"
  4377. msgid "Toolbox"
  4378. msgstr "Ferramentas"
  4379. #: TrimeshReader/plugin.json
  4380. msgctxt "description"
  4381. msgid "Provides support for reading model files."
  4382. msgstr "Provê suporta a ler arquivos de modelo."
  4383. #: TrimeshReader/plugin.json
  4384. msgctxt "name"
  4385. msgid "Trimesh Reader"
  4386. msgstr "Leitor Trimesh"
  4387. #: UFPReader/plugin.json
  4388. msgctxt "description"
  4389. msgid "Provides support for reading Ultimaker Format Packages."
  4390. msgstr "Provê suporte a leitura de Pacotes de Formato Ultimaker (UFP)."
  4391. #: UFPReader/plugin.json
  4392. msgctxt "name"
  4393. msgid "UFP Reader"
  4394. msgstr "Leitor UFP"
  4395. #: UFPWriter/plugin.json
  4396. msgctxt "description"
  4397. msgid "Provides support for writing Ultimaker Format Packages."
  4398. msgstr "Provê suporte para a escrita de Ultimaker Format Packages (Pacotes de Formato da Ultimaker)."
  4399. #: UFPWriter/plugin.json
  4400. msgctxt "name"
  4401. msgid "UFP Writer"
  4402. msgstr "Gerador de UFP"
  4403. #: UltimakerMachineActions/plugin.json
  4404. msgctxt "description"
  4405. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4406. msgstr "Provê ações de máquina para impressoras da Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)."
  4407. #: UltimakerMachineActions/plugin.json
  4408. msgctxt "name"
  4409. msgid "Ultimaker machine actions"
  4410. msgstr "Ações de máquina Ultimaker"
  4411. #: UM3NetworkPrinting/plugin.json
  4412. msgctxt "description"
  4413. msgid "Manages network connections to Ultimaker networked printers."
  4414. msgstr "Administra conexões de rede a impressora Ultimaker conectadas."
  4415. #: UM3NetworkPrinting/plugin.json
  4416. msgctxt "name"
  4417. msgid "Ultimaker Network Connection"
  4418. msgstr "Conexão de Rede Ultimaker"
  4419. #: USBPrinting/plugin.json
  4420. msgctxt "description"
  4421. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4422. msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware."
  4423. #: USBPrinting/plugin.json
  4424. msgctxt "name"
  4425. msgid "USB printing"
  4426. msgstr "Impressão USB"
  4427. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4428. msgctxt "description"
  4429. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4430. msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2."
  4431. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4432. msgctxt "name"
  4433. msgid "Version Upgrade 2.1 to 2.2"
  4434. msgstr "Atualização de Versão de 2.1 para 2.2"
  4435. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4436. msgctxt "description"
  4437. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4438. msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4."
  4439. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4440. msgctxt "name"
  4441. msgid "Version Upgrade 2.2 to 2.4"
  4442. msgstr "Atualização de Versão de 2.2 para 2.4"
  4443. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4444. msgctxt "description"
  4445. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4446. msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6."
  4447. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4448. msgctxt "name"
  4449. msgid "Version Upgrade 2.5 to 2.6"
  4450. msgstr "Atualização de Versão de 2.5 para 2.6"
  4451. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4452. msgctxt "description"
  4453. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4454. msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7."
  4455. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4456. msgctxt "name"
  4457. msgid "Version Upgrade 2.6 to 2.7"
  4458. msgstr "Atualização de Versão de 2.6 para 2.7"
  4459. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4460. msgctxt "description"
  4461. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4462. msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0."
  4463. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4464. msgctxt "name"
  4465. msgid "Version Upgrade 2.7 to 3.0"
  4466. msgstr "Atualização de Versão de 2.7 para 3.0"
  4467. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4468. msgctxt "description"
  4469. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4470. msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1."
  4471. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4472. msgctxt "name"
  4473. msgid "Version Upgrade 3.0 to 3.1"
  4474. msgstr "Atualização de Versão 3.0 para 3.1"
  4475. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4476. msgctxt "description"
  4477. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4478. msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3."
  4479. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4480. msgctxt "name"
  4481. msgid "Version Upgrade 3.2 to 3.3"
  4482. msgstr "Atualização de Versão de 3.2 para 3.3"
  4483. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4484. msgctxt "description"
  4485. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4486. msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4."
  4487. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4488. msgctxt "name"
  4489. msgid "Version Upgrade 3.3 to 3.4"
  4490. msgstr "Atualização de Versão de 3.3 para 3.4"
  4491. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4492. msgctxt "description"
  4493. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4494. msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5."
  4495. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4496. msgctxt "name"
  4497. msgid "Version Upgrade 3.4 to 3.5"
  4498. msgstr "Atualização de Versão de 3.4 para 3.5"
  4499. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4500. msgctxt "description"
  4501. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4502. msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0."
  4503. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4504. msgctxt "name"
  4505. msgid "Version Upgrade 3.5 to 4.0"
  4506. msgstr "Atualização de Versão de 3.5 para 4.0"
  4507. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4508. msgctxt "description"
  4509. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4510. msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1."
  4511. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4512. msgctxt "name"
  4513. msgid "Version Upgrade 4.0 to 4.1"
  4514. msgstr "Atualização de Versão 4.0 para 4.1"
  4515. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4516. msgctxt "description"
  4517. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4518. msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2."
  4519. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4520. msgctxt "name"
  4521. msgid "Version Upgrade 4.1 to 4.2"
  4522. msgstr "Atualização de Versão 4.1 para 4.2"
  4523. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4524. msgctxt "description"
  4525. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4526. msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3."
  4527. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4528. msgctxt "name"
  4529. msgid "Version Upgrade 4.2 to 4.3"
  4530. msgstr "Atualização de Versão de 4.2 para 4.3"
  4531. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4532. msgctxt "description"
  4533. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4534. msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4."
  4535. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4536. msgctxt "name"
  4537. msgid "Version Upgrade 4.3 to 4.4"
  4538. msgstr "Atualização de Versão de 4.3 para 4.4"
  4539. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4540. msgctxt "description"
  4541. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4542. msgstr "Atualiza configuração do Cura 4.4 para o Cura 4.5."
  4543. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4544. msgctxt "name"
  4545. msgid "Version Upgrade 4.4 to 4.5"
  4546. msgstr "Atualização de Versão de 4.4 para 4.5"
  4547. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4548. msgctxt "description"
  4549. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4550. msgstr "Atualiza configuração do Cura 4.5 para o Cura 4.6."
  4551. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4552. msgctxt "name"
  4553. msgid "Version Upgrade 4.5 to 4.6"
  4554. msgstr "Atualização de Versão de 4.5 para 4.6"
  4555. #: X3DReader/plugin.json
  4556. msgctxt "description"
  4557. msgid "Provides support for reading X3D files."
  4558. msgstr "Provê suporte à leitura de arquivos X3D."
  4559. #: X3DReader/plugin.json
  4560. msgctxt "name"
  4561. msgid "X3D Reader"
  4562. msgstr "Leitor de X3D"
  4563. #: XmlMaterialProfile/plugin.json
  4564. msgctxt "description"
  4565. msgid "Provides capabilities to read and write XML-based material profiles."
  4566. msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML."
  4567. #: XmlMaterialProfile/plugin.json
  4568. msgctxt "name"
  4569. msgid "Material Profiles"
  4570. msgstr "Perfis de Material"
  4571. #: XRayView/plugin.json
  4572. msgctxt "description"
  4573. msgid "Provides the X-Ray view."
  4574. msgstr "Provê a visão de Raios-X."
  4575. #: XRayView/plugin.json
  4576. msgctxt "name"
  4577. msgid "X-Ray View"
  4578. msgstr "Visão de Raios-X"
  4579. #~ msgctxt "@info:generic"
  4580. #~ msgid ""
  4581. #~ "\n"
  4582. #~ "Do you want to sync material and software packages with your account?"
  4583. #~ msgstr ""
  4584. #~ "\n"
  4585. #~ "Você quer sincronizar os pacotes de material e software com sua conta?"
  4586. #~ msgctxt "@info:generic"
  4587. #~ msgid ""
  4588. #~ "\n"
  4589. #~ "Syncing..."
  4590. #~ msgstr ""
  4591. #~ "\n"
  4592. #~ "Sincronizando..."
  4593. #~ msgctxt "@info:status"
  4594. #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  4595. #~ msgstr "Nada a fatiar porque nenhum dos modelos cabe no volume de construção ou está associado a um extrusor desabilitado. Por favor redimensione ou rotacione os modelos para caber, ou habilite um extrusor."
  4596. #~ msgctxt "@info:backup_status"
  4597. #~ msgid "There was an error listing your backups."
  4598. #~ msgstr "Houve um erro ao listar seus backups."
  4599. #~ msgctxt "@title:groupbox"
  4600. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  4601. #~ msgstr "Descrição do usuário (Nota: Os desenvolvedores podem não falar sua língua, por favor use inglês se possível)"
  4602. #~ msgctxt "@title:window"
  4603. #~ msgid "Closing Cura"
  4604. #~ msgstr "Fechando o Cura"
  4605. #~ msgctxt "@label"
  4606. #~ msgid "Are you sure you want to exit Cura?"
  4607. #~ msgstr "Você tem certeza que deseja sair do Cura?"
  4608. #~ msgctxt "@label"
  4609. #~ msgid "Language:"
  4610. #~ msgstr "Idioma:"
  4611. #~ msgctxt "@label"
  4612. #~ msgid "Ultimaker Cloud"
  4613. #~ msgstr "Ultimaker Cloud"
  4614. #~ msgctxt "@text"
  4615. #~ msgid "The next generation 3D printing workflow"
  4616. #~ msgstr "O fluxo de trabalho da nova geração de impressão 3D"
  4617. #~ msgctxt "@text"
  4618. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  4619. #~ msgstr "- Enviar trabalhos de impressão a impressoras Ultimaker fora da sua rede local"
  4620. #~ msgctxt "@text"
  4621. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  4622. #~ msgstr "- Armazenar seus ajustes do Ultimaker Cura na nuvem para uso em qualquer local"
  4623. #~ msgctxt "@text"
  4624. #~ msgid "- Get exclusive access to print profiles from leading brands"
  4625. #~ msgstr "- Conseguir acesso exclusivo a perfis de impressão das melhores marcas"
  4626. #~ msgctxt "@label"
  4627. #~ msgid "The value is resolved from per-extruder values "
  4628. #~ msgstr "O valor é resolvido de valores específicos de cada extrusor "
  4629. #~ msgctxt "@label"
  4630. #~ msgid "The next generation 3D printing workflow"
  4631. #~ msgstr "O fluxo de trabalho da próxima geração de impressão 3D"
  4632. #~ msgctxt "@text"
  4633. #~ msgid ""
  4634. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  4635. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  4636. #~ "- Get exclusive access to print profiles from leading brands"
  4637. #~ msgstr ""
  4638. #~ "- Envia trabalho de impressão às impressoras Ultimaker fora da sua rede local\n"
  4639. #~ "- Armazena seus ajustes do Ultimaker Cura na nuvem para uso de qualquer lugar\n"
  4640. #~ "- Consegue acesso exclusivo a perfis de impressão das melhores marcas"
  4641. #~ msgctxt "@title:window"
  4642. #~ msgid "About "
  4643. #~ msgstr "Sobre "
  4644. #~ msgctxt "@info:button"
  4645. #~ msgid "Quit Cura"
  4646. #~ msgstr "Sair do Cura"
  4647. #~ msgctxt "@action:checkbox"
  4648. #~ msgid "Infill only"
  4649. #~ msgstr "Preenchimento apenas"
  4650. #~ msgctxt "@info:tooltip"
  4651. #~ msgid "Change active post-processing scripts"
  4652. #~ msgstr "Troca os scripts de pós-processamento ativos"
  4653. #~ msgctxt "@label:listbox"
  4654. #~ msgid "Feedrate"
  4655. #~ msgstr "Taxa de alimentação"
  4656. #~ msgctxt "name"
  4657. #~ msgid "Machine Settings action"
  4658. #~ msgstr "Ação de Configurações de Máquina"
  4659. #~ msgctxt "@info:title"
  4660. #~ msgid "New cloud printers found"
  4661. #~ msgstr "Novas impressoras de nuvem encontradas"
  4662. #~ msgctxt "@info:message"
  4663. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  4664. #~ msgstr "Novas impressoras foram encontradas conectadas à sua conta; você as pode ver na sua lista de impressoras descobertas."
  4665. #~ msgctxt "@info:status"
  4666. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  4667. #~ msgstr "O Cura não mostra as camadas corretamente quando Impressão em Arame estiver habilitada"
  4668. #~ msgctxt "@label"
  4669. #~ msgid "Pre-sliced file {0}"
  4670. #~ msgstr "Arquivo pré-fatiado {0}"
  4671. #~ msgctxt "@label"
  4672. #~ msgid ""
  4673. #~ "This plugin contains a license.\n"
  4674. #~ "You need to accept this license to install this plugin.\n"
  4675. #~ "Do you agree with the terms below?"
  4676. #~ msgstr ""
  4677. #~ "Este plugin contém uma licença.\n"
  4678. #~ "Você precisa aceitar esta licença para instalar este complemento.\n"
  4679. #~ "Você concorda com os termos abaixo?"
  4680. #~ msgctxt "@action:button"
  4681. #~ msgid "Accept"
  4682. #~ msgstr "Aceitar"
  4683. #~ msgctxt "@action:button"
  4684. #~ msgid "Decline"
  4685. #~ msgstr "Recusar"
  4686. #~ msgctxt "@action:inmenu"
  4687. #~ msgid "Show All Settings"
  4688. #~ msgstr "Mostrar Todos Os Ajustes"
  4689. #~ msgctxt "@title:window"
  4690. #~ msgid "Ultimaker Cura"
  4691. #~ msgstr "Ultimaker Cura"
  4692. #~ msgctxt "@title:window"
  4693. #~ msgid "About Cura"
  4694. #~ msgstr "Sobre o Cura"
  4695. #~ msgctxt "@item:inmenu"
  4696. #~ msgid "Flatten active settings"
  4697. #~ msgstr "Achatar os ajustes ativos"
  4698. #~ msgctxt "@info:status"
  4699. #~ msgid "Profile has been flattened & activated."
  4700. #~ msgstr "O perfil foi achatado & ativado."
  4701. #~ msgctxt "X3g Writer Plugin Description"
  4702. #~ msgid "Writes X3g to files"
  4703. #~ msgstr "Grava em formato X3g"
  4704. #~ msgctxt "X3g Writer File Description"
  4705. #~ msgid "X3g File"
  4706. #~ msgstr "Arquivo X3g"
  4707. #~ msgctxt "X3G Writer File Description"
  4708. #~ msgid "X3G File"
  4709. #~ msgstr "Arquivo X3G"
  4710. #~ msgctxt "@item:inlistbox"
  4711. #~ msgid "Open Compressed Triangle Mesh"
  4712. #~ msgstr "Malha Comprimida de Triângulos Aberta"
  4713. #~ msgctxt "@item:inmenu"
  4714. #~ msgid "Profile Assistant"
  4715. #~ msgstr "Assistente de Perfil"
  4716. #~ msgctxt "@item:inlistbox"
  4717. #~ msgid "Profile Assistant"
  4718. #~ msgstr "Assistente de Perfil"
  4719. #~ msgctxt "@action:button"
  4720. #~ msgid "Retry"
  4721. #~ msgstr "Tentar novamente"
  4722. #~ msgctxt "@label:table_header"
  4723. #~ msgid "Print Core"
  4724. #~ msgstr "Núcleo de Impressão"
  4725. #~ msgctxt "@label"
  4726. #~ msgid "Don't support overlap with other models"
  4727. #~ msgstr "Não suportar sobreposição com outros modelos"
  4728. #~ msgctxt "@label"
  4729. #~ msgid "Modify settings for overlap with other models"
  4730. #~ msgstr "Modificar ajustes para sobrepor com outros modelos"
  4731. #~ msgctxt "@label"
  4732. #~ msgid "Modify settings for infill of other models"
  4733. #~ msgstr "Modificar ajustes para preenchimento de outros modelos"
  4734. #~ msgctxt "@action:ComboBox option"
  4735. #~ msgid "Update existing"
  4736. #~ msgstr "Atualizar existente"
  4737. #~ msgctxt "@label"
  4738. #~ msgid "Not supported"
  4739. #~ msgstr "Não suportado"
  4740. #~ msgctxt "@action:button"
  4741. #~ msgid "Previous"
  4742. #~ msgstr "Anterior"
  4743. #~ msgctxt "@label"
  4744. #~ msgid "Tip"
  4745. #~ msgstr "Dica"
  4746. #~ msgctxt "@label"
  4747. #~ msgid "Print experiment"
  4748. #~ msgstr "Imprimir experimento"
  4749. #~ msgctxt "@label"
  4750. #~ msgid "Checklist"
  4751. #~ msgstr "Lista de verificação"
  4752. #~ msgctxt "@label"
  4753. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  4754. #~ msgstr "Por favor selecione quaisquer atualizações feitas nesta Ultimaker 2."
  4755. #~ msgctxt "@label"
  4756. #~ msgid "Olsson Block"
  4757. #~ msgstr "Bloco Olsson"
  4758. #~ msgctxt "@window:text"
  4759. #~ msgid "Camera rendering: "
  4760. #~ msgstr "Renderização de câmera:"
  4761. #~ msgctxt "@info:tooltip"
  4762. #~ msgid "Use multi build plate functionality"
  4763. #~ msgstr "Usar funcionalidade de plataforma múltipla de impressão"
  4764. #~ msgctxt "@option:check"
  4765. #~ msgid "Use multi build plate functionality (restart required)"
  4766. #~ msgstr "Usar funcionalidade de plataforma múltipla de impressão (reinício requerido)"
  4767. #~ msgctxt "@label"
  4768. #~ msgid "Default profiles"
  4769. #~ msgstr "Perfis default"
  4770. #~ msgctxt "@label:textbox"
  4771. #~ msgid "search settings"
  4772. #~ msgstr "procurar nos ajustes"
  4773. #~ msgctxt "@label"
  4774. #~ msgid "Layer Height"
  4775. #~ msgstr "Altura de Camada"
  4776. #~ msgctxt "@tooltip"
  4777. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  4778. #~ msgstr "Este perfil de qualidade não está disponível para seu material e configuração de bico atuais. Por favor, altere-os para habilitar este perfil de qualidade."
  4779. #~ msgctxt "@tooltip"
  4780. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  4781. #~ msgstr "Um perfil personalizado está atualmente ativo. Para habilitar o controle deslizante de qualidade, escolha um perfil de qualidade default na aba Personalizado"
  4782. #~ msgctxt "@title:menu"
  4783. #~ msgid "&Build plate"
  4784. #~ msgstr "Plataforma de Impressão (&B)"
  4785. #~ msgctxt "@title:settings"
  4786. #~ msgid "&Profile"
  4787. #~ msgstr "&Perfil"
  4788. #~ msgctxt "@action:label"
  4789. #~ msgid "Build plate"
  4790. #~ msgstr "Plataforma de Impressão"
  4791. #~ msgctxt "description"
  4792. #~ msgid "Dump the contents of all settings to a HTML file."
  4793. #~ msgstr "Descarrega o conteúdo de todas as configurações em um arquivo HTML."
  4794. #~ msgctxt "name"
  4795. #~ msgid "God Mode"
  4796. #~ msgstr "Modo Deus"
  4797. #~ msgctxt "description"
  4798. #~ msgid "Create a flattened quality changes profile."
  4799. #~ msgstr "Cria um perfil de mudanças de qualidade achatado."
  4800. #~ msgctxt "name"
  4801. #~ msgid "Profile Flattener"
  4802. #~ msgstr "Achatador de Perfil"
  4803. #~ msgctxt "description"
  4804. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  4805. #~ msgstr "Permite que fabricantes de material criem novos perfis de material e qualidade usando uma interface drop-in."
  4806. #~ msgctxt "name"
  4807. #~ msgid "Print Profile Assistant"
  4808. #~ msgstr "Assistente de Perfil de Impressão"
  4809. #~ msgctxt "@info:status"
  4810. #~ msgid "Connected over the network."
  4811. #~ msgstr "Conectado pela rede."
  4812. #~ msgctxt "@info:status"
  4813. #~ msgid "Connected over the network. Please approve the access request on the printer."
  4814. #~ msgstr "Conectado pela rede. Por favor aprove a requisição de acesso na impressora."
  4815. #~ msgctxt "@info:status"
  4816. #~ msgid "Connected over the network. No access to control the printer."
  4817. #~ msgstr "Conectado pela rede. Sem acesso para controlar a impressora."
  4818. #~ msgctxt "@info:status"
  4819. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  4820. #~ msgstr "Acesso à impressora solicitado. Por favor aprove a requisição na impressora"
  4821. #~ msgctxt "@info:title"
  4822. #~ msgid "Authentication status"
  4823. #~ msgstr "Status da autenticação"
  4824. #~ msgctxt "@info:title"
  4825. #~ msgid "Authentication Status"
  4826. #~ msgstr "Status da Autenticação"
  4827. #~ msgctxt "@info:tooltip"
  4828. #~ msgid "Re-send the access request"
  4829. #~ msgstr "Reenvia o pedido de acesso"
  4830. #~ msgctxt "@info:status"
  4831. #~ msgid "Access to the printer accepted"
  4832. #~ msgstr "Acesso à impressora confirmado"
  4833. #~ msgctxt "@info:status"
  4834. #~ msgid "No access to print with this printer. Unable to send print job."
  4835. #~ msgstr "Sem acesso para imprimir por esta impressora. Não foi possível enviar o trabalho de impressão."
  4836. #~ msgctxt "@action:button"
  4837. #~ msgid "Request Access"
  4838. #~ msgstr "Solicitar acesso"
  4839. #~ msgctxt "@info:tooltip"
  4840. #~ msgid "Send access request to the printer"
  4841. #~ msgstr "Envia pedido de acesso à impressora"
  4842. #~ msgctxt "@label"
  4843. #~ msgid "Unable to start a new print job."
  4844. #~ msgstr "Não foi possível iniciar novo trabalho de impressão."
  4845. #~ msgctxt "@label"
  4846. #~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing."
  4847. #~ msgstr "Há um problema com a configuração de sua Ultimaker, o que torna impossível iniciar a impressão. Por favor resolva este problema antes de continuar."
  4848. #~ msgctxt "@window:title"
  4849. #~ msgid "Mismatched configuration"
  4850. #~ msgstr "Configuração conflitante"
  4851. #~ msgctxt "@label"
  4852. #~ msgid "Are you sure you wish to print with the selected configuration?"
  4853. #~ msgstr "Tem certeza que quer imprimir com a configuração selecionada?"
  4854. #~ msgctxt "@label"
  4855. #~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  4856. #~ msgstr "Há divergências entre a configuração ou calibração da impressora e do Cura. Para melhores resultados, sempre fatie com os PrintCores e materiais que estão carregados em sua impressora."
  4857. #~ msgctxt "@info:status"
  4858. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  4859. #~ msgstr "Envio de novos trabalhos (temporariamente) bloqueado, ainda enviando o trabalho de impressão anterior."
  4860. #~ msgctxt "@info:status"
  4861. #~ msgid "Sending data to printer"
  4862. #~ msgstr "Enviando dados à impressora"
  4863. #~ msgctxt "@info:title"
  4864. #~ msgid "Sending Data"
  4865. #~ msgstr "Enviando Dados"
  4866. #~ msgctxt "@info:status"
  4867. #~ msgid "No Printcore loaded in slot {slot_number}"
  4868. #~ msgstr "Printcore não carregado no slot {slot_number}"
  4869. #~ msgctxt "@info:status"
  4870. #~ msgid "No material loaded in slot {slot_number}"
  4871. #~ msgstr "Nenhum material carregado no slot {slot_number}"
  4872. #~ msgctxt "@label"
  4873. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  4874. #~ msgstr "PrintCore Diferente (Cura: {cura_printcore_name}, Impressora: {remote_printcore_name}) selecionado para o extrusor {extruder_id}"
  4875. #~ msgctxt "@label"
  4876. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  4877. #~ msgstr "Material diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  4878. #~ msgctxt "@window:title"
  4879. #~ msgid "Sync with your printer"
  4880. #~ msgstr "Sincronizar com a impressora"
  4881. #~ msgctxt "@label"
  4882. #~ msgid "Would you like to use your current printer configuration in Cura?"
  4883. #~ msgstr "Deseja usar a configuração atual de sua impressora no Cura?"
  4884. #~ msgctxt "@label"
  4885. #~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  4886. #~ msgstr "Os PrintCores e/ou materiais da sua impressora diferem dos que estão dentro de seu projeto atual. Para melhores resultados, sempre fatie para os PrintCores e materiais que estão na sua impressora."
  4887. #~ msgctxt "@action:button"
  4888. #~ msgid "View in Monitor"
  4889. #~ msgstr "Ver no Monitor"
  4890. #~ msgctxt "@info:status"
  4891. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  4892. #~ msgstr "{printer_name} acabou de imprimir '{job_name}'."
  4893. #~ msgctxt "@info:status"
  4894. #~ msgid "The print job '{job_name}' was finished."
  4895. #~ msgstr "O trabalho de impressão '{job_name}' terminou."
  4896. #~ msgctxt "@info:status"
  4897. #~ msgid "Print finished"
  4898. #~ msgstr "Impressão Concluída"
  4899. #~ msgctxt "@label:material"
  4900. #~ msgid "Empty"
  4901. #~ msgstr "Vazio"
  4902. #~ msgctxt "@label:material"
  4903. #~ msgid "Unknown"
  4904. #~ msgstr "Desconhecido"
  4905. #~ msgctxt "@info:title"
  4906. #~ msgid "Cloud error"
  4907. #~ msgstr "Erro de nuvem"
  4908. #~ msgctxt "@info:status"
  4909. #~ msgid "Could not export print job."
  4910. #~ msgstr "Não foi possível exportar o trabalho de impressão."
  4911. #~ msgctxt "@info:description"
  4912. #~ msgid "There was an error connecting to the cloud."
  4913. #~ msgstr "Houve um erro ao conectar à nuvem."
  4914. #~ msgctxt "@info:status"
  4915. #~ msgid "Uploading via Ultimaker Cloud"
  4916. #~ msgstr "Transferindo via Ultimaker Cloud"
  4917. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  4918. #~ msgid "Connect to Ultimaker Cloud"
  4919. #~ msgstr "Conectar à Ultimaker Cloud"
  4920. #~ msgctxt "@action"
  4921. #~ msgid "Don't ask me again for this printer."
  4922. #~ msgstr "Não me pergunte novamente para esta impressora."
  4923. #~ msgctxt "@info:status"
  4924. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  4925. #~ msgstr "Você agora pode enviar e monitorar trabalhoas de impressão de qualquer lugar usando sua conta Ultimaker."
  4926. #~ msgctxt "@info:status"
  4927. #~ msgid "Connected!"
  4928. #~ msgstr "Conectado!"
  4929. #~ msgctxt "@action"
  4930. #~ msgid "Review your connection"
  4931. #~ msgstr "Rever sua conexão"
  4932. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  4933. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  4934. #~ msgstr "A máquina definida no perfil <filename>{0}</filename> ({1}) não equivale à sua máquina atual ({2}), não foi possível importá-lo."
  4935. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4936. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  4937. #~ msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  4938. #~ msgctxt "@window:title"
  4939. #~ msgid "Existing Connection"
  4940. #~ msgstr "Conexão Existente"
  4941. #~ msgctxt "@message:text"
  4942. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  4943. #~ msgstr "Esta impressora ou grupo já foi adicionada ao Cura. Por favor selecione outra impressora ou grupo."
  4944. #~ msgctxt "@label"
  4945. #~ msgid "Enter the IP address or hostname of your printer on the network."
  4946. #~ msgstr "Entre o endereço IP ou nome de sua impressora na rede."
  4947. #~ msgctxt "@info:tooltip"
  4948. #~ msgid "Connect to a printer"
  4949. #~ msgstr "Conecta a uma impressora"
  4950. #~ msgctxt "@title"
  4951. #~ msgid "Cura Settings Guide"
  4952. #~ msgstr "Guia de Ajustes do Cura"
  4953. #~ msgctxt "@info:tooltip"
  4954. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  4955. #~ msgstr "Ampliar na direção do mouse não é suportado na perspectiva ortogonal."
  4956. #~ msgid "Orthogonal"
  4957. #~ msgstr "Ortogonal"
  4958. #~ msgctxt "description"
  4959. #~ msgid "Manages network connections to Ultimaker 3 printers."
  4960. #~ msgstr "Gerencia conexões de rede a impressoras Ultimaker 3."
  4961. #~ msgctxt "name"
  4962. #~ msgid "UM3 Network Connection"
  4963. #~ msgstr "Conexão de Rede UM3"
  4964. #~ msgctxt "description"
  4965. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  4966. #~ msgstr "Provê informação extra e explicações sobre ajustes do Cura com imagens e animações."
  4967. #~ msgctxt "name"
  4968. #~ msgid "Settings Guide"
  4969. #~ msgstr "Guia de Ajustes"
  4970. #~ msgctxt "@item:inmenu"
  4971. #~ msgid "Cura Settings Guide"
  4972. #~ msgstr "Guia de Ajustes do Cura"
  4973. #~ msgctxt "@info:generic"
  4974. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  4975. #~ msgstr "Os ajustes foram mudados para atender à atual disponibilidade de extrusores: [%s]"
  4976. #~ msgctxt "@title:groupbox"
  4977. #~ msgid "User description"
  4978. #~ msgstr "Descrição do usuário"
  4979. #~ msgctxt "@info"
  4980. #~ msgid "These options are not available because you are monitoring a cloud printer."
  4981. #~ msgstr "Estas opçÕes não estão disponíveis porque você está monitorando uma impressora de nuvem."
  4982. #~ msgctxt "@label link to connect manager"
  4983. #~ msgid "Go to Cura Connect"
  4984. #~ msgstr "Ir ao Cura Connect"
  4985. #~ msgctxt "@info"
  4986. #~ msgid "All jobs are printed."
  4987. #~ msgstr "Todos os trabalhos foram impressos."
  4988. #~ msgctxt "@label link to connect manager"
  4989. #~ msgid "View print history"
  4990. #~ msgstr "Ver histórico de impressão"
  4991. #~ msgctxt "@label"
  4992. #~ msgid ""
  4993. #~ "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer.\n"
  4994. #~ "\n"
  4995. #~ "Select your printer from the list below:"
  4996. #~ msgstr ""
  4997. #~ "Para imprimir diretamente para sua impressora pela rede, por favor se certifique que a impressora esteja conectada na rede usando um cabo de rede ou conectando sua impressora na rede WIFI. Se você não conectar o Cura à sua impressora, você ainda pode usar uma unidade USB para transferir arquivos G-Code para sua impressora.\n"
  4998. #~ "\n"
  4999. #~ "Selecione sua impressora da lista abaixo:"
  5000. #~ msgctxt "@info"
  5001. #~ msgid ""
  5002. #~ "Please make sure your printer has a connection:\n"
  5003. #~ "- Check if the printer is turned on.\n"
  5004. #~ "- Check if the printer is connected to the network."
  5005. #~ msgstr ""
  5006. #~ "Por favor certifique-se que sua impressora está conectada:\n"
  5007. #~ "- Verifique se a impressora está ligada.\n"
  5008. #~ "- Verifique se a impressora está conectada à rede."
  5009. #~ msgctxt "@option:check"
  5010. #~ msgid "See only current build plate"
  5011. #~ msgstr "Ver somente a plataforma de impressão atual"
  5012. #~ msgctxt "@action:button"
  5013. #~ msgid "Arrange to all build plates"
  5014. #~ msgstr "Posicionar em todas as plataformas de impressão"
  5015. #~ msgctxt "@action:button"
  5016. #~ msgid "Arrange current build plate"
  5017. #~ msgstr "Reposicionar a plataforma de impressão atual"
  5018. #~ msgctxt "description"
  5019. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5020. #~ msgstr "Permite salvar a fatia resultante como um arquivo X3G, para suportar impressoras que leem este formato (Malyan, Makerbot e outras impressoras baseadas em Sailfish)."
  5021. #~ msgctxt "name"
  5022. #~ msgid "X3GWriter"
  5023. #~ msgstr "Gerador de X3G"
  5024. #~ msgctxt "description"
  5025. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5026. #~ msgstr "Lê arquivos SVG como caminhos do extrusor, para depurar movimentos da impressora."
  5027. #~ msgctxt "name"
  5028. #~ msgid "SVG Toolpath Reader"
  5029. #~ msgstr "Leitor de Toolpath SVG"
  5030. #~ msgctxt "@item:inmenu"
  5031. #~ msgid "Changelog"
  5032. #~ msgstr "Registro de Alterações"
  5033. #~ msgctxt "@item:inmenu"
  5034. #~ msgid "Show Changelog"
  5035. #~ msgstr "Exibir registro de alterações"
  5036. #~ msgctxt "@info:status"
  5037. #~ msgid "Sending data to remote cluster"
  5038. #~ msgstr "Enviando dados ao cluster remoto"
  5039. #~ msgctxt "@info:status"
  5040. #~ msgid "Connect to Ultimaker Cloud"
  5041. #~ msgstr "Conectar à Ultimaker Cloud"
  5042. #~ msgctxt "@info"
  5043. #~ msgid "Cura collects anonymized usage statistics."
  5044. #~ msgstr "O Cura coleta estatísticas anônimas de uso."
  5045. #~ msgctxt "@info:title"
  5046. #~ msgid "Collecting Data"
  5047. #~ msgstr "Coletando Dados"
  5048. #~ msgctxt "@action:button"
  5049. #~ msgid "More info"
  5050. #~ msgstr "Mais informações"
  5051. #~ msgctxt "@action:tooltip"
  5052. #~ msgid "See more information on what data Cura sends."
  5053. #~ msgstr "Ver mais informações sobre os dados enviados pelo Cura."
  5054. #~ msgctxt "@action:button"
  5055. #~ msgid "Allow"
  5056. #~ msgstr "Permitir"
  5057. #~ msgctxt "@action:tooltip"
  5058. #~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing."
  5059. #~ msgstr "Permite que o Cura envie estatísticas anônimas de uso para ajudar a priorizar futuras melhorias ao software. Algumas de suas preferências e ajustes são enviados junto à versão atual do Cura e um hash dos modelos que estão sendo fatiados."
  5060. #~ msgctxt "@item:inmenu"
  5061. #~ msgid "Evaluation"
  5062. #~ msgstr "Avaliação"
  5063. #~ msgctxt "@info:title"
  5064. #~ msgid "Network enabled printers"
  5065. #~ msgstr "Impressoras habilitadas em rede"
  5066. #~ msgctxt "@info:title"
  5067. #~ msgid "Local printers"
  5068. #~ msgstr "Impressoras locais"
  5069. #~ msgctxt "@info:backup_failed"
  5070. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  5071. #~ msgstr "Tentativa de restauração de backup do Cura que não corresponde à versão atual."
  5072. #~ msgctxt "@title"
  5073. #~ msgid "Machine Settings"
  5074. #~ msgstr "Ajustes da Máquina"
  5075. #~ msgctxt "@label"
  5076. #~ msgid "Printer Settings"
  5077. #~ msgstr "Ajustes da Impressora"
  5078. #~ msgctxt "@option:check"
  5079. #~ msgid "Origin at center"
  5080. #~ msgstr "Origem no centro"
  5081. #~ msgctxt "@option:check"
  5082. #~ msgid "Heated bed"
  5083. #~ msgstr "Mesa aquecida"
  5084. #~ msgctxt "@label"
  5085. #~ msgid "Printhead Settings"
  5086. #~ msgstr "Ajustes da Cabeça de Impressão"
  5087. #~ msgctxt "@tooltip"
  5088. #~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5089. #~ msgstr "Distância da esquerda da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"."
  5090. #~ msgctxt "@tooltip"
  5091. #~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5092. #~ msgstr "Distância da frente da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"."
  5093. #~ msgctxt "@tooltip"
  5094. #~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5095. #~ msgstr "Distância da direita da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"."
  5096. #~ msgctxt "@tooltip"
  5097. #~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5098. #~ msgstr "Distância da traseira da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"."
  5099. #~ msgctxt "@label"
  5100. #~ msgid "Gantry height"
  5101. #~ msgstr "Altura do eixo"
  5102. #~ msgctxt "@tooltip"
  5103. #~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  5104. #~ msgstr "A diferença de altura entre a ponta do bico e o sistema de eixos X e Y. Usado para prevenir colisões entre impressões e a cabeça ao imprimir \"Um de cada Vez\"."
  5105. #~ msgctxt "@label"
  5106. #~ msgid "Start G-code"
  5107. #~ msgstr "G-Code Inicial"
  5108. #~ msgctxt "@tooltip"
  5109. #~ msgid "G-code commands to be executed at the very start."
  5110. #~ msgstr "Comandos de G-Code a serem executados no início da impressão."
  5111. #~ msgctxt "@label"
  5112. #~ msgid "End G-code"
  5113. #~ msgstr "G-Code Final"
  5114. #~ msgctxt "@tooltip"
  5115. #~ msgid "G-code commands to be executed at the very end."
  5116. #~ msgstr "Comandos de G-Code a serem executados no final da impressão."
  5117. #~ msgctxt "@label"
  5118. #~ msgid "Nozzle Settings"
  5119. #~ msgstr "Ajustes do Bico"
  5120. #~ msgctxt "@tooltip"
  5121. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5122. #~ msgstr "O diâmetro nominal do filamento suportado pela impressora. O diâmetro exato será sobreposto pelo material e/ou perfil."
  5123. #~ msgctxt "@label"
  5124. #~ msgid "Extruder Start G-code"
  5125. #~ msgstr "G-Code Inicial do Extrusor"
  5126. #~ msgctxt "@label"
  5127. #~ msgid "Extruder End G-code"
  5128. #~ msgstr "G-Code Final do Extrusor"
  5129. #~ msgctxt "@label"
  5130. #~ msgid "Changelog"
  5131. #~ msgstr "Registro de alterações"
  5132. #~ msgctxt "@title:window"
  5133. #~ msgid "User Agreement"
  5134. #~ msgstr "Termos de Acordo do Usuário"
  5135. #~ msgctxt "@alabel"
  5136. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5137. #~ msgstr "Introduza o endereço IP ou hostname da sua impressora na rede."
  5138. #~ msgctxt "@info"
  5139. #~ msgid "Please select a network connected printer to monitor."
  5140. #~ msgstr "Por favor selecione uma impressora conectada à rede para monitorar."
  5141. #~ msgctxt "@info"
  5142. #~ msgid "Please connect your Ultimaker printer to your local network."
  5143. #~ msgstr "Por favor conecte sua impressora Ultimaker à sua rede local."
  5144. #~ msgctxt "@text:window"
  5145. #~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent."
  5146. #~ msgstr "O Cura envia dados anonimamente para a Ultimaker de modo a aprimorar a qualidade de impressão e experiência de usuário. Abaixo há um exemplo de todos os dados que são enviados."
  5147. #~ msgctxt "@text:window"
  5148. #~ msgid "I don't want to send this data"
  5149. #~ msgstr "Não desejo enviar estes dados"
  5150. #~ msgctxt "@text:window"
  5151. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5152. #~ msgstr "Permitir enviar estes dados à Ultimaker para ajudar a melhorar o Cura"
  5153. #~ msgctxt "@label"
  5154. #~ msgid "No print selected"
  5155. #~ msgstr "Nenhuma impressão selecionada"
  5156. #~ msgctxt "@info:tooltip"
  5157. #~ msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  5158. #~ msgstr "Por default, pixels brancos representam pontos altos da malha e pontos pretos representam pontos baixos da malha. Altere esta opção para inverter o comportamento tal que pixels pretos representem pontos altos da malha e pontos brancos representam pontos baixos da malha."
  5159. #~ msgctxt "@title"
  5160. #~ msgid "Select Printer Upgrades"
  5161. #~ msgstr "Seleccionar Atualizações da Impressora"
  5162. #~ msgctxt "@label"
  5163. #~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  5164. #~ msgstr "Selecione qual extrusor a usar para o suporte. Isto construirá estruturas de suportes abaixo do modelo para prevenir que o modelo desabe ou seja impresso no ar."
  5165. #~ msgctxt "@tooltip"
  5166. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5167. #~ msgstr "Este perfil de qualidade não está disponível para sua configuração atual de material e bico. Por favor altere-os para habilitar este perfil de qualidade"
  5168. #~ msgctxt "@label shown when we load a Gcode file"
  5169. #~ msgid "Print setup disabled. G code file can not be modified."
  5170. #~ msgstr "Configuração de impressão desabilitada. Arquivo de G-Code não pode ser modificado."
  5171. #~ msgctxt "@label"
  5172. #~ msgid "See the material compatibility chart"
  5173. #~ msgstr "Veja o diagrama de compatibilidade de material"
  5174. #~ msgctxt "@label"
  5175. #~ msgid "View types"
  5176. #~ msgstr "Ver tipos"
  5177. #~ msgctxt "@label"
  5178. #~ msgid "Hi "
  5179. #~ msgstr "Oi "
  5180. #~ msgctxt "@text"
  5181. #~ msgid ""
  5182. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5183. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5184. #~ "- Get exclusive access to material profiles from leading brands"
  5185. #~ msgstr ""
  5186. #~ "- Envia trabalhos de impressão para impressoras Ultimaker fora da sua rede local\n"
  5187. #~ "- Guarda seus ajustes do Ultimaker Cura na nuvem para uso em qualquer lugar\n"
  5188. #~ "- Obtém acesso exclusivo a perfis de material de marcas reconhecidas"
  5189. #~ msgctxt "@label:PrintjobStatus"
  5190. #~ msgid "Unable to Slice"
  5191. #~ msgstr "Não Foi Possível Fatiar"
  5192. #~ msgctxt "@label"
  5193. #~ msgid "Time specification"
  5194. #~ msgstr "Especificação de tempo"
  5195. #~ msgctxt "@label"
  5196. #~ msgid "Material specification"
  5197. #~ msgstr "Especificação de material"
  5198. #~ msgctxt "@title:tab"
  5199. #~ msgid "Add a printer to Cura"
  5200. #~ msgstr "Adiciona uma impressora ao Cura"
  5201. #~ msgctxt "@title:tab"
  5202. #~ msgid ""
  5203. #~ "Select the printer you want to use from the list below.\n"
  5204. #~ "\n"
  5205. #~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog."
  5206. #~ msgstr ""
  5207. #~ "Selecione a impressora que deseja usar da lista abaixo.\n"
  5208. #~ "\n"
  5209. #~ "Se sua impressora não está na lista, use a \"Impressora FFF Personalizada\" da categoria \"Personalizado\" e ajuste de acordo com a sua impressora no diálogo a seguir."
  5210. #~ msgctxt "@label"
  5211. #~ msgid "Manufacturer"
  5212. #~ msgstr "Fabricante"
  5213. #~ msgctxt "@label"
  5214. #~ msgid "Printer Name"
  5215. #~ msgstr "Nome da Impressora"
  5216. #~ msgctxt "@action:button"
  5217. #~ msgid "Add Printer"
  5218. #~ msgstr "Adicionar Impressora"
  5219. #~ msgid "Modify G-Code"
  5220. #~ msgstr "Modificar G-Code"
  5221. #~ msgctxt "@info:status"
  5222. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5223. #~ msgstr "Nada a fatiar porque nenhum dos modelos cabe no volume de impressão. Por favor redimensione ou rotacione os modelos para caberem."
  5224. #~ msgctxt "@info:status"
  5225. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5226. #~ msgstr "O material selecionado é incompatível com a máquina ou configuração selecionada."
  5227. #~ msgctxt "@info:title"
  5228. #~ msgid "Incompatible Material"
  5229. #~ msgstr "Material Incompatível"
  5230. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5231. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5232. #~ msgstr "Falha ao importa perfil de <filename>{0}</filename>: <message>{1}</message>"
  5233. #~ msgctxt "@title"
  5234. #~ msgid "Toolbox"
  5235. #~ msgstr "Ferramentas"
  5236. #~ msgctxt "@label"
  5237. #~ msgid "Not available"
  5238. #~ msgstr "Não disponível"
  5239. #~ msgctxt "@label"
  5240. #~ msgid "Unreachable"
  5241. #~ msgstr "Inacessível"
  5242. #~ msgctxt "@label"
  5243. #~ msgid "Available"
  5244. #~ msgstr "Disponível"
  5245. #~ msgctxt "@label:status"
  5246. #~ msgid "Preparing"
  5247. #~ msgstr "Preparando"
  5248. #~ msgctxt "@label:status"
  5249. #~ msgid "Pausing"
  5250. #~ msgstr "Pausando"
  5251. #~ msgctxt "@label:status"
  5252. #~ msgid "Resuming"
  5253. #~ msgstr "Continuando"
  5254. #~ msgctxt "@label"
  5255. #~ msgid "Waiting for: Unavailable printer"
  5256. #~ msgstr "Aguardando por: Impressora indisponível"
  5257. #~ msgctxt "@label"
  5258. #~ msgid "Waiting for: First available"
  5259. #~ msgstr "Aguardando por: A primeira disponível"
  5260. #~ msgctxt "@label"
  5261. #~ msgid "Waiting for: "
  5262. #~ msgstr "Aguardando por: "
  5263. #~ msgctxt "@label"
  5264. #~ msgid "Configuration change"
  5265. #~ msgstr "Alteração de configuração"
  5266. #~ msgctxt "@label"
  5267. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  5268. #~ msgstr "A impressora atribuída, %1, requer as seguintes alterações de configuração:"
  5269. #~ msgctxt "@label"
  5270. #~ msgid "Override"
  5271. #~ msgstr "Sobrepôr"
  5272. #~ msgctxt "@label"
  5273. #~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?"
  5274. #~ msgstr "Iniciar um trabalho de impressão com configuração incompatível pode danificar sua impressora 3D. Voce tem certeza que quer sobrepôr a configuração e imprimir %1?"
  5275. #~ msgctxt "@window:title"
  5276. #~ msgid "Override configuration configuration and start print"
  5277. #~ msgstr "Sobrepôr configuração e iniciar impressão"
  5278. #~ msgctxt "@label link to connect manager"
  5279. #~ msgid "Manage queue"
  5280. #~ msgstr "Gerenciar fila"
  5281. #~ msgctxt "@label"
  5282. #~ msgid "Printing"
  5283. #~ msgstr "Imprimindo"
  5284. #~ msgctxt "@label link to connect manager"
  5285. #~ msgid "Manage printers"
  5286. #~ msgstr "Gerenciar impressoras"
  5287. #~ msgctxt "@action:button"
  5288. #~ msgid "Activate Configuration"
  5289. #~ msgstr "Ativar Configuração"
  5290. #~ msgctxt "@info:tooltip"
  5291. #~ msgid "Load the configuration of the printer into Cura"
  5292. #~ msgstr "Carrega a configuração da impressora no Cura"
  5293. #~ msgctxt "@label"
  5294. #~ msgid "Show Travels"
  5295. #~ msgstr "Exibir Percursos"
  5296. #~ msgctxt "@label"
  5297. #~ msgid "Show Helpers"
  5298. #~ msgstr "Exibir Assistentes"
  5299. #~ msgctxt "@label"
  5300. #~ msgid "Show Shell"
  5301. #~ msgstr "Exibir Perímetro"
  5302. #~ msgctxt "@label"
  5303. #~ msgid "Show Infill"
  5304. #~ msgstr "Exibir Preenchimento"
  5305. #~ msgctxt "@text:window"
  5306. #~ msgid "I don't want to send these data"
  5307. #~ msgstr "Eu não quero enviar estes dados"
  5308. #~ msgctxt "@text:window"
  5309. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  5310. #~ msgstr "Permite o envio destes dados para a Ultimaker e nos auxilia a aprimorar o Cura"
  5311. #~ msgctxt "@label"
  5312. #~ msgid "Printer type:"
  5313. #~ msgstr "Tipo de impressora:"
  5314. #~ msgctxt "@label"
  5315. #~ msgid "Connection:"
  5316. #~ msgstr "Conexão:"
  5317. #~ msgctxt "@label"
  5318. #~ msgid "State:"
  5319. #~ msgstr "Estado:"
  5320. #~ msgctxt "@label:MonitorStatus"
  5321. #~ msgid "Waiting for a printjob"
  5322. #~ msgstr "Esperando um trabalho de impressão"
  5323. #~ msgctxt "@label:MonitorStatus"
  5324. #~ msgid "Waiting for someone to clear the build plate"
  5325. #~ msgstr "Esperando que alguém esvazie a mesa de impressão"
  5326. #~ msgctxt "@label:MonitorStatus"
  5327. #~ msgid "Aborting print..."
  5328. #~ msgstr "Abortando impressão..."
  5329. #~ msgctxt "@label"
  5330. #~ msgid "Protected profiles"
  5331. #~ msgstr "Perfis Protegidos"
  5332. #~ msgctxt "@label"
  5333. #~ msgid "Printer Name:"
  5334. #~ msgstr "Nome da Impressora:"
  5335. #~ msgctxt "@label"
  5336. #~ msgid "Profile:"
  5337. #~ msgstr "Perfil:"
  5338. #~ msgctxt "@label:textbox"
  5339. #~ msgid "Search..."
  5340. #~ msgstr "Buscar..."
  5341. #~ msgctxt "@action:inmenu"
  5342. #~ msgid "Collapse All"
  5343. #~ msgstr "Encolher Todos"
  5344. #~ msgctxt "@action:inmenu"
  5345. #~ msgid "Expand All"
  5346. #~ msgstr "Expandir Todos"
  5347. #~ msgctxt "@label:header configurations"
  5348. #~ msgid "Available configurations"
  5349. #~ msgstr "Configurações disponíveis"
  5350. #~ msgctxt "@label:extruder label"
  5351. #~ msgid "Extruder"
  5352. #~ msgstr "Extrusor"
  5353. #~ msgctxt "@label:extruder label"
  5354. #~ msgid "Yes"
  5355. #~ msgstr "Sim"
  5356. #~ msgctxt "@label:extruder label"
  5357. #~ msgid "No"
  5358. #~ msgstr "Não"
  5359. #~ msgctxt "@label:listbox"
  5360. #~ msgid "Print Setup"
  5361. #~ msgstr "Configuração de Impressão"
  5362. #~ msgctxt "@label:listbox"
  5363. #~ msgid ""
  5364. #~ "Print Setup disabled\n"
  5365. #~ "G-code files cannot be modified"
  5366. #~ msgstr ""
  5367. #~ "Configuração de Impressão desabilitada\n"
  5368. #~ "Arquivos G-Code não podem ser modificados"
  5369. #~ msgctxt "@label Hours and minutes"
  5370. #~ msgid "00h 00min"
  5371. #~ msgstr "00h 00min"
  5372. #~ msgctxt "@tooltip"
  5373. #~ msgid "Time specification"
  5374. #~ msgstr "Especificação de tempo"
  5375. #~ msgctxt "@label"
  5376. #~ msgid "Cost specification"
  5377. #~ msgstr "Especificação de custo"
  5378. #~ msgctxt "@label"
  5379. #~ msgid "Total:"
  5380. #~ msgstr "Total:"
  5381. #~ msgctxt "@tooltip"
  5382. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5383. #~ msgstr "<b>Configuração Recomendada de Impressão</b><br/><br/>Imprimir com os ajustes recomendados para a impressora, material e qualidade selecionados."
  5384. #~ msgctxt "@tooltip"
  5385. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5386. #~ msgstr "<b>Configuração de Impressão Personalizada</b><br/><br/>Imprimir com controle fino sobre cada parte do processo de fatiamento."
  5387. #~ msgctxt "@action:inmenu menubar:help"
  5388. #~ msgid "Show Engine &Log..."
  5389. #~ msgstr "Exibir o Registro do Motor de Fatiamento (&L)..."
  5390. #~ msgctxt "@action:menu"
  5391. #~ msgid "Browse packages..."
  5392. #~ msgstr "Navegar pacotes..."
  5393. #~ msgctxt "@action:inmenu menubar:view"
  5394. #~ msgid "Expand/Collapse Sidebar"
  5395. #~ msgstr "Expandir/Encolher Barra Lateral"
  5396. #~ msgctxt "@label:PrintjobStatus"
  5397. #~ msgid "Please load a 3D model"
  5398. #~ msgstr "Por favor carregue um modelo 3D"
  5399. #~ msgctxt "@label:PrintjobStatus"
  5400. #~ msgid "Ready to slice"
  5401. #~ msgstr "Pronto para fatiar"
  5402. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5403. #~ msgid "Ready to %1"
  5404. #~ msgstr "Pronto para %1"
  5405. #~ msgctxt "@label:PrintjobStatus"
  5406. #~ msgid "Slicing unavailable"
  5407. #~ msgstr "Fatiamento indisponível"
  5408. #~ msgctxt "@info:tooltip"
  5409. #~ msgid "Slice current printjob"
  5410. #~ msgstr "Fatiar trabalho de impressão atual"
  5411. #~ msgctxt "@info:tooltip"
  5412. #~ msgid "Cancel slicing process"
  5413. #~ msgstr "Cancelar processo de fatiamento"
  5414. #~ msgctxt "@label:Printjob"
  5415. #~ msgid "Prepare"
  5416. #~ msgstr "Preparar"
  5417. #~ msgctxt "@label:Printjob"
  5418. #~ msgid "Cancel"
  5419. #~ msgstr "Cancelar"
  5420. #~ msgctxt "@info:tooltip"
  5421. #~ msgid "Select the active output device"
  5422. #~ msgstr "Selecione o dispositivo de saída ativo"
  5423. #~ msgctxt "@title:menu"
  5424. #~ msgid "&View"
  5425. #~ msgstr "&Ver"
  5426. #~ msgctxt "@title:menu"
  5427. #~ msgid "&Settings"
  5428. #~ msgstr "Aju&stes"
  5429. #~ msgctxt "@title:menu menubar:toplevel"
  5430. #~ msgid "&Toolbox"
  5431. #~ msgstr "Ferramen&tas"
  5432. #~ msgctxt "@action:button"
  5433. #~ msgid "Open File"
  5434. #~ msgstr "Abrir arquivo"
  5435. #~ msgctxt "@tooltip"
  5436. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  5437. #~ msgstr "Este perfil de qualidade não está disponível para seu material e sua configuração de bicos atuais. Por favor altere-os para abilitar este perfil de qualidade"
  5438. #~ msgctxt "@label"
  5439. #~ msgid "Print Speed"
  5440. #~ msgstr "Velocidade de Impressão"
  5441. #~ msgctxt "@label"
  5442. #~ msgid "Slower"
  5443. #~ msgstr "Mais Lento"
  5444. #~ msgctxt "@label"
  5445. #~ msgid "Faster"
  5446. #~ msgstr "Mais Rápido"
  5447. #~ msgctxt "@label"
  5448. #~ msgid "Enable gradual"
  5449. #~ msgstr "Habilitar gradual"
  5450. #~ msgctxt "@label"
  5451. #~ msgid "Generate Support"
  5452. #~ msgstr "Gerar Suportes"
  5453. #~ msgctxt "@label"
  5454. #~ msgid "Build Plate Adhesion"
  5455. #~ msgstr "Aderência à Mesa de Impressão"
  5456. #~ msgctxt "@label"
  5457. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5458. #~ msgstr "Precisa de ajuda para melhorar sua impressões?<br>Leia os <a href='%1'>Guias de Resolução de Problema da Ultimaker</a>"
  5459. #~ msgctxt "@title:window"
  5460. #~ msgid "Engine Log"
  5461. #~ msgstr "Registro do Motor de Fatiamento"
  5462. #~ msgctxt "@label"
  5463. #~ msgid "Printer type"
  5464. #~ msgstr "Tipo de impressora"
  5465. #~ msgctxt "@label"
  5466. #~ msgid "Use glue with this material combination"
  5467. #~ msgstr "Use cola com esta combinação de materiais"
  5468. #~ msgctxt "@label"
  5469. #~ msgid "Check compatibility"
  5470. #~ msgstr "Verificar compatibilidade"
  5471. #~ msgctxt "@tooltip"
  5472. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  5473. #~ msgstr "Clique para verificar a compatibilidade do material em Ultimaker.com."
  5474. #~ msgctxt "description"
  5475. #~ msgid "Shows changes since latest checked version."
  5476. #~ msgstr "Mostra alterações desde a última versão verificada."
  5477. #~ msgctxt "name"
  5478. #~ msgid "Changelog"
  5479. #~ msgstr "Registro de Alterações"
  5480. #~ msgctxt "description"
  5481. #~ msgid "Create a flattend quality changes profile."
  5482. #~ msgstr "Cria um perfil de alterações achatado."
  5483. #~ msgctxt "name"
  5484. #~ msgid "Profile flatener"
  5485. #~ msgstr "Achatador de Perfil"
  5486. #~ msgctxt "description"
  5487. #~ msgid "Ask the user once if he/she agrees with our license."
  5488. #~ msgstr "Perguntar ao usuário uma vez se concorda com nossa licença."
  5489. #~ msgctxt "name"
  5490. #~ msgid "UserAgreement"
  5491. #~ msgstr "Acordo de Usuário"
  5492. #~ msgctxt "@warning:status"
  5493. #~ msgid "Please generate G-code before saving."
  5494. #~ msgstr "Por favor gere o G-Code antes de salvar."
  5495. #~ msgctxt "@action"
  5496. #~ msgid "Upgrade Firmware"
  5497. #~ msgstr "Atualizar Firmware"
  5498. #~ msgctxt "@label unknown material"
  5499. #~ msgid "Unknown"
  5500. #~ msgstr "Desconhecido"
  5501. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5502. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  5503. #~ msgstr "Não há perfil personalizado para importar no arquivo <filename>{0}</filename>"
  5504. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5505. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  5506. #~ msgstr "Este perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  5507. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5508. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5509. #~ msgstr "A máquina definida no perfil <filename>{0}</filename> ({1}) não corresponde à sua máquina atual ({2}), não foi possível importá-la."
  5510. #~ msgctxt "@title:window"
  5511. #~ msgid "Confirm uninstall "
  5512. #~ msgstr "Confirme a deinstalação"
  5513. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  5514. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  5515. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  5516. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  5517. #~ msgid "%1m / ~ %2g"
  5518. #~ msgstr "%1m / ~ %2g"
  5519. #~ msgctxt "@title"
  5520. #~ msgid "Upgrade Firmware"
  5521. #~ msgstr "Atualizar Firmware"
  5522. #~ msgctxt "@action:button"
  5523. #~ msgid "Print with Doodle3D WiFi-Box"
  5524. #~ msgstr "Imprimir com a WiFi-Box do Doodle3D"
  5525. #~ msgctxt "@properties:tooltip"
  5526. #~ msgid "Print with Doodle3D WiFi-Box"
  5527. #~ msgstr "Imprimir com a WiFi-Box do Doodle3D"
  5528. #~ msgctxt "@info:status"
  5529. #~ msgid "Connecting to Doodle3D Connect"
  5530. #~ msgstr "Conectando ao Doodle3D Connect"
  5531. #~ msgctxt "@info:status"
  5532. #~ msgid "Sending data to Doodle3D Connect"
  5533. #~ msgstr "Enviando dados ao Doodle3D Connect"
  5534. #~ msgctxt "@info:status"
  5535. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  5536. #~ msgstr "Incapaz de enviar dados ao Doodle3D Connect. Há outro trabalho ainda ativo?"
  5537. #~ msgctxt "@info:status"
  5538. #~ msgid "Storing data on Doodle3D Connect"
  5539. #~ msgstr "Armazenando dados no Doodle3D Connect"
  5540. #~ msgctxt "@info:status"
  5541. #~ msgid "File sent to Doodle3D Connect"
  5542. #~ msgstr "Arquivo enviado ao Doodle3D Connect"
  5543. #~ msgctxt "@action:button"
  5544. #~ msgid "Open Connect..."
  5545. #~ msgstr "Abrir Connect..."
  5546. #~ msgctxt "@info:tooltip"
  5547. #~ msgid "Open the Doodle3D Connect web interface"
  5548. #~ msgstr "Abrir a interface web do Doodle3D Connect"
  5549. #~ msgctxt "@item:inlistbox"
  5550. #~ msgid "Blender file"
  5551. #~ msgstr "Arquivo do Blender"
  5552. #~ msgctxt "@info:status"
  5553. #~ msgid ""
  5554. #~ "Could not export using \"{}\" quality!\n"
  5555. #~ "Felt back to \"{}\"."
  5556. #~ msgstr ""
  5557. #~ "Não foi possível exportar usando qualidade \"{}\"!\n"
  5558. #~ "Foi usada a \"{}\"."
  5559. #~ msgctxt "@label"
  5560. #~ msgid "Contact"
  5561. #~ msgstr "Contato"
  5562. #~ msgctxt "@label"
  5563. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  5564. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3."
  5565. #~ msgctxt "@label"
  5566. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  5567. #~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3."
  5568. #~ msgctxt "@label: arg 1 is group name"
  5569. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  5570. #~ msgstr "%1 não está configurada para hospedar um grupo de impressora Ultimaker 3 conectadas"
  5571. #~ msgctxt "@label link to connect manager"
  5572. #~ msgid "Add/Remove printers"
  5573. #~ msgstr "Adicionar/Remover impressoras"
  5574. #~ msgctxt "@info:tooltip"
  5575. #~ msgid "Opens the print jobs page with your default web browser."
  5576. #~ msgstr "Abre a página de trabalhos de impressão com seu navegador default."
  5577. #~ msgctxt "@action:button"
  5578. #~ msgid "View print jobs"
  5579. #~ msgstr "Visualizar trabalhos de impressão"
  5580. #~ msgctxt "@label:status"
  5581. #~ msgid "Preparing to print"
  5582. #~ msgstr "Preparando para imprimir"
  5583. #~ msgctxt "@label:status"
  5584. #~ msgid "Printing"
  5585. #~ msgstr "Imprimindo"
  5586. #~ msgctxt "@label:status"
  5587. #~ msgid "Available"
  5588. #~ msgstr "Disponível"
  5589. #~ msgctxt "@label:status"
  5590. #~ msgid "Lost connection with the printer"
  5591. #~ msgstr "Conexão à impressora perdida"
  5592. #~ msgctxt "@label:status"
  5593. #~ msgid "Unknown"
  5594. #~ msgstr "Desconhecido"
  5595. #~ msgctxt "@label:status"
  5596. #~ msgid "Disabled"
  5597. #~ msgstr "Desabilitado"
  5598. #~ msgctxt "@label:status"
  5599. #~ msgid "Reserved"
  5600. #~ msgstr "Reservado"
  5601. #~ msgctxt "@label"
  5602. #~ msgid "Preparing to print"
  5603. #~ msgstr "Preparando para imprimir"
  5604. #~ msgctxt "@label:status"
  5605. #~ msgid "Print aborted"
  5606. #~ msgstr "A impressão foi interrompida"
  5607. #~ msgctxt "@label"
  5608. #~ msgid "Not accepting print jobs"
  5609. #~ msgstr "Não aceitando trabalhos de impressão"
  5610. #~ msgctxt "@label"
  5611. #~ msgid "Finishes at: "
  5612. #~ msgstr "Termina em: "
  5613. #~ msgctxt "@label"
  5614. #~ msgid "Clear build plate"
  5615. #~ msgstr "Esvaziar a mesa de impressão"
  5616. #~ msgctxt "@label"
  5617. #~ msgid "Waiting for configuration change"
  5618. #~ msgstr "Esperando alteração de configuração"
  5619. #~ msgctxt "@title"
  5620. #~ msgid "Print jobs"
  5621. #~ msgstr "Trabalhos de impressão"
  5622. #~ msgctxt "@label:title"
  5623. #~ msgid "Printers"
  5624. #~ msgstr "Impressoras"
  5625. #~ msgctxt "@action:button"
  5626. #~ msgid "View printers"
  5627. #~ msgstr "Visualizar impressoras"
  5628. #~ msgctxt "@label:"
  5629. #~ msgid "Pause"
  5630. #~ msgstr "Pausar"
  5631. #~ msgctxt "@label:"
  5632. #~ msgid "Resume"
  5633. #~ msgstr "Continuar"
  5634. #~ msgctxt "@label:"
  5635. #~ msgid "Abort Print"
  5636. #~ msgstr "Abortar Impressão"
  5637. #~ msgctxt "@option:openProject"
  5638. #~ msgid "Always ask"
  5639. #~ msgstr "Sempre perguntar"
  5640. #~ msgctxt "@label"
  5641. #~ msgid "Override Profile"
  5642. #~ msgstr "Sobrescrever Perfil"
  5643. #~ msgctxt "@info:tooltip"
  5644. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  5645. #~ msgstr "Novos modelos carregados devem ser posicionados na plataforma de impressão? Usado em conjunção com plataforma múltipla de impressão (EXPERIMENTAL)"
  5646. #~ msgctxt "@option:check"
  5647. #~ msgid "Do not arrange objects on load"
  5648. #~ msgstr "Não posicionar objetos ao carregar."
  5649. #~ msgctxt "@action:inmenu menubar:file"
  5650. #~ msgid "&Save Selection to File"
  5651. #~ msgstr "Salvar &Seleção em Arquivo"
  5652. #~ msgctxt "@title:menu menubar:file"
  5653. #~ msgid "Save &As..."
  5654. #~ msgstr "S&alvar Como..."
  5655. #~ msgctxt "@title:menu menubar:file"
  5656. #~ msgid "Save &Project..."
  5657. #~ msgstr "Salvar &Projeto..."
  5658. #~ msgctxt "@label"
  5659. #~ msgid "Use adhesion sheet or glue with this material combination"
  5660. #~ msgstr "Use camada de aderência ou cola com esta combinação de material"
  5661. #~ msgctxt "description"
  5662. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  5663. #~ msgstr "Aceita G-Code e o envia através da WiFi para uma WiFi-Box Doodle3D."
  5664. #~ msgctxt "name"
  5665. #~ msgid "Doodle3D WiFi-Box"
  5666. #~ msgstr "WiFi-Box Doodle3D"
  5667. #~ msgctxt "description"
  5668. #~ msgid "Provides an edit window for direct script editing."
  5669. #~ msgstr "Provê uma janela de edição para edição direta de script."
  5670. #~ msgctxt "name"
  5671. #~ msgid "Live scripting tool"
  5672. #~ msgstr "Ferramenta de scripting integrada"
  5673. #~ msgctxt "description"
  5674. #~ msgid "Helps to open Blender files directly in Cura."
  5675. #~ msgstr "Ajuda a abrir arquivos do Blender diretamente no Cura."
  5676. #~ msgctxt "name"
  5677. #~ msgid "Blender Integration (experimental)"
  5678. #~ msgstr "Integração ao Blender (experimental)"
  5679. #~ msgctxt "@info:title"
  5680. #~ msgid "Model Checker Warning"
  5681. #~ msgstr "Alerta de Verificador de Modelo"
  5682. #~ msgctxt "@info:status"
  5683. #~ msgid ""
  5684. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  5685. #~ "Tips that may be useful to improve the print quality:\n"
  5686. #~ "1) Use rounded corners.\n"
  5687. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  5688. #~ "3) Use a different material."
  5689. #~ msgstr ""
  5690. #~ "Alguns modelos podem não ser impressos otimamente devido ao tamanho do objeto e material escolhido para os modelos: {model_names}.\n"
  5691. #~ "Dicas que podem ser úteis para melhorar a qualidade de impressão:\n"
  5692. #~ "1) Use cantos arredondados.\n"
  5693. #~ "2) Desligue a ventoinha (somente no caso de não haver detalhes pequenos no modelo).\n"
  5694. #~ "3) Use material diferente."
  5695. #~ msgctxt "@info:status"
  5696. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  5697. #~ msgstr "O SolidWorks relatou erros ao abrir o arquivo. Recomenda-se resolver tais erros dentro do próprio SolidWorks."
  5698. #~ msgctxt "@info:status"
  5699. #~ msgid ""
  5700. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  5701. #~ "\n"
  5702. #~ "Thanks!"
  5703. #~ msgstr ""
  5704. #~ "Não foram encontrados modelos dentro do seu desenho. Poderia por favor verificar seu conteúdo novamente e assegurar-se que pelo menos uma parte ou montagem está inclusa?\n"
  5705. #~ "\n"
  5706. #~ "Obrigado!"
  5707. #~ msgctxt "@info:status"
  5708. #~ msgid ""
  5709. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  5710. #~ "\n"
  5711. #~ "Sorry!"
  5712. #~ msgstr ""
  5713. #~ "Foi encontrada mais de uma parte ou montagem dentro do seu desenho. Atualmente somente desenhos com exatamente uma parte ou montagem dentro são suportados.\n"
  5714. #~ "\n"
  5715. #~ "Desculpe!"
  5716. #~ msgctxt "@item:inlistbox"
  5717. #~ msgid "SolidWorks part file"
  5718. #~ msgstr "Arquivo de parte de SolidWorks"
  5719. #~ msgctxt "@item:inlistbox"
  5720. #~ msgid "SolidWorks assembly file"
  5721. #~ msgstr "Arquivo de montagem de SolidWorks"
  5722. #~ msgctxt "@item:inlistbox"
  5723. #~ msgid "SolidWorks drawing file"
  5724. #~ msgstr "Arquivo de desenho do SolidWorks"
  5725. #~ msgctxt "@info:status"
  5726. #~ msgid ""
  5727. #~ "Dear customer,\n"
  5728. #~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n"
  5729. #~ "\n"
  5730. #~ "With kind regards\n"
  5731. #~ " - Thomas Karl Pietrowski"
  5732. #~ msgstr ""
  5733. #~ "Caro cliente,\n"
  5734. #~ "Não foi encontrada uma intalação válida de SolidWorks no seu sistema. Isso significa que ou o SolidWorks não está instalado ou você nào tem licença válida. Por favor se assegure que rodar o Solidworks funciona sem problemas e/ou contate seu suporte.\n"
  5735. #~ "\n"
  5736. #~ "Atenciosamente\n"
  5737. #~ " - Thomas Karl Pietrowski"
  5738. #~ msgctxt "@info:status"
  5739. #~ msgid ""
  5740. #~ "Dear customer,\n"
  5741. #~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n"
  5742. #~ "\n"
  5743. #~ "With kind regards\n"
  5744. #~ " - Thomas Karl Pietrowski"
  5745. #~ msgstr ""
  5746. #~ "Caro cliente,\n"
  5747. #~ "Você está no momento rodando este complemento em um sistema operacional diferente de Windows. Este complemento só funcionará no Windows com o SolidWorks instalado e com licença válida. Por favor instale este complemento em uma máquina Windows com o SolidWorks instalado.\n"
  5748. #~ "\n"
  5749. #~ "Atenciosamente\n"
  5750. #~ " - Thomas Karl Pietrowski"
  5751. #~ msgid "Configure"
  5752. #~ msgstr "Configure"
  5753. #~ msgid "Installation guide for SolidWorks macro"
  5754. #~ msgstr "Guia de Instalação para macro do SolidWorks"
  5755. #~ msgctxt "@action:button"
  5756. #~ msgid "Disable"
  5757. #~ msgstr "Desabilitar"
  5758. #~ msgctxt "@action:tooltip"
  5759. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  5760. #~ msgstr "Não permitir que o Cura envie estatísticas anônimas de uso. Você pode habilitar novamente nas preferências."
  5761. #~ msgid "Install"
  5762. #~ msgstr "Instalar"
  5763. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  5764. #~ msgstr "Erro ao copiar arquivos de complementos Siemens NX. Por favor verifique seu UGII_USER_DIR. Ele não está configurado para um diretório."
  5765. #~ msgid "Successfully installed Siemens NX Cura plugin."
  5766. #~ msgstr "Plugin Siemens NX do Cura instalado com sucesso."
  5767. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  5768. #~ msgstr "Erro ao copiar arquivos de complementos Siemens NX. Por favor, verifique seu UGII_USER_DIR."
  5769. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  5770. #~ msgstr "Erro ao instalar arquivos de complementos Siemens NX. Não foi possível ajustar a variável de ambiente UGII_USER_DIR para o Simenes NX."
  5771. #~ msgctxt "@info:status"
  5772. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  5773. #~ msgstr "Falha ao pegar identificador do complemento de <filename>{0}</filename>"
  5774. #~ msgctxt "@info:tile"
  5775. #~ msgid "Warning"
  5776. #~ msgstr "Aviso"
  5777. #~ msgctxt "@window:title"
  5778. #~ msgid "Plugin browser"
  5779. #~ msgstr "Navegador de complementos"
  5780. #~ msgctxt "@label"
  5781. #~ msgid "Ultimaker 3"
  5782. #~ msgstr "Ultimaker 3"
  5783. #~ msgctxt "@label"
  5784. #~ msgid "Ultimaker 3 Extended"
  5785. #~ msgstr "Ultimaker 3 Extended"
  5786. #~ msgctxt "@title:window"
  5787. #~ msgid "SolidWorks: Export wizard"
  5788. #~ msgstr "SolidWorks: Assistente de Exportação"
  5789. #~ msgctxt "@action:label"
  5790. #~ msgid "Quality:"
  5791. #~ msgstr "Qualidade"
  5792. #~ msgctxt "@option:curaSolidworksStlQuality"
  5793. #~ msgid "Fine (3D-printing)"
  5794. #~ msgstr "Fina (impressão-3D)"
  5795. #~ msgctxt "@option:curaSolidworksStlQuality"
  5796. #~ msgid "Coarse (3D-printing)"
  5797. #~ msgstr "Baixa"
  5798. #~ msgctxt "@option:curaSolidworksStlQuality"
  5799. #~ msgid "Fine (SolidWorks)"
  5800. #~ msgstr "Fina (SolidWorks)"
  5801. #~ msgctxt "@option:curaSolidworksStlQuality"
  5802. #~ msgid "Coarse (SolidWorks)"
  5803. #~ msgstr "Baixa (SolidWorks)"
  5804. #~ msgctxt "@text:window"
  5805. #~ msgid "Show this dialog again"
  5806. #~ msgstr "Mostrar este diálogo novamente"
  5807. #~ msgctxt "@action:button"
  5808. #~ msgid "Continue"
  5809. #~ msgstr "Continuar"
  5810. #~ msgctxt "@action:button"
  5811. #~ msgid "Abort"
  5812. #~ msgstr "Abortar"
  5813. #~ msgctxt "@title:window"
  5814. #~ msgid "How to install Cura SolidWorks macro"
  5815. #~ msgstr "Como instalar a macro de SolidWorks do Cura"
  5816. #~ msgctxt "@description:label"
  5817. #~ msgid "Steps:"
  5818. #~ msgstr "Passos:"
  5819. #~ msgctxt "@action:button"
  5820. #~ msgid ""
  5821. #~ "Open the directory\n"
  5822. #~ "with macro and icon"
  5823. #~ msgstr ""
  5824. #~ "Abrir o diretório\n"
  5825. #~ "com a macro e o ícone"
  5826. #~ msgctxt "@description:label"
  5827. #~ msgid "Instructions:"
  5828. #~ msgstr "Instruções:"
  5829. #~ msgctxt "@action:playpause"
  5830. #~ msgid "Play"
  5831. #~ msgstr "Tocar"
  5832. #~ msgctxt "@action:playpause"
  5833. #~ msgid "Pause"
  5834. #~ msgstr "Pausar"
  5835. #~ msgctxt "@action:button"
  5836. #~ msgid "Previous Step"
  5837. #~ msgstr "Passo Anterior"
  5838. #~ msgctxt "@action:button"
  5839. #~ msgid "Done"
  5840. #~ msgstr "Finalizado"
  5841. #~ msgctxt "@action:button"
  5842. #~ msgid "Next Step"
  5843. #~ msgstr "Passo Seguinte"
  5844. #~ msgctxt "@title:window"
  5845. #~ msgid "SolidWorks plugin: Configuration"
  5846. #~ msgstr "Complemento do SolidWorks: Configuração"
  5847. #~ msgctxt "@title:tab"
  5848. #~ msgid "Conversion settings"
  5849. #~ msgstr "Ajustes de conversão"
  5850. #~ msgctxt "@label"
  5851. #~ msgid "First choice:"
  5852. #~ msgstr "Primeira escolha:"
  5853. #~ msgctxt "@text:menu"
  5854. #~ msgid "Latest installed version (Recommended)"
  5855. #~ msgstr "Última versão instalada (Recomendado)"
  5856. #~ msgctxt "@text:menu"
  5857. #~ msgid "Default version"
  5858. #~ msgstr "Versão default"
  5859. #~ msgctxt "@label"
  5860. #~ msgid "Show wizard before opening SolidWorks files"
  5861. #~ msgstr "Mostrar o assistente antes de abrir arquivos do SolidWorks"
  5862. #~ msgctxt "@label"
  5863. #~ msgid "Automatically rotate opened file into normed orientation"
  5864. #~ msgstr "Rotacionar automaticamente o arquivo aberto em orientação normalizada"
  5865. #~ msgctxt "@title:tab"
  5866. #~ msgid "Installation(s)"
  5867. #~ msgstr "Instalações"
  5868. #~ msgctxt "@label"
  5869. #~ msgid "COM service found"
  5870. #~ msgstr "Serviço COM encontrado"
  5871. #~ msgctxt "@label"
  5872. #~ msgid "Executable found"
  5873. #~ msgstr "Executável encontrado"
  5874. #~ msgctxt "@label"
  5875. #~ msgid "COM starting"
  5876. #~ msgstr "COM iniciando"
  5877. #~ msgctxt "@label"
  5878. #~ msgid "Revision number"
  5879. #~ msgstr "Número de revisão"
  5880. #~ msgctxt "@label"
  5881. #~ msgid "Functions available"
  5882. #~ msgstr "Funções disponíveis"
  5883. #~ msgctxt "@label (%1 is object name)"
  5884. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  5885. #~ msgstr "O novo diâmetro do material é %1 mm, o que não é compatível com a máquina atual. Deseja continuar?"
  5886. #~ msgctxt "@action:menu"
  5887. #~ msgid "Browse plugins..."
  5888. #~ msgstr "Navegar complementos..."
  5889. #~ msgctxt "@title:menu menubar:toplevel"
  5890. #~ msgid "P&lugins"
  5891. #~ msgstr "Comp&lementos"
  5892. #~ msgctxt "@window:title"
  5893. #~ msgid "Install Plugin"
  5894. #~ msgstr "Instalar Complemento"
  5895. #~ msgctxt "description"
  5896. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  5897. #~ msgstr "Provê um modo de alterar as configurações da máquina (tais como volume de impressão, tamanho de bico, etc)"
  5898. #~ msgctxt "description"
  5899. #~ msgid "Manages network connections to Ultimaker 3 printers"
  5900. #~ msgstr "Gerencia conexões de rede a impressoras Ultimaker 3"
  5901. #~ msgctxt "description"
  5902. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  5903. #~ msgstr "Te dá a possibilidade de abrir certos arquivos usando o SolidWorks. A conversão é feita por este complemento junto a personalizações adicionais."
  5904. #~ msgctxt "name"
  5905. #~ msgid "SolidWorks Integration"
  5906. #~ msgstr "Integração ao SolidWorks"
  5907. #~ msgctxt "description"
  5908. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  5909. #~ msgstr "Automaticamente salva Preferências, Máquinas e Perfis após alterações."
  5910. #~ msgctxt "name"
  5911. #~ msgid "Auto Save"
  5912. #~ msgstr "Auto-Salvar"
  5913. #~ msgctxt "description"
  5914. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  5915. #~ msgstr "Auxilia na instalação de um botão 'exportar para o Cura' no Siemens NX."
  5916. #~ msgctxt "name"
  5917. #~ msgid "Siemens NX Integration"
  5918. #~ msgstr "Integração ao Siemens NX"
  5919. #~ msgctxt "description"
  5920. #~ msgid "Find, manage and install new plugins."
  5921. #~ msgstr "Busca, gerencia e instala novos complementos."
  5922. #~ msgctxt "name"
  5923. #~ msgid "Plugin Browser"
  5924. #~ msgstr "Navegador de Complementos"
  5925. #~ msgctxt "description"
  5926. #~ msgid "Ask the user once if he/she agrees with our license"
  5927. #~ msgstr "Pergunta ao usuário uma única vez sobre concordância com a licença"
  5928. #~ msgctxt "description"
  5929. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  5930. #~ msgstr "Provê ações de máquina para Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc)"
  5931. #~ msgctxt "@item:inlistbox"
  5932. #~ msgid "GCode File"
  5933. #~ msgstr "Arquivo G-Code"
  5934. #~ msgctxt "@info:status"
  5935. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  5936. #~ msgstr "Incapaz de iniciar novo trabalho porque a impressora está ocupada ou não conectada."
  5937. #~ msgctxt "@info:title"
  5938. #~ msgid "Printer Unavailable"
  5939. #~ msgstr "Impressora Não Disponível"
  5940. #~ msgctxt "@info:status"
  5941. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  5942. #~ msgstr "Esta impressora não suporta impressão USB porque usa G-Code UltiGCode."
  5943. #~ msgctxt "@info:title"
  5944. #~ msgid "USB Printing"
  5945. #~ msgstr "Impressão USB"
  5946. #~ msgctxt "@info:status"
  5947. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  5948. #~ msgstr "Incapaz de iniciar um novo trabalho porque a impressora não suporta impressão USB."
  5949. #~ msgctxt "@info"
  5950. #~ msgid "Unable to update firmware because there are no printers connected."
  5951. #~ msgstr "Incapaz de atualizar firmware porque não há impressoras conectadas."
  5952. #~ msgctxt "@info"
  5953. #~ msgid "Could not find firmware required for the printer at %s."
  5954. #~ msgstr "Não foi possível encontrar o firmware requerido para a impressora em %s."
  5955. #~ msgctxt "@info:title"
  5956. #~ msgid "Printer Firmware"
  5957. #~ msgstr "Firmware da Impressora"
  5958. #~ msgctxt "@info:title"
  5959. #~ msgid "Connection status"
  5960. #~ msgstr "Status da Conexão"
  5961. #~ msgctxt "@info:title"
  5962. #~ msgid "Connection Status"
  5963. #~ msgstr "Status da Conexão"
  5964. #~ msgctxt "@info:status"
  5965. #~ msgid "Access request was denied on the printer."
  5966. #~ msgstr "Pedido de acesso foi negado na impressora."
  5967. #~ msgctxt "@info:status"
  5968. #~ msgid "Access request failed due to a timeout."
  5969. #~ msgstr "Pedido de acesso falhou devido a tempo esgotado."
  5970. #~ msgctxt "@info:status"
  5971. #~ msgid "The connection with the network was lost."
  5972. #~ msgstr "A conexão à rede foi perdida."
  5973. #~ msgctxt "@info:status"
  5974. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  5975. #~ msgstr "A conexão com a impressora foi perdida. Verifique se sua impressora está conectada."
  5976. #~ msgctxt "@info:status"
  5977. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  5978. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão, a impressora está ocupada. O estado atual da impressora é %s."
  5979. #~ msgctxt "@info:title"
  5980. #~ msgid "Printer Status"
  5981. #~ msgstr "Status da Impressora"
  5982. #~ msgctxt "@info:status"
  5983. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  5984. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Nenhum Printcore carregado no slot {0}"
  5985. #~ msgctxt "@info:status"
  5986. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  5987. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há material carregado no slot {0}"
  5988. #~ msgctxt "@label"
  5989. #~ msgid "Not enough material for spool {0}."
  5990. #~ msgstr "Não há material suficiente para o carretel {0}."
  5991. #~ msgctxt "@label"
  5992. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5993. #~ msgstr "PrintCore Diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  5994. #~ msgctxt "@label"
  5995. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  5996. #~ msgstr "O PrintCore {0} não está calibrado adequadamente. A calibração XY precisa ser executada na impressora."
  5997. #~ msgctxt "@info:status"
  5998. #~ msgid "Unable to send data to printer. Is another job still active?"
  5999. #~ msgstr "Incapaz de enviar dados à impressora. Há outro trabalho de impressão ativo?"
  6000. #~ msgctxt "@label:MonitorStatus"
  6001. #~ msgid "Print aborted. Please check the printer"
  6002. #~ msgstr "Impressão abortada. Por favor verifique a impressora"
  6003. #~ msgctxt "@label:MonitorStatus"
  6004. #~ msgid "Pausing print..."
  6005. #~ msgstr "Pausando impressão..."
  6006. #~ msgctxt "@label:MonitorStatus"
  6007. #~ msgid "Resuming print..."
  6008. #~ msgstr "Continuando impressão..."
  6009. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6010. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas."
  6011. #~ msgctxt "Count is number of printers."
  6012. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6013. #~ msgstr "Esta impressora hospeda um grupo de {count} impressoras Ultimaker 3 conectadas."
  6014. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6015. #~ msgstr "{printer_name} acabou de imprimir '{job_name}'. Por favor colete a impressão e confirme esvaziamento da mesa."
  6016. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6017. #~ msgstr "{printer_name} está reservada para imprimir '{job_name}'. Por favor altere a configuração da impressora para combinar com este trabalho para que ela comece a imprimir."
  6018. #~ msgctxt "@info:status"
  6019. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6020. #~ msgstr "Incapaz de enviar novo trabalho de impressão: esta impressora 3D (ainda) não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas."
  6021. #~ msgctxt "@info:status"
  6022. #~ msgid "Unable to send print job to group {cluster_name}."
  6023. #~ msgstr "Incapaz de enviar trabalho de impressão ao grupo {cluster_name}."
  6024. #~ msgctxt "@info:status"
  6025. #~ msgid "Sent {file_name} to group {cluster_name}."
  6026. #~ msgstr "{file_name} enviado ao grupo {cluster_name}."
  6027. #~ msgctxt "@action:button"
  6028. #~ msgid "Show print jobs"
  6029. #~ msgstr "Exibir trabalhos de impressão"
  6030. #~ msgctxt "@info:tooltip"
  6031. #~ msgid "Opens the print jobs interface in your browser."
  6032. #~ msgstr "Abrir a interface de trabalhos de impressão em seu navegador."
  6033. #~ msgctxt "@label Printer name"
  6034. #~ msgid "Unknown"
  6035. #~ msgstr "Desconhecida"
  6036. #~ msgctxt "@info:progress"
  6037. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6038. #~ msgstr "Enviando <filename>{file_name}</filename> ao grupo {cluster_name}"
  6039. #~ msgctxt "@info:status"
  6040. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6041. #~ msgstr "O SolidWorks relatou problemas ao abrir seu arquivo. Recomendamos resolver tais problemas dentro do próprio SolidWorks."
  6042. #~ msgctxt "@info:status"
  6043. #~ msgid ""
  6044. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6045. #~ "\n"
  6046. #~ " Thanks!."
  6047. #~ msgstr ""
  6048. #~ "Não foram encontrados modelos dentro de seu desenho. Poderia verificar seu conteúdo novamente e se assegurar que uma parte ou montagem está incluída?\n"
  6049. #~ "\n"
  6050. #~ " Obrigado!."
  6051. #~ msgctxt "@info:status"
  6052. #~ msgid ""
  6053. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6054. #~ "\n"
  6055. #~ "Sorry!"
  6056. #~ msgstr ""
  6057. #~ "Foi encontrado mais de uma parte ou montagem dentro de seu desenho. Atualmente só suportamos desenhos com exatamente uma parte ou montagem dentro.\n"
  6058. #~ "\n"
  6059. #~ "Desculpe!"
  6060. #~ msgctxt "@item:material"
  6061. #~ msgid "No material loaded"
  6062. #~ msgstr "Não há material carregado"
  6063. #~ msgctxt "@item:material"
  6064. #~ msgid "Unknown material"
  6065. #~ msgstr "Material desconhecido"
  6066. #~ msgctxt "@info:status Has a cancel button next to it."
  6067. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6068. #~ msgstr "O diâmetro de material selecionado faz com que o material se torne incompatível com a impressora atual."
  6069. #~ msgctxt "@action:button"
  6070. #~ msgid "Undo"
  6071. #~ msgstr "Desfazer"
  6072. #~ msgctxt "@action"
  6073. #~ msgid "Undo changing the material diameter."
  6074. #~ msgstr "Desfaz a mudança no diâmetro do material."
  6075. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6076. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6077. #~ msgstr "A máquina definida no perfil <filename>{0}</filename> não corresponde à sua máquina atual, não foi possível importá-lo."
  6078. #~ msgctxt "@label crash message"
  6079. #~ msgid ""
  6080. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6081. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6082. #~ " "
  6083. #~ msgstr ""
  6084. #~ "<p><b>Um erro fatal ocorreu. Por favor nos envie este Relatório de Erro para consertar o problema</p></b>\n"
  6085. #~ " <p>Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente nos nossos servidores</p>\n"
  6086. #~ " "
  6087. #~ msgctxt "@label"
  6088. #~ msgid "not yet initialised<br/>"
  6089. #~ msgstr "ainda não inicializado<br/>"
  6090. #~ msgctxt "@label"
  6091. #~ msgid "Gcode flavor"
  6092. #~ msgstr "Sabor de G-Code"
  6093. #~ msgctxt "@label"
  6094. #~ msgid "Start Gcode"
  6095. #~ msgstr "G-Code Inicial"
  6096. #~ msgctxt "@tooltip"
  6097. #~ msgid "Gcode commands to be executed at the very start."
  6098. #~ msgstr "Comandos de G-Code a serem executados no início da impressão."
  6099. #~ msgctxt "@label"
  6100. #~ msgid "End Gcode"
  6101. #~ msgstr "G-Code Final"
  6102. #~ msgctxt "@tooltip"
  6103. #~ msgid "Gcode commands to be executed at the very end."
  6104. #~ msgstr "Comandos de G-Code a serem executados no final da impressão."
  6105. #~ msgctxt "@label"
  6106. #~ msgid "Extruder Start Gcode"
  6107. #~ msgstr "G-Code Inicial do Extrusor"
  6108. #~ msgctxt "@label"
  6109. #~ msgid "Extruder End Gcode"
  6110. #~ msgstr "G-Code Final do Extrusor"
  6111. #~ msgctxt "@label"
  6112. #~ msgid "Starting firmware update, this may take a while."
  6113. #~ msgstr "Iniciando atualização do firmware, isto pode demorar um pouco."
  6114. #~ msgctxt "@label"
  6115. #~ msgid "Unknown error code: %1"
  6116. #~ msgstr "Código de erro desconhecido: %1"
  6117. #~ msgctxt "@label Printer name"
  6118. #~ msgid "Ultimaker 3"
  6119. #~ msgstr "Ultimaker 3"
  6120. #~ msgctxt "@label Printer name"
  6121. #~ msgid "Ultimaker 3 Extended"
  6122. #~ msgstr "Ultimaker 3 Extended"
  6123. #~ msgctxt "@label Printer status"
  6124. #~ msgid "Unknown"
  6125. #~ msgstr "Desconhecido"
  6126. #~ msgctxt "@title:window"
  6127. #~ msgid "Find & Update plugins"
  6128. #~ msgstr "Buscar & Atualizar complementos"
  6129. #~ msgctxt "@label"
  6130. #~ msgid "Here you can find a list of Third Party plugins."
  6131. #~ msgstr "Aqui você pode encontrar uma lista de complementos de Terceiros."
  6132. #~ msgctxt "@action:button"
  6133. #~ msgid "Upgrade"
  6134. #~ msgstr "Atualizar"
  6135. #~ msgctxt "@action:button"
  6136. #~ msgid "Download"
  6137. #~ msgstr "Baixar"
  6138. #~ msgctxt "@info:tooltip"
  6139. #~ msgid "Show caution message in gcode reader."
  6140. #~ msgstr "Exibir mensagem de advertência no leitor de g-code."
  6141. #~ msgctxt "@option:check"
  6142. #~ msgid "Caution message in gcode reader"
  6143. #~ msgstr "Mensagem de advertência no leitor de g-code"
  6144. #~ msgctxt "@window:title"
  6145. #~ msgid "Import Profile"
  6146. #~ msgstr "Importar Perfil"
  6147. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6148. #~ msgid "Printer: %1, %2: %3"
  6149. #~ msgstr "Impressora: %1, %2: %3"
  6150. #~ msgctxt "@action:label %1 is printer name"
  6151. #~ msgid "Printer: %1"
  6152. #~ msgstr "Impressora: %1"
  6153. #~ msgctxt "@label"
  6154. #~ msgid "GCode generator"
  6155. #~ msgstr "Gerador de G-Code"
  6156. #~ msgctxt "@action:menu"
  6157. #~ msgid "Configure setting visiblity..."
  6158. #~ msgstr "Configurar a visibilidade dos ajustes..."
  6159. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6160. #~ msgid "Automatic: %1"
  6161. #~ msgstr "Automático: %1"
  6162. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6163. #~ msgid "Automatic: %1"
  6164. #~ msgstr "Automático: %1"
  6165. #~ msgctxt "@info:status"
  6166. #~ msgid "No printer connected"
  6167. #~ msgstr "Nenhuma impressora conectada"
  6168. #~ msgctxt "@tooltip"
  6169. #~ msgid "The current temperature of this extruder."
  6170. #~ msgstr "A temperatura atual deste extrusor."
  6171. #~ msgctxt "@action:menu"
  6172. #~ msgid "Installed plugins..."
  6173. #~ msgstr "Complementos instalados..."
  6174. #~ msgctxt "@label"
  6175. #~ msgid "Support Extruder"
  6176. #~ msgstr "Extrusor do Suporte"
  6177. #~ msgctxt "description"
  6178. #~ msgid "Writes GCode to a file."
  6179. #~ msgstr "Escreve G-Code para aquivo."
  6180. #~ msgctxt "name"
  6181. #~ msgid "GCode Writer"
  6182. #~ msgstr "Gerador de G-Code"
  6183. #~ msgctxt "name"
  6184. #~ msgid "GCode Profile Reader"
  6185. #~ msgstr "Leitor de Perfis de G-Code"
  6186. #~ msgctxt "@info:status"
  6187. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  6188. #~ msgstr "Erros apareceram ao abrir seu arquivo SolidWorks! Por favor verifique se é possível abrir seu arquivo no próprio SolidWorks sem problema também!"
  6189. #~ msgctxt "@info:status"
  6190. #~ msgid "Error while starting %s!"
  6191. #~ msgstr "Erro ao iniciar %s!"
  6192. #~ msgctxt "@item:inlistbox"
  6193. #~ msgid "Simulation view"
  6194. #~ msgstr "Visão simulada"
  6195. #~ msgctxt "@info"
  6196. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6197. #~ msgstr "O Cura coleta estatística de fatiamento anonimizadas. Você pode desabilitar isso nas preferências."
  6198. #~ msgctxt "@action:button"
  6199. #~ msgid "Dismiss"
  6200. #~ msgstr "Fechar"
  6201. #~ msgctxt "@menuitem"
  6202. #~ msgid "Global"
  6203. #~ msgstr "Global"
  6204. #~ msgctxt "@label crash message"
  6205. #~ msgid ""
  6206. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6207. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6208. #~ " "
  6209. #~ msgstr ""
  6210. #~ "<p><b>Uma exceção fatal aocorreu. Por favor nos envie este Relatório de Erros para consertarmos o problema</p></b>\n"
  6211. #~ " <p>Por favor use o botão \"Enviar relatório\" para postar um relato de bug automaticamente em nossos servidores</p>\n"
  6212. #~ " "
  6213. #~ msgctxt "@label Cura version"
  6214. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6215. #~ msgstr "<b>Versão do Cura:</b> {version}<br/>"
  6216. #~ msgctxt "@label Platform"
  6217. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6218. #~ msgstr "<b>Plataforma:</b> {platform}<br/>"
  6219. #~ msgctxt "@label Qt version"
  6220. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6221. #~ msgstr "<b>Versão da Qt:</b> {qt}<br/>"
  6222. #~ msgctxt "@label PyQt version"
  6223. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  6224. #~ msgstr "<b>Versão da PyQt:</b> {pyqt}<br/>"
  6225. #~ msgctxt "@label OpenGL"
  6226. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  6227. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  6228. #~ msgctxt "@title:groupbox"
  6229. #~ msgid "Exception traceback"
  6230. #~ msgstr "Traceback de exceção"
  6231. #~ msgctxt "@label"
  6232. #~ msgid "Material diameter"
  6233. #~ msgstr "Diâmetro do material"
  6234. #~ msgctxt "@title:window"
  6235. #~ msgid "Cura SolidWorks Plugin Configuration"
  6236. #~ msgstr "Configuração do Complemento de Solidworks do Cura"
  6237. #~ msgctxt "@action:label"
  6238. #~ msgid "Default quality of the exported STL:"
  6239. #~ msgstr "Qualidade default do STL exportado:"
  6240. #~ msgctxt "@option:curaSolidworksStlQuality"
  6241. #~ msgid "Always ask"
  6242. #~ msgstr "Sempre perguntar"
  6243. #~ msgctxt "@option:curaSolidworksStlQuality"
  6244. #~ msgid "Always use Fine quality"
  6245. #~ msgstr "Sempre usar qualidade Alta"
  6246. #~ msgctxt "@option:curaSolidworksStlQuality"
  6247. #~ msgid "Always use Coarse quality"
  6248. #~ msgstr "Sempre usar qualidade Baixa"
  6249. #~ msgctxt "@title:window"
  6250. #~ msgid "Import SolidWorks File as STL..."
  6251. #~ msgstr "Importar Arquivo SolidWorks como STL..."
  6252. #~ msgctxt "@info:tooltip"
  6253. #~ msgid "Quality of the Exported STL"
  6254. #~ msgstr "Qualidade do STL Exportado"
  6255. #~ msgctxt "@action:label"
  6256. #~ msgid "Quality"
  6257. #~ msgstr "Qualidade"
  6258. #~ msgctxt "@option:curaSolidworksStlQuality"
  6259. #~ msgid "Coarse"
  6260. #~ msgstr "Baixa"
  6261. #~ msgctxt "@option:curaSolidworksStlQuality"
  6262. #~ msgid "Fine"
  6263. #~ msgstr "Alta"
  6264. #~ msgctxt "@"
  6265. #~ msgid "No Profile Available"
  6266. #~ msgstr "Nenhum Perfil Disponível"
  6267. #~ msgctxt "@label"
  6268. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6269. #~ msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Alterá-lo aqui propagará o valor para todos os outros extrusores"
  6270. #~ msgctxt "@tooltip"
  6271. #~ msgid "<b>Time specification</b><br/><table>"
  6272. #~ msgstr "<b>Especificação de tempo</b><br/><table>"
  6273. #~ msgctxt "@action:inmenu menubar:view"
  6274. #~ msgid "&Reset camera position"
  6275. #~ msgstr "&Recompor posições de câmera"
  6276. #~ msgctxt "@title:menu menubar:file"
  6277. #~ msgid "Save project"
  6278. #~ msgstr "Salvar projeto"
  6279. #~ msgctxt "@title:tab"
  6280. #~ msgid "Prepare"
  6281. #~ msgstr "Preparar"
  6282. #~ msgctxt "@title:tab"
  6283. #~ msgid "Monitor"
  6284. #~ msgstr "Monitorar"
  6285. #~ msgctxt "@label"
  6286. #~ msgid "<a href='%1'>Check compatibility</a>"
  6287. #~ msgstr "<a href='%1'>Verificar compatibilidade</a>"
  6288. #~ msgctxt "description"
  6289. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6290. #~ msgstr "Te dá a possibilidade de abrir certos arquivos via o próprio SolidWorks. Tais são convertidos e carregados no Cura"
  6291. #~ msgctxt "@label:status"
  6292. #~ msgid "Blocked"
  6293. #~ msgstr "Bloqueado"
  6294. #~ msgctxt "@label:status"
  6295. #~ msgid "Can't start print"
  6296. #~ msgstr "Não consigo começar a imprimir"
  6297. #~ msgctxt "@action:button"
  6298. #~ msgid "Open Connect.."
  6299. #~ msgstr "Abrir Connect.."
  6300. #~ msgctxt "@info:title"
  6301. #~ msgid "Print Details"
  6302. #~ msgstr "Detalhes de Impressão"
  6303. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6304. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  6305. #~ msgstr "Para assegurar que sua {machine_name} esteja equipada com os recursos mais recentes, é recomendado atualizar o firmware regularmente. Isto pode ser feito na {machine_name} (quando conectado pela rede) ou via USB."
  6306. #~ msgctxt "@info:title"
  6307. #~ msgid "Layer View"
  6308. #~ msgstr "Visão de Camadas"
  6309. #~ msgctxt "@menuitem"
  6310. #~ msgid "Browse plugins"
  6311. #~ msgstr "Navegar complementos"
  6312. #~ msgctxt "@info:title"
  6313. #~ msgid "Export Details"
  6314. #~ msgstr "Detalhes da Exportação"
  6315. #~ msgctxt "@label"
  6316. #~ msgid ""
  6317. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6318. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6319. #~ " "
  6320. #~ msgstr ""
  6321. #~ "<p>Uma exceção fatal ocorreu e não foi possível haver recuperação!</p>\n"
  6322. #~ " <p>Por favor use a informação abaixo para publicar um relatório de erro em <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6323. #~ " "
  6324. #~ msgctxt "@action:button"
  6325. #~ msgid "Open Web Page"
  6326. #~ msgstr "Abrir Página Web"
  6327. #~ msgctxt "@action:button"
  6328. #~ msgid "Ok"
  6329. #~ msgstr "Ok"
  6330. #~ msgctxt "@label"
  6331. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6332. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas."
  6333. #~ msgctxt "@label"
  6334. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6335. #~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3 conectadas"
  6336. #~ msgctxt "@label"
  6337. #~ msgid "Completed on: "
  6338. #~ msgstr "Completado em: "
  6339. #~ msgctxt "@info:tooltip"
  6340. #~ msgid "Opens the print jobs page with your default web browser."
  6341. #~ msgstr "Abre a página de trabalhos de impressão com seu navegador web default."
  6342. #~ msgctxt "@label"
  6343. #~ msgid "PRINTER GROUP"
  6344. #~ msgstr "GRUPO DE IMPRESSORAS"
  6345. #~ msgctxt "@action:warning"
  6346. #~ msgid "Loading a project will clear all models on the buildplate"
  6347. #~ msgstr "Carregar um projeto removerá todos os modelos da mesa de impressão"
  6348. #~ msgctxt "@label"
  6349. #~ msgid ""
  6350. #~ " plugin contains a license.\n"
  6351. #~ "You need to accept this license to install this plugin.\n"
  6352. #~ "Do you agree with the terms below?"
  6353. #~ msgstr ""
  6354. #~ " complemento tem uma licença.\n"
  6355. #~ "Você precisa aceitar esta licença para instalar este complemento.\n"
  6356. #~ "Você está de acordo com os termos abaixo?"
  6357. #~ msgctxt "@label"
  6358. #~ msgid "00h 00min"
  6359. #~ msgstr "00h 00min"
  6360. #~ msgctxt "@tooltip"
  6361. #~ msgid "<b>Time information</b>"
  6362. #~ msgstr "<b>Informação de tempo</b>"
  6363. #~ msgctxt "@description"
  6364. #~ msgid "Print time"
  6365. #~ msgstr "Tempo de impressão"
  6366. #~ msgctxt "@label"
  6367. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6368. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6369. #~ msgctxt "@label"
  6370. #~ msgid "%1m / ~ %2g"
  6371. #~ msgstr "%1m / ~ %2g"
  6372. #~ msgctxt "@title:window"
  6373. #~ msgid "Cura"
  6374. #~ msgstr "Cura"
  6375. #~ msgctxt "@label"
  6376. #~ msgid "<a href='%1'>Check material compatibility</a>"
  6377. #~ msgstr "<a href='%1'>Verificar compatibilidade de material</a>"
  6378. #~ msgctxt "name"
  6379. #~ msgid "UM3 Network Connection (Cluster)"
  6380. #~ msgstr "Conexão de Rede UM3 (Cluster)"
  6381. #~ msgctxt "description"
  6382. #~ msgid "Provides the Layer view."
  6383. #~ msgstr "Provê a visão de Camadas."
  6384. #~ msgctxt "name"
  6385. #~ msgid "Layer View"
  6386. #~ msgstr "Visão de Camadas"
  6387. #~ msgctxt "@item:inlistbox"
  6388. #~ msgid "X-Ray"
  6389. #~ msgstr "Raios X"
  6390. #~ msgctxt "@label"
  6391. #~ msgid "Doodle3D"
  6392. #~ msgstr "Doodle3D"
  6393. #~ msgctxt "@info:whatsthis"
  6394. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6395. #~ msgstr "Aceita G-Code e o envia por wifi para o aplicativo de celular Doodle3D."
  6396. #~ msgctxt "@item:inmenu"
  6397. #~ msgid "Doodle3D printing"
  6398. #~ msgstr "Impressão Doodle3D"
  6399. #~ msgctxt "@action:button"
  6400. #~ msgid "Print with Doodle3D"
  6401. #~ msgstr "Imprimir com Doodle3D"
  6402. #~ msgctxt "@info:tooltip"
  6403. #~ msgid "Print with "
  6404. #~ msgstr "Imprimir com "
  6405. #~ msgctxt "@title:menu"
  6406. #~ msgid "Doodle3D"
  6407. #~ msgstr "Doodle3D"
  6408. #~ msgctxt "@item:inlistbox"
  6409. #~ msgid "Enable Scan devices..."
  6410. #~ msgstr "Habilitar dispositivos de escaneamento..."
  6411. #~ msgctxt "@info:progress"
  6412. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  6413. #~ msgstr "Salvando em Unidade Removível <filename>{0}</filename>"
  6414. #~ msgctxt "@info:status"
  6415. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  6416. #~ msgstr "Incapaz de salvar para <filename>{0}</filename>: <message>{1}</message>"
  6417. #~ msgctxt "@info:status"
  6418. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6419. #~ msgstr "Por favor tenha em mente que você precisa reabrir seu arquivo Solidworks manualmente! Recarregar o modelo não irá funcionar!"
  6420. #~ msgctxt "@item:inlistbox"
  6421. #~ msgid "Layers"
  6422. #~ msgstr "Camadas"
  6423. #~ msgid "Browse plugins"
  6424. #~ msgstr "Navegar por complementos"
  6425. #~ msgctxt "@item:inmenu"
  6426. #~ msgid "Solid"
  6427. #~ msgstr "Sólido"
  6428. #~ msgctxt "@label"
  6429. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  6430. #~ msgstr "O arquivo <filename>{0}</filename> já existe. Tem certeza que quer sobrescrevê-lo?"
  6431. #~ msgctxt "@info:status"
  6432. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  6433. #~ msgstr "Falha na exportação de perfil para <filename>{0}</filename>: <message>{1}</message>"
  6434. #~ msgctxt "@info:status"
  6435. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  6436. #~ msgstr "Falha na exportação de perfil para <filename>{0}</filename>: Complemento de gravação acusou falha."
  6437. #~ msgctxt "@info:status"
  6438. #~ msgid "Exported profile to <filename>{0}</filename>"
  6439. #~ msgstr "Perfil exportado para <filename>{0}</filename>"
  6440. #~ msgctxt "@info:status"
  6441. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6442. #~ msgstr "Falha na importação de perfil de <filename>{0}</filename>: <message>{1}</message>"
  6443. #~ msgctxt "@title:window"
  6444. #~ msgid "Doodle3D Settings"
  6445. #~ msgstr "Ajustes de Doodle3D"
  6446. #~ msgctxt "@title:window"
  6447. #~ msgid "Print to: %1"
  6448. #~ msgstr "Imprimir em: %1"
  6449. #~ msgctxt "@label"
  6450. #~ msgid "Extruder Temperature: %1/%2°C"
  6451. #~ msgstr "Temperatura do Extrusor: %1/%2°C"
  6452. #~ msgctxt "@label"
  6453. #~ msgid "Bed Temperature: %1/%2°C"
  6454. #~ msgstr "Temperatura da Mesa: %1/%2°C"
  6455. #~ msgctxt "@label"
  6456. #~ msgid "%1"
  6457. #~ msgstr "%1"
  6458. #~ msgctxt "@label"
  6459. #~ msgid "View Mode: Layers"
  6460. #~ msgstr "Modo de Visão: Camadas"
  6461. #~ msgctxt "@info:status"
  6462. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  6463. #~ msgstr "Não foi possível importar material<filename>%1</filename>: <message>%2</message>"
  6464. #~ msgctxt "@info:status"
  6465. #~ msgid "Successfully imported material <filename>%1</filename>"
  6466. #~ msgstr "Material <filename>%1</filename> importado com sucesso"
  6467. #~ msgctxt "@info:status"
  6468. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  6469. #~ msgstr "Falha ao exportar material para <filename>%1</filename>: <message>%2</message>"
  6470. #~ msgctxt "@info:status"
  6471. #~ msgid "Successfully exported material to <filename>%1</filename>"
  6472. #~ msgstr "Material <filename>%1</filename> exportado com sucesso"
  6473. #~ msgctxt "@label"
  6474. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  6475. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  6476. #~ msgctxt "@label"
  6477. #~ msgid "%1 m / ~ %2 g"
  6478. #~ msgstr "%1 m / ~ %2 g"
  6479. #~ msgctxt "@label"
  6480. #~ msgid "Hotend"
  6481. #~ msgstr "Hotend"
  6482. #~ msgctxt "@action:button"
  6483. #~ msgid "View Mode"
  6484. #~ msgstr "Modo de Visualização"
  6485. #~ msgctxt "@title:tab"
  6486. #~ msgid "Print"
  6487. #~ msgstr "Imprimir"
  6488. #~ msgctxt "@label"
  6489. #~ msgid "0%"
  6490. #~ msgstr "0%"
  6491. #~ msgctxt "@label"
  6492. #~ msgid "Empty infill will leave your model hollow with low strength."
  6493. #~ msgstr "Preenchimento vazio deixará seu modelo oco e com baixa resistência."
  6494. #~ msgctxt "@label"
  6495. #~ msgid "20%"
  6496. #~ msgstr "20%"
  6497. #~ msgctxt "@label"
  6498. #~ msgid "Light (20%) infill will give your model an average strength."
  6499. #~ msgstr "Preenchimento leve (20%) dará ao seu modelo uma resistência média."
  6500. #~ msgctxt "@label"
  6501. #~ msgid "50%"
  6502. #~ msgstr "50%"
  6503. #~ msgctxt "@label"
  6504. #~ msgid "Dense (50%) infill will give your model an above average strength."
  6505. #~ msgstr "Preenchimento denso (50%) dará ao seu modelo uma resistência acima da média."
  6506. #~ msgctxt "@label"
  6507. #~ msgid "100%"
  6508. #~ msgstr "100%"
  6509. #~ msgctxt "@label"
  6510. #~ msgid "Solid (100%) infill will make your model completely solid."
  6511. #~ msgstr "Preenchimento sólido (100%) fará seu modelo completamente sólido."
  6512. #~ msgctxt "@label"
  6513. #~ msgid "Gradual"
  6514. #~ msgstr "Gradual"
  6515. #~ msgctxt "description"
  6516. #~ msgid "Provides support for writing X3G files"
  6517. #~ msgstr "Provê suporte à escrita de arquivos X3G"
  6518. #~ msgctxt "name"
  6519. #~ msgid "X3G Writer"
  6520. #~ msgstr "Gerador de X3G"
  6521. #~ msgctxt "@label"
  6522. #~ msgid "Machine Settings action"
  6523. #~ msgstr "Ação de ajustes da máquina"
  6524. #~ msgctxt "@info:whatsthis"
  6525. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6526. #~ msgstr "Permite mudar ajustes da máquina (tais como volume de construção, tamanho do bico, etc)"
  6527. #~ msgctxt "@label"
  6528. #~ msgid "X-Ray View"
  6529. #~ msgstr "Visão de Raios X"
  6530. #~ msgctxt "@info:whatsthis"
  6531. #~ msgid "Provides the X-Ray view."
  6532. #~ msgstr "Provê a visão de Raios X."
  6533. #~ msgctxt "@label"
  6534. #~ msgid "X3D Reader"
  6535. #~ msgstr "Leitor de X3D"
  6536. #~ msgctxt "@info:whatsthis"
  6537. #~ msgid "Provides support for reading X3D files."
  6538. #~ msgstr "Provê suporte para ler arquivos X3D."
  6539. #~ msgctxt "@label"
  6540. #~ msgid "GCode Writer"
  6541. #~ msgstr "Gerador de G-Code"
  6542. #~ msgctxt "@info:whatsthis"
  6543. #~ msgid "Writes GCode to a file."
  6544. #~ msgstr "Salva o G-Code em um arquivo."
  6545. #~ msgctxt "@action:button Preceded by 'Ready to'."
  6546. #~ msgid "Print with Doodle3D"
  6547. #~ msgstr "Imprimir com Doodle3D"
  6548. #~ msgctxt "@info:whatsthis"
  6549. #~ msgid "Shows changes since latest checked version."
  6550. #~ msgstr "Mostra as alterações desde a última versão verificada."
  6551. #~ msgctxt "@label"
  6552. #~ msgid "Profile flatener"
  6553. #~ msgstr "Achatador de Perfil"
  6554. #~ msgctxt "@info:whatsthis"
  6555. #~ msgid "Create a flattend quality changes profile."
  6556. #~ msgstr "Faz um perfil plano com as mudanças de qualidade."
  6557. #~ msgctxt "@label"
  6558. #~ msgid "USB printing"
  6559. #~ msgstr "Impressão USB"
  6560. #~ msgctxt "@info:whatsthis"
  6561. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  6562. #~ msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware."
  6563. #~ msgctxt "X3G Writer Plugin Description"
  6564. #~ msgid "Writes X3G to a file"
  6565. #~ msgstr "Salva em arquivo X3G."
  6566. #~ msgctxt "@label"
  6567. #~ msgid "Removable Drive Output Device Plugin"
  6568. #~ msgstr "Complemento de Gravação em Dispositivo de Unidade Removível"
  6569. #~ msgctxt "@info:whatsthis"
  6570. #~ msgid "Provides removable drive hotplugging and writing support."
  6571. #~ msgstr "Provê suporte a conexão a quente e gravação em unidade removível."
  6572. #~ msgctxt "@info:whatsthis"
  6573. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6574. #~ msgstr "Gerencia as conexões de rede em impressoras Ultimaker 3"
  6575. #~ msgctxt "@label"
  6576. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6577. #~ msgstr "PrintCore diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  6578. #~ msgctxt "@label"
  6579. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6580. #~ msgstr "PrintCore {0} não está calibrado corretamente. A calibração XY precisa ser executada na impressora."
  6581. #~ msgctxt "@label"
  6582. #~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer."
  6583. #~ msgstr "Os PrintCores e/ou materiais na sua impressora divergem dos de seu projeto atual. Para melhores resultados, sempre fatie para os PrintCores e materiais que estão carregados em sua impressora."
  6584. #~ msgctxt "@label"
  6585. #~ msgid "Post Processing"
  6586. #~ msgstr "Pós-processamento"
  6587. #~ msgctxt "Description of plugin"
  6588. #~ msgid "Extension that allows for user created scripts for post processing"
  6589. #~ msgstr "Extensão que permite scripts criados pelo usuário para pós-processamento"
  6590. #~ msgctxt "@label"
  6591. #~ msgid "Auto Save"
  6592. #~ msgstr "Salvar automaticamente"
  6593. #~ msgctxt "@info:whatsthis"
  6594. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6595. #~ msgstr "Salva preferências, máquinas e perfis automaticamente depois de alterações."
  6596. #~ msgctxt "@label"
  6597. #~ msgid "Slice info"
  6598. #~ msgstr "Informações de fatiamento"
  6599. #~ msgctxt "@info:whatsthis"
  6600. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  6601. #~ msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências."
  6602. #~ msgctxt "@info"
  6603. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  6604. #~ msgstr "O Cura coleta estatísticas de fatiamento anonimizadas. Pode ser desabilitado nas preferências."
  6605. #~ msgctxt "@label"
  6606. #~ msgid "Material Profiles"
  6607. #~ msgstr "Perfis de Material"
  6608. #~ msgctxt "@info:whatsthis"
  6609. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  6610. #~ msgstr "Permite ler e escrever perfis de material baseado em XML."
  6611. #~ msgctxt "@label"
  6612. #~ msgid "Legacy Cura Profile Reader"
  6613. #~ msgstr "Leitor de perfis legados do Cura"
  6614. #~ msgctxt "@info:whatsthis"
  6615. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  6616. #~ msgstr "Provê suporte à importação de perfis de versões legadas do Cura."
  6617. #~ msgctxt "@label"
  6618. #~ msgid "GCode Profile Reader"
  6619. #~ msgstr "Leitor de perfis de G-Code"
  6620. #~ msgctxt "@info:whatsthis"
  6621. #~ msgid "Provides support for importing profiles from g-code files."
  6622. #~ msgstr "Provê suporte para importar perfis de arquivos G-Code."
  6623. #~ msgctxt "@label"
  6624. #~ msgid "Layer View"
  6625. #~ msgstr "Visão de Camadas"
  6626. #~ msgctxt "@info:whatsthis"
  6627. #~ msgid "Provides the Layer view."
  6628. #~ msgstr "Provê a Visão de Camadas"
  6629. #~ msgctxt "@label"
  6630. #~ msgid "Version Upgrade 2.5 to 2.6"
  6631. #~ msgstr "Atualização de Versão de 2.5 para 2.6"
  6632. #~ msgctxt "@info:whatsthis"
  6633. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  6634. #~ msgstr "Atualiza configurações do Cura 2.5 para Cura 2.6."
  6635. #~ msgctxt "@label"
  6636. #~ msgid "Version Upgrade 2.1 to 2.2"
  6637. #~ msgstr "Atualização de Versão de 2.1 para 2.2"
  6638. #~ msgctxt "@info:whatsthis"
  6639. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  6640. #~ msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2."
  6641. #~ msgctxt "@label"
  6642. #~ msgid "Version Upgrade 2.2 to 2.4"
  6643. #~ msgstr "Atualização de versão de 2.2 para 2.4"
  6644. #~ msgctxt "@info:whatsthis"
  6645. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  6646. #~ msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4."
  6647. #~ msgctxt "@label"
  6648. #~ msgid "Image Reader"
  6649. #~ msgstr "Leitor de Imagens"
  6650. #~ msgctxt "@info:whatsthis"
  6651. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  6652. #~ msgstr "Habilita o recurso de gerar geometrias imprimíveis a partir de arquivos de imagem 2D."
  6653. #~ msgctxt "@label"
  6654. #~ msgid "CuraEngine Backend"
  6655. #~ msgstr "Backend do CuraEngine"
  6656. #~ msgctxt "@info:whatsthis"
  6657. #~ msgid "Provides the link to the CuraEngine slicing backend."
  6658. #~ msgstr "Proporciona a ligação da interface com o backend de fatiamento CuraEngine."
  6659. #~ msgctxt "@label"
  6660. #~ msgid "Per Model Settings Tool"
  6661. #~ msgstr "Ferramenta de Ajustes por Modelo"
  6662. #~ msgctxt "@info:whatsthis"
  6663. #~ msgid "Provides the Per Model Settings."
  6664. #~ msgstr "Provê ajustes específicos por Modelo."
  6665. #~ msgctxt "@label"
  6666. #~ msgid "3MF Reader"
  6667. #~ msgstr "Leitor de 3MF"
  6668. #~ msgctxt "@info:whatsthis"
  6669. #~ msgid "Provides support for reading 3MF files."
  6670. #~ msgstr "Provê suporte à leitura de arquivos 3MF."
  6671. #~ msgctxt "@label"
  6672. #~ msgid "Solid View"
  6673. #~ msgstr "Visão Sólida"
  6674. #~ msgctxt "@info:whatsthis"
  6675. #~ msgid "Provides a normal solid mesh view."
  6676. #~ msgstr "Provê uma visão de malha sólida normal."
  6677. #~ msgctxt "@label"
  6678. #~ msgid "G-code Reader"
  6679. #~ msgstr "Leitor de G-Code"
  6680. #~ msgctxt "@info:whatsthis"
  6681. #~ msgid "Allows loading and displaying G-code files."
  6682. #~ msgstr "Permite carregar e mostrar arquivos G-Code."
  6683. #~ msgctxt "@label"
  6684. #~ msgid "Cura Profile Writer"
  6685. #~ msgstr "Gravador de Perfis do Cura"
  6686. #~ msgctxt "@info:whatsthis"
  6687. #~ msgid "Provides support for exporting Cura profiles."
  6688. #~ msgstr "Provê suporte para a exportação de perfis do Cura."
  6689. #~ msgctxt "@label"
  6690. #~ msgid "3MF Writer"
  6691. #~ msgstr "Gerador 3MF"
  6692. #~ msgctxt "@info:whatsthis"
  6693. #~ msgid "Provides support for writing 3MF files."
  6694. #~ msgstr "Provê suporte para escrever arquivos 3MF."
  6695. #~ msgctxt "@label"
  6696. #~ msgid "Ultimaker machine actions"
  6697. #~ msgstr "Ações de máquina Ultimaker"
  6698. #~ msgctxt "@info:whatsthis"
  6699. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6700. #~ msgstr "Provê ações de máquina para impressoras Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)"
  6701. #~ msgctxt "@label"
  6702. #~ msgid "Cura Profile Reader"
  6703. #~ msgstr "Leitor de Perfis do Cura"
  6704. #~ msgctxt "@info:whatsthis"
  6705. #~ msgid "Provides support for importing Cura profiles."
  6706. #~ msgstr "Provê suporte para importar perfis do Cura."
  6707. #~ msgctxt "@info"
  6708. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  6709. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  6710. #~ msgctxt "@label"
  6711. #~ msgid "Build Plate Shape"
  6712. #~ msgstr "Forma da Mesa"
  6713. #~ msgctxt "@option:check"
  6714. #~ msgid "Machine Center is Zero"
  6715. #~ msgstr "Centro da Mesa é Zero"
  6716. #~ msgctxt "@option:check"
  6717. #~ msgid "Heated Bed"
  6718. #~ msgstr "Mesa Aquecida"
  6719. #~ msgctxt "@label"
  6720. #~ msgid "GCode Flavor"
  6721. #~ msgstr "Tipo de G-Code"
  6722. #~ msgctxt "@label"
  6723. #~ msgid "Material Diameter"
  6724. #~ msgstr "Diâmetro do Material"
  6725. #~ msgctxt "@label"
  6726. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  6727. #~ msgstr "Se a sua impressora não está listada, leia o <a href='%1'>guia de resolução de problemas em impressão de rede</a>"
  6728. #~ msgctxt "@item:inlistbox"
  6729. #~ msgid "Ultimaker"
  6730. #~ msgstr "Ultimaker"
  6731. #~ msgctxt "@label"
  6732. #~ msgid "Support library for scientific computing "
  6733. #~ msgstr "Biblioteca de suporte para computação científica"
  6734. #~ msgctxt "@tooltip"
  6735. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  6736. #~ msgstr "<b>Configuração de Impressão</b><br/></br/>Editar ou revisar os ajustes para o trabalho de impressão ativo."
  6737. #~ msgctxt "@tooltip"
  6738. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  6739. #~ msgstr "<b>Monitor de Impressão</b><br/><br/>Monitorar o estado da impressora conectada e o trabalho de impressão em progresso."
  6740. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  6741. #~ msgid "Automatic: %1"
  6742. #~ msgstr "Automático: %1"
  6743. #~ msgctxt "@label:PrintjobStatus"
  6744. #~ msgid "Please load a 3d model"
  6745. #~ msgstr "Por favor carregue um modelo 3D"
  6746. #~ msgctxt "@label"
  6747. #~ msgid "Print Selected Model with %1"
  6748. #~ msgid_plural "Print Selected Models With %1"
  6749. #~ msgstr[0] "Imprimir Modelo Selecionado com %1"
  6750. #~ msgstr[1] "Imprimir Modelos Selecionados Com %1"
  6751. #~ msgctxt "@info:status"
  6752. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  6753. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há PrinterCore carregado no slot {0}"
  6754. #~ msgctxt "@label"
  6755. #~ msgid "Version Upgrade 2.4 to 2.5"
  6756. #~ msgstr "Atualizar versão 2.4 para 2.5"
  6757. #~ msgctxt "@info:whatsthis"
  6758. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  6759. #~ msgstr "Atualiza as configurações do Cura 2.4 para o Cura 2.5"
  6760. #~ msgctxt "@info:status"
  6761. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  6762. #~ msgstr "Incapaz de encontrar um perfil de qualidade para esta combinação. Ajustes default serão usados no lugar."
  6763. #~ msgctxt "@title:window"
  6764. #~ msgid "Oops!"
  6765. #~ msgstr "Oops!"
  6766. #~ msgctxt "@label"
  6767. #~ msgid ""
  6768. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6769. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  6770. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6771. #~ " "
  6772. #~ msgstr ""
  6773. #~ "<p>Uma exceção fatal ocorreu e não foi possível a recuperação deste estado!</p>\n"
  6774. #~ " <p>Esperamos que esta figura de um gatinho te ajude a se recuperar do choque.</p>\n"
  6775. #~ " <p>Por favor use a informação abaixo para postar um relatório de bug em <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6776. #~ " "
  6777. #~ msgctxt "@label"
  6778. #~ msgid "Please enter the correct settings for your printer below:"
  6779. #~ msgstr "Por favor introduza os ajustes corretos para sua impressora abaixo:"
  6780. #~ msgctxt "@label"
  6781. #~ msgid "Extruder %1"
  6782. #~ msgstr "Extrusor %1"
  6783. #~ msgctxt "@label Followed by extruder selection drop-down."
  6784. #~ msgid "Print model with"
  6785. #~ msgstr "Imprimir modelo com"
  6786. #~ msgctxt "@label"
  6787. #~ msgid "You will need to restart the application for language changes to have effect."
  6788. #~ msgstr "A aplicação deverá ser reiniciada para que as alterações de idioma tenham efeito."
  6789. #~ msgctxt "@info:tooltip"
  6790. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  6791. #~ msgstr "Move a câmera de modo que o modelo esteja no centro da visão quando estiver selecionado"
  6792. #~ msgctxt "@action:inmenu menubar:edit"
  6793. #~ msgid "Delete &Selection"
  6794. #~ msgstr "Eliminar &Seleção"
  6795. #~ msgctxt "@action:inmenu menubar:file"
  6796. #~ msgid "&Open File..."
  6797. #~ msgstr "&Abrir Arquivo..."
  6798. #~ msgctxt "@action:inmenu menubar:file"
  6799. #~ msgid "&Open Project..."
  6800. #~ msgstr "&Abrir Projeto..."
  6801. #~ msgctxt "@title:window"
  6802. #~ msgid "Multiply Model"
  6803. #~ msgstr "Multiplicar Modelo"
  6804. #~ msgctxt "@title:menu menubar:file"
  6805. #~ msgid "Save &All"
  6806. #~ msgstr "Salvar &Tudo"
  6807. #~ msgctxt "@title:window"
  6808. #~ msgid "Open file"
  6809. #~ msgstr "Abrir arquivo"
  6810. #~ msgctxt "@title:window"
  6811. #~ msgid "Open workspace"
  6812. #~ msgstr "Abrir espaço de trabalho"
  6813. #~ msgctxt "@label"
  6814. #~ msgid "Hollow"
  6815. #~ msgstr "Oco"
  6816. #~ msgctxt "@label"
  6817. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  6818. #~ msgstr "Preenchimento zero (0%) deixará seu modelo oco ao custo de baixa resistência"
  6819. #~ msgctxt "@label"
  6820. #~ msgid "Light"
  6821. #~ msgstr "Leve"
  6822. #~ msgctxt "@label"
  6823. #~ msgid "Light (20%) infill will give your model an average strength"
  6824. #~ msgstr "Preenchimento leve (20%) dará ao seu modelo resistência média"
  6825. #~ msgctxt "@label"
  6826. #~ msgid "Dense"
  6827. #~ msgstr "Denso"
  6828. #~ msgctxt "@label"
  6829. #~ msgid "Dense (50%) infill will give your model an above average strength"
  6830. #~ msgstr "Preenchimento denso (50%) dará ao seu modelo resistência acima da média"
  6831. #~ msgctxt "@label"
  6832. #~ msgid "Solid"
  6833. #~ msgstr "Sólido"
  6834. #~ msgctxt "@label"
  6835. #~ msgid "Solid (100%) infill will make your model completely solid"
  6836. #~ msgstr "Preenchimento sólido (100%) fará seu modelo ficar totalmente maciço."
  6837. #~ msgctxt "@label"
  6838. #~ msgid "Enable Support"
  6839. #~ msgstr "Habilitar Suporte"
  6840. #~ msgctxt "@label"
  6841. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  6842. #~ msgstr "Habilitar estruturas de suporte. Estas estruturas apóiam partes do modelo que tenham seções pendentes."
  6843. #~ msgctxt "@label"
  6844. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6845. #~ msgstr "Precisa de ajuda para melhorar suas impressões? Leia o <a href='%1'>Guia de Solução de Problemas da Ultimaker</a>."
  6846. #~ msgctxt "@info:status"
  6847. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  6848. #~ msgstr "Conectado pela rede a {0}. Por favor aprove o pedido de acesso na impressora."
  6849. #~ msgctxt "@info:status"
  6850. #~ msgid "Connected over the network to {0}."
  6851. #~ msgstr "Conectado pela rede a {0}."
  6852. #~ msgctxt "@info:status"
  6853. #~ msgid "Connected over the network to {0}. No access to control the printer."
  6854. #~ msgstr "Conectado pela rede a {0}. Não há acesso para controlar a impressora."
  6855. #~ msgctxt "@info:status"
  6856. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  6857. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão porque a impressora está ocupada. Verifique a impressora."
  6858. #~ msgctxt "@label"
  6859. #~ msgid "You made changes to the following setting(s)/override(s):"
  6860. #~ msgstr "Foram feitas alterações nos seguintes ajustes:"
  6861. #~ msgctxt "@window:title"
  6862. #~ msgid "Switched profiles"
  6863. #~ msgstr "Perfis trocados"
  6864. #~ msgctxt "@label"
  6865. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  6866. #~ msgstr "Deseja transferir seus %d ajustes alterados para este perfil?"
  6867. #~ msgctxt "@label"
  6868. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  6869. #~ msgstr "Se você transferir seus ajustes eles sobrescreverão os ajustes no perfil. Se você não transferir esses ajustes, eles se perderão."
  6870. #~ msgctxt "@label"
  6871. #~ msgid "Cost per Meter (Approx.)"
  6872. #~ msgstr "Custo por Metro (Aprox.)"
  6873. #~ msgctxt "@label"
  6874. #~ msgid "%1/m"
  6875. #~ msgstr "%1/m"
  6876. #~ msgctxt "@info:tooltip"
  6877. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  6878. #~ msgstr "Exibir as 5 camadas superiores na visão de camadas ou somente a camada superior. Exibir 5 camadas leva mais tempo, mas mostra mais informação."
  6879. #~ msgctxt "@action:button"
  6880. #~ msgid "Display five top layers in layer view"
  6881. #~ msgstr "Exibir as 5 camadas superiores na visão de camadas"
  6882. #~ msgctxt "@info:tooltip"
  6883. #~ msgid "Should only the top layers be displayed in layerview?"
  6884. #~ msgstr "Somente as camadas superiores devem ser exibidas na visào de camadas?"
  6885. #~ msgctxt "@option:check"
  6886. #~ msgid "Only display top layer(s) in layer view"
  6887. #~ msgstr "Somente exibir as camadas superiores na visão de camadas"
  6888. #~ msgctxt "@label"
  6889. #~ msgid "Opening files"
  6890. #~ msgstr "Abrindo arquivos..."
  6891. #~ msgctxt "@label"
  6892. #~ msgid "Printer Monitor"
  6893. #~ msgstr "Monitor da Impressora"
  6894. #~ msgctxt "@label"
  6895. #~ msgid "Temperatures"
  6896. #~ msgstr "Temperaturas"
  6897. #~ msgctxt "@label:PrintjobStatus"
  6898. #~ msgid "Preparing to slice..."
  6899. #~ msgstr "Preparando para fatiar..."
  6900. #~ msgctxt "@window:title"
  6901. #~ msgid "Changes on the Printer"
  6902. #~ msgstr "Alterações na Impressora"
  6903. #~ msgctxt "@action:inmenu"
  6904. #~ msgid "&Duplicate Model"
  6905. #~ msgstr "&Duplicar Modelo"
  6906. #~ msgctxt "@label"
  6907. #~ msgid "Helper Parts:"
  6908. #~ msgstr "Partes dos Assistentes:"
  6909. #~ msgctxt "@label"
  6910. #~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  6911. #~ msgstr "Habilita estruturas de suporte de impressão. Isto construirá estruturas de suporte abaixo do modelo para prevenir o modelo de cair ou ser impresso no ar."
  6912. #~ msgctxt "@label"
  6913. #~ msgid "Don't print support"
  6914. #~ msgstr "Não imprimir suporte"
  6915. #~ msgctxt "@label"
  6916. #~ msgid "Print support using %1"
  6917. #~ msgstr "Imprimir suporte usando %1"
  6918. #~ msgctxt "@label:listbox"
  6919. #~ msgid "Printer:"
  6920. #~ msgstr "Impressora:"
  6921. #~ msgctxt "@info:status"
  6922. #~ msgid "Successfully imported profiles {0}"
  6923. #~ msgstr "Perfis {0} importados com sucesso"
  6924. #~ msgctxt "@label"
  6925. #~ msgid "Scripts"
  6926. #~ msgstr "Scripts"
  6927. #~ msgctxt "@label"
  6928. #~ msgid "Active Scripts"
  6929. #~ msgstr "Scripts Ativos"
  6930. #~ msgctxt "@label"
  6931. #~ msgid "Done"
  6932. #~ msgstr "Feito"
  6933. #~ msgctxt "@item:inlistbox"
  6934. #~ msgid "English"
  6935. #~ msgstr "Inglês"
  6936. #~ msgctxt "@item:inlistbox"
  6937. #~ msgid "Finnish"
  6938. #~ msgstr "Finlandês"
  6939. #~ msgctxt "@item:inlistbox"
  6940. #~ msgid "French"
  6941. #~ msgstr "Francês"
  6942. #~ msgctxt "@item:inlistbox"
  6943. #~ msgid "German"
  6944. #~ msgstr "Alemão"
  6945. #~ msgctxt "@item:inlistbox"
  6946. #~ msgid "Italian"
  6947. #~ msgstr "Italiano"
  6948. #~ msgctxt "@item:inlistbox"
  6949. #~ msgid "Dutch"
  6950. #~ msgstr "Holandês"
  6951. #~ msgctxt "@item:inlistbox"
  6952. #~ msgid "Spanish"
  6953. #~ msgstr "Espanhol"
  6954. #~ msgctxt "@label"
  6955. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  6956. #~ msgstr "Deseja alterar os PrintCores e materiais do Cura para coincidir com sua impressora?"
  6957. #~ msgctxt "@label:"
  6958. #~ msgid "Print Again"
  6959. #~ msgstr "Imprimir Novamente"