pt.po 120 KB

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