pt.po 97 KB

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