pt.po 92 KB

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