pt_BR.po 83 KB

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