pt.po 127 KB

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