pt.po 125 KB

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