cura.po 323 KB

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