pt.po 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425
  1. # Debian-PT translation for apt.
  2. # Copyright (C) 2004 Free Software Foundation, Inc.
  3. #
  4. #
  5. # Miguel Figueiredo <elmig@debianpt.org>, 2005-2012.
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: apt 1.0.5\n"
  9. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  10. "POT-Creation-Date: 2016-06-23 09:02+0200\n"
  11. "PO-Revision-Date: 2012-06-29 15:45+0100\n"
  12. "Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
  13. "Language-Team: Portuguese <traduz@debianpt.org>\n"
  14. "Language: pt\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  19. "X-Generator: Lokalize 1.0\n"
  20. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  21. #: apt-private/acqprogress.cc
  22. #, c-format
  23. msgid "Hit:%lu %s"
  24. msgstr ""
  25. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  26. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  27. #: apt-private/acqprogress.cc
  28. #, c-format
  29. msgid "Get:%lu %s"
  30. msgstr "Obter:%lu %s"
  31. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  32. #. which failed to download, but the error is ignored (compare "Err:")
  33. #: apt-private/acqprogress.cc
  34. #, c-format
  35. msgid "Ign:%lu %s"
  36. msgstr ""
  37. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  38. #. which failed to download and the error is critical (compare "Ign:")
  39. #: apt-private/acqprogress.cc
  40. #, c-format
  41. msgid "Err:%lu %s"
  42. msgstr ""
  43. #: apt-private/acqprogress.cc
  44. #, c-format
  45. msgid "Fetched %sB in %s (%sB/s)\n"
  46. msgstr "Obtidos %sB em %s (%sB/s)\n"
  47. #: apt-private/acqprogress.cc
  48. msgid " [Working]"
  49. msgstr " [A trabalhar]"
  50. #: apt-private/acqprogress.cc
  51. #, fuzzy, c-format
  52. msgid ""
  53. "Media change: please insert the disc labeled\n"
  54. " '%s'\n"
  55. "in the drive '%s' and press [Enter]\n"
  56. msgstr ""
  57. "Troca de mídia: Por favor insira o disco chamado\n"
  58. " '%s'\n"
  59. "no leitor '%s' e pressione enter\n"
  60. #: apt-private/private-cachefile.cc
  61. msgid "Correcting dependencies..."
  62. msgstr "A corrigir dependências..."
  63. #: apt-private/private-cachefile.cc
  64. msgid " failed."
  65. msgstr " falhou."
  66. #: apt-private/private-cachefile.cc
  67. msgid "Unable to correct dependencies"
  68. msgstr "Não foi possível corrigir dependências"
  69. #: apt-private/private-cachefile.cc
  70. msgid "Unable to minimize the upgrade set"
  71. msgstr "Não foi possível minimizar o conjunto de actualizações"
  72. #: apt-private/private-cachefile.cc
  73. msgid " Done"
  74. msgstr " Feito"
  75. #: apt-private/private-cachefile.cc
  76. msgid "You might want to run 'apt-get -f install' to correct these."
  77. msgstr "Você pode querer executar 'apt-get -f install' para corrigir isso."
  78. #: apt-private/private-cachefile.cc
  79. msgid "Unmet dependencies. Try using -f."
  80. msgstr "Dependências não satisfeitas. Tente utilizar -f."
  81. #: apt-private/private-cacheset.cc apt-private/private-search.cc
  82. msgid "Sorting"
  83. msgstr ""
  84. #: apt-private/private-cacheset.cc
  85. #, c-format
  86. msgid "Note, selecting '%s' for task '%s'\n"
  87. msgstr "Note, a seleccionar '%s' para a tarefa '%s'\n"
  88. #: apt-private/private-cacheset.cc
  89. #, fuzzy, c-format
  90. msgid "Note, selecting '%s' for glob '%s'\n"
  91. msgstr "Note, a seleccionar '%s' para a expressão regular '%s'\n"
  92. #: apt-private/private-cacheset.cc
  93. #, c-format
  94. msgid "Note, selecting '%s' for regex '%s'\n"
  95. msgstr "Note, a seleccionar '%s' para a expressão regular '%s'\n"
  96. #: apt-private/private-cacheset.cc
  97. #, c-format
  98. msgid "Package %s is a virtual package provided by:\n"
  99. msgstr "O pacote %s é um pacote virtual disponibilizado por:\n"
  100. #: apt-private/private-cacheset.cc
  101. #, fuzzy
  102. msgid " [Installed]"
  103. msgstr " [Instalado]"
  104. #: apt-private/private-cacheset.cc
  105. msgid " [Not candidate version]"
  106. msgstr "[Não é versão candidata]"
  107. #: apt-private/private-cacheset.cc
  108. msgid "You should explicitly select one to install."
  109. msgstr "Você deve seleccionar explicitamente um para instalar."
  110. #: apt-private/private-cacheset.cc
  111. #, c-format
  112. msgid ""
  113. "Package %s is not available, but is referred to by another package.\n"
  114. "This may mean that the package is missing, has been obsoleted, or\n"
  115. "is only available from another source\n"
  116. msgstr ""
  117. "O pacote %s não está disponível, mas é referenciado por outro pacote.\n"
  118. "Isso pode significar que o pacote falta, ou ficou obsoleto, ou\n"
  119. "está disponível somente a partir de outra fonte\n"
  120. #: apt-private/private-cacheset.cc
  121. msgid "However the following packages replace it:"
  122. msgstr "No entanto, os seguintes pacotes substituem-no:"
  123. #: apt-private/private-cacheset.cc
  124. #, c-format
  125. msgid "Package '%s' has no installation candidate"
  126. msgstr "O pacote '%s' não tem candidato para instalação"
  127. #: apt-private/private-cacheset.cc
  128. #, c-format
  129. msgid "Virtual packages like '%s' can't be removed\n"
  130. msgstr "Pacotes virtuais como '%s' não podem ser removidos\n"
  131. #. TRANSLATORS: Note, this is not an interactive question
  132. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  133. #, c-format
  134. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  135. msgstr ""
  136. "O pacote '%s' não está instalado, por isso não será removido. Queria dizer "
  137. "'%s'?\n"
  138. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  139. #, c-format
  140. msgid "Package '%s' is not installed, so not removed\n"
  141. msgstr "O pacote '%s' não está instalado, por isso não será removido\n"
  142. #: apt-private/private-cacheset.cc
  143. #, c-format
  144. msgid "Note, selecting '%s' instead of '%s'\n"
  145. msgstr "Note, a seleccionar '%s' em vez de '%s'\n"
  146. #: apt-private/private-cmndline.cc
  147. msgid "Most used commands:"
  148. msgstr ""
  149. #: apt-private/private-cmndline.cc
  150. #, c-format
  151. msgid "See %s for more information about the available commands."
  152. msgstr ""
  153. #: apt-private/private-cmndline.cc
  154. msgid ""
  155. "Configuration options and syntax is detailed in apt.conf(5).\n"
  156. "Information about how to configure sources can be found in sources.list(5).\n"
  157. "Package and version choices can be expressed via apt_preferences(5).\n"
  158. "Security details are available in apt-secure(8).\n"
  159. msgstr ""
  160. #: apt-private/private-cmndline.cc
  161. msgid "This APT has Super Cow Powers."
  162. msgstr "Este APT tem Poderes de Super Vaca."
  163. #: apt-private/private-cmndline.cc
  164. msgid "This APT helper has Super Meep Powers."
  165. msgstr ""
  166. #: apt-private/private-depends.cc apt-private/private-show.cc
  167. #: cmdline/apt-mark.cc
  168. msgid "No packages found"
  169. msgstr "Não foi encontrado nenhum pacote"
  170. #: apt-private/private-download.cc
  171. msgid "WARNING: The following packages cannot be authenticated!"
  172. msgstr "AVISO: Os seguintes pacotes não podem ser autenticados!"
  173. #: apt-private/private-download.cc
  174. msgid "Authentication warning overridden.\n"
  175. msgstr "Aviso de autenticação ultrapassado.\n"
  176. #: apt-private/private-download.cc
  177. msgid "Some packages could not be authenticated"
  178. msgstr "Alguns pacotes não puderam ser autenticados"
  179. #: apt-private/private-download.cc
  180. msgid "Install these packages without verification?"
  181. msgstr "Instalar estes pacotes sem verificação?"
  182. #: apt-private/private-download.cc apt-private/private-install.cc
  183. msgid ""
  184. "--force-yes is deprecated, use one of the options starting with --allow "
  185. "instead."
  186. msgstr ""
  187. #: apt-private/private-download.cc
  188. #, fuzzy
  189. msgid ""
  190. "There were unauthenticated packages and -y was used without --allow-"
  191. "unauthenticated"
  192. msgstr "Há problemas e foi utilizado -y sem --force-yes"
  193. #: apt-private/private-download.cc apt-pkg/update.cc
  194. #, c-format
  195. msgid "Failed to fetch %s %s"
  196. msgstr "Falhou obter %s %s"
  197. #: apt-private/private-download.cc
  198. #, c-format
  199. msgid "Couldn't determine free space in %s"
  200. msgstr "Não foi possível determinar o espaço livre em %s"
  201. #: apt-private/private-download.cc
  202. #, c-format
  203. msgid "You don't have enough free space in %s."
  204. msgstr "Você não possui espaço livre suficiente em %s."
  205. #: apt-private/private-download.cc
  206. msgid "Unable to lock the download directory"
  207. msgstr "Impossível criar acesso exclusivo ao directório de downloads"
  208. #: apt-private/private-install.cc
  209. msgid ""
  210. "Some packages could not be installed. This may mean that you have\n"
  211. "requested an impossible situation or if you are using the unstable\n"
  212. "distribution that some required packages have not yet been created\n"
  213. "or been moved out of Incoming."
  214. msgstr ""
  215. "Alguns pacotes não puderam ser instalados. Isso pode significar que\n"
  216. "você solicitou uma situação impossível ou se você está a usar a\n"
  217. "distribuição unstable em que alguns pacotes pedidos ainda não foram \n"
  218. "criados ou foram movidos do Incoming."
  219. #.
  220. #. if (Packages == 1)
  221. #. {
  222. #. c1out << std::endl;
  223. #. c1out <<
  224. #. _("Since you only requested a single operation it is extremely likely that\n"
  225. #. "the package is simply not installable and a bug report against\n"
  226. #. "that package should be filed.") << std::endl;
  227. #. }
  228. #.
  229. #: apt-private/private-install.cc
  230. msgid "The following information may help to resolve the situation:"
  231. msgstr "A seguinte informação pode ajudar a resolver a situação:"
  232. #: apt-private/private-install.cc
  233. msgid "Broken packages"
  234. msgstr "Pacotes estragados"
  235. #: apt-private/private-install.cc
  236. msgid "Internal error, InstallPackages was called with broken packages!"
  237. msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!"
  238. #: apt-private/private-install.cc
  239. msgid "Packages need to be removed but remove is disabled."
  240. msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado."
  241. #: apt-private/private-install.cc
  242. #, fuzzy
  243. msgid ""
  244. "Essential packages were removed and -y was used without --allow-remove-"
  245. "essential."
  246. msgstr "Há problemas e foi utilizado -y sem --force-yes"
  247. #: apt-private/private-install.cc
  248. #, fuzzy
  249. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  250. msgstr "Há problemas e foi utilizado -y sem --force-yes"
  251. #: apt-private/private-install.cc
  252. msgid ""
  253. "Held packages were changed and -y was used without --allow-change-held-"
  254. "packages."
  255. msgstr ""
  256. #: apt-private/private-install.cc
  257. msgid "Internal error, Ordering didn't finish"
  258. msgstr "Erro Interno, Ordering não terminou"
  259. #: apt-private/private-install.cc
  260. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  261. msgstr ""
  262. "Estranho... Os tamanhos não coincidiram, escreva para apt@packages.debian.org"
  263. #. TRANSLATOR: The required space between number and unit is already included
  264. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  265. #: apt-private/private-install.cc
  266. #, c-format
  267. msgid "Need to get %sB/%sB of archives.\n"
  268. msgstr "É necessário obter %sB/%sB de arquivos.\n"
  269. #. TRANSLATOR: The required space between number and unit is already included
  270. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  271. #: apt-private/private-install.cc
  272. #, c-format
  273. msgid "Need to get %sB of archives.\n"
  274. msgstr "É necessário obter %sB de arquivos.\n"
  275. #. TRANSLATOR: The required space between number and unit is already included
  276. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  277. #: apt-private/private-install.cc
  278. #, c-format
  279. msgid "After this operation, %sB of additional disk space will be used.\n"
  280. msgstr ""
  281. "Após esta operação, serão utilizados %sB adicionais de espaço em disco.\n"
  282. #. TRANSLATOR: The required space between number and unit is already included
  283. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  284. #: apt-private/private-install.cc
  285. #, c-format
  286. msgid "After this operation, %sB disk space will be freed.\n"
  287. msgstr "Após esta operação, será libertado %sB de espaço em disco.\n"
  288. #: apt-private/private-install.cc
  289. msgid "Trivial Only specified but this is not a trivial operation."
  290. msgstr "Trivial Only especificado mas isto não é uma operação trivial."
  291. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  292. #. careful with hard to type or special characters (like non-breaking spaces)
  293. #: apt-private/private-install.cc
  294. msgid "Yes, do as I say!"
  295. msgstr "Sim, faça como eu digo!"
  296. #: apt-private/private-install.cc
  297. #, c-format
  298. msgid ""
  299. "You are about to do something potentially harmful.\n"
  300. "To continue type in the phrase '%s'\n"
  301. " ?] "
  302. msgstr ""
  303. "Você está prestes a fazer algo potencialmente nocivo.\n"
  304. "Para continuar escreva a frase '%s'\n"
  305. " ?] "
  306. #: apt-private/private-install.cc
  307. msgid "Abort."
  308. msgstr "Abortado."
  309. #: apt-private/private-install.cc
  310. msgid "Do you want to continue?"
  311. msgstr "Deseja continuar?"
  312. #: apt-private/private-install.cc
  313. msgid "Some files failed to download"
  314. msgstr "Falhou o download de alguns ficheiros"
  315. #: apt-private/private-install.cc apt-private/private-source.cc
  316. msgid "Download complete and in download only mode"
  317. msgstr "Download completo e em modo de fazer apenas o download"
  318. #: apt-private/private-install.cc
  319. msgid ""
  320. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  321. "missing?"
  322. msgstr ""
  323. "Não foi possível obter alguns arquivos, tente talvez correr apt-get update "
  324. "ou tente com --fix-missing?"
  325. #: apt-private/private-install.cc
  326. msgid "--fix-missing and media swapping is not currently supported"
  327. msgstr "--fix-missing e troca de mídia não são suportados actualmente"
  328. #: apt-private/private-install.cc
  329. msgid "Unable to correct missing packages."
  330. msgstr "Não foi possível corrigir os pacotes em falta."
  331. #: apt-private/private-install.cc
  332. msgid "Aborting install."
  333. msgstr "A abortar a instalação."
  334. #: apt-private/private-install.cc
  335. msgid ""
  336. "The following package disappeared from your system as\n"
  337. "all files have been overwritten by other packages:"
  338. msgid_plural ""
  339. "The following packages disappeared from your system as\n"
  340. "all files have been overwritten by other packages:"
  341. msgstr[0] ""
  342. "O seguinte pacote desapareceu do seu sistema pois\n"
  343. "todos os ficheiros foram sobrescritos por outros pacotes:"
  344. msgstr[1] ""
  345. "Os seguintes pacotes desapareceram do seu sistema pois\n"
  346. "todos os ficheiros foram por outros pacotes:"
  347. #: apt-private/private-install.cc
  348. msgid "Note: This is done automatically and on purpose by dpkg."
  349. msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg."
  350. #: apt-private/private-install.cc
  351. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  352. msgstr "Não é suposto nós apagarmos coisas, não pode iniciar o AutoRemover"
  353. #: apt-private/private-install.cc
  354. msgid ""
  355. "Hmm, seems like the AutoRemover destroyed something which really\n"
  356. "shouldn't happen. Please file a bug report against apt."
  357. msgstr ""
  358. "Hmm, parece que o AutoRemover destruiu algo que realmente não deveria ter\n"
  359. "acontecido. Por favor arquive um relatório de bug contra o apt."
  360. #: apt-private/private-install.cc
  361. msgid "Internal Error, AutoRemover broke stuff"
  362. msgstr "Erro Interno, o AutoRemover estragou coisas"
  363. #: apt-private/private-install.cc
  364. msgid ""
  365. "The following package was automatically installed and is no longer required:"
  366. msgid_plural ""
  367. "The following packages were automatically installed and are no longer "
  368. "required:"
  369. msgstr[0] ""
  370. "O seguinte pacote foi instalado automaticamente e já não é necessário:"
  371. msgstr[1] ""
  372. "Os seguintes pacotes foram instalados automaticamente e já não são "
  373. "necessários:"
  374. #: apt-private/private-install.cc
  375. #, c-format
  376. msgid "%lu package was automatically installed and is no longer required.\n"
  377. msgid_plural ""
  378. "%lu packages were automatically installed and are no longer required.\n"
  379. msgstr[0] "O pacote %lu foi instalado automaticamente e já não é necessário.\n"
  380. msgstr[1] ""
  381. "Os pacotes %lu foram instalados automaticamente e já não são necessários.\n"
  382. #: apt-private/private-install.cc
  383. #, c-format
  384. msgid "Use '%s' to remove it."
  385. msgid_plural "Use '%s' to remove them."
  386. msgstr[0] "Utilize '%s' para o remover."
  387. msgstr[1] "Utilize '%s' para os remover."
  388. #: apt-private/private-install.cc
  389. msgid "You might want to run 'apt-get -f install' to correct these:"
  390. msgstr "Você deve querer executar 'apt-get -f install' para corrigir estes:"
  391. #: apt-private/private-install.cc
  392. msgid ""
  393. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  394. "solution)."
  395. msgstr ""
  396. "Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote "
  397. "(ou especifique uma solução)."
  398. #: apt-private/private-install.cc
  399. #, fuzzy
  400. msgid "The following additional packages will be installed:"
  401. msgstr "Os seguintes pacotes extra serão instalados:"
  402. #: apt-private/private-install.cc
  403. msgid "Suggested packages:"
  404. msgstr "Pacotes sugeridos:"
  405. #: apt-private/private-install.cc
  406. msgid "Recommended packages:"
  407. msgstr "Pacotes recomendados:"
  408. #: apt-private/private-install.cc
  409. #, c-format
  410. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  411. msgstr "Saltando %s, já está instalado e a actualização não está definida.\n"
  412. #: apt-private/private-install.cc
  413. #, c-format
  414. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  415. msgstr "Saltando %s, não está instalado e só são pedidas actualizações.\n"
  416. #: apt-private/private-install.cc
  417. #, c-format
  418. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  419. msgstr ""
  420. "A reinstalação de %s não é possível, o download do mesmo não pode ser "
  421. "feito.\n"
  422. #. TRANSLATORS: First string is package name, second is version
  423. #: apt-private/private-install.cc
  424. #, fuzzy, c-format
  425. msgid "%s is already the newest version (%s).\n"
  426. msgstr "%s já está na versão mais recente.\n"
  427. #: apt-private/private-install.cc cmdline/apt-get.cc cmdline/apt-mark.cc
  428. #, c-format
  429. msgid "%s set to manually installed.\n"
  430. msgstr "%s está definido para ser instalado manualmente.\n"
  431. #: apt-private/private-install.cc
  432. #, c-format
  433. msgid "Selected version '%s' (%s) for '%s'\n"
  434. msgstr "Versão seleccionada '%s' (%s) para '%s'\n"
  435. #: apt-private/private-install.cc
  436. #, c-format
  437. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  438. msgstr "Versão seleccionada '%s' (%s) para '%s' devido a '%s'\n"
  439. #: apt-private/private-list.cc
  440. msgid "Listing"
  441. msgstr ""
  442. #: apt-private/private-list.cc
  443. #, c-format
  444. msgid "There is %i additional version. Please use the '-a' switch to see it"
  445. msgid_plural ""
  446. "There are %i additional versions. Please use the '-a' switch to see them."
  447. msgstr[0] ""
  448. msgstr[1] ""
  449. #. TRANSLATORS: placeholder is a binary name like apt or apt-get
  450. #: apt-private/private-main.cc
  451. #, c-format
  452. msgid ""
  453. "NOTE: This is only a simulation!\n"
  454. " %s needs root privileges for real execution.\n"
  455. " Keep also in mind that locking is deactivated,\n"
  456. " so don't depend on the relevance to the real current situation!\n"
  457. msgstr ""
  458. "NOTE:\tIsto é apenas uma simulação!\n"
  459. "\to %s necessita de privilégios de root para a execução real.\n"
  460. "\tTenha em mente que o acesso exclusivo está desabilitado,\n"
  461. "\tpor isso não confie na relevância da real situação actual!\n"
  462. #: apt-private/private-output.cc apt-private/private-show.cc
  463. msgid "unknown"
  464. msgstr ""
  465. #: apt-private/private-output.cc
  466. #, fuzzy, c-format
  467. msgid "[installed,upgradable to: %s]"
  468. msgstr " [Instalado]"
  469. #: apt-private/private-output.cc
  470. #, fuzzy
  471. msgid "[installed,local]"
  472. msgstr " [Instalado]"
  473. #: apt-private/private-output.cc
  474. msgid "[installed,auto-removable]"
  475. msgstr ""
  476. #: apt-private/private-output.cc
  477. #, fuzzy
  478. msgid "[installed,automatic]"
  479. msgstr " [Instalado]"
  480. #: apt-private/private-output.cc
  481. #, fuzzy
  482. msgid "[installed]"
  483. msgstr " [Instalado]"
  484. #: apt-private/private-output.cc
  485. #, c-format
  486. msgid "[upgradable from: %s]"
  487. msgstr ""
  488. #: apt-private/private-output.cc
  489. msgid "[residual-config]"
  490. msgstr ""
  491. #: apt-private/private-output.cc
  492. #, c-format
  493. msgid "but %s is installed"
  494. msgstr "mas %s está instalado"
  495. #: apt-private/private-output.cc
  496. #, c-format
  497. msgid "but %s is to be installed"
  498. msgstr "mas %s está para ser instalado"
  499. #: apt-private/private-output.cc
  500. msgid "but it is not installable"
  501. msgstr "mas não é instalável"
  502. #: apt-private/private-output.cc
  503. msgid "but it is a virtual package"
  504. msgstr "mas é um pacote virtual"
  505. #: apt-private/private-output.cc
  506. msgid "but it is not installed"
  507. msgstr "mas não está instalado"
  508. #: apt-private/private-output.cc
  509. msgid "but it is not going to be installed"
  510. msgstr "mas não vai ser instalado"
  511. #: apt-private/private-output.cc
  512. msgid " or"
  513. msgstr " ou"
  514. #: apt-private/private-output.cc
  515. msgid "The following packages have unmet dependencies:"
  516. msgstr "Os pacotes a seguir têm dependências não satisfeitas:"
  517. #: apt-private/private-output.cc
  518. msgid "The following NEW packages will be installed:"
  519. msgstr "Serão instalados os seguintes NOVOS pacotes:"
  520. #: apt-private/private-output.cc
  521. msgid "The following packages will be REMOVED:"
  522. msgstr "Serão REMOVIDOS os seguintes pacotes:"
  523. #: apt-private/private-output.cc
  524. msgid "The following packages have been kept back:"
  525. msgstr "Serão mantidos em suas versões actuais os seguintes pacotes:"
  526. #: apt-private/private-output.cc
  527. msgid "The following packages will be upgraded:"
  528. msgstr "Serão actualizados os seguintes pacotes:"
  529. #: apt-private/private-output.cc
  530. msgid "The following packages will be DOWNGRADED:"
  531. msgstr "Será feito o DOWNGRADE aos seguintes pacotes:"
  532. #: apt-private/private-output.cc
  533. msgid "The following held packages will be changed:"
  534. msgstr "Os seguintes pacotes mantidos serão mudados:"
  535. #: apt-private/private-output.cc
  536. #, c-format
  537. msgid "%s (due to %s)"
  538. msgstr "%s (devido a %s)"
  539. #: apt-private/private-output.cc
  540. msgid ""
  541. "WARNING: The following essential packages will be removed.\n"
  542. "This should NOT be done unless you know exactly what you are doing!"
  543. msgstr ""
  544. "AVISO: Os seguintes pacotes essenciais serão removidos.\n"
  545. "Isso NÃO deverá ser feito a menos que saiba exactamente o que está a fazer!"
  546. #: apt-private/private-output.cc
  547. #, c-format
  548. msgid "%lu upgraded, %lu newly installed, "
  549. msgstr "%lu pacotes actualizados, %lu pacotes novos instalados, "
  550. #: apt-private/private-output.cc
  551. #, c-format
  552. msgid "%lu reinstalled, "
  553. msgstr "%lu reinstalados, "
  554. #: apt-private/private-output.cc
  555. #, c-format
  556. msgid "%lu downgraded, "
  557. msgstr "%lu a que foi feito o downgrade, "
  558. #: apt-private/private-output.cc
  559. #, c-format
  560. msgid "%lu to remove and %lu not upgraded.\n"
  561. msgstr "%lu a remover e %lu não actualizados.\n"
  562. #: apt-private/private-output.cc
  563. #, c-format
  564. msgid "%lu not fully installed or removed.\n"
  565. msgstr "%lu pacotes não totalmente instalados ou removidos.\n"
  566. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  567. #. e.g. "Do you want to continue? [Y/n] "
  568. #. The user has to answer with an input matching the
  569. #. YESEXPR/NOEXPR defined in your l10n.
  570. #: apt-private/private-output.cc
  571. msgid "[Y/n]"
  572. msgstr "[S/n]"
  573. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  574. #. e.g. "Should this file be removed? [y/N] "
  575. #. The user has to answer with an input matching the
  576. #. YESEXPR/NOEXPR defined in your l10n.
  577. #: apt-private/private-output.cc
  578. msgid "[y/N]"
  579. msgstr "s/N]"
  580. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  581. #: apt-private/private-output.cc
  582. msgid "Y"
  583. msgstr "S"
  584. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  585. #: apt-private/private-output.cc
  586. msgid "N"
  587. msgstr "N"
  588. #: apt-private/private-output.cc apt-pkg/cachefilter.cc
  589. #, c-format
  590. msgid "Regex compilation error - %s"
  591. msgstr "Erro de compilação de regex - %s"
  592. #: apt-private/private-search.cc
  593. msgid "You must give at least one search pattern"
  594. msgstr "Tem de fornecer pelo menos um padrão de busca"
  595. #: apt-private/private-search.cc
  596. msgid "Full Text Search"
  597. msgstr ""
  598. #: apt-private/private-show.cc cmdline/apt-cache.cc
  599. #, c-format
  600. msgid "Package file %s is out of sync."
  601. msgstr "O ficheiro do pacote %s está dessincronizado."
  602. #: apt-private/private-show.cc
  603. #, c-format
  604. msgid "There is %i additional record. Please use the '-a' switch to see it"
  605. msgid_plural ""
  606. "There are %i additional records. Please use the '-a' switch to see them."
  607. msgstr[0] ""
  608. msgstr[1] ""
  609. #: apt-private/private-show.cc
  610. msgid "not a real package (virtual)"
  611. msgstr ""
  612. #: apt-private/private-show.cc apt-pkg/cacheset.cc
  613. #, c-format
  614. msgid "Unable to locate package %s"
  615. msgstr "Não foi possível encontrar o pacote %s"
  616. #: apt-private/private-show.cc
  617. msgid "Package files:"
  618. msgstr "Ficheiros de Pacotes :"
  619. #: apt-private/private-show.cc
  620. msgid "Cache is out of sync, can't x-ref a package file"
  621. msgstr ""
  622. "A cache está dessincronizada, não pode x-referenciar um ficheiro de pacote"
  623. #. Show any packages have explicit pins
  624. #: apt-private/private-show.cc
  625. msgid "Pinned packages:"
  626. msgstr "Pacotes Marcados:"
  627. #. Print the package name and the version we are forcing to
  628. #: apt-private/private-show.cc
  629. #, c-format
  630. msgid "%s -> %s with priority %d\n"
  631. msgstr ""
  632. #: apt-private/private-show.cc
  633. msgid " Installed: "
  634. msgstr " Instalado: "
  635. #: apt-private/private-show.cc
  636. msgid " Candidate: "
  637. msgstr " Candidato: "
  638. #: apt-private/private-show.cc
  639. msgid "(none)"
  640. msgstr "(nenhum)"
  641. #. Show the priority tables
  642. #: apt-private/private-show.cc
  643. msgid " Version table:"
  644. msgstr " Tabela de Versão:"
  645. #: apt-private/private-source.cc
  646. #, fuzzy, c-format
  647. msgid "Can not find a package for architecture '%s'"
  648. msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'"
  649. #: apt-private/private-source.cc
  650. #, fuzzy, c-format
  651. msgid "Can not find a package '%s' with version '%s'"
  652. msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'"
  653. #: apt-private/private-source.cc
  654. #, fuzzy, c-format
  655. msgid "Can not find a package '%s' with release '%s'"
  656. msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'"
  657. #: apt-private/private-source.cc
  658. #, c-format
  659. msgid "Picking '%s' as source package instead of '%s'\n"
  660. msgstr "A escolher '%s' como pacote pacote de código fonte em vez de '%s'\n"
  661. #: apt-private/private-source.cc
  662. #, fuzzy, c-format
  663. msgid "Can not find version '%s' of package '%s'"
  664. msgstr "Ignorar a versão '%s', não disponível, do pacote '%s'"
  665. #: apt-private/private-source.cc
  666. msgid "Must specify at least one package to fetch source for"
  667. msgstr "Tem de especificar pelo menos um pacote para obter o código fonte de"
  668. #: apt-private/private-source.cc
  669. #, c-format
  670. msgid "Unable to find a source package for %s"
  671. msgstr "Não foi possível encontrar um pacote de código fonte para %s"
  672. #: apt-private/private-source.cc
  673. #, c-format
  674. msgid ""
  675. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  676. "%s\n"
  677. msgstr ""
  678. "AVISO: o empacotamento de '%s' é mantido no sistema de controle de versões "
  679. "'%s' em:\n"
  680. "%s\n"
  681. #: apt-private/private-source.cc
  682. #, c-format
  683. msgid ""
  684. "Please use:\n"
  685. "%s\n"
  686. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  687. msgstr ""
  688. "Por favor utilize:\n"
  689. "%s\n"
  690. "para obter as últimas actualizações (possivelmente por lançar) ao pacote.\n"
  691. #: apt-private/private-source.cc
  692. #, c-format
  693. msgid "Skipping already downloaded file '%s'\n"
  694. msgstr "A saltar o ficheiro '%s', já tinha sido feito download'\n"
  695. #. TRANSLATOR: The required space between number and unit is already included
  696. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  697. #: apt-private/private-source.cc
  698. #, c-format
  699. msgid "Need to get %sB/%sB of source archives.\n"
  700. msgstr "É necessário obter %sB/%sB de arquivos de código fonte.\n"
  701. #. TRANSLATOR: The required space between number and unit is already included
  702. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  703. #: apt-private/private-source.cc
  704. #, c-format
  705. msgid "Need to get %sB of source archives.\n"
  706. msgstr "É necessário obter %sB de arquivos de código fonte.\n"
  707. #: apt-private/private-source.cc
  708. #, c-format
  709. msgid "Fetch source %s\n"
  710. msgstr "Obter código fonte %s\n"
  711. #: apt-private/private-source.cc
  712. msgid "Failed to fetch some archives."
  713. msgstr "Falhou obter alguns arquivos."
  714. #: apt-private/private-source.cc
  715. #, c-format
  716. msgid "Skipping unpack of already unpacked source in %s\n"
  717. msgstr ""
  718. "A saltar a descompactação do pacote de código fonte já descompactado em %s\n"
  719. #: apt-private/private-source.cc
  720. #, c-format
  721. msgid "Unpack command '%s' failed.\n"
  722. msgstr "O comando de descompactação '%s' falhou.\n"
  723. #: apt-private/private-source.cc
  724. #, c-format
  725. msgid "Check if the 'dpkg-dev' package is installed.\n"
  726. msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n"
  727. #: apt-private/private-source.cc
  728. #, c-format
  729. msgid "Build command '%s' failed.\n"
  730. msgstr "O comando de compilação '%s' falhou.\n"
  731. #: apt-private/private-source.cc
  732. #, c-format
  733. msgid "Unable to get build-dependency information for %s"
  734. msgstr ""
  735. "Não foi possível obter informações de dependências de compilação para %s"
  736. #: apt-private/private-source.cc
  737. #, c-format
  738. msgid "%s has no build depends.\n"
  739. msgstr "%s não tem dependências de compilação.\n"
  740. #: apt-private/private-source.cc
  741. msgid "Must specify at least one package to check builddeps for"
  742. msgstr ""
  743. "Deve especificar pelo menos um pacote para verificar as dependências de "
  744. "compilação"
  745. #: apt-private/private-source.cc
  746. #, c-format
  747. msgid ""
  748. "No architecture information available for %s. See apt.conf(5) APT::"
  749. "Architectures for setup"
  750. msgstr ""
  751. "Nenhuma informação de arquitectura disponível para %s. Para configuração "
  752. "veja apt.conf(5) APT::Architectures"
  753. #: apt-private/private-source.cc
  754. #, c-format
  755. msgid "Note, using directory '%s' to get the build dependencies\n"
  756. msgstr ""
  757. #: apt-private/private-source.cc
  758. #, fuzzy, c-format
  759. msgid "Note, using file '%s' to get the build dependencies\n"
  760. msgstr "Falhou processar as dependências de compilação"
  761. #: apt-private/private-source.cc
  762. msgid "Failed to process build dependencies"
  763. msgstr "Falhou processar as dependências de compilação"
  764. #: apt-private/private-sources.cc
  765. #, fuzzy, c-format
  766. msgid "Failed to parse %s. Edit again? "
  767. msgstr "Falha ao baixar %s %s\n"
  768. #: apt-private/private-sources.cc
  769. #, c-format
  770. msgid "Your '%s' file changed, please run 'apt-get update'."
  771. msgstr ""
  772. #: apt-private/private-unmet.cc
  773. #, c-format
  774. msgid "Package %s version %s has an unmet dep:\n"
  775. msgstr "O pacote %s versão %s tem uma dependência não satisfeita:\n"
  776. #: apt-private/private-update.cc
  777. msgid "The update command takes no arguments"
  778. msgstr "O comando update não leva argumentos"
  779. #: apt-private/private-update.cc
  780. #, c-format
  781. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  782. msgid_plural ""
  783. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  784. msgstr[0] ""
  785. msgstr[1] ""
  786. #: apt-private/private-update.cc
  787. msgid "All packages are up to date."
  788. msgstr ""
  789. #: cmdline/apt-cache.cc
  790. #, fuzzy
  791. msgid "apt-cache stats does not take any arguments"
  792. msgstr "O comando update não leva argumentos"
  793. #: cmdline/apt-cache.cc
  794. msgid "Total package names: "
  795. msgstr "Total de nomes de pacotes: "
  796. #: cmdline/apt-cache.cc
  797. msgid "Total package structures: "
  798. msgstr "Total de estruturas de pacotes: "
  799. #: cmdline/apt-cache.cc
  800. msgid " Normal packages: "
  801. msgstr " Pacotes normais: "
  802. #: cmdline/apt-cache.cc
  803. msgid " Pure virtual packages: "
  804. msgstr " Pacotes virtuais puros: "
  805. #: cmdline/apt-cache.cc
  806. msgid " Single virtual packages: "
  807. msgstr " Pacotes virtuais únicos: "
  808. #: cmdline/apt-cache.cc
  809. msgid " Mixed virtual packages: "
  810. msgstr " Pacotes virtuais misturados: "
  811. #: cmdline/apt-cache.cc
  812. msgid " Missing: "
  813. msgstr " Faltam: "
  814. #: cmdline/apt-cache.cc
  815. msgid "Total distinct versions: "
  816. msgstr "Total de versões distintas: "
  817. #: cmdline/apt-cache.cc
  818. msgid "Total distinct descriptions: "
  819. msgstr "Total de descrições distintas: "
  820. #: cmdline/apt-cache.cc
  821. msgid "Total dependencies: "
  822. msgstr "Total de dependências: "
  823. #: cmdline/apt-cache.cc
  824. msgid "Total ver/file relations: "
  825. msgstr "Total de relações ver/ficheiro: "
  826. #: cmdline/apt-cache.cc
  827. msgid "Total Desc/File relations: "
  828. msgstr "Total de relações Desc/Ficheiro: "
  829. #: cmdline/apt-cache.cc
  830. msgid "Total Provides mappings: "
  831. msgstr "Total de Mapeamentos 'Provides': "
  832. #: cmdline/apt-cache.cc
  833. msgid "Total globbed strings: "
  834. msgstr "Total de strings globbed: "
  835. #: cmdline/apt-cache.cc
  836. msgid "Total slack space: "
  837. msgstr "Espaço total desperdiçado: "
  838. #: cmdline/apt-cache.cc
  839. msgid "Total space accounted for: "
  840. msgstr "Espaço total contabilizado: "
  841. #: cmdline/apt-cache.cc
  842. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  843. msgstr ""
  844. "Este comando foi depreceado. Em vez disso por favor utilize 'apt-mark "
  845. "showauto'."
  846. #: cmdline/apt-cache.cc
  847. msgid ""
  848. "Usage: apt-cache [options] command\n"
  849. " apt-cache [options] show pkg1 [pkg2 ...]\n"
  850. "\n"
  851. "apt-cache queries and displays available information about installed\n"
  852. "and installable packages. It works exclusively on the data acquired\n"
  853. "into the local cache via the 'update' command of e.g. apt-get. The\n"
  854. "displayed information may therefore be outdated if the last update was\n"
  855. "too long ago, but in exchange apt-cache works independently of the\n"
  856. "availability of the configured sources (e.g. offline).\n"
  857. msgstr ""
  858. #: cmdline/apt-cache.cc
  859. msgid "Show source records"
  860. msgstr "Mostrar registos de código-fonte"
  861. #: cmdline/apt-cache.cc
  862. msgid "Search the package list for a regex pattern"
  863. msgstr "Procurar na lista de pacotes por um padrão regex"
  864. #: cmdline/apt-cache.cc
  865. msgid "Show raw dependency information for a package"
  866. msgstr "Mostrar informações em bruto de dependências de um pacote"
  867. #: cmdline/apt-cache.cc
  868. msgid "Show reverse dependency information for a package"
  869. msgstr "Mostrar a informação de dependências inversas de um pacote"
  870. #: cmdline/apt-cache.cc
  871. msgid "Show a readable record for the package"
  872. msgstr "Mostrar um registo legível sobre o pacote"
  873. #: cmdline/apt-cache.cc
  874. msgid "List the names of all packages in the system"
  875. msgstr "Listar o nome de todos os pacotes no sistema"
  876. #: cmdline/apt-cache.cc
  877. msgid "Show policy settings"
  878. msgstr "Mostrar as configurações de políticas"
  879. #: cmdline/apt-cdrom.cc
  880. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  881. msgstr ""
  882. "Por favor indique um nome para este Disco, tal como 'Debian 5.0.3 Disco 1'"
  883. #: cmdline/apt-cdrom.cc
  884. #, fuzzy
  885. msgid "Please insert a Disc in the drive and press [Enter]"
  886. msgstr "Por favor insira um Disco no leitor e pressione enter"
  887. #: cmdline/apt-cdrom.cc
  888. #, c-format
  889. msgid "Failed to mount '%s' to '%s'"
  890. msgstr "Falhou ao montar '%s' para '%s'"
  891. #: cmdline/apt-cdrom.cc
  892. msgid ""
  893. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  894. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  895. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  896. "mount point."
  897. msgstr ""
  898. #: cmdline/apt-cdrom.cc
  899. msgid "Repeat this process for the rest of the CDs in your set."
  900. msgstr "Repita este processo para o resto dos CDs no seu conjunto."
  901. #: cmdline/apt-cdrom.cc
  902. msgid ""
  903. "Usage: apt-cdrom [options] command\n"
  904. "\n"
  905. "apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
  906. "media types as package sources to APT. The mount point and device\n"
  907. "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
  908. msgstr ""
  909. #: cmdline/apt-config.cc
  910. msgid "Arguments not in pairs"
  911. msgstr "os argumentos não estão em pares"
  912. #: cmdline/apt-config.cc
  913. #, fuzzy
  914. msgid ""
  915. "Usage: apt-config [options] command\n"
  916. "\n"
  917. "apt-config is an interface to the configuration settings used by\n"
  918. "all APT tools, mainly intended for debugging and shell scripting.\n"
  919. msgstr ""
  920. "Utilização: apt-config [opções] comando\n"
  921. "\n"
  922. "O apt-config é uma ferramenta simples para ler o ficheiro de config do APT\n"
  923. #: cmdline/apt-config.cc
  924. msgid "get configuration values via shell evaluation"
  925. msgstr ""
  926. #: cmdline/apt-config.cc
  927. msgid "show the active configuration setting"
  928. msgstr ""
  929. #: cmdline/apt-get.cc
  930. #, c-format
  931. msgid "Couldn't find package %s"
  932. msgstr "Impossível encontrar o pacote %s"
  933. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  934. #, c-format
  935. msgid "%s set to automatically installed.\n"
  936. msgstr "%s está definido para ser instalado automaticamente.\n"
  937. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  938. msgid ""
  939. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  940. "instead."
  941. msgstr ""
  942. "Este comando foi depreceado. Em vez disso, por favor utilize 'apt-mark auto' "
  943. "e 'apt-mark manual'."
  944. #: cmdline/apt-get.cc
  945. msgid "Internal error, problem resolver broke stuff"
  946. msgstr "Erro Interno, o solucionador de problemas estragou coisas"
  947. #: cmdline/apt-get.cc
  948. msgid "Supported modules:"
  949. msgstr "Módulos Suportados:"
  950. #: cmdline/apt-get.cc
  951. #, fuzzy
  952. msgid ""
  953. "Usage: apt-get [options] command\n"
  954. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  955. " apt-get [options] source pkg1 [pkg2 ...]\n"
  956. "\n"
  957. "apt-get is a command line interface for retrieval of packages\n"
  958. "and information about them from authenticated sources and\n"
  959. "for installation, upgrade and removal of packages together\n"
  960. "with their dependencies.\n"
  961. msgstr ""
  962. "Utilização: apt-get [opções] comando\n"
  963. " apt-get [opções] install|remove pacote1 [pacote2 ...]\n"
  964. " apt-get [opções] source pacote1 [pacote2 ...]\n"
  965. "\n"
  966. "O apt-get é um interface simples de linha de comandos para obter\n"
  967. "e instalar pacotes. Os comandos utilizados mais frequentemente\n"
  968. "são update e install.\n"
  969. #: cmdline/apt-get.cc
  970. msgid "Retrieve new lists of packages"
  971. msgstr "Obter novas listas de pacotes"
  972. #: cmdline/apt-get.cc
  973. msgid "Perform an upgrade"
  974. msgstr "Executar uma actualização"
  975. #: cmdline/apt-get.cc
  976. msgid "Install new packages (pkg is libc6 not libc6.deb)"
  977. msgstr "Instalar novos pacotes (o pacote é libc6 e não libc6.deb)"
  978. #: cmdline/apt-get.cc
  979. msgid "Remove packages"
  980. msgstr "Remover pacotes"
  981. #: cmdline/apt-get.cc
  982. msgid "Remove packages and config files"
  983. msgstr "Remover pacotes e ficheiros de configuração"
  984. #: cmdline/apt-get.cc cmdline/apt.cc
  985. msgid "Remove automatically all unused packages"
  986. msgstr "Remover automaticamente todos os pacotes não utilizados"
  987. #: cmdline/apt-get.cc
  988. msgid "Distribution upgrade, see apt-get(8)"
  989. msgstr "Actualizar a distribuição, veja apt-get(8)"
  990. #: cmdline/apt-get.cc
  991. msgid "Follow dselect selections"
  992. msgstr "Seguir as escolhas feitas no dselect"
  993. #: cmdline/apt-get.cc
  994. msgid "Configure build-dependencies for source packages"
  995. msgstr "Configurar as dependências de compilação de pacotes de códigofonte"
  996. #: cmdline/apt-get.cc
  997. msgid "Erase downloaded archive files"
  998. msgstr "Apagar ficheiros de arquivo obtidos por download"
  999. #: cmdline/apt-get.cc
  1000. msgid "Erase old downloaded archive files"
  1001. msgstr "Apagar ficheiros de arquivo antigos obtidos por download"
  1002. #: cmdline/apt-get.cc
  1003. msgid "Verify that there are no broken dependencies"
  1004. msgstr "Verificar se existem dependências erradas"
  1005. #: cmdline/apt-get.cc
  1006. msgid "Download source archives"
  1007. msgstr "Fazer o download de arquivos de código-fonte"
  1008. #: cmdline/apt-get.cc
  1009. msgid "Download the binary package into the current directory"
  1010. msgstr "Obter o pacote binário para o directório actual"
  1011. #: cmdline/apt-get.cc
  1012. msgid "Download and display the changelog for the given package"
  1013. msgstr "Obter e mostrar o changelog de um pacote"
  1014. #: cmdline/apt-helper.cc
  1015. msgid "Need one URL as argument"
  1016. msgstr ""
  1017. #: cmdline/apt-helper.cc
  1018. #, fuzzy
  1019. msgid "Must specify at least one pair url/filename"
  1020. msgstr "Tem de especificar pelo menos um pacote para obter o código fonte de"
  1021. #: cmdline/apt-helper.cc
  1022. msgid "Download Failed"
  1023. msgstr ""
  1024. #: cmdline/apt-helper.cc
  1025. #, c-format
  1026. msgid "GetSrvRec failed for %s"
  1027. msgstr ""
  1028. #: cmdline/apt-helper.cc
  1029. msgid ""
  1030. "Usage: apt-helper [options] command\n"
  1031. " apt-helper [options] cat-file file ...\n"
  1032. " apt-helper [options] download-file uri target-path\n"
  1033. "\n"
  1034. "apt-helper bundles a variety of commands for shell scripts to use\n"
  1035. "e.g. the same proxy configuration or acquire system as APT would.\n"
  1036. msgstr ""
  1037. #: cmdline/apt-helper.cc
  1038. msgid "download the given uri to the target-path"
  1039. msgstr ""
  1040. #: cmdline/apt-helper.cc
  1041. msgid "lookup a SRV record (e.g. _http._tcp.ftp.debian.org)"
  1042. msgstr ""
  1043. #: cmdline/apt-helper.cc
  1044. msgid "concatenate files, with automatic decompression"
  1045. msgstr ""
  1046. #: cmdline/apt-helper.cc
  1047. msgid "detect proxy using apt.conf"
  1048. msgstr ""
  1049. #: cmdline/apt-mark.cc
  1050. #, c-format
  1051. msgid "%s can not be marked as it is not installed.\n"
  1052. msgstr "%s não pode ser marcado pois não está instalado.\n"
  1053. #: cmdline/apt-mark.cc
  1054. #, c-format
  1055. msgid "%s was already set to manually installed.\n"
  1056. msgstr "%s já estava definido para ser instalado manualmente.\n"
  1057. #: cmdline/apt-mark.cc
  1058. #, c-format
  1059. msgid "%s was already set to automatically installed.\n"
  1060. msgstr "%s já estava definido para ser instalado automaticamente.\n"
  1061. #: cmdline/apt-mark.cc
  1062. #, c-format
  1063. msgid "%s was already set on hold.\n"
  1064. msgstr "%s já estava marcado para manter.\n"
  1065. #: cmdline/apt-mark.cc
  1066. #, c-format
  1067. msgid "%s was already not hold.\n"
  1068. msgstr "%s já estava para não manter.\n"
  1069. #: cmdline/apt-mark.cc
  1070. msgid "Executing dpkg failed. Are you root?"
  1071. msgstr "Falhou executar dpkg. É root?"
  1072. #: cmdline/apt-mark.cc
  1073. #, c-format
  1074. msgid "%s set on hold.\n"
  1075. msgstr "%s marcado para manter.\n"
  1076. #: cmdline/apt-mark.cc
  1077. #, c-format
  1078. msgid "Canceled hold on %s.\n"
  1079. msgstr "Cancelou manter em %s.\n"
  1080. #: cmdline/apt-mark.cc
  1081. #, c-format
  1082. msgid "Selected %s for purge.\n"
  1083. msgstr ""
  1084. #: cmdline/apt-mark.cc
  1085. #, c-format
  1086. msgid "Selected %s for removal.\n"
  1087. msgstr ""
  1088. #: cmdline/apt-mark.cc
  1089. #, c-format
  1090. msgid "Selected %s for installation.\n"
  1091. msgstr ""
  1092. #: cmdline/apt-mark.cc
  1093. #, fuzzy
  1094. msgid ""
  1095. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  1096. "\n"
  1097. "apt-mark is a simple command line interface for marking packages\n"
  1098. "as manually or automatically installed. It can also be used to\n"
  1099. "manipulate the dpkg(1) selection states of packages, and to list\n"
  1100. "all packages with or without a certain marking.\n"
  1101. msgstr ""
  1102. "Utilização: apt-mark [opções] {auto|manual} pacote1 [pacote2...]\n"
  1103. "\n"
  1104. "apt-mark é um interface simples de linha de comandos para marcar pacotes "
  1105. "como instalados de forma manual ou automática. Pode também listar "
  1106. "marcações.\n"
  1107. #: cmdline/apt-mark.cc
  1108. msgid "Mark the given packages as automatically installed"
  1109. msgstr "Marca os pacotes como instalados automaticamente"
  1110. #: cmdline/apt-mark.cc
  1111. msgid "Mark the given packages as manually installed"
  1112. msgstr "Marca os pacotes como instalados manualmente"
  1113. #: cmdline/apt-mark.cc
  1114. msgid "Mark a package as held back"
  1115. msgstr ""
  1116. #: cmdline/apt-mark.cc
  1117. msgid "Unset a package set as held back"
  1118. msgstr ""
  1119. #: cmdline/apt-mark.cc
  1120. msgid "Print the list of automatically installed packages"
  1121. msgstr ""
  1122. #: cmdline/apt-mark.cc
  1123. msgid "Print the list of manually installed packages"
  1124. msgstr ""
  1125. #: cmdline/apt-mark.cc
  1126. msgid "Print the list of package on hold"
  1127. msgstr ""
  1128. #: cmdline/apt.cc
  1129. msgid ""
  1130. "Usage: apt [options] command\n"
  1131. "\n"
  1132. "apt is a commandline package manager and provides commands for\n"
  1133. "searching and managing as well as querying information about packages.\n"
  1134. "It provides the same functionality as the specialized APT tools,\n"
  1135. "like apt-get and apt-cache, but enables options more suitable for\n"
  1136. "interactive use by default.\n"
  1137. msgstr ""
  1138. #. query
  1139. #: cmdline/apt.cc
  1140. msgid "list packages based on package names"
  1141. msgstr ""
  1142. #: cmdline/apt.cc
  1143. #, fuzzy
  1144. msgid "search in package descriptions"
  1145. msgstr "A ler as listas de pacotes"
  1146. #: cmdline/apt.cc
  1147. msgid "show package details"
  1148. msgstr ""
  1149. #. package stuff
  1150. #: cmdline/apt.cc
  1151. #, fuzzy
  1152. msgid "install packages"
  1153. msgstr "Pacotes Marcados:"
  1154. #: cmdline/apt.cc
  1155. #, fuzzy
  1156. msgid "remove packages"
  1157. msgstr "Pacotes estragados"
  1158. #. system wide stuff
  1159. #: cmdline/apt.cc
  1160. #, fuzzy
  1161. msgid "update list of available packages"
  1162. msgstr "mas é um pacote virtual"
  1163. #: cmdline/apt.cc
  1164. msgid "upgrade the system by installing/upgrading packages"
  1165. msgstr ""
  1166. #: cmdline/apt.cc
  1167. msgid "upgrade the system by removing/installing/upgrading packages"
  1168. msgstr ""
  1169. #. misc
  1170. #: cmdline/apt.cc
  1171. #, fuzzy
  1172. msgid "edit the source information file"
  1173. msgstr "A ler a informação de estado"
  1174. #: methods/cdrom.cc
  1175. #, c-format
  1176. msgid "Unable to read the cdrom database %s"
  1177. msgstr "Não foi capaz de ler a base de dados de cdrom %s"
  1178. #: methods/cdrom.cc
  1179. msgid ""
  1180. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1181. "cannot be used to add new CD-ROMs"
  1182. msgstr ""
  1183. "Por favor utilize o apt-cdrom para fazer com que este CD seja reconhecido "
  1184. "pelo APT. apt-get update não pode ser utilizado para adicionar novos CDs"
  1185. #: methods/cdrom.cc
  1186. msgid "Wrong CD-ROM"
  1187. msgstr "CD errado"
  1188. #: methods/cdrom.cc
  1189. #, c-format
  1190. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1191. msgstr "Impossível desmontar o CD-ROM em %s, pode ainda estar a ser utilizado."
  1192. #: methods/cdrom.cc
  1193. msgid "Disk not found."
  1194. msgstr "Disco não encontrado."
  1195. #: methods/cdrom.cc methods/file.cc methods/rsh.cc
  1196. msgid "File not found"
  1197. msgstr "Ficheiro não encontrado"
  1198. #: methods/connect.cc
  1199. #, c-format
  1200. msgid "Connecting to %s (%s)"
  1201. msgstr "A Ligar a %s (%s)"
  1202. #: methods/connect.cc
  1203. #, c-format
  1204. msgid "[IP: %s %s]"
  1205. msgstr "[IP: %s %s]"
  1206. #: methods/connect.cc
  1207. #, c-format
  1208. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1209. msgstr "Não foi possível criar um socket para %s (f=%u t=%u p=%u)"
  1210. #: methods/connect.cc
  1211. #, c-format
  1212. msgid "Cannot initiate the connection to %s:%s (%s)."
  1213. msgstr "Não posso iniciar a ligação para %s:%s (%s)."
  1214. #: methods/connect.cc
  1215. #, c-format
  1216. msgid "Could not connect to %s:%s (%s), connection timed out"
  1217. msgstr "Não foi possível ligar a %s:%s (%s), a conexão expirou"
  1218. #: methods/connect.cc methods/ftp.cc methods/rsh.cc
  1219. msgid "Failed"
  1220. msgstr "Falhou"
  1221. #: methods/connect.cc
  1222. #, c-format
  1223. msgid "Could not connect to %s:%s (%s)."
  1224. msgstr "Não foi possível ligar em %s:%s (%s)."
  1225. #. We say this mainly because the pause here is for the
  1226. #. ssh connection that is still going
  1227. #: methods/connect.cc methods/rsh.cc
  1228. #, c-format
  1229. msgid "Connecting to %s"
  1230. msgstr "A ligar a %s"
  1231. #: methods/connect.cc
  1232. #, c-format
  1233. msgid "Could not resolve '%s'"
  1234. msgstr "Não foi possível resolver '%s'"
  1235. #: methods/connect.cc
  1236. #, c-format
  1237. msgid "Temporary failure resolving '%s'"
  1238. msgstr "Falha temporária a resolver '%s'"
  1239. #: methods/connect.cc
  1240. #, fuzzy, c-format
  1241. msgid "System error resolving '%s:%s'"
  1242. msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)"
  1243. #: methods/connect.cc
  1244. #, c-format
  1245. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1246. msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)"
  1247. #: methods/connect.cc
  1248. #, c-format
  1249. msgid "Unable to connect to %s:%s:"
  1250. msgstr "Não foi possível ligar a %s:%s:"
  1251. #: methods/copy.cc methods/store.cc
  1252. msgid "Failed to stat"
  1253. msgstr "Falhou o stat"
  1254. #: methods/copy.cc methods/rred.cc methods/store.cc
  1255. msgid "Failed to set modification time"
  1256. msgstr "Falhou definir hora de modificação"
  1257. #: methods/file.cc
  1258. msgid "Invalid URI, local URIS must not start with //"
  1259. msgstr "URI inválido, URIs locais não devem começar por //"
  1260. #. Login must be before getpeername otherwise dante won't work.
  1261. #: methods/ftp.cc
  1262. msgid "Logging in"
  1263. msgstr "A identificar-se no sistema"
  1264. #: methods/ftp.cc
  1265. msgid "Unable to determine the peer name"
  1266. msgstr "Não foi possível determinar o nome do posto"
  1267. #: methods/ftp.cc
  1268. msgid "Unable to determine the local name"
  1269. msgstr "Não foi possível determinar o nome local"
  1270. #: methods/ftp.cc
  1271. #, c-format
  1272. msgid "The server refused the connection and said: %s"
  1273. msgstr "O servidor recusou a ligação e respondeu: %s"
  1274. #: methods/ftp.cc
  1275. #, c-format
  1276. msgid "USER failed, server said: %s"
  1277. msgstr "USER falhou, o servidor respondeu: %s"
  1278. #: methods/ftp.cc
  1279. #, c-format
  1280. msgid "PASS failed, server said: %s"
  1281. msgstr "PASS falhou, o servidor respondeu: %s"
  1282. #: methods/ftp.cc
  1283. msgid ""
  1284. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1285. "is empty."
  1286. msgstr ""
  1287. "Foi especificado um servidor de proxy mas não um script de login, Acquire::"
  1288. "ftp::ProxyLogin está vazio."
  1289. #: methods/ftp.cc
  1290. #, c-format
  1291. msgid "Login script command '%s' failed, server said: %s"
  1292. msgstr "O comando de script de login '%s' falhou, o servidor respondeu: %s"
  1293. #: methods/ftp.cc
  1294. #, c-format
  1295. msgid "TYPE failed, server said: %s"
  1296. msgstr "TYPE falhou, o servidor respondeu: %s"
  1297. #: methods/ftp.cc methods/rsh.cc
  1298. msgid "Connection timeout"
  1299. msgstr "Foi atingido o tempo limite de ligação"
  1300. #: methods/ftp.cc
  1301. msgid "Server closed the connection"
  1302. msgstr "O servidor fechou a ligação"
  1303. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1304. msgid "Read error"
  1305. msgstr "Erro de leitura"
  1306. #: methods/ftp.cc methods/rsh.cc
  1307. msgid "A response overflowed the buffer."
  1308. msgstr "Uma resposta sobrecarregou o buffer."
  1309. #: methods/ftp.cc
  1310. msgid "Protocol corruption"
  1311. msgstr "Corrupção de protocolo"
  1312. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1313. msgid "Write error"
  1314. msgstr "Erro de escrita"
  1315. #: methods/ftp.cc
  1316. msgid "Could not create a socket"
  1317. msgstr "Não foi possível criar um socket"
  1318. #: methods/ftp.cc
  1319. msgid "Could not connect data socket, connection timed out"
  1320. msgstr "Não foi possível ligar socket de dados, a ligação expirou"
  1321. #: methods/ftp.cc
  1322. msgid "Could not connect passive socket."
  1323. msgstr "Não foi possível ligar socket passivo."
  1324. #: methods/ftp.cc
  1325. msgid "getaddrinfo was unable to get a listening socket"
  1326. msgstr "getaddrinfo não foi capaz de obter um socket de escuta"
  1327. #: methods/ftp.cc
  1328. msgid "Could not bind a socket"
  1329. msgstr "Não foi possível fazer o bind a um socket"
  1330. #: methods/ftp.cc
  1331. msgid "Could not listen on the socket"
  1332. msgstr "Não foi possível executar listen no socket"
  1333. #: methods/ftp.cc
  1334. msgid "Could not determine the socket's name"
  1335. msgstr "Não foi possível determinar o nome do socket"
  1336. #: methods/ftp.cc
  1337. msgid "Unable to send PORT command"
  1338. msgstr "Não foi possível enviar o comando PORT"
  1339. #: methods/ftp.cc
  1340. #, c-format
  1341. msgid "Unknown address family %u (AF_*)"
  1342. msgstr "Família de endereços %u desconhecida (AF_*)"
  1343. #: methods/ftp.cc
  1344. #, c-format
  1345. msgid "EPRT failed, server said: %s"
  1346. msgstr "EPRT falhou, o servidor respondeu: %s"
  1347. #: methods/ftp.cc
  1348. msgid "Data socket connect timed out"
  1349. msgstr "Ligação de socket de dados expirou"
  1350. #: methods/ftp.cc
  1351. msgid "Unable to accept connection"
  1352. msgstr "Impossível aceitar ligação"
  1353. #: methods/ftp.cc methods/rsh.cc methods/server.cc
  1354. msgid "Problem hashing file"
  1355. msgstr "Problema ao calcular o hash do ficheiro"
  1356. #: methods/ftp.cc
  1357. #, c-format
  1358. msgid "Unable to fetch file, server said '%s'"
  1359. msgstr "Não foi possível obter o ficheiro, o servidor respondeu '%s'"
  1360. #: methods/ftp.cc methods/rsh.cc
  1361. msgid "Data socket timed out"
  1362. msgstr "Expirou o tempo do socket de dados"
  1363. #: methods/ftp.cc
  1364. #, c-format
  1365. msgid "Data transfer failed, server said '%s'"
  1366. msgstr "A transferência de dados falhou, o servidor respondeu '%s'"
  1367. #. Get the files information
  1368. #: methods/ftp.cc
  1369. msgid "Query"
  1370. msgstr "Pesquisa"
  1371. #: methods/ftp.cc
  1372. msgid "Unable to invoke "
  1373. msgstr "Não foi possível invocar "
  1374. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  1375. #: methods/gpgv.cc apt-pkg/acquire-item.cc
  1376. #, c-format
  1377. msgid ""
  1378. "Clearsigned file isn't valid, got '%s' (does the network require "
  1379. "authentication?)"
  1380. msgstr ""
  1381. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  1382. #: methods/gpgv.cc
  1383. #, c-format
  1384. msgid ""
  1385. "Signed file isn't valid, got '%s' (does the network require authentication?)"
  1386. msgstr ""
  1387. #: methods/gpgv.cc
  1388. msgid "At least one invalid signature was encountered."
  1389. msgstr "Pelo menos uma assinatura inválida foi encontrada."
  1390. #: methods/gpgv.cc
  1391. msgid ""
  1392. "Internal error: Good signature, but could not determine key fingerprint?!"
  1393. msgstr ""
  1394. "Erro interno: Assinatura válida, mas não foi possível determinar a impressão "
  1395. "digital da chave?!"
  1396. #: methods/gpgv.cc
  1397. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  1398. msgstr ""
  1399. "Não foi possível executar 'apt-key' para verificar a assinatura (o gnupg "
  1400. "está instalado?)"
  1401. #: methods/gpgv.cc
  1402. msgid "Unknown error executing apt-key"
  1403. msgstr "Erro desconhecido ao executar apt-key"
  1404. #. TRANSLATORS: The second %s is the reason and is untranslated for repository owners.
  1405. #: methods/gpgv.cc
  1406. #, c-format
  1407. msgid "Signature by key %s uses weak digest algorithm (%s)"
  1408. msgstr ""
  1409. #: methods/gpgv.cc
  1410. msgid "The following signatures were invalid:\n"
  1411. msgstr "As seguintes assinaturas eram inválidas:\n"
  1412. #: methods/gpgv.cc
  1413. msgid ""
  1414. "The following signatures couldn't be verified because the public key is not "
  1415. "available:\n"
  1416. msgstr ""
  1417. "As seguintes assinaturas não puderam ser verificadas porque a chave pública "
  1418. "não está disponível:\n"
  1419. #: methods/http.cc
  1420. msgid "Error writing to the file"
  1421. msgstr "Erro ao escrever para o ficheiro"
  1422. #: methods/http.cc
  1423. msgid "Error reading from server. Remote end closed connection"
  1424. msgstr "Erro ao ler do servidor. O lado remoto fechou a ligação"
  1425. #: methods/http.cc
  1426. msgid "Error reading from server"
  1427. msgstr "Erro ao ler do servidor"
  1428. #: methods/http.cc
  1429. msgid "Error writing to file"
  1430. msgstr "Erro ao escrever para ficheiro"
  1431. #: methods/http.cc
  1432. msgid "Select failed"
  1433. msgstr "A selecção falhou"
  1434. #: methods/http.cc
  1435. msgid "Connection timed out"
  1436. msgstr "O tempo da ligação expirou"
  1437. #: methods/http.cc
  1438. msgid "Error writing to output file"
  1439. msgstr "Erro ao escrever para o ficheiro de saída"
  1440. #. Only warn if there are no sources.list.d.
  1441. #. Only warn if there is no sources.list file.
  1442. #: methods/mirror.cc apt-inst/extract.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1443. #: apt-pkg/contrib/cdromutl.cc apt-pkg/contrib/fileutl.cc apt-pkg/init.cc
  1444. #: apt-pkg/policy.cc apt-pkg/sourcelist.cc
  1445. #, c-format
  1446. msgid "Unable to read %s"
  1447. msgstr "Não foi possível ler %s"
  1448. #: methods/mirror.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1449. #: apt-pkg/contrib/cdromutl.cc
  1450. #, c-format
  1451. msgid "Unable to change to %s"
  1452. msgstr "Impossível mudar para %s"
  1453. #. FIXME: fallback to a default mirror here instead
  1454. #. and provide a config option to define that default
  1455. #: methods/mirror.cc
  1456. #, c-format
  1457. msgid "No mirror file '%s' found "
  1458. msgstr "Não foi encontrado ficheiro de mirror '%s'"
  1459. #. FIXME: fallback to a default mirror here instead
  1460. #. and provide a config option to define that default
  1461. #: methods/mirror.cc
  1462. #, c-format
  1463. msgid "Can not read mirror file '%s'"
  1464. msgstr "Não pode ler ficheiro de mirror '%s'"
  1465. #: methods/mirror.cc
  1466. #, fuzzy, c-format
  1467. msgid "No entry found in mirror file '%s'"
  1468. msgstr "Não pode ler ficheiro de mirror '%s'"
  1469. #: methods/mirror.cc
  1470. #, c-format
  1471. msgid "[Mirror: %s]"
  1472. msgstr "[Mirror: %s]"
  1473. #: methods/rred.cc ftparchive/cachedb.cc apt-inst/extract.cc
  1474. #: apt-pkg/acquire-item.cc
  1475. #, c-format
  1476. msgid "Failed to stat %s"
  1477. msgstr "Falha stat %s"
  1478. #: methods/rsh.cc ftparchive/multicompress.cc
  1479. msgid "Failed to create IPC pipe to subprocess"
  1480. msgstr "Falha ao criar pipe IPC para subprocesso"
  1481. #: methods/rsh.cc
  1482. msgid "Connection closed prematurely"
  1483. msgstr "Ligação encerrada prematuramente"
  1484. #: methods/server.cc
  1485. msgid "Waiting for headers"
  1486. msgstr "A aguardar por cabeçalhos"
  1487. #: methods/server.cc
  1488. msgid "Bad header line"
  1489. msgstr "Linha de cabeçalho errada"
  1490. #: methods/server.cc
  1491. msgid "The HTTP server sent an invalid reply header"
  1492. msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido"
  1493. #: methods/server.cc
  1494. msgid "The HTTP server sent an invalid Content-Length header"
  1495. msgstr "O servidor HTTP enviou um cabeçalho Content-Length inválido"
  1496. #: methods/server.cc
  1497. msgid "The HTTP server sent an invalid Content-Range header"
  1498. msgstr "O servidor HTTP enviou um cabeçalho Content-Range inválido"
  1499. #: methods/server.cc
  1500. msgid "This HTTP server has broken range support"
  1501. msgstr "Este servidor HTTP possui suporte de range errado"
  1502. #: methods/server.cc
  1503. msgid "Unknown date format"
  1504. msgstr "Formato de data desconhecido"
  1505. #: methods/server.cc
  1506. msgid "Bad header data"
  1507. msgstr "Dados de cabeçalho errados"
  1508. #: methods/server.cc
  1509. msgid "Connection failed"
  1510. msgstr "A ligação falhou"
  1511. #: methods/server.cc
  1512. #, c-format
  1513. msgid ""
  1514. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  1515. "5 apt.conf)"
  1516. msgstr ""
  1517. #: methods/server.cc
  1518. msgid "Internal error"
  1519. msgstr "Erro interno"
  1520. #: methods/store.cc
  1521. msgid "Empty files can't be valid archives"
  1522. msgstr "Ficheiros vazios não podem ser arquivos válidos"
  1523. #: dselect/install:33
  1524. msgid "Bad default setting!"
  1525. msgstr "Configuração pré-definida errada!"
  1526. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1527. #: dselect/install:106 dselect/update:45
  1528. #, fuzzy
  1529. msgid "Press [Enter] to continue."
  1530. msgstr "Carregue em enter para continuar."
  1531. #: dselect/install:92
  1532. msgid "Do you want to erase any previously downloaded .deb files?"
  1533. msgstr "Deseja apagar quaisquer ficheiros .deb obtidos previamente?"
  1534. # Note to translators: The following four messages belong together. It doesn't
  1535. # matter where sentences start, but it has to fit in just these four lines, and
  1536. # at only 80 characters per line, if possible.
  1537. #: dselect/install:102
  1538. msgid "Some errors occurred while unpacking. Packages that were installed"
  1539. msgstr ""
  1540. "Ocorreram alguns erros ao descompactar. Os pacotes que foram instalados"
  1541. #: dselect/install:103
  1542. msgid "will be configured. This may result in duplicate errors"
  1543. msgstr "serão configurados. Isto pode resultar em erros duplicados"
  1544. #: dselect/install:104
  1545. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1546. msgstr "causados por dependências em falta. Isto está OK, somente os erros"
  1547. #: dselect/install:105
  1548. msgid ""
  1549. "above this message are important. Please fix them and run [I]nstall again"
  1550. msgstr ""
  1551. "acima desta mensagem são importantes. Por favor resolva-os e execute "
  1552. "[I]nstalar novamente"
  1553. #: dselect/update:30
  1554. msgid "Merging available information"
  1555. msgstr "A juntar a informação disponível"
  1556. #: cmdline/apt-dump-solver.cc
  1557. msgid ""
  1558. "Usage: apt-dump-solver\n"
  1559. "\n"
  1560. "apt-dump-solver is an interface to store an EDSP scenario in\n"
  1561. "a file and optionally forwards it to another solver.\n"
  1562. msgstr ""
  1563. #: cmdline/apt-dump-solver.cc apt-pkg/contrib/fileutl.cc
  1564. #: apt-pkg/contrib/gpgv.cc apt-pkg/deb/debsystem.cc
  1565. #, c-format
  1566. msgid "Waited for %s but it wasn't there"
  1567. msgstr "Esperou por %s mas não estava lá"
  1568. #: cmdline/apt-extracttemplates.cc
  1569. #, fuzzy
  1570. msgid ""
  1571. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1572. "\n"
  1573. "apt-extracttemplates is used to extract config and template files\n"
  1574. "from debian packages. It is used mainly by debconf(1) to prompt for\n"
  1575. "configuration questions before installation of packages.\n"
  1576. msgstr ""
  1577. "Utilização: apt-extracttemplates ficheiro1 [ficheiro2 ...]\n"
  1578. "\n"
  1579. "O apt-extracttemplates é uma ferramenta para extrair configuração\n"
  1580. "e informação de template de pacotes debian.\n"
  1581. "\n"
  1582. "Opções:\n"
  1583. " -h Este texto de ajuda\n"
  1584. " -t Definir o directório temporário\n"
  1585. " -c=? Ler este ficheiro de configuração\n"
  1586. " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/"
  1587. "tmp\n"
  1588. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1589. #, fuzzy, c-format
  1590. msgid "Unable to mkstemp %s"
  1591. msgstr "Não foi possível fazer stat %s"
  1592. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1593. #, c-format
  1594. msgid "Unable to write to %s"
  1595. msgstr "Não conseguiu escrever para %s"
  1596. #: cmdline/apt-extracttemplates.cc
  1597. msgid "Cannot get debconf version. Is debconf installed?"
  1598. msgstr "Não pode obter a versão do debconf. O debconf está instalado?"
  1599. #: cmdline/apt-internal-solver.cc
  1600. #, fuzzy
  1601. msgid ""
  1602. "Usage: apt-internal-solver\n"
  1603. "\n"
  1604. "apt-internal-solver is an interface to use the current internal\n"
  1605. "resolver for the APT family like an external one, for debugging or\n"
  1606. "the like.\n"
  1607. msgstr ""
  1608. "Utilização: apt-internal-solver\n"
  1609. "\n"
  1610. "O apt-internal-solver é um interface para utilizar o actual interno como um\n"
  1611. " resolvedor externo para a família APT para depuração ou semelhante.\n"
  1612. "\n"
  1613. "Opções:\n"
  1614. " -h Este texto de ajuda.\n"
  1615. " -q Saída para registo - sem indicador de progresso\n"
  1616. " -c=? Ler este ficheiro de configuração\n"
  1617. " -o=? Definir uma opção de configuração arbitrária, p.e. dir::cache=/tmp\n"
  1618. #: cmdline/apt-sortpkgs.cc
  1619. msgid "Unknown package record!"
  1620. msgstr "Registo de pacote desconhecido!"
  1621. #: cmdline/apt-sortpkgs.cc
  1622. msgid ""
  1623. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1624. "\n"
  1625. "apt-sortpkgs is a simple tool to sort package information files.\n"
  1626. "By default it sorts by binary package information, but the -s option\n"
  1627. "can be used to switch to source package ordering instead.\n"
  1628. msgstr ""
  1629. #: ftparchive/apt-ftparchive.cc
  1630. msgid "Package extension list is too long"
  1631. msgstr "A lista de extensão de pacotes é demasiado longa"
  1632. #: ftparchive/apt-ftparchive.cc
  1633. #, c-format
  1634. msgid "Error processing directory %s"
  1635. msgstr "Erro ao processar o directório %s"
  1636. #: ftparchive/apt-ftparchive.cc
  1637. msgid "Source extension list is too long"
  1638. msgstr "Lista de extensão de códigos-fonte é demasiado longa"
  1639. #: ftparchive/apt-ftparchive.cc
  1640. msgid "Error writing header to contents file"
  1641. msgstr "Erro ao escrever o cabeçalho no ficheiro de conteúdo"
  1642. #: ftparchive/apt-ftparchive.cc
  1643. #, c-format
  1644. msgid "Error processing contents %s"
  1645. msgstr "Erro ao processar o conteúdo %s"
  1646. #: ftparchive/apt-ftparchive.cc
  1647. msgid ""
  1648. "Usage: apt-ftparchive [options] command\n"
  1649. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1650. " sources srcpath [overridefile [pathprefix]]\n"
  1651. " contents path\n"
  1652. " release path\n"
  1653. " generate config [groups]\n"
  1654. " clean config\n"
  1655. "\n"
  1656. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1657. "many styles of generation from fully automated to functional replacements\n"
  1658. "for dpkg-scanpackages and dpkg-scansources\n"
  1659. "\n"
  1660. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1661. "Package file contains the contents of all the control fields from\n"
  1662. "each package as well as the MD5 hash and filesize. An override file\n"
  1663. "is supported to force the value of Priority and Section.\n"
  1664. "\n"
  1665. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1666. "The --source-override option can be used to specify a src override file\n"
  1667. "\n"
  1668. "The 'packages' and 'sources' command should be run in the root of the\n"
  1669. "tree. BinaryPath should point to the base of the recursive search and \n"
  1670. "override file should contain the override flags. Pathprefix is\n"
  1671. "appended to the filename fields if present. Example usage from the \n"
  1672. "Debian archive:\n"
  1673. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1674. " dists/potato/main/binary-i386/Packages\n"
  1675. "\n"
  1676. "Options:\n"
  1677. " -h This help text\n"
  1678. " --md5 Control MD5 generation\n"
  1679. " -s=? Source override file\n"
  1680. " -q Quiet\n"
  1681. " -d=? Select the optional caching database\n"
  1682. " --no-delink Enable delinking debug mode\n"
  1683. " --contents Control contents file generation\n"
  1684. " -c=? Read this configuration file\n"
  1685. " -o=? Set an arbitrary configuration option"
  1686. msgstr ""
  1687. "Utilização: apt-ftparchive [opções] comando\n"
  1688. "Comandos: packages caminho_binário [ficheiro_override [prefixo_caminho]]\n"
  1689. " sources caminho_fonte [ficheiro_override [prefixo_caminho]]\n"
  1690. " contents caminho\n"
  1691. " release caminho\n"
  1692. " generate config [grupos]\n"
  1693. " clean config\n"
  1694. "\n"
  1695. "O apt-ftparchive gera ficheiros de índice para repositórios Debian. Ele \n"
  1696. "suporta muitos estilos de criação, desde totalmente automatizados até \n"
  1697. "substitutos funcionais para o dpkg-scanpackages e dpkg-scansources\n"
  1698. "\n"
  1699. "O apt-ftparchive gera ficheiros Packages a partir de uma árvore de .debs.\n"
  1700. " O ficheiro Package contém o conteúdo de todos os campos de controle de \n"
  1701. "cada pacote bem como o hash MD5 e tamanho do ficheiro. É suportado um \n"
  1702. "ficheiro override para forçar o valor de Priority e Section.\n"
  1703. "\n"
  1704. "Similarmente, o apt-ftparchive gera ficheiros Sources a partir de uma \n"
  1705. "árvore de .dscs. A opção --source-override pode ser utilizada para \n"
  1706. "especificar um ficheiro override de fontes\n"
  1707. "\n"
  1708. "Os comandos 'packages' e 'sources' devem ser executados na raiz da \n"
  1709. "árvore. CaminhoBinário deve apontar para a base de procura recursiva \n"
  1710. "e o ficheiro override deve conter as flags override. CaminhoPrefixo é \n"
  1711. "incluído aos campos filename caso esteja presente. Exemplo de uso do \n"
  1712. "repositório Debian :\n"
  1713. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1714. " dists/potato/main/binary-i386/Packages\n"
  1715. "\n"
  1716. "Opções:\n"
  1717. " -h Este texto de ajuda\n"
  1718. " --md5 Controlar a criação do MD5\n"
  1719. " -s=? Ficheiro override de código-fonte \n"
  1720. " -q Silencioso\n"
  1721. " -d=? Seleccionar a base de dados de caching opcional\n"
  1722. " --no-delink Habilitar o modo de debug delinking\n"
  1723. " --contents Controlar a criação do ficheiro de conteúdo\n"
  1724. " -c=? Ler este ficheiro de configuração\n"
  1725. " -o=? Definir uma opção de configuração arbitrária"
  1726. #: ftparchive/apt-ftparchive.cc
  1727. msgid "No selections matched"
  1728. msgstr "Nenhuma selecção coincidiu"
  1729. #: ftparchive/apt-ftparchive.cc
  1730. #, c-format
  1731. msgid "Some files are missing in the package file group `%s'"
  1732. msgstr "Faltam alguns ficheiros no grupo `%s' do ficheiro do pacote"
  1733. #: ftparchive/cachedb.cc
  1734. #, c-format
  1735. msgid "DB was corrupted, file renamed to %s.old"
  1736. msgstr "A base de dados estava corrompida, ficheiro renomeado para %s.old"
  1737. #: ftparchive/cachedb.cc
  1738. #, c-format
  1739. msgid "DB is old, attempting to upgrade %s"
  1740. msgstr "A base de dados é antiga, a tentar actualizar %s"
  1741. #: ftparchive/cachedb.cc
  1742. msgid ""
  1743. "DB format is invalid. If you upgraded from an older version of apt, please "
  1744. "remove and re-create the database."
  1745. msgstr ""
  1746. "O formato da BD é inválido. Se actualizou a partir de uma versão antiga do "
  1747. "apt, por favor remova-a e crie novamente a base de dados."
  1748. #: ftparchive/cachedb.cc
  1749. #, c-format
  1750. msgid "Unable to open DB file %s: %s"
  1751. msgstr "Não foi possível abrir o ficheiro %s da base de dados: %s"
  1752. #: ftparchive/cachedb.cc
  1753. #, fuzzy
  1754. msgid "Failed to read .dsc"
  1755. msgstr "Falhou o readlink %s"
  1756. #: ftparchive/cachedb.cc
  1757. msgid "Archive has no control record"
  1758. msgstr "O arquivo não tem registo de controlo"
  1759. #: ftparchive/cachedb.cc
  1760. msgid "Unable to get a cursor"
  1761. msgstr "Não foi possível obter um cursor"
  1762. #: ftparchive/contents.cc
  1763. msgid "realloc - Failed to allocate memory"
  1764. msgstr "realloc - Falhou alocar memória"
  1765. #: ftparchive/multicompress.cc
  1766. #, c-format
  1767. msgid "Unknown compression algorithm '%s'"
  1768. msgstr "Algoritmo de compressão desconhecido '%s'"
  1769. #: ftparchive/multicompress.cc
  1770. #, c-format
  1771. msgid "Compressed output %s needs a compression set"
  1772. msgstr "Saída compactada %s precisa de um conjunto de compressão"
  1773. #: ftparchive/multicompress.cc
  1774. msgid "Failed to fork"
  1775. msgstr "Falhou o fork"
  1776. #: ftparchive/multicompress.cc
  1777. msgid "Compress child"
  1778. msgstr "Compactar filho"
  1779. #: ftparchive/multicompress.cc
  1780. #, c-format
  1781. msgid "Internal error, failed to create %s"
  1782. msgstr "Erro Interno, falhou criar %s"
  1783. #: ftparchive/multicompress.cc
  1784. msgid "IO to subprocess/file failed"
  1785. msgstr "Falhou o IO para subprocesso/arquivo"
  1786. #: ftparchive/multicompress.cc
  1787. msgid "Failed to read while computing MD5"
  1788. msgstr "Falhou ler durante o cálculo de MD5"
  1789. #: ftparchive/multicompress.cc apt-inst/extract.cc
  1790. #, c-format
  1791. msgid "Failed to rename %s to %s"
  1792. msgstr "Falhou renomear %s para %s"
  1793. #: ftparchive/override.cc
  1794. #, c-format
  1795. msgid "Unable to open %s"
  1796. msgstr "Não foi possível abrir %s"
  1797. #. skip spaces
  1798. #. find end of word
  1799. #: ftparchive/override.cc
  1800. #, fuzzy, c-format
  1801. msgid "Malformed override %s line %llu (%s)"
  1802. msgstr "Override %s malformado linha %llu #1"
  1803. #: ftparchive/override.cc
  1804. #, c-format
  1805. msgid "Failed to read the override file %s"
  1806. msgstr "Falhou ler o ficheiro override %s"
  1807. #: ftparchive/override.cc
  1808. #, c-format
  1809. msgid "Malformed override %s line %llu #1"
  1810. msgstr "Override %s malformado linha %llu #1"
  1811. #: ftparchive/override.cc
  1812. #, c-format
  1813. msgid "Malformed override %s line %llu #2"
  1814. msgstr "Override %s malformado linha %llu #2"
  1815. #: ftparchive/override.cc
  1816. #, c-format
  1817. msgid "Malformed override %s line %llu #3"
  1818. msgstr "Override %s malformado linha %llu #3"
  1819. #: ftparchive/writer.cc
  1820. #, c-format
  1821. msgid "W: Unable to read directory %s\n"
  1822. msgstr "W: Não foi possível ler o directório %s\n"
  1823. #: ftparchive/writer.cc
  1824. #, c-format
  1825. msgid "W: Unable to stat %s\n"
  1826. msgstr "W: Não foi possível fazer stat %s\n"
  1827. #: ftparchive/writer.cc
  1828. msgid "E: "
  1829. msgstr "E: "
  1830. #: ftparchive/writer.cc
  1831. msgid "W: "
  1832. msgstr "W: "
  1833. #: ftparchive/writer.cc
  1834. msgid "E: Errors apply to file "
  1835. msgstr "E: Os erros aplicam-se ao ficheiro "
  1836. #: ftparchive/writer.cc
  1837. #, c-format
  1838. msgid "Failed to resolve %s"
  1839. msgstr "Falhou resolver %s"
  1840. #: ftparchive/writer.cc
  1841. msgid "Tree walking failed"
  1842. msgstr "Falhou ao percorrer a árvore"
  1843. #: ftparchive/writer.cc
  1844. #, c-format
  1845. msgid "Failed to open %s"
  1846. msgstr "Falhou abrir %s"
  1847. #: ftparchive/writer.cc
  1848. #, c-format
  1849. msgid " DeLink %s [%s]\n"
  1850. msgstr " DeLink %s [%s]\n"
  1851. #: ftparchive/writer.cc apt-pkg/acquire-item.cc
  1852. #, c-format
  1853. msgid "Failed to readlink %s"
  1854. msgstr "Falhou o readlink %s"
  1855. #: ftparchive/writer.cc
  1856. #, c-format
  1857. msgid "*** Failed to link %s to %s"
  1858. msgstr "*** Falhou ligar %s a %s"
  1859. #: ftparchive/writer.cc
  1860. #, c-format
  1861. msgid " DeLink limit of %sB hit.\n"
  1862. msgstr " Limite DeLink de %sB atingido.\n"
  1863. #: ftparchive/writer.cc
  1864. msgid "Archive had no package field"
  1865. msgstr "Arquivo não possuía campo package"
  1866. #: ftparchive/writer.cc
  1867. #, c-format
  1868. msgid " %s has no override entry\n"
  1869. msgstr " %s não possui entrada override\n"
  1870. #: ftparchive/writer.cc
  1871. #, c-format
  1872. msgid " %s maintainer is %s not %s\n"
  1873. msgstr " o maintainer de %s é %s, não %s\n"
  1874. #: ftparchive/writer.cc
  1875. #, c-format
  1876. msgid " %s has no source override entry\n"
  1877. msgstr " %s não possui fonte de entrada de 'override'\n"
  1878. #: ftparchive/writer.cc
  1879. #, c-format
  1880. msgid " %s has no binary override entry either\n"
  1881. msgstr " %s também não possui entrada binária de 'override'\n"
  1882. #: apt-inst/contrib/arfile.cc
  1883. msgid "Invalid archive signature"
  1884. msgstr "Assinatura de arquivo inválida"
  1885. #: apt-inst/contrib/arfile.cc
  1886. msgid "Error reading archive member header"
  1887. msgstr "Erro na leitura de cabeçalho membro de arquivo"
  1888. #: apt-inst/contrib/arfile.cc
  1889. #, c-format
  1890. msgid "Invalid archive member header %s"
  1891. msgstr "Cabeçalho membro de arquivo inválido %s"
  1892. #: apt-inst/contrib/arfile.cc
  1893. msgid "Invalid archive member header"
  1894. msgstr "Cabeçalho membro de arquivo inválido"
  1895. #: apt-inst/contrib/arfile.cc
  1896. msgid "Archive is too short"
  1897. msgstr "Arquivo é demasiado pequeno"
  1898. #: apt-inst/contrib/arfile.cc
  1899. msgid "Failed to read the archive headers"
  1900. msgstr "Falha ao ler os cabeçalhos do arquivo"
  1901. #: apt-inst/contrib/extracttar.cc
  1902. #, fuzzy, c-format
  1903. msgid "Cannot find a configured compressor for '%s'"
  1904. msgstr "Não foi possível encontrar registo de autenticação para: %s"
  1905. #: apt-inst/contrib/extracttar.cc
  1906. msgid "Corrupted archive"
  1907. msgstr "Arquivo corrompido"
  1908. #: apt-inst/contrib/extracttar.cc
  1909. msgid "Tar checksum failed, archive corrupted"
  1910. msgstr "A soma de controlo do tar falhou, arquivo corrompido"
  1911. #: apt-inst/contrib/extracttar.cc
  1912. #, c-format
  1913. msgid "Unknown TAR header type %u, member %s"
  1914. msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s"
  1915. #: apt-inst/deb/debfile.cc
  1916. #, c-format
  1917. msgid "This is not a valid DEB archive, missing '%s' member"
  1918. msgstr "Este não é um arquivo DEB válido, falta o membro '%s'"
  1919. #: apt-inst/deb/debfile.cc
  1920. #, c-format
  1921. msgid "Internal error, could not locate member %s"
  1922. msgstr "Erro Interno, não foi possível localizar o membro %s"
  1923. #: apt-inst/deb/debfile.cc
  1924. msgid "Unparsable control file"
  1925. msgstr "Ficheiro de controle não interpretável"
  1926. #: apt-inst/dirstream.cc
  1927. #, c-format
  1928. msgid "Failed to write file %s"
  1929. msgstr "Falhou escrever o ficheiro %s"
  1930. #: apt-inst/dirstream.cc
  1931. #, c-format
  1932. msgid "Failed to close file %s"
  1933. msgstr "Falhou fechar o ficheiro %s"
  1934. #: apt-inst/extract.cc
  1935. #, c-format
  1936. msgid "The path %s is too long"
  1937. msgstr "O caminho %s é demasiado longo"
  1938. #: apt-inst/extract.cc
  1939. #, c-format
  1940. msgid "Unpacking %s more than once"
  1941. msgstr "A descompactar %s mais de uma vez"
  1942. #: apt-inst/extract.cc
  1943. #, c-format
  1944. msgid "The directory %s is diverted"
  1945. msgstr "O directório %s é desviado"
  1946. #: apt-inst/extract.cc
  1947. #, c-format
  1948. msgid "The package is trying to write to the diversion target %s/%s"
  1949. msgstr "O pacote está a tentar escrever no alvo de desvio %s/%s"
  1950. #: apt-inst/extract.cc
  1951. msgid "The diversion path is too long"
  1952. msgstr "O caminho de desvio é muito longo"
  1953. #: apt-inst/extract.cc
  1954. #, c-format
  1955. msgid "The directory %s is being replaced by a non-directory"
  1956. msgstr "O directório %s está a ser substituído por um não-directório"
  1957. #: apt-inst/extract.cc
  1958. msgid "Failed to locate node in its hash bucket"
  1959. msgstr "Falhou localizar o nó no seu hash bucket"
  1960. #: apt-inst/extract.cc
  1961. msgid "The path is too long"
  1962. msgstr "O caminho é demasiado longo"
  1963. #: apt-inst/extract.cc
  1964. #, c-format
  1965. msgid "Overwrite package match with no version for %s"
  1966. msgstr "Substituir o pacote correspondente sem versão para %s"
  1967. #: apt-inst/extract.cc
  1968. #, c-format
  1969. msgid "File %s/%s overwrites the one in the package %s"
  1970. msgstr "O ficheiro %s/%s substitui o que está no pacote %s"
  1971. #: apt-inst/extract.cc
  1972. #, c-format
  1973. msgid "Unable to stat %s"
  1974. msgstr "Não foi possível fazer stat %s"
  1975. #: apt-inst/filelist.cc
  1976. msgid "DropNode called on still linked node"
  1977. msgstr "DropNode chamado em nó ainda linkado"
  1978. #: apt-inst/filelist.cc
  1979. msgid "Failed to locate the hash element!"
  1980. msgstr "Falha ao localizar o elemento de hash!"
  1981. #: apt-inst/filelist.cc
  1982. msgid "Failed to allocate diversion"
  1983. msgstr "Falha ao alocar desvio (diversion)"
  1984. #: apt-inst/filelist.cc
  1985. msgid "Internal error in AddDiversion"
  1986. msgstr "Erro Interno em AddDiversion"
  1987. #: apt-inst/filelist.cc
  1988. #, c-format
  1989. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1990. msgstr "A tentar sobrescrever um desvio, %s -> %s e %s/%s"
  1991. #: apt-inst/filelist.cc
  1992. #, c-format
  1993. msgid "Double add of diversion %s -> %s"
  1994. msgstr "Adição dupla de desvio %s -> %s"
  1995. #: apt-inst/filelist.cc
  1996. #, c-format
  1997. msgid "Duplicate conf file %s/%s"
  1998. msgstr "Arquivo de configuração duplicado %s/%s"
  1999. #: apt-pkg/acquire-item.cc
  2000. msgid ""
  2001. "Updating from such a repository can't be done securely, and is therefore "
  2002. "disabled by default."
  2003. msgstr ""
  2004. #: apt-pkg/acquire-item.cc
  2005. msgid ""
  2006. "Data from such a repository can't be authenticated and is therefore "
  2007. "potentially dangerous to use."
  2008. msgstr ""
  2009. #: apt-pkg/acquire-item.cc
  2010. msgid ""
  2011. "See apt-secure(8) manpage for repository creation and user configuration "
  2012. "details."
  2013. msgstr ""
  2014. #: apt-pkg/acquire-item.cc
  2015. #, fuzzy, c-format
  2016. msgid "The repository '%s' is no longer signed."
  2017. msgstr "O directório %s é desviado"
  2018. #: apt-pkg/acquire-item.cc
  2019. #, fuzzy, c-format
  2020. msgid "The repository '%s' does no longer have a Release file."
  2021. msgstr "O directório %s é desviado"
  2022. #: apt-pkg/acquire-item.cc
  2023. msgid ""
  2024. "This is normally not allowed, but the option Acquire::"
  2025. "AllowDowngradeToInsecureRepositories was given to override it."
  2026. msgstr ""
  2027. #: apt-pkg/acquire-item.cc
  2028. #, fuzzy, c-format
  2029. msgid "The repository '%s' is not signed."
  2030. msgstr "O directório %s é desviado"
  2031. #: apt-pkg/acquire-item.cc
  2032. #, fuzzy, c-format
  2033. msgid "The repository '%s' does not have a Release file."
  2034. msgstr "O directório %s é desviado"
  2035. #: apt-pkg/acquire-item.cc
  2036. #, fuzzy, c-format
  2037. msgid "The repository '%s' provides only weak security information."
  2038. msgstr "O directório %s é desviado"
  2039. #: apt-pkg/acquire-item.cc
  2040. msgid "Hash Sum mismatch"
  2041. msgstr "Código de verificação hash não coincide"
  2042. #: apt-pkg/acquire-item.cc
  2043. msgid "Insufficient information available to perform this download securely"
  2044. msgstr ""
  2045. #: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc
  2046. #, c-format
  2047. msgid "rename failed, %s (%s -> %s)."
  2048. msgstr "falhou renomear, %s (%s -> %s)."
  2049. #: apt-pkg/acquire-item.cc
  2050. msgid "Size mismatch"
  2051. msgstr "Tamanho incorrecto"
  2052. #: apt-pkg/acquire-item.cc
  2053. #, fuzzy
  2054. msgid "Invalid file format"
  2055. msgstr "Operação %s inválida"
  2056. #: apt-pkg/acquire-item.cc
  2057. #, fuzzy
  2058. msgid "Signature error"
  2059. msgstr "Erro de escrita"
  2060. #: apt-pkg/acquire-item.cc
  2061. #, fuzzy, c-format
  2062. msgid ""
  2063. "An error occurred during the signature verification. The repository is not "
  2064. "updated and the previous index files will be used. GPG error: %s: %s"
  2065. msgstr ""
  2066. "Ocorreu um erro durante a verificação da assinatura. O repositório não está "
  2067. "actualizado e serão utilizados os ficheiros anteriores de índice. Erro do "
  2068. "GPG: %s: %s\n"
  2069. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2070. #: apt-pkg/acquire-item.cc
  2071. #, c-format
  2072. msgid "GPG error: %s: %s"
  2073. msgstr "Erro GPG: %s: %s"
  2074. #: apt-pkg/acquire-item.cc
  2075. #, c-format
  2076. msgid ""
  2077. "Skipping acquire of configured file '%s' as repository '%s' doesn't support "
  2078. "architecture '%s'"
  2079. msgstr ""
  2080. #: apt-pkg/acquire-item.cc
  2081. #, c-format
  2082. msgid ""
  2083. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2084. "or malformed file)"
  2085. msgstr ""
  2086. "Incapaz de encontrar a entrada '%s' esperada no ficheiro Release (entrada "
  2087. "errada em sources.list ou ficheiro malformado)"
  2088. #: apt-pkg/acquire-item.cc
  2089. #, c-format
  2090. msgid ""
  2091. "Skipping acquire of configured file '%s' as repository '%s' provides only "
  2092. "weak security information for it"
  2093. msgstr ""
  2094. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2095. #. the time since then the file is invalid - formatted in the same way as in
  2096. #. the download progress display (e.g. 7d 3h 42min 1s)
  2097. #: apt-pkg/acquire-item.cc
  2098. #, c-format
  2099. msgid ""
  2100. "Release file for %s is expired (invalid since %s). Updates for this "
  2101. "repository will not be applied."
  2102. msgstr ""
  2103. "O ficheiro Release para %s está expirado (inválido desde %s). Não serão "
  2104. "aplicadas as actualizações para este repositório."
  2105. #: apt-pkg/acquire-item.cc
  2106. #, c-format
  2107. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2108. msgstr "Distribuição em conflito: %s (esperado %s mas obtido %s)"
  2109. #: apt-pkg/acquire-item.cc
  2110. #, c-format
  2111. msgid ""
  2112. "I wasn't able to locate a file for the %s package. This might mean you need "
  2113. "to manually fix this package. (due to missing arch)"
  2114. msgstr ""
  2115. "Não foi possível localizar um ficheiro para o pacote %s. Isto pode "
  2116. "significar que você precisa corrigir manualmente este pacote. (devido a "
  2117. "arquitectura em falta)"
  2118. #: apt-pkg/acquire-item.cc
  2119. #, c-format
  2120. msgid "Can't find a source to download version '%s' of '%s'"
  2121. msgstr "Não conseguiu encontrar uma fonte para obter a versão '%s' de '%s'"
  2122. #: apt-pkg/acquire-item.cc
  2123. #, c-format
  2124. msgid ""
  2125. "The package index files are corrupted. No Filename: field for package %s."
  2126. msgstr ""
  2127. "Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: "
  2128. "para o pacote %s."
  2129. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  2130. #: apt-pkg/acquire-item.cc
  2131. #, fuzzy, c-format
  2132. msgid "Changelog unavailable for %s=%s"
  2133. msgstr "Changlog para %s (%s)"
  2134. #: apt-pkg/acquire-worker.cc
  2135. #, c-format
  2136. msgid "The method driver %s could not be found."
  2137. msgstr "O driver do método %s não pôde ser encontrado."
  2138. #: apt-pkg/acquire-worker.cc
  2139. #, fuzzy, c-format
  2140. msgid "Is the package %s installed?"
  2141. msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n"
  2142. #: apt-pkg/acquire-worker.cc
  2143. #, c-format
  2144. msgid "Method %s did not start correctly"
  2145. msgstr "Método %s não iniciou correctamente"
  2146. #: apt-pkg/acquire-worker.cc
  2147. #, fuzzy, c-format
  2148. msgid ""
  2149. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  2150. msgstr ""
  2151. "Por favor insira o disco denominado: '%s' no leitor '%s' e pressione enter."
  2152. #: apt-pkg/acquire.cc apt-pkg/cdrom.cc
  2153. #, c-format
  2154. msgid "List directory %spartial is missing."
  2155. msgstr "Falta directório de listas %spartial."
  2156. #: apt-pkg/acquire.cc
  2157. #, c-format
  2158. msgid "Archives directory %spartial is missing."
  2159. msgstr "Falta o directório de arquivos %spartial."
  2160. #: apt-pkg/acquire.cc
  2161. #, c-format
  2162. msgid "Unable to lock directory %s"
  2163. msgstr "Impossível criar acesso exclusivo ao directório %s"
  2164. #: apt-pkg/acquire.cc
  2165. #, c-format
  2166. msgid "No sandbox user '%s' on the system, can not drop privileges"
  2167. msgstr ""
  2168. #: apt-pkg/acquire.cc
  2169. #, c-format
  2170. msgid ""
  2171. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  2172. "user '%s'."
  2173. msgstr ""
  2174. #: apt-pkg/acquire.cc apt-pkg/clean.cc
  2175. #, fuzzy, c-format
  2176. msgid "Clean of %s is not supported"
  2177. msgstr "Tipo do ficheiro de índice '%s' não é suportado"
  2178. #. only show the ETA if it makes sense
  2179. #. two days
  2180. #: apt-pkg/acquire.cc
  2181. #, c-format
  2182. msgid "Retrieving file %li of %li (%s remaining)"
  2183. msgstr "A obter o ficheiro %li de %li (%s restantes)"
  2184. #: apt-pkg/acquire.cc
  2185. #, c-format
  2186. msgid "Retrieving file %li of %li"
  2187. msgstr "A obter o ficheiro %li de %li"
  2188. #: apt-pkg/algorithms.cc
  2189. #, c-format
  2190. msgid ""
  2191. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2192. msgstr ""
  2193. "O pacote %s necessita ser reinstalado, mas não foi possível encontrar um "
  2194. "repositório para o mesmo."
  2195. #: apt-pkg/algorithms.cc
  2196. msgid ""
  2197. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2198. "held packages."
  2199. msgstr ""
  2200. "Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por "
  2201. "pacotes mantidos (hold)."
  2202. #: apt-pkg/algorithms.cc
  2203. msgid "Unable to correct problems, you have held broken packages."
  2204. msgstr ""
  2205. "Não foi possível corrigir problemas, você tem pacotes mantidos (hold) "
  2206. "estragados."
  2207. #: apt-pkg/cachefile.cc
  2208. msgid "The package lists or status file could not be parsed or opened."
  2209. msgstr ""
  2210. "As listas de pacotes ou o ficheiro de status não pôde ser analisado ou "
  2211. "aberto."
  2212. #: apt-pkg/cachefile.cc
  2213. msgid "You may want to run apt-get update to correct these problems"
  2214. msgstr "Você terá que executar apt-get update para corrigir estes problemas"
  2215. #: apt-pkg/cachefile.cc
  2216. msgid "The list of sources could not be read."
  2217. msgstr "A lista de fontes não pôde ser lida."
  2218. #: apt-pkg/cacheset.cc
  2219. #, c-format
  2220. msgid "Release '%s' for '%s' was not found"
  2221. msgstr "Não foi encontrado o Release '%s' para '%s'"
  2222. #: apt-pkg/cacheset.cc
  2223. #, c-format
  2224. msgid "Version '%s' for '%s' was not found"
  2225. msgstr "Não foi encontrada a versão '%s' para '%s'"
  2226. #: apt-pkg/cacheset.cc
  2227. #, c-format
  2228. msgid "Couldn't find task '%s'"
  2229. msgstr "Não foi possível encontrar a tarefa '%s'"
  2230. #: apt-pkg/cacheset.cc
  2231. #, c-format
  2232. msgid "Couldn't find any package by regex '%s'"
  2233. msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'"
  2234. #: apt-pkg/cacheset.cc
  2235. #, fuzzy, c-format
  2236. msgid "Couldn't find any package by glob '%s'"
  2237. msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'"
  2238. #: apt-pkg/cacheset.cc
  2239. #, c-format
  2240. msgid "Can't select versions from package '%s' as it is purely virtual"
  2241. msgstr ""
  2242. "Não foi possível seleccionar versões do pacote '%s' pois é puramente virtual"
  2243. #: apt-pkg/cacheset.cc
  2244. #, c-format
  2245. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2246. msgstr ""
  2247. "Não foi possível seleccionar a versão mais recente a partir do pacote '%s' "
  2248. "já que é puramente virtual"
  2249. #: apt-pkg/cacheset.cc
  2250. #, c-format
  2251. msgid "Can't select candidate version from package %s as it has no candidate"
  2252. msgstr ""
  2253. "Não é possível seleccionar a versão candidata do pacote %s já que não tem "
  2254. "candidato"
  2255. #: apt-pkg/cacheset.cc
  2256. #, c-format
  2257. msgid "Can't select installed version from package %s as it is not installed"
  2258. msgstr ""
  2259. "Não é possível seleccionar a versão instalada do pacote %s pois não está "
  2260. "instalado"
  2261. #: apt-pkg/cacheset.cc
  2262. #, c-format
  2263. msgid ""
  2264. "Can't select installed nor candidate version from package '%s' as it has "
  2265. "neither of them"
  2266. msgstr ""
  2267. "Não pode seleccionar a versão instalada nem a versão candidata do pacote "
  2268. "'%s' pois não tem nenhuma destas"
  2269. #: apt-pkg/cdrom.cc
  2270. #, c-format
  2271. msgid "Line %u too long in source list %s."
  2272. msgstr "Linha %u é demasiado longa na lista de fontes %s."
  2273. #: apt-pkg/cdrom.cc
  2274. msgid "Unmounting CD-ROM...\n"
  2275. msgstr "A desmontar o CD-ROM...\n"
  2276. #: apt-pkg/cdrom.cc
  2277. #, c-format
  2278. msgid "Using CD-ROM mount point %s\n"
  2279. msgstr "A utilizar o ponto de montagem do CD-ROM %s\n"
  2280. #: apt-pkg/cdrom.cc
  2281. msgid "Waiting for disc...\n"
  2282. msgstr "A aguardar pelo disco...\n"
  2283. #: apt-pkg/cdrom.cc
  2284. msgid "Mounting CD-ROM...\n"
  2285. msgstr "A montar o CD-ROM...\n"
  2286. #: apt-pkg/cdrom.cc
  2287. msgid "Identifying... "
  2288. msgstr "A identificar... "
  2289. #: apt-pkg/cdrom.cc
  2290. #, c-format
  2291. msgid "Stored label: %s\n"
  2292. msgstr "Label Guardada: %s \n"
  2293. #: apt-pkg/cdrom.cc
  2294. msgid "Scanning disc for index files...\n"
  2295. msgstr "A pesquisar os ficheiros de índice do disco...\n"
  2296. #: apt-pkg/cdrom.cc
  2297. #, c-format
  2298. msgid ""
  2299. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2300. "%zu signatures\n"
  2301. msgstr ""
  2302. "Foram encontrados %zu índices de pacotes, %zu índices de código-fonte, %zu "
  2303. "índices de tradução e %zu assinaturas\n"
  2304. #: apt-pkg/cdrom.cc
  2305. msgid ""
  2306. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2307. "wrong architecture?"
  2308. msgstr ""
  2309. "Não foi possível localizar quaisquer ficheiros de pacote, talvez este não "
  2310. "seja um disco Debian ou seja a arquitectura errada?"
  2311. #: apt-pkg/cdrom.cc
  2312. #, c-format
  2313. msgid "Found label '%s'\n"
  2314. msgstr "Encontrada a etiqueta '%s'\n"
  2315. #: apt-pkg/cdrom.cc
  2316. msgid "That is not a valid name, try again.\n"
  2317. msgstr "Isso não é um nome válido, tente novamente.\n"
  2318. #: apt-pkg/cdrom.cc
  2319. #, c-format
  2320. msgid ""
  2321. "This disc is called: \n"
  2322. "'%s'\n"
  2323. msgstr ""
  2324. "Este disco tem o nome: \n"
  2325. "'%s'\n"
  2326. #: apt-pkg/cdrom.cc
  2327. msgid "Copying package lists..."
  2328. msgstr "A copiar listas de pacotes..."
  2329. #: apt-pkg/cdrom.cc
  2330. msgid "Writing new source list\n"
  2331. msgstr "A escrever lista de novas source\n"
  2332. #: apt-pkg/cdrom.cc
  2333. msgid "Source list entries for this disc are:\n"
  2334. msgstr "As entradas de listas de Source para este Disco são:\n"
  2335. #: apt-pkg/clean.cc
  2336. #, c-format
  2337. msgid "Unable to stat %s."
  2338. msgstr "Não foi possível fazer stat %s."
  2339. #: apt-pkg/contrib/cdromutl.cc
  2340. #, c-format
  2341. msgid "Unable to stat the mount point %s"
  2342. msgstr "Impossível executar stat ao ponto de montagem %s"
  2343. #: apt-pkg/contrib/cdromutl.cc
  2344. msgid "Failed to stat the cdrom"
  2345. msgstr "Impossível executar stat ao cdrom"
  2346. #: apt-pkg/contrib/cmndline.cc
  2347. #, fuzzy, c-format
  2348. msgid ""
  2349. "Command line option '%c' [from %s] is not understood in combination with the "
  2350. "other options."
  2351. msgstr "Opção '%c' da linha de comandos [de %s] é desconhecida."
  2352. #: apt-pkg/contrib/cmndline.cc
  2353. #, fuzzy, c-format
  2354. msgid ""
  2355. "Command line option %s is not understood in combination with the other "
  2356. "options"
  2357. msgstr "Opção %s de linha de comandos não é compreendida"
  2358. #: apt-pkg/contrib/cmndline.cc
  2359. #, c-format
  2360. msgid "Command line option %s is not boolean"
  2361. msgstr "Opção %s da linha de comandos não é booleana"
  2362. #: apt-pkg/contrib/cmndline.cc
  2363. #, c-format
  2364. msgid "Option %s requires an argument."
  2365. msgstr "A opção %s necessita de um argumento."
  2366. #: apt-pkg/contrib/cmndline.cc
  2367. #, c-format
  2368. msgid "Option %s: Configuration item specification must have an =<val>."
  2369. msgstr "Opção %s: Especificação de item de configuração tem de ter um =<val>."
  2370. #: apt-pkg/contrib/cmndline.cc
  2371. #, c-format
  2372. msgid "Option %s requires an integer argument, not '%s'"
  2373. msgstr "Opção %s necessita de um número inteiro como argumento, não '%s'"
  2374. #: apt-pkg/contrib/cmndline.cc
  2375. #, c-format
  2376. msgid "Option '%s' is too long"
  2377. msgstr "Opção '%s' é demasiado longa"
  2378. #: apt-pkg/contrib/cmndline.cc
  2379. #, c-format
  2380. msgid "Sense %s is not understood, try true or false."
  2381. msgstr "O sentido %s não é compreendido, tente verdadeiro ou falso."
  2382. #: apt-pkg/contrib/cmndline.cc
  2383. #, c-format
  2384. msgid "Invalid operation %s"
  2385. msgstr "Operação %s inválida"
  2386. #: apt-pkg/contrib/configuration.cc
  2387. #, c-format
  2388. msgid "Unrecognized type abbreviation: '%c'"
  2389. msgstr "Abreviatura de tipo desconhecida: '%c'"
  2390. #: apt-pkg/contrib/configuration.cc
  2391. #, c-format
  2392. msgid "Opening configuration file %s"
  2393. msgstr "A abrir o ficheiro de configuração %s"
  2394. #: apt-pkg/contrib/configuration.cc
  2395. #, c-format
  2396. msgid "Syntax error %s:%u: Block starts with no name."
  2397. msgstr "Erro de sintaxe %s:%u: O bloco começa sem nome."
  2398. #: apt-pkg/contrib/configuration.cc
  2399. #, c-format
  2400. msgid "Syntax error %s:%u: Malformed tag"
  2401. msgstr "Erro de sintaxe %s:%u: Tag mal formada"
  2402. #: apt-pkg/contrib/configuration.cc
  2403. #, c-format
  2404. msgid "Syntax error %s:%u: Extra junk after value"
  2405. msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor"
  2406. #: apt-pkg/contrib/configuration.cc
  2407. #, c-format
  2408. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2409. msgstr ""
  2410. "Erro de sintaxe %s:%u: Directivas só podem ser feitas no nível mais alto"
  2411. #: apt-pkg/contrib/configuration.cc
  2412. #, c-format
  2413. msgid "Syntax error %s:%u: Too many nested includes"
  2414. msgstr "Erro de sintaxe %s:%u: Demasiados includes encadeados"
  2415. #: apt-pkg/contrib/configuration.cc
  2416. #, c-format
  2417. msgid "Syntax error %s:%u: Included from here"
  2418. msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto"
  2419. #: apt-pkg/contrib/configuration.cc
  2420. #, c-format
  2421. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2422. msgstr "Erro de sintaxe %s:%u: Directiva '%s' não suportada"
  2423. #: apt-pkg/contrib/configuration.cc
  2424. #, c-format
  2425. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2426. msgstr ""
  2427. "Erro de sintaxe %s:%u: directiva clara necessita de uma árvore de opções "
  2428. "como argumento"
  2429. #: apt-pkg/contrib/configuration.cc
  2430. #, c-format
  2431. msgid "Syntax error %s:%u: Extra junk at end of file"
  2432. msgstr "Erro de sintaxe %s:%u: Lixo extra no final do ficheiro"
  2433. #: apt-pkg/contrib/fileutl.cc
  2434. #, c-format
  2435. msgid "Problem unlinking the file %s"
  2436. msgstr "Problema ao remover o link do ficheiro %s"
  2437. #: apt-pkg/contrib/fileutl.cc
  2438. #, c-format
  2439. msgid "Not using locking for read only lock file %s"
  2440. msgstr ""
  2441. "Não está a ser utilizado acesso exclusivo para apenas leitura ao ficheiro %s"
  2442. #: apt-pkg/contrib/fileutl.cc
  2443. #, c-format
  2444. msgid "Could not open lock file %s"
  2445. msgstr "Não foi possível abrir ficheiro de lock %s"
  2446. #: apt-pkg/contrib/fileutl.cc
  2447. #, c-format
  2448. msgid "Not using locking for nfs mounted lock file %s"
  2449. msgstr ""
  2450. "Não está a ser utilizado o acesso exclusivo para o ficheiro %s, montado via "
  2451. "nfs"
  2452. #: apt-pkg/contrib/fileutl.cc
  2453. #, c-format
  2454. msgid "Could not get lock %s"
  2455. msgstr "Não foi possível obter acesso exclusivo a %s"
  2456. #: apt-pkg/contrib/fileutl.cc
  2457. #, c-format
  2458. msgid "List of files can't be created as '%s' is not a directory"
  2459. msgstr ""
  2460. "Lista de ficheiros que não podem ser criados porque '%s' não é um directório"
  2461. #: apt-pkg/contrib/fileutl.cc
  2462. #, c-format
  2463. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2464. msgstr "A ignorar '%s' no directório '%s' porque não é um ficheiro normal"
  2465. #: apt-pkg/contrib/fileutl.cc
  2466. #, c-format
  2467. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2468. msgstr ""
  2469. "A ignorar o ficheiro '%s' no directório '%s' porque não tem extensão no nome "
  2470. "do ficheiro"
  2471. #: apt-pkg/contrib/fileutl.cc
  2472. #, c-format
  2473. msgid ""
  2474. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2475. msgstr ""
  2476. "A ignorar o ficheiro '%s' no directório '%s' porque tem uma extensão "
  2477. "inválida no nome do ficheiro"
  2478. #: apt-pkg/contrib/fileutl.cc
  2479. #, c-format
  2480. msgid "Sub-process %s received a segmentation fault."
  2481. msgstr "O sub-processo %s recebeu uma falha de segmentação."
  2482. #: apt-pkg/contrib/fileutl.cc
  2483. #, c-format
  2484. msgid "Sub-process %s received signal %u."
  2485. msgstr "O sub-processo %s recebeu o sinal %u."
  2486. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2487. #, c-format
  2488. msgid "Sub-process %s returned an error code (%u)"
  2489. msgstr "O sub-processo %s retornou um código de erro (%u)"
  2490. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2491. #, c-format
  2492. msgid "Sub-process %s exited unexpectedly"
  2493. msgstr "O sub-processo %s terminou inesperadamente"
  2494. #: apt-pkg/contrib/fileutl.cc
  2495. #, c-format
  2496. msgid "Problem closing the gzip file %s"
  2497. msgstr "Problema ao fechar o ficheiro gzip %s"
  2498. #: apt-pkg/contrib/fileutl.cc
  2499. msgid "Unexpected end of file"
  2500. msgstr ""
  2501. #: apt-pkg/contrib/fileutl.cc
  2502. msgid "Failed to create subprocess IPC"
  2503. msgstr "Falhou criar subprocesso IPC"
  2504. #: apt-pkg/contrib/fileutl.cc
  2505. msgid "Failed to exec compressor "
  2506. msgstr "Falhou executar compactador "
  2507. #: apt-pkg/contrib/fileutl.cc
  2508. #, c-format
  2509. msgid "Could not open file %s"
  2510. msgstr "Não foi possível abrir ficheiro o %s"
  2511. #: apt-pkg/contrib/fileutl.cc
  2512. #, c-format
  2513. msgid "Could not open file descriptor %d"
  2514. msgstr "Não foi possível abrir o descritor de ficheiro %d"
  2515. #: apt-pkg/contrib/fileutl.cc
  2516. #, c-format
  2517. msgid "read, still have %llu to read but none left"
  2518. msgstr "lidos, ainda restam %llu para serem lidos mas não resta nenhum"
  2519. #: apt-pkg/contrib/fileutl.cc
  2520. #, c-format
  2521. msgid "write, still have %llu to write but couldn't"
  2522. msgstr "escritos, ainda restam %llu para escrever mas não foi possível"
  2523. #: apt-pkg/contrib/fileutl.cc
  2524. #, c-format
  2525. msgid "Problem closing the file %s"
  2526. msgstr "Problema ao fechar o ficheiro %s"
  2527. #: apt-pkg/contrib/fileutl.cc
  2528. #, c-format
  2529. msgid "Problem renaming the file %s to %s"
  2530. msgstr "Problema ao renomear o ficheiro %s para %s"
  2531. #: apt-pkg/contrib/fileutl.cc
  2532. msgid "Problem syncing the file"
  2533. msgstr "Problema sincronizando o ficheiro"
  2534. #: apt-pkg/contrib/mmap.cc
  2535. msgid "Can't mmap an empty file"
  2536. msgstr "Não é possível fazer mmap a um ficheiro vazio"
  2537. #: apt-pkg/contrib/mmap.cc
  2538. #, c-format
  2539. msgid "Couldn't make mmap of %llu bytes"
  2540. msgstr "Não foi possível fazer mmap de %llu bytes"
  2541. #: apt-pkg/contrib/mmap.cc
  2542. #, c-format
  2543. msgid "Couldn't duplicate file descriptor %i"
  2544. msgstr "Não foi possível duplicar o descritor de ficheiro %i"
  2545. #: apt-pkg/contrib/mmap.cc
  2546. msgid "Unable to close mmap"
  2547. msgstr "Não foi possível fechar mmap"
  2548. #: apt-pkg/contrib/mmap.cc
  2549. msgid "Unable to synchronize mmap"
  2550. msgstr "Não foi sincronizar mmap "
  2551. #: apt-pkg/contrib/mmap.cc
  2552. #, c-format
  2553. msgid "Couldn't make mmap of %lu bytes"
  2554. msgstr "Não foi possível fazer mmap de %lu bytes"
  2555. #: apt-pkg/contrib/mmap.cc
  2556. msgid "Failed to truncate file"
  2557. msgstr "Falhou truncar o ficheiro"
  2558. #: apt-pkg/contrib/mmap.cc
  2559. #, c-format
  2560. msgid ""
  2561. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2562. "Current value: %lu. (man 5 apt.conf)"
  2563. msgstr ""
  2564. "O Dynamic MMap ficou sem espaço. Por favor aumente o tamanho de APT::Cache-"
  2565. "Start. Valor actual: %lu. (man 5 apt.conf)"
  2566. #: apt-pkg/contrib/mmap.cc
  2567. #, c-format
  2568. msgid ""
  2569. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2570. "reached."
  2571. msgstr ""
  2572. "Não foi possível aumentar o tamanho do MMap pois o limite de %lu bytes já "
  2573. "foi alcançado."
  2574. #: apt-pkg/contrib/mmap.cc
  2575. msgid ""
  2576. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2577. msgstr ""
  2578. "Não foi possível aumentar o tamanho do MMap pois o crescimento automático "
  2579. "está desabilitado pelo utilizador."
  2580. #: apt-pkg/contrib/progress.cc
  2581. #, c-format
  2582. msgid "%c%s... Error!"
  2583. msgstr "%c%s... Erro !"
  2584. #: apt-pkg/contrib/progress.cc
  2585. #, c-format
  2586. msgid "%c%s... Done"
  2587. msgstr "%c%s... Pronto"
  2588. #: apt-pkg/contrib/progress.cc
  2589. msgid "..."
  2590. msgstr ""
  2591. #. Print the spinner
  2592. #: apt-pkg/contrib/progress.cc
  2593. #, fuzzy, c-format
  2594. msgid "%c%s... %u%%"
  2595. msgstr "%c%s... Pronto"
  2596. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  2597. #: apt-pkg/contrib/strutl.cc
  2598. #, c-format
  2599. msgid "%lid %lih %limin %lis"
  2600. msgstr "%lid %lih %limin %lis"
  2601. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2602. #: apt-pkg/contrib/strutl.cc
  2603. #, c-format
  2604. msgid "%lih %limin %lis"
  2605. msgstr "%lih %limin %lis"
  2606. #. TRANSLATOR: min means minutes, s means seconds
  2607. #: apt-pkg/contrib/strutl.cc
  2608. #, c-format
  2609. msgid "%limin %lis"
  2610. msgstr "%limin %lis"
  2611. #. TRANSLATOR: s means seconds
  2612. #: apt-pkg/contrib/strutl.cc
  2613. #, c-format
  2614. msgid "%lis"
  2615. msgstr "%lis"
  2616. #: apt-pkg/contrib/strutl.cc
  2617. #, c-format
  2618. msgid "Selection %s not found"
  2619. msgstr "A selecção %s não foi encontrada"
  2620. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2621. #. a file like main/binary-amd64/Packages; another identifier like Contents;
  2622. #. filename and linenumber of the sources.list entry currently parsed
  2623. #: apt-pkg/deb/debmetaindex.cc
  2624. #, c-format
  2625. msgid "Target %s wants to acquire the same file (%s) as %s from source %s"
  2626. msgstr ""
  2627. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2628. #. a file like main/binary-amd64/Packages; filename and linenumber of
  2629. #. two sources.list entries
  2630. #: apt-pkg/deb/debmetaindex.cc
  2631. #, c-format
  2632. msgid "Target %s (%s) is configured multiple times in %s and %s"
  2633. msgstr ""
  2634. #: apt-pkg/deb/debmetaindex.cc
  2635. #, c-format
  2636. msgid "Unable to parse Release file %s"
  2637. msgstr "Não foi possível fazer parse ao ficheiro Release %s"
  2638. #: apt-pkg/deb/debmetaindex.cc
  2639. #, c-format
  2640. msgid "No sections in Release file %s"
  2641. msgstr "Nenhuma secção, no ficheiro Release %s"
  2642. #: apt-pkg/deb/debmetaindex.cc
  2643. #, c-format
  2644. msgid "No Hash entry in Release file %s"
  2645. msgstr "Nenhuma entrada hash no ficheiro Release %s"
  2646. #: apt-pkg/deb/debmetaindex.cc
  2647. #, c-format
  2648. msgid ""
  2649. "No Hash entry in Release file %s which is considered strong enough for "
  2650. "security purposes"
  2651. msgstr ""
  2652. #: apt-pkg/deb/debmetaindex.cc
  2653. #, c-format
  2654. msgid "Invalid '%s' entry in Release file %s"
  2655. msgstr "Entrada inválida, '%s', no ficheiro de Release: %s"
  2656. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2657. #: apt-pkg/deb/debmetaindex.cc
  2658. #, c-format
  2659. msgid "Conflicting values set for option %s regarding source %s %s"
  2660. msgstr ""
  2661. #: apt-pkg/deb/debmetaindex.cc
  2662. #, c-format
  2663. msgid "Invalid value set for option %s regarding source %s %s (%s)"
  2664. msgstr ""
  2665. #: apt-pkg/deb/debmetaindex.cc
  2666. #, c-format
  2667. msgid "Conflicting values set for option %s regarding source %s %s: %s != %s"
  2668. msgstr ""
  2669. #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
  2670. #, c-format
  2671. msgid "Unable to parse package file %s (%d)"
  2672. msgstr "Não foi possível fazer parse ao ficheiro do pacote %s (%d)"
  2673. #: apt-pkg/deb/debsystem.cc
  2674. #, c-format
  2675. msgid ""
  2676. "Unable to lock the administration directory (%s), is another process using "
  2677. "it?"
  2678. msgstr ""
  2679. "Não foi possível obter acesso exclusivo ao directório de administração (%s), "
  2680. "outro processo está a utilizá-lo?"
  2681. #: apt-pkg/deb/debsystem.cc
  2682. #, c-format
  2683. msgid "Unable to lock the administration directory (%s), are you root?"
  2684. msgstr ""
  2685. "Não foi possível criar acesso exclusivo ao directório de administração (%s), "
  2686. "é root?"
  2687. #. TRANSLATORS: the %s contains the recovery command, usually
  2688. #. dpkg --configure -a
  2689. #: apt-pkg/deb/debsystem.cc
  2690. #, c-format
  2691. msgid ""
  2692. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2693. msgstr ""
  2694. "O dpkg foi interrompido, para corrigir o problema tem de correr manualmente "
  2695. "'%s'"
  2696. #: apt-pkg/deb/debsystem.cc
  2697. msgid "Not locked"
  2698. msgstr "Sem acesso exclusivo"
  2699. #: apt-pkg/deb/dpkgpm.cc
  2700. #, c-format
  2701. msgid "Installing %s"
  2702. msgstr "A instalar %s"
  2703. #: apt-pkg/deb/dpkgpm.cc
  2704. #, c-format
  2705. msgid "Configuring %s"
  2706. msgstr "A configurar %s"
  2707. #: apt-pkg/deb/dpkgpm.cc
  2708. #, c-format
  2709. msgid "Removing %s"
  2710. msgstr "A remover %s"
  2711. #: apt-pkg/deb/dpkgpm.cc
  2712. #, c-format
  2713. msgid "Completely removing %s"
  2714. msgstr "A remover completamente %s"
  2715. #: apt-pkg/deb/dpkgpm.cc
  2716. #, c-format
  2717. msgid "Noting disappearance of %s"
  2718. msgstr "A notar o desaparecimento de %s"
  2719. #: apt-pkg/deb/dpkgpm.cc
  2720. #, c-format
  2721. msgid "Running post-installation trigger %s"
  2722. msgstr "A correr o 'trigger' de pós-instalação %s"
  2723. #. FIXME: use a better string after freeze
  2724. #: apt-pkg/deb/dpkgpm.cc
  2725. #, c-format
  2726. msgid "Directory '%s' missing"
  2727. msgstr "Falta o directório '%s'"
  2728. #: apt-pkg/deb/dpkgpm.cc apt-pkg/edsp.cc
  2729. #, c-format
  2730. msgid "Could not open file '%s'"
  2731. msgstr "Não foi possível abrir ficheiro o '%s'"
  2732. #: apt-pkg/deb/dpkgpm.cc
  2733. #, c-format
  2734. msgid "Preparing %s"
  2735. msgstr "A preparar %s"
  2736. #: apt-pkg/deb/dpkgpm.cc
  2737. #, c-format
  2738. msgid "Unpacking %s"
  2739. msgstr "A desempacotar %s"
  2740. #: apt-pkg/deb/dpkgpm.cc
  2741. #, c-format
  2742. msgid "Preparing to configure %s"
  2743. msgstr "A preparar para configurar %s"
  2744. #: apt-pkg/deb/dpkgpm.cc
  2745. #, c-format
  2746. msgid "Installed %s"
  2747. msgstr "%s instalado"
  2748. #: apt-pkg/deb/dpkgpm.cc
  2749. #, c-format
  2750. msgid "Preparing for removal of %s"
  2751. msgstr "A preparar a remoção de %s"
  2752. #: apt-pkg/deb/dpkgpm.cc
  2753. #, c-format
  2754. msgid "Removed %s"
  2755. msgstr "%s removido"
  2756. #: apt-pkg/deb/dpkgpm.cc
  2757. #, c-format
  2758. msgid "Preparing to completely remove %s"
  2759. msgstr "A preparar para remover completamente %s"
  2760. #: apt-pkg/deb/dpkgpm.cc
  2761. #, c-format
  2762. msgid "Completely removed %s"
  2763. msgstr "Remoção completa de %s"
  2764. #: apt-pkg/deb/dpkgpm.cc
  2765. #, fuzzy, c-format
  2766. msgid "Can not write log (%s)"
  2767. msgstr "Não conseguiu escrever para %s"
  2768. #: apt-pkg/deb/dpkgpm.cc
  2769. msgid "Is /dev/pts mounted?"
  2770. msgstr ""
  2771. #: apt-pkg/deb/dpkgpm.cc
  2772. msgid "Operation was interrupted before it could finish"
  2773. msgstr "A operação foi interrompida antes de poder terminar"
  2774. #: apt-pkg/deb/dpkgpm.cc
  2775. msgid "No apport report written because MaxReports is reached already"
  2776. msgstr "Nenhum relatório apport escrito pois MaxReports já foi atingido"
  2777. #. check if its not a follow up error
  2778. #: apt-pkg/deb/dpkgpm.cc
  2779. msgid "dependency problems - leaving unconfigured"
  2780. msgstr "problemas de dependências - deixando por configurar"
  2781. #: apt-pkg/deb/dpkgpm.cc
  2782. msgid ""
  2783. "No apport report written because the error message indicates its a followup "
  2784. "error from a previous failure."
  2785. msgstr ""
  2786. "Nenhum relatório apport escrito pois a mensagem de erro indica que é um erro "
  2787. "de seguimento de um erro anterior."
  2788. #: apt-pkg/deb/dpkgpm.cc
  2789. msgid ""
  2790. "No apport report written because the error message indicates a disk full "
  2791. "error"
  2792. msgstr ""
  2793. "Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco "
  2794. "cheio"
  2795. #: apt-pkg/deb/dpkgpm.cc
  2796. msgid ""
  2797. "No apport report written because the error message indicates a out of memory "
  2798. "error"
  2799. msgstr ""
  2800. "Nenhum relatório apport escrito pois a mensagem de erro indica um erro de "
  2801. "memória esgotada"
  2802. #: apt-pkg/deb/dpkgpm.cc
  2803. #, fuzzy
  2804. msgid ""
  2805. "No apport report written because the error message indicates an issue on the "
  2806. "local system"
  2807. msgstr ""
  2808. "Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco "
  2809. "cheio"
  2810. #: apt-pkg/deb/dpkgpm.cc
  2811. msgid ""
  2812. "No apport report written because the error message indicates a dpkg I/O error"
  2813. msgstr ""
  2814. "Nenhum relatório apport escrito pois a mensagem de erro indica um erro de I/"
  2815. "O do dpkg"
  2816. #: apt-pkg/depcache.cc
  2817. msgid "Building dependency tree"
  2818. msgstr "A construir árvore de dependências"
  2819. #: apt-pkg/depcache.cc
  2820. msgid "Candidate versions"
  2821. msgstr "Versões candidatas"
  2822. #: apt-pkg/depcache.cc
  2823. msgid "Dependency generation"
  2824. msgstr "Geração de dependências"
  2825. #: apt-pkg/depcache.cc
  2826. msgid "Reading state information"
  2827. msgstr "A ler a informação de estado"
  2828. #: apt-pkg/depcache.cc
  2829. #, c-format
  2830. msgid "Failed to open StateFile %s"
  2831. msgstr "Falhou abrir o StateFile %s"
  2832. #: apt-pkg/depcache.cc
  2833. #, c-format
  2834. msgid "Failed to write temporary StateFile %s"
  2835. msgstr "Falha escrever ficheiro temporário StateFile %s"
  2836. #: apt-pkg/edsp.cc
  2837. msgid "Send scenario to solver"
  2838. msgstr "Enviar cenário a resolver"
  2839. #: apt-pkg/edsp.cc
  2840. msgid "Send request to solver"
  2841. msgstr "Enviar pedido para resolvedor"
  2842. #: apt-pkg/edsp.cc
  2843. msgid "Prepare for receiving solution"
  2844. msgstr "Preparar para receber solução"
  2845. #: apt-pkg/edsp.cc
  2846. msgid "External solver failed without a proper error message"
  2847. msgstr "O resolvedor externo falhou sem uma mensagem de erro adequada"
  2848. #: apt-pkg/edsp.cc
  2849. msgid "Execute external solver"
  2850. msgstr "Executar resolvedor externo"
  2851. #: apt-pkg/indexcopy.cc
  2852. #, c-format
  2853. msgid "Wrote %i records.\n"
  2854. msgstr "Escreveu %i registos.\n"
  2855. #: apt-pkg/indexcopy.cc
  2856. #, c-format
  2857. msgid "Wrote %i records with %i missing files.\n"
  2858. msgstr "Escreveu %i registos com %i ficheiros em falta.\n"
  2859. #: apt-pkg/indexcopy.cc
  2860. #, c-format
  2861. msgid "Wrote %i records with %i mismatched files\n"
  2862. msgstr "Escreveu %i registos com %i ficheiros não coincidentes\n"
  2863. #: apt-pkg/indexcopy.cc
  2864. #, c-format
  2865. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2866. msgstr ""
  2867. "Escreveu %i registos com %i ficheiros em falta e %i ficheiros não "
  2868. "coincidentes\n"
  2869. #: apt-pkg/indexcopy.cc
  2870. #, c-format
  2871. msgid "Can't find authentication record for: %s"
  2872. msgstr "Não foi possível encontrar registo de autenticação para: %s"
  2873. #: apt-pkg/indexcopy.cc
  2874. #, c-format
  2875. msgid "Hash mismatch for: %s"
  2876. msgstr "Hash não coincide para: %s"
  2877. #: apt-pkg/init.cc
  2878. #, c-format
  2879. msgid "Packaging system '%s' is not supported"
  2880. msgstr "Sistema de empacotamento '%s' não é suportado"
  2881. #: apt-pkg/init.cc
  2882. msgid "Unable to determine a suitable packaging system type"
  2883. msgstr ""
  2884. "Não foi possível determinar um tipo de sistema de empacotamento adequado"
  2885. #: apt-pkg/install-progress.cc
  2886. #, c-format
  2887. msgid "Progress: [%3i%%]"
  2888. msgstr ""
  2889. #: apt-pkg/install-progress.cc
  2890. msgid "Running dpkg"
  2891. msgstr "A correr o dpkg"
  2892. #: apt-pkg/packagemanager.cc
  2893. #, c-format
  2894. msgid ""
  2895. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2896. "under APT::Immediate-Configure for details. (%d)"
  2897. msgstr ""
  2898. "Não foi possível proceder à configuração imediata em '%s'. Para detalhes, "
  2899. "por favor veja man 5 apt.conf em APT::Immediate-Configure. (%d)"
  2900. #: apt-pkg/packagemanager.cc
  2901. #, c-format
  2902. msgid "Could not configure '%s'. "
  2903. msgstr "Não pode configurar '%s'. "
  2904. #: apt-pkg/packagemanager.cc
  2905. #, c-format
  2906. msgid ""
  2907. "This installation run will require temporarily removing the essential "
  2908. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2909. "you really want to do it, activate the APT::Force-LoopBreak option."
  2910. msgstr ""
  2911. "Esta execução da instalação irá necessitar de remover temporariamente o "
  2912. "pacote essencial %s devido a um loop de Conflitos/Pré-Dependências. Isto "
  2913. "normalmente é mau, mas se você quer realmente fazer isso, active a opção "
  2914. "APT::Force-LoopBreak."
  2915. #: apt-pkg/pkgcache.cc
  2916. msgid "Empty package cache"
  2917. msgstr "Cache de pacotes vazia"
  2918. #: apt-pkg/pkgcache.cc
  2919. msgid "The package cache file is corrupted"
  2920. msgstr "O ficheiro de cache de pacotes está corrompido"
  2921. #: apt-pkg/pkgcache.cc
  2922. msgid "The package cache file is an incompatible version"
  2923. msgstr "O ficheiro de cache de pacotes é de uma versão incompatível"
  2924. #: apt-pkg/pkgcache.cc
  2925. #, c-format
  2926. msgid "This APT does not support the versioning system '%s'"
  2927. msgstr "Este APT não suporta o sistema de versões '%s'"
  2928. #: apt-pkg/pkgcache.cc
  2929. #, fuzzy, c-format
  2930. msgid "The package cache was built for different architectures: %s vs %s"
  2931. msgstr "A cache de pacotes foi gerada para uma arquitectura diferente"
  2932. #: apt-pkg/pkgcache.cc
  2933. #, fuzzy
  2934. msgid "The package cache file is corrupted, it has the wrong hash"
  2935. msgstr "O ficheiro de cache de pacotes está corrompido, é demasiado pequeno"
  2936. #: apt-pkg/pkgcache.cc
  2937. msgid "Depends"
  2938. msgstr "Depende"
  2939. #: apt-pkg/pkgcache.cc
  2940. msgid "PreDepends"
  2941. msgstr "Pré-Depende"
  2942. #: apt-pkg/pkgcache.cc
  2943. msgid "Suggests"
  2944. msgstr "Sugere"
  2945. #: apt-pkg/pkgcache.cc
  2946. msgid "Recommends"
  2947. msgstr "Recomenda"
  2948. #: apt-pkg/pkgcache.cc
  2949. msgid "Conflicts"
  2950. msgstr "Em Conflito"
  2951. #: apt-pkg/pkgcache.cc
  2952. msgid "Replaces"
  2953. msgstr "Substitui"
  2954. #: apt-pkg/pkgcache.cc
  2955. msgid "Obsoletes"
  2956. msgstr "Obsoleta"
  2957. #: apt-pkg/pkgcache.cc
  2958. msgid "Breaks"
  2959. msgstr "Estraga"
  2960. #: apt-pkg/pkgcache.cc
  2961. msgid "Enhances"
  2962. msgstr "Aumenta"
  2963. #: apt-pkg/pkgcache.cc
  2964. msgid "required"
  2965. msgstr "necessário"
  2966. #: apt-pkg/pkgcache.cc
  2967. msgid "important"
  2968. msgstr "importante"
  2969. #: apt-pkg/pkgcache.cc
  2970. msgid "standard"
  2971. msgstr "padrão"
  2972. #: apt-pkg/pkgcache.cc
  2973. msgid "optional"
  2974. msgstr "opcional"
  2975. #: apt-pkg/pkgcache.cc
  2976. msgid "extra"
  2977. msgstr "extra"
  2978. #: apt-pkg/pkgcachegen.cc
  2979. msgid "Cache has an incompatible versioning system"
  2980. msgstr "A cache possui um sistema de versões incompatível"
  2981. #. TRANSLATOR: The first placeholder is a package name,
  2982. #. the other two should be copied verbatim as they include debug info
  2983. #: apt-pkg/pkgcachegen.cc
  2984. #, c-format
  2985. msgid "Error occurred while processing %s (%s%d)"
  2986. msgstr "Ocorreu um erro ao processar %s (%s%d)"
  2987. #: apt-pkg/pkgcachegen.cc
  2988. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2989. msgstr ""
  2990. "Uau, você excedeu o número de nomes de pacotes que este APT é capaz de "
  2991. "suportar."
  2992. #: apt-pkg/pkgcachegen.cc
  2993. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2994. msgstr ""
  2995. "Uau, você excedeu o número de versões que este APT é capaz de suportar."
  2996. #: apt-pkg/pkgcachegen.cc
  2997. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2998. msgstr ""
  2999. "Uau, você excedeu o número de descrições que este APT é capaz de suportar."
  3000. #: apt-pkg/pkgcachegen.cc
  3001. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  3002. msgstr ""
  3003. "Uau, você excedeu o número de dependências que este APT é capaz de suportar."
  3004. #: apt-pkg/pkgcachegen.cc
  3005. msgid "Reading package lists"
  3006. msgstr "A ler as listas de pacotes"
  3007. #: apt-pkg/pkgcachegen.cc
  3008. msgid "IO Error saving source cache"
  3009. msgstr "Erro de I/O ao gravar a cache de código fonte"
  3010. #: apt-pkg/pkgrecords.cc
  3011. #, c-format
  3012. msgid "Index file type '%s' is not supported"
  3013. msgstr "Tipo do ficheiro de índice '%s' não é suportado"
  3014. #: apt-pkg/policy.cc
  3015. #, c-format
  3016. msgid ""
  3017. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  3018. "available in the sources"
  3019. msgstr ""
  3020. "O valor '%s' é inválido para APT::Default-Release porque tal lançamento não "
  3021. "está disponível nas fontes"
  3022. #: apt-pkg/policy.cc
  3023. #, c-format
  3024. msgid "Invalid record in the preferences file %s, no Package header"
  3025. msgstr "Registo inválido no ficheiro de preferências %s, sem cabeçalho Package"
  3026. #: apt-pkg/policy.cc
  3027. #, c-format
  3028. msgid "Did not understand pin type %s"
  3029. msgstr "Não foi possível entender o tipo de marca (pin) %s"
  3030. #: apt-pkg/policy.cc
  3031. #, c-format
  3032. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  3033. msgstr ""
  3034. #: apt-pkg/policy.cc
  3035. msgid "No priority (or zero) specified for pin"
  3036. msgstr "Nenhuma prioridade (ou zero) especificada para marcação (pin)"
  3037. #. TRANSLATOR: %u is a line number, the first %s is a filename of a file with the extension "second %s" and the third %s is a unique identifier for bugreports
  3038. #: apt-pkg/sourcelist.cc
  3039. #, fuzzy, c-format
  3040. msgid "Malformed entry %u in %s file %s (%s)"
  3041. msgstr "Override %s malformado linha %llu #1"
  3042. #: apt-pkg/sourcelist.cc
  3043. #, c-format
  3044. msgid "Opening %s"
  3045. msgstr "A abrir %s"
  3046. #: apt-pkg/sourcelist.cc
  3047. #, c-format
  3048. msgid "Malformed line %u in source list %s (type)"
  3049. msgstr "Linha mal formada %u na lista de fontes %s (tipo)"
  3050. #: apt-pkg/sourcelist.cc
  3051. #, c-format
  3052. msgid "Type '%s' is not known on line %u in source list %s"
  3053. msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s"
  3054. #: apt-pkg/sourcelist.cc
  3055. #, fuzzy, c-format
  3056. msgid "Malformed stanza %u in source list %s (type)"
  3057. msgstr "Linha mal formada %u na lista de fontes %s (tipo)"
  3058. #: apt-pkg/sourcelist.cc
  3059. #, fuzzy, c-format
  3060. msgid "Type '%s' is not known on stanza %u in source list %s"
  3061. msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s"
  3062. #: apt-pkg/sourcelist.cc
  3063. #, c-format
  3064. msgid "Unsupported file %s given on commandline"
  3065. msgstr ""
  3066. #: apt-pkg/srcrecords.cc
  3067. msgid "You must put some 'source' URIs in your sources.list"
  3068. msgstr "Você deve colocar alguns URIs 'source' no seu sources.list"
  3069. #: apt-pkg/tagfile.cc
  3070. #, c-format
  3071. msgid "Cannot convert %s to integer: out of range"
  3072. msgstr ""
  3073. #: apt-pkg/update.cc
  3074. msgid ""
  3075. "Some index files failed to download. They have been ignored, or old ones "
  3076. "used instead."
  3077. msgstr ""
  3078. "Falhou o download de alguns ficheiros de índice. Foram ignorados ou os "
  3079. "antigos foram usados em seu lugar."
  3080. #: apt-pkg/upgrade.cc
  3081. msgid "Calculating upgrade"
  3082. msgstr "A calcular a actualização"
  3083. #~ msgid "(not found)"
  3084. #~ msgstr "(não encontrado)"
  3085. #~ msgid " Package pin: "
  3086. #~ msgstr " Marcação do Pacote: "
  3087. #~ msgid "There is no public key available for the following key IDs:\n"
  3088. #~ msgstr ""
  3089. #~ "Não existe qualquer chave pública disponível para as seguintes IDs de "
  3090. #~ "chave:\n"
  3091. #, fuzzy
  3092. #~ msgid "The repository is insufficiently signed by key %s (%s)"
  3093. #~ msgstr "O directório %s é desviado"
  3094. #~ msgid ""
  3095. #~ "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  3096. #~ "packages"
  3097. #~ msgstr ""
  3098. #~ "a dependência de %s por %s não pode ser satisfeita porque %s não é "
  3099. #~ "permitido em pacotes '%s'"
  3100. #~ msgid ""
  3101. #~ "%s dependency for %s cannot be satisfied because the package %s cannot be "
  3102. #~ "found"
  3103. #~ msgstr ""
  3104. #~ "a dependência de %s para %s não pôde ser satisfeita porque o pacote %s "
  3105. #~ "não pôde ser encontrado"
  3106. #~ msgid ""
  3107. #~ "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  3108. #~ msgstr ""
  3109. #~ "Falha ao satisfazer a dependência %s para %s: O pacote instalado %s é "
  3110. #~ "demasiado novo"
  3111. #~ msgid ""
  3112. #~ "%s dependency for %s cannot be satisfied because candidate version of "
  3113. #~ "package %s can't satisfy version requirements"
  3114. #~ msgstr ""
  3115. #~ "a dependência de %s para %s não pode ser satisfeita porque a versão "
  3116. #~ "candidata do pacote %s não pode satisfazer os requisitos de versão"
  3117. #~ msgid ""
  3118. #~ "%s dependency for %s cannot be satisfied because package %s has no "
  3119. #~ "candidate version"
  3120. #~ msgstr ""
  3121. #~ "a dependência de %s para %s não pode ser satisfeita porque o pacote %s "
  3122. #~ "não tem versão candidata"
  3123. #~ msgid "Failed to satisfy %s dependency for %s: %s"
  3124. #~ msgstr "Falha ao satisfazer a dependência %s para %s: %s"
  3125. #~ msgid "Build-dependencies for %s could not be satisfied."
  3126. #~ msgstr "Não foi possível satisfazer as dependências de compilação para %s."
  3127. #~ msgid "Problem unlinking %s"
  3128. #~ msgstr "Problema ao executar unlinking %s"
  3129. #~ msgid "Failed to unlink %s"
  3130. #~ msgstr "Falhou o unlink %s"
  3131. #~ msgid ""
  3132. #~ "Usage: apt-cache [options] command\n"
  3133. #~ " apt-cache [options] show pkg1 [pkg2 ...]\n"
  3134. #~ "\n"
  3135. #~ "apt-cache is a low-level tool used to query information\n"
  3136. #~ "from APT's binary cache files\n"
  3137. #~ msgstr ""
  3138. #~ "Utilização: apt-cache [opções] comando\n"
  3139. #~ " apt-cache [opções] show pacote1 [pacote2 ...]\n"
  3140. #~ "\n"
  3141. #~ "O apt-cache é uma ferramenta de baixo nível utilizada para questionar\n"
  3142. #~ " informação dos ficheiros de cache binários do APT\n"
  3143. #~ msgid ""
  3144. #~ "Options:\n"
  3145. #~ " -h This help text.\n"
  3146. #~ " -p=? The package cache.\n"
  3147. #~ " -s=? The source cache.\n"
  3148. #~ " -q Disable progress indicator.\n"
  3149. #~ " -i Show only important deps for the unmet command.\n"
  3150. #~ " -c=? Read this configuration file\n"
  3151. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3152. #~ "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  3153. #~ msgstr ""
  3154. #~ "Opções:\n"
  3155. #~ " -h Este texto de ajuda.\n"
  3156. #~ " -p=? A cache de pacotes.\n"
  3157. #~ " -s=? A cache de fontes.\n"
  3158. #~ " -q Desabilitar o indicador de progresso.\n"
  3159. #~ " -i Mostrar apenas dependências importantes para o comando unmet.\n"
  3160. #~ " -c=? Ler este ficheiro de configuração.\n"
  3161. #~ " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/"
  3162. #~ "tmp\n"
  3163. #~ "Para mais informações veja as páginas do manual apt-cache(8) e apt."
  3164. #~ "conf(5).\n"
  3165. #, fuzzy
  3166. #~ msgid ""
  3167. #~ "Options:\n"
  3168. #~ " -h This help text\n"
  3169. #~ " -d CD-ROM mount point\n"
  3170. #~ " -r Rename a recognized CD-ROM\n"
  3171. #~ " -m No mounting\n"
  3172. #~ " -f Fast mode, don't check package files\n"
  3173. #~ " -a Thorough scan mode\n"
  3174. #~ " --no-auto-detect Do not try to auto detect drive and mount point\n"
  3175. #~ " -c=? Read this configuration file\n"
  3176. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3177. #~ "See fstab(5)\n"
  3178. #~ msgstr ""
  3179. #~ "Opções:\n"
  3180. #~ " -h\tEste texto de ajuda.\n"
  3181. #~ " -q\tSaída para registo - sem indicador de progresso\n"
  3182. #~ " -qq Sem saída excepto para erros\n"
  3183. #~ " -s\tNão fazer. Apenas escreve o que seria feito.\n"
  3184. #~ " -f\tler/escrever marcação auto/manual no ficheiro indicado\n"
  3185. #~ " -c=? Ler este ficheiro de configuração\n"
  3186. #~ " -o=? Definir uma opção de configuração arbitrária, p.e. -o dir::cache=/"
  3187. #~ "tmp\n"
  3188. #~ "Para mais informações veja as páginas apt-mark(8) e apt.conf(5) do manual."
  3189. #~ msgid ""
  3190. #~ "Options:\n"
  3191. #~ " -h This help text.\n"
  3192. #~ " -c=? Read this configuration file\n"
  3193. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3194. #~ msgstr ""
  3195. #~ "Opções:\n"
  3196. #~ " -h Este texto de ajuda.\n"
  3197. #~ " -c=? Ler este ficheiro de configuração\n"
  3198. #~ " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/"
  3199. #~ "tmp\n"
  3200. #~ msgid ""
  3201. #~ "Options:\n"
  3202. #~ " -h This help text.\n"
  3203. #~ " -q Loggable output - no progress indicator\n"
  3204. #~ " -qq No output except for errors\n"
  3205. #~ " -s No-act. Just prints what would be done.\n"
  3206. #~ " -f read/write auto/manual marking in the given file\n"
  3207. #~ " -c=? Read this configuration file\n"
  3208. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3209. #~ "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  3210. #~ msgstr ""
  3211. #~ "Opções:\n"
  3212. #~ " -h\tEste texto de ajuda.\n"
  3213. #~ " -q\tSaída para registo - sem indicador de progresso\n"
  3214. #~ " -qq Sem saída excepto para erros\n"
  3215. #~ " -s\tNão fazer. Apenas escreve o que seria feito.\n"
  3216. #~ " -f\tler/escrever marcação auto/manual no ficheiro indicado\n"
  3217. #~ " -c=? Ler este ficheiro de configuração\n"
  3218. #~ " -o=? Definir uma opção de configuração arbitrária, p.e. -o dir::cache=/"
  3219. #~ "tmp\n"
  3220. #~ "Para mais informações veja as páginas apt-mark(8) e apt.conf(5) do manual."
  3221. #~ msgid ""
  3222. #~ "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  3223. #~ "\n"
  3224. #~ "apt-sortpkgs is a simple tool to sort package files. The -s option is "
  3225. #~ "used\n"
  3226. #~ "to indicate what kind of file it is.\n"
  3227. #~ "\n"
  3228. #~ "Options:\n"
  3229. #~ " -h This help text\n"
  3230. #~ " -s Use source file sorting\n"
  3231. #~ " -c=? Read this configuration file\n"
  3232. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3233. #~ msgstr ""
  3234. #~ "Utilização: apt-sortpkgs [opções] ficheiro1 [ficheiro2 ...]\n"
  3235. #~ "\n"
  3236. #~ "O apt-sortpkgs é uma ferramenta simples para ordenar ficheiros de "
  3237. #~ "pacotes.\n"
  3238. #~ "A opção -s é utilizada para indicar que tipo de ficheiro é.\n"
  3239. #~ "\n"
  3240. #~ "Opções:\n"
  3241. #~ " -h Este texto de ajuda\n"
  3242. #~ " -s Utilizar a ordenação de ficheiros de código-fonte\n"
  3243. #~ " -c=? Ler este ficheiro de configuração\n"
  3244. #~ " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/"
  3245. #~ "tmp\n"
  3246. #~ msgid "Child process failed"
  3247. #~ msgstr "O processo filho falhou"
  3248. #, fuzzy
  3249. #~ msgid "Must specifc at least one srv record"
  3250. #~ msgstr ""
  3251. #~ "Tem de especificar pelo menos um pacote para obter o código fonte de"
  3252. #~ msgid "Failed to create pipes"
  3253. #~ msgstr "Falhou a criação de pipes"
  3254. #~ msgid "Failed to exec gzip "
  3255. #~ msgstr "Falhou executar gzip "
  3256. #~ msgid "%s %s for %s compiled on %s %s\n"
  3257. #~ msgstr "%s %s para %s compilado em %s %s\n"
  3258. #~ msgid "Failed to create FILE*"
  3259. #~ msgstr "Falhou criar FILE*"
  3260. #, fuzzy
  3261. #~ msgid "Malformed stanza %u in source list %s (URI parse)"
  3262. #~ msgstr "Linha mal formada %lu na lista de fontes %s (parse de URI)"
  3263. #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
  3264. #~ msgstr ""
  3265. #~ "Linha mal formada %lu na lista de fontes %s ([opção] não interpretável)"
  3266. #~ msgid "Malformed line %lu in source list %s ([option] too short)"
  3267. #~ msgstr ""
  3268. #~ "Linha mal formada %lu na lista de fontes %s ([opção] demasiado curta)"
  3269. #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  3270. #~ msgstr ""
  3271. #~ "Linha mal formada %lu na lista de fontes %s ([%s] não é uma atribuição)"
  3272. #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
  3273. #~ msgstr "Linha mal formada %lu na lista de fontes %s ([%s] não tem chave)"
  3274. #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  3275. #~ msgstr ""
  3276. #~ "Linha mal formada %lu na lista de fontes %s ([%s] chave %s não tem valor)"
  3277. #~ msgid "Malformed line %lu in source list %s (URI)"
  3278. #~ msgstr "Linha mal formada %lu na lista de fontes %s (URI)"
  3279. #~ msgid "Malformed line %lu in source list %s (dist)"
  3280. #~ msgstr "Linha mal formada %lu na lista de fontes %s (distribuição)"
  3281. #~ msgid "Malformed line %lu in source list %s (URI parse)"
  3282. #~ msgstr "Linha mal formada %lu na lista de fontes %s (parse de URI)"
  3283. #~ msgid "Malformed line %lu in source list %s (absolute dist)"
  3284. #~ msgstr "Linha mal formada %lu na lista de fontes %s (distribuição absoluta)"
  3285. #~ msgid "Malformed line %lu in source list %s (dist parse)"
  3286. #~ msgstr "Linha mal formada %lu na lista de fontes %s (dist parse)"
  3287. #~ msgid "Package %s %s was not found while processing file dependencies"
  3288. #~ msgstr ""
  3289. #~ "O pacote %s %s não foi encontrado ao processar as dependências de "
  3290. #~ "ficheiros"
  3291. #~ msgid "Couldn't stat source package list %s"
  3292. #~ msgstr ""
  3293. #~ "Não foi possível executar stat à lista de pacotes de código fonte %s"
  3294. #~ msgid "Collecting File Provides"
  3295. #~ msgstr "A obter File Provides"
  3296. #, fuzzy
  3297. #~ msgid "Does not start with a cleartext signature"
  3298. #~ msgstr "O ficheiro %s não começa com uma mensagem assinada"
  3299. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3300. #~ msgstr "Não foi possível encontrar hash sum para '%s' no ficheiro Release"
  3301. #~ msgid "Vendor block %s contains no fingerprint"
  3302. #~ msgstr "O bloco de fabricante %s não contém a impressão digital"
  3303. #~ msgid "Total dependency version space: "
  3304. #~ msgstr "Espaço total de dependência de versão: "
  3305. #~ msgid "You don't have enough free space in %s"
  3306. #~ msgstr "Você não possui espaço livre suficiente em %s"
  3307. #~ msgid "Done"
  3308. #~ msgstr "Pronto"
  3309. #~ msgid "No keyring installed in %s."
  3310. #~ msgstr "Nenhum keyring instalado em %s."
  3311. #, fuzzy
  3312. #~ msgid "Internal error, Upgrade broke stuff"
  3313. #~ msgstr "Erro Interno, AllUpgrade estragou algo"
  3314. #~ msgid "%s not a valid DEB package."
  3315. #~ msgstr "%s não é um pacote DEB válido."
  3316. #~ msgid ""
  3317. #~ "Using CD-ROM mount point %s\n"
  3318. #~ "Mounting CD-ROM\n"
  3319. #~ msgstr ""
  3320. #~ "Utilizando o ponto de montagem do CD-ROM %s\n"
  3321. #~ "A montar o CD-ROM\n"
  3322. #~ msgid ""
  3323. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3324. #~ "seems to be corrupt."
  3325. #~ msgstr ""
  3326. #~ "Não foi possível aplicar o patch %s com mmap e com a utilização de "
  3327. #~ "operação de ficheiro - o patch parece estar corrompido."
  3328. #~ msgid ""
  3329. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3330. #~ "seems to be corrupt."
  3331. #~ msgstr ""
  3332. #~ "Não foi possível aplicar o patch %s com mmap (mas não é uma falha "
  3333. #~ "especifica do mmap) - o patch parece corrompido."
  3334. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3335. #~ msgstr ""
  3336. #~ "Ignorar o lançamento pretendido, não disponível, '%s' do pacote '%s'"
  3337. #~ msgid "Downloading %s %s"
  3338. #~ msgstr "A obter %s %s"
  3339. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3340. #~ msgstr ""
  3341. #~ "Este não é um arquivo DEB válido, não tem '%s', '%s' ou o membro '%s'"
  3342. #~ msgid "MD5Sum mismatch"
  3343. #~ msgstr "MD5Sum não coincide"
  3344. #~ msgid ""
  3345. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3346. #~ "need to manually fix this package."
  3347. #~ msgstr ""
  3348. #~ "Não foi possível localizar arquivo para o pacote %s. Isto pode significar "
  3349. #~ "que você precisa consertar manualmente este pacote."
  3350. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3351. #~ msgstr ""
  3352. #~ "Não é possível escrever o registo (log), openpty() falhou (/dev/pts não "
  3353. #~ "está montado?)\n"
  3354. #~ msgid "Skipping nonexistent file %s"
  3355. #~ msgstr "A saltar ficheiro %s inexistente"
  3356. #~ msgid "Failed to remove %s"
  3357. #~ msgstr "Falhou remover %s"
  3358. #~ msgid "Unable to create %s"
  3359. #~ msgstr "Não foi capaz de criar %s"
  3360. #~ msgid "Failed to stat %sinfo"
  3361. #~ msgstr "Falhou stat %sinfo"
  3362. #~ msgid "The info and temp directories need to be on the same filesystem"
  3363. #~ msgstr ""
  3364. #~ "Os directórios info e temp precisam estar no mesmo sistema de ficheiros"
  3365. #~ msgid "Failed to change to the admin dir %sinfo"
  3366. #~ msgstr "Falhou mudar para o directório administrativo %sinfo"
  3367. #~ msgid "Internal error getting a package name"
  3368. #~ msgstr "Erro Interno ao obter um nome de pacote"
  3369. #~ msgid "Reading file listing"
  3370. #~ msgstr "A ler a listagem de ficheiros"
  3371. #~ msgid ""
  3372. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3373. #~ "then make it empty and immediately re-install the same version of the "
  3374. #~ "package!"
  3375. #~ msgstr ""
  3376. #~ "Falha abrir o ficheiro da lista '%sinfo/%s'. Caso você não consiga "
  3377. #~ "restaurar este ficheiro, crie outro vazio e reinstale imediatamente a a "
  3378. #~ "mesma versão do pacote!"
  3379. #~ msgid "Failed reading the list file %sinfo/%s"
  3380. #~ msgstr "Falhou ler o ficheiro de lista %sinfo/%s"
  3381. #~ msgid "Internal error getting a node"
  3382. #~ msgstr "Erro interno ao obter um nó"
  3383. #~ msgid "Failed to open the diversions file %sdiversions"
  3384. #~ msgstr "Falhou abrir o ficheiro de desvios %sdiversions"
  3385. #~ msgid "The diversion file is corrupted"
  3386. #~ msgstr "O ficheiro de desvios está corrompido"
  3387. #~ msgid "Invalid line in the diversion file: %s"
  3388. #~ msgstr "Linha inválida no ficheiro de desvio: %s"
  3389. #~ msgid "Internal error adding a diversion"
  3390. #~ msgstr "Erro interno ao adicionar um desvio"
  3391. #~ msgid "The pkg cache must be initialized first"
  3392. #~ msgstr "A cache de pacotes tem de ser inicializada primeiro"
  3393. #~ msgid "Failed to find a Package: header, offset %lu"
  3394. #~ msgstr "Falhou encontrar um Pacote: cabeçalho, posição %lu"
  3395. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3396. #~ msgstr "Secção ConfFile errada no ficheiro de estado. Offset %lu"
  3397. #~ msgid "Error parsing MD5. Offset %lu"
  3398. #~ msgstr "Erro ao fazer parse ao MD5. Offset %lu"
  3399. #~ msgid "Couldn't change to %s"
  3400. #~ msgstr "Não foi possível mudar para %s"
  3401. #~ msgid "Failed to locate a valid control file"
  3402. #~ msgstr "Falha em localizar um ficheiro de controle válido"
  3403. #~ msgid "Couldn't open pipe for %s"
  3404. #~ msgstr "Não foi possível abrir pipe para %s"
  3405. #~ msgid "Read error from %s process"
  3406. #~ msgstr "Erro de leitura do processo %s"
  3407. #~ msgid "Got a single header line over %u chars"
  3408. #~ msgstr "Recebi uma única linha de cabeçalho acima de %u caracteres"
  3409. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  3410. #~ msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg."
  3411. #~ msgid "Malformed override %s line %lu #1"
  3412. #~ msgstr "Override %s malformado linha %lu #1"
  3413. #~ msgid "Malformed override %s line %lu #2"
  3414. #~ msgstr "Override %s malformado linha %lu #2"
  3415. #~ msgid "Malformed override %s line %lu #3"
  3416. #~ msgstr "Override %s malformado linha %lu #3"
  3417. #~ msgid "decompressor"
  3418. #~ msgstr "descompactador"
  3419. #~ msgid "read, still have %lu to read but none left"
  3420. #~ msgstr "lido, ainda restam %lu para serem lidos mas não resta nenhum"
  3421. #~ msgid "write, still have %lu to write but couldn't"
  3422. #~ msgstr "escrito, ainda restam %lu para escrever mas não foi possível"
  3423. #~ msgid ""
  3424. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3425. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3426. #~ msgstr ""
  3427. #~ "Não foi possível proceder à configuração imediata no já descompactado "
  3428. #~ "'%s'. Para mais detalhes por favor veja man 5 apt.conf em APT::Immediate-"
  3429. #~ "Configure."
  3430. #~ msgid "Error occurred while processing %s (NewPackage)"
  3431. #~ msgstr "Ocorreu um erro ao processar %s (NewPackage)"
  3432. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3433. #~ msgstr "Ocorreu um erro ao processar %s (UsePackage1)"
  3434. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3435. #~ msgstr "Ocorreu um erro ao processar %s (NewFileDesc1)"
  3436. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3437. #~ msgstr "Ocorreu um erro ao processar %s (UsePackage2)"
  3438. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3439. #~ msgstr "Ocorreu um erro ao processar %s (NewFileVer1)"
  3440. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3441. #~ msgstr "Ocorreu um erro ao processar %s (NewVersion%d)"
  3442. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3443. #~ msgstr "Ocorreu um erro ao processar %s (UsePackage3)"
  3444. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3445. #~ msgstr "Ocorreu um erro ao processar %s (NewFileDesc2)"
  3446. #~ msgid "Error occurred while processing %s (FindPkg)"
  3447. #~ msgstr "Ocorreu um erro ao processar %s (FindPkg)"
  3448. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3449. #~ msgstr "Ocorreu um erro ao processar %s (CollectFileProvides)"
  3450. #~ msgid "Internal error, could not locate member"
  3451. #~ msgstr "Erro Interno, não foi possível localizar membro"
  3452. #~ msgid "Internal error, group '%s' has no installable pseudo package"
  3453. #~ msgstr "Erro interno, grupo '%s' não tem pseudo-pacote instalável"
  3454. #~ msgid "Release file expired, ignoring %s (invalid since %s)"
  3455. #~ msgstr "Ficheiro Release expirou, a ignorar %s (inválido desde %s)"
  3456. #~ msgid "You must give exactly one pattern"
  3457. #~ msgstr "Você deve dar exactamente um pattern"
  3458. #~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  3459. #~ msgstr ""
  3460. #~ "E: A lista de argumentos de Acquire::gpgv::Options é demasiado longa. A "
  3461. #~ "sair."
  3462. #~ msgid "Error occurred while processing %s (NewVersion2)"
  3463. #~ msgstr "Ocorreu um erro ao processar %s (NewVersion2)"
  3464. #~ msgid "Malformed line %u in source list %s (vendor id)"
  3465. #~ msgstr "Linha malformada %u na lista de fontes %s (id de fornecedor)"
  3466. #~ msgid "Couldn't access keyring: '%s'"
  3467. #~ msgstr "Não foi possível aceder à 'keyring': '%s'"
  3468. #~ msgid "Could not patch file"
  3469. #~ msgstr "Não foi possível aplicar o 'patch' ao ficheiro"
  3470. #~ msgid " %4i %s\n"
  3471. #~ msgstr " %4i %s\n"
  3472. #~ msgid "%4i %s\n"
  3473. #~ msgstr "%4i %s\n"
  3474. #~ msgid "Processing triggers for %s"
  3475. #~ msgstr "A processar chamadas para %s"
  3476. #~ msgid "Dynamic MMap ran out of room"
  3477. #~ msgstr "'Dynamic MMap' ficou sem espaço"
  3478. #~ msgid ""
  3479. #~ "Since you only requested a single operation it is extremely likely that\n"
  3480. #~ "the package is simply not installable and a bug report against\n"
  3481. #~ "that package should be filed."
  3482. #~ msgstr ""
  3483. #~ "Já que você requisitou uma única operação é extremamente provável que o \n"
  3484. #~ "pacote esteja simplesmente não instalável e deve ser enviado um\n"
  3485. #~ "relatório de bug contra esse pacote."
  3486. #~ msgid "Line %d too long (max %lu)"
  3487. #~ msgstr "a linha %d é demasiado longa (max %lu)"
  3488. #, fuzzy
  3489. #~ msgid "Line %d too long (max %d)"
  3490. #~ msgstr "Linha %d é demasiado longa (max %d)"
  3491. #, fuzzy
  3492. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  3493. #~ msgstr "Um erro ocorreu ao processar %s (NovoArquivoVer1)"
  3494. #, fuzzy
  3495. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  3496. #~ msgstr "Um erro ocorreu ao processar %s (NovoArquivoVer1)"
  3497. #, fuzzy
  3498. #~ msgid "Stored label: %s \n"
  3499. #~ msgstr "Label Guardada: %s \n"
  3500. #, fuzzy
  3501. #~ msgid ""
  3502. #~ "Found %i package indexes, %i source indexes, %i translation indexes and "
  3503. #~ "%i signatures\n"
  3504. #~ msgstr ""
  3505. #~ "Encontrou %i indexes de pacotes, %indexes de source e %i assinaturas\n"
  3506. #, fuzzy
  3507. #~ msgid "openpty failed\n"
  3508. #~ msgstr "Select falhou."
  3509. #~ msgid "File date has changed %s"
  3510. #~ msgstr "Data do ficheiro mudou %s"
  3511. #~ msgid "Reading file list"
  3512. #~ msgstr "Lendo Lista de Ficheiros"
  3513. #~ msgid "Could not execute "
  3514. #~ msgstr "Impossível de executar "
  3515. #~ msgid "Preparing for remove with config %s"
  3516. #~ msgstr "A preparar para remover com a configuração %s"
  3517. #~ msgid "Removed with config %s"
  3518. #~ msgstr "Removido com a configuração %s"
  3519. #~ msgid "The pkg cache must be initialize first"
  3520. #~ msgstr "A cache de pacotes deve ser inicializada primeiro"
  3521. #~ msgid "Error occured while processing %s (NewPackage)"
  3522. #~ msgstr "Um erro ocorreu ao processar %s (NovoPacote)"
  3523. #~ msgid "Error occured while processing %s (UsePackage1)"
  3524. #~ msgstr "Um erro ocorreu ao processar %s (UsePacote1)"
  3525. #~ msgid "Error occured while processing %s (UsePackage2)"
  3526. #~ msgstr "Um erro ocorreu ao processar %s (UsePacote2)"
  3527. #~ msgid "Error occured while processing %s (NewVersion1)"
  3528. #~ msgstr "Um erro ocorreu ao processar %s (NovaVersão1)"
  3529. #~ msgid "Error occured while processing %s (UsePackage3)"
  3530. #~ msgstr "Um erro ocorreu ao processar %s (UsePacote3)"
  3531. #~ msgid "Error occured while processing %s (NewVersion2)"
  3532. #~ msgstr "Um erro ocorreu ao processar %s (NovaVersão2)"
  3533. #~ msgid "Error occured while processing %s (FindPkg)"
  3534. #~ msgstr "Um erro ocorreu ao processar %s (FindPkg)"
  3535. #~ msgid "Error occured while processing %s (CollectFileProvides)"
  3536. #~ msgstr "Um erro ocorreu ao processar %s (CollectFileProvides)"
  3537. #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
  3538. #~ msgstr ""
  3539. #~ "ID de fornecedor desconhecido '%s' na linha %u da lista de fontes %s"
  3540. #~ msgid ""
  3541. #~ "Some broken packages were found while trying to process build-"
  3542. #~ "dependencies.\n"
  3543. #~ "You might want to run 'apt-get -f install' to correct these."
  3544. #~ msgstr ""
  3545. #~ "Alguns pacotes quebrados foram encontrados enquanto se tentava "
  3546. #~ "processar \n"
  3547. #~ "as dependências de construção.\n"
  3548. #~ "Você pode querer rodar 'apt-get -f install' para corrigí-los."
  3549. #~ msgid "Sorry, you don't have enough free space in %s to hold all the .debs."
  3550. #~ msgstr ""
  3551. #~ "Desculpe, você não tem espaço livre o suficiente em %s para guardar os ."
  3552. #~ "debs."
  3553. #~ msgid "Extract "
  3554. #~ msgstr "extra"
  3555. #~ msgid "De-replaced "
  3556. #~ msgstr "Substitui"
  3557. #~ msgid "Replaced file "
  3558. #~ msgstr "Substitui"
  3559. #~ msgid "Regex compilation error"
  3560. #~ msgstr "Erro de compilação de regex - %s"
  3561. #~ msgid "Failed to stat %s%s"
  3562. #~ msgstr "Falha ao baixar %s %s\n"
  3563. #~ msgid "Failed to rename %s.new to %s"
  3564. #~ msgstr "Falha ao baixar %s %s\n"
  3565. #~ msgid "Couldn't wait for subprocess"
  3566. #~ msgstr "Não foi possível checar a lista de pacotes fonte %s"
  3567. #~ msgid " files "
  3568. #~ msgstr " falhou."
  3569. #~ msgid "Done. "
  3570. #~ msgstr "Pronto"
  3571. #~ msgid "Could not find a record in the DSC '%s'"
  3572. #~ msgstr "Impossível achar pacote %s"
  3573. #~ msgid "Failed too stat %s"
  3574. #~ msgstr "Impossível checar %s."