pt_BR.po 120 KB

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