pt_BR.po 111 KB

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