pt.po 126 KB

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