pt.po 91 KB

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