pt.po 126 KB

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