pt.po 95 KB

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