pt.po 120 KB

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