pt_BR.po 93 KB

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