pt.po 124 KB

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