pt.po 90 KB

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