pt_BR.po 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106
  1. # Brazilian Portuguese translations of mc
  2. # Copyright (C) 1999 Free Software Foundation, Inc.
  3. # Sandro Henrique <sandro@conectiva.com.br>, 1999.
  4. #
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: mc-4.5.36\n"
  9. "Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
  10. "POT-Creation-Date: 2010-06-07 21:44+0400\n"
  11. "PO-Revision-Date: 2000-10-27 15:37-03:00\n"
  12. "Last-Translator: E. A. Tacão <tacao@conectiva.com.br>\n"
  13. "Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. #, fuzzy
  18. msgid "Search string not found"
  19. msgstr " Expressão de procura não encontrada"
  20. msgid "Not implemented yet"
  21. msgstr ""
  22. msgid "Num of replace tokens not equal to num of found tokens"
  23. msgstr ""
  24. #, fuzzy, c-format
  25. msgid "Invalid token number %d"
  26. msgstr " Máscara de destino inválida "
  27. #, fuzzy
  28. msgid "Normal"
  29. msgstr "Formatar"
  30. msgid "&Regular expression"
  31. msgstr "E&xpressão Regular"
  32. msgid "Hexadecimal"
  33. msgstr ""
  34. msgid "Wildcard search"
  35. msgstr ""
  36. #, c-format
  37. msgid ""
  38. "Unable to load '%s' skin.\n"
  39. "Default skin has been loaded"
  40. msgstr ""
  41. #, c-format
  42. msgid ""
  43. "Unable to parse '%s' skin.\n"
  44. "Default skin has been loaded"
  45. msgstr ""
  46. msgid "Function key 1"
  47. msgstr "Tecla de função 1"
  48. msgid "Function key 2"
  49. msgstr "Tecla de função 2"
  50. msgid "Function key 3"
  51. msgstr "Tecla de função 3"
  52. msgid "Function key 4"
  53. msgstr "Tecla de função 4"
  54. msgid "Function key 5"
  55. msgstr "Tecla de função 5"
  56. msgid "Function key 6"
  57. msgstr "Tecla de função 6"
  58. msgid "Function key 7"
  59. msgstr "Tecla de função 7"
  60. msgid "Function key 8"
  61. msgstr "Tecla de função 8"
  62. msgid "Function key 9"
  63. msgstr "Tecla de função 9"
  64. msgid "Function key 10"
  65. msgstr "Tecla de função 10"
  66. msgid "Function key 11"
  67. msgstr "Tecla de função 11"
  68. msgid "Function key 12"
  69. msgstr "Tecla de função 12"
  70. msgid "Function key 13"
  71. msgstr "Tecla de função 13"
  72. msgid "Function key 14"
  73. msgstr "Tecla de função 14"
  74. msgid "Function key 15"
  75. msgstr "Tecla de função 15"
  76. msgid "Function key 16"
  77. msgstr "Tecla de função 16"
  78. msgid "Function key 17"
  79. msgstr "Tecla de função 17"
  80. msgid "Function key 18"
  81. msgstr "Tecla de função 18"
  82. msgid "Function key 19"
  83. msgstr "Tecla de função 19"
  84. msgid "Function key 20"
  85. msgstr "Tecla de função 20"
  86. msgid "Backspace key"
  87. msgstr "Retrocesso"
  88. msgid "End key"
  89. msgstr "Tecla de Fim"
  90. msgid "Up arrow key"
  91. msgstr "Seta acima"
  92. msgid "Down arrow key"
  93. msgstr "Seta abaixo"
  94. msgid "Left arrow key"
  95. msgstr "Seta esquerda"
  96. msgid "Right arrow key"
  97. msgstr "Seta direita"
  98. msgid "Home key"
  99. msgstr "Tecla Home"
  100. msgid "Page Down key"
  101. msgstr "Página Abaixo"
  102. msgid "Page Up key"
  103. msgstr "Página Acima"
  104. msgid "Insert key"
  105. msgstr "Tecla de Inserção"
  106. msgid "Delete key"
  107. msgstr "Tecla de Apagar"
  108. msgid "Completion/M-tab"
  109. msgstr "Complemento/M-tab"
  110. msgid "+ on keypad"
  111. msgstr "+ no teclado numérico"
  112. msgid "- on keypad"
  113. msgstr "- no teclado numérico"
  114. msgid "Slash on keypad"
  115. msgstr "Barra no teclado numérico"
  116. msgid "* on keypad"
  117. msgstr "* no teclado numérico"
  118. #, fuzzy
  119. msgid "Escape key"
  120. msgstr "Barra no teclado numérico"
  121. msgid "Left arrow keypad"
  122. msgstr "Seta esquerda no teclado numérico"
  123. msgid "Right arrow keypad"
  124. msgstr "Seta direita no teclado numérico"
  125. msgid "Up arrow keypad"
  126. msgstr "seta acima no teclado numérico"
  127. msgid "Down arrow keypad"
  128. msgstr "Seta abaixo no teclado numérico"
  129. msgid "Home on keypad"
  130. msgstr "Home no teclado numérico"
  131. msgid "End on keypad"
  132. msgstr "End no teclado numérico"
  133. msgid "Page Down keypad"
  134. msgstr "Página abaixo no teclado numérico"
  135. msgid "Page Up keypad"
  136. msgstr "Página acima no teclado numérico"
  137. msgid "Insert on keypad"
  138. msgstr "Insert no teclado numérico"
  139. msgid "Delete on keypad"
  140. msgstr "Apagar no teclado numérico"
  141. msgid "Enter on keypad"
  142. msgstr "Enter no teclado numérico"
  143. #, fuzzy
  144. msgid "Function key 21"
  145. msgstr "Tecla de função 1"
  146. #, fuzzy
  147. msgid "Function key 22"
  148. msgstr "Tecla de função 2"
  149. #, fuzzy
  150. msgid "Function key 23"
  151. msgstr "Tecla de função 2"
  152. #, fuzzy
  153. msgid "Function key 24"
  154. msgstr "Tecla de função 2"
  155. msgid "Plus"
  156. msgstr ""
  157. #, fuzzy
  158. msgid "Minus"
  159. msgstr "Menu"
  160. msgid "Asterisk"
  161. msgstr ""
  162. msgid "Dot"
  163. msgstr ""
  164. msgid "Less than"
  165. msgstr ""
  166. msgid "Great than"
  167. msgstr ""
  168. msgid "Equal"
  169. msgstr ""
  170. #, fuzzy
  171. msgid "Comma"
  172. msgstr "Comando"
  173. msgid "Apostrophe"
  174. msgstr ""
  175. #, fuzzy
  176. msgid "Colon"
  177. msgstr "Total"
  178. msgid "Exclamation mark"
  179. msgstr ""
  180. msgid "Question mark"
  181. msgstr ""
  182. #, fuzzy
  183. msgid "Ampersand"
  184. msgstr "A&dicionar"
  185. msgid "Dollar sign"
  186. msgstr ""
  187. msgid "Quotation mark"
  188. msgstr ""
  189. #, fuzzy
  190. msgid "Caret"
  191. msgstr "Destino"
  192. msgid "Tilda"
  193. msgstr ""
  194. #, fuzzy
  195. msgid "Prime"
  196. msgstr "Ant"
  197. #, fuzzy
  198. msgid "Underline"
  199. msgstr "Informe a linha: "
  200. msgid "Understrike"
  201. msgstr ""
  202. msgid "Pipe"
  203. msgstr ""
  204. #, fuzzy
  205. msgid "Enter"
  206. msgstr "Dono"
  207. #, fuzzy
  208. msgid "Tab key"
  209. msgstr "+ no teclado numérico"
  210. #, fuzzy
  211. msgid "Space key"
  212. msgstr "Barra no teclado numérico"
  213. #, fuzzy
  214. msgid "Slash key"
  215. msgstr "Barra no teclado numérico"
  216. #, fuzzy
  217. msgid "Backslash key"
  218. msgstr "Retrocesso"
  219. msgid "Number sign #"
  220. msgstr ""
  221. msgid "Ctrl"
  222. msgstr ""
  223. msgid "Alt"
  224. msgstr ""
  225. msgid "Shift"
  226. msgstr ""
  227. #, c-format
  228. msgid ""
  229. "Screen size %dx%d is not supported.\n"
  230. "Check the TERM environment variable.\n"
  231. msgstr ""
  232. #, fuzzy, c-format
  233. msgid "%s is not a directory\n"
  234. msgstr "Cria um novo diretório"
  235. #, c-format
  236. msgid "Directory %s is not owned by you\n"
  237. msgstr ""
  238. #, fuzzy, c-format
  239. msgid "Cannot set correct permissions for directory %s\n"
  240. msgstr ""
  241. " Impossível criar diretório de destino \"%s\" \n"
  242. " %s "
  243. #, fuzzy, c-format
  244. msgid "Cannot create temporary directory %s: %s\n"
  245. msgstr ""
  246. " Impossível criar diretório de destino \"%s\" \n"
  247. " %s "
  248. #, c-format
  249. msgid "Temporary files will be created in %s\n"
  250. msgstr ""
  251. #, c-format
  252. msgid "Temporary files will not be created\n"
  253. msgstr ""
  254. #, c-format
  255. msgid "Press any key to continue..."
  256. msgstr "Pressione uma tecla para continuar..."
  257. msgid "Warning"
  258. msgstr "Aviso"
  259. #, fuzzy
  260. msgid "Pipe failed"
  261. msgstr " Conector falhou"
  262. #, fuzzy
  263. msgid "Dup failed"
  264. msgstr " dup falhou"
  265. #
  266. #, fuzzy
  267. msgid "Error dup'ing old error pipe"
  268. msgstr " Problema lendo do pipe:"
  269. #, c-format
  270. msgid ""
  271. "Cannot open cpio archive\n"
  272. "%s"
  273. msgstr ""
  274. "Impossível abrir arquivo cpio\n"
  275. "%s"
  276. #, c-format
  277. msgid ""
  278. "Premature end of cpio archive\n"
  279. "%s"
  280. msgstr ""
  281. "Final prematuro do arquivo cpio\n"
  282. "%s"
  283. #, c-format
  284. msgid ""
  285. "Inconsistent hardlinks of\n"
  286. "%s\n"
  287. "in cpio archive\n"
  288. "%s"
  289. msgstr ""
  290. "Links físicos inconsistentes de\n"
  291. "%s\n"
  292. "no arquivo cpio\n"
  293. "%s"
  294. #, c-format
  295. msgid "%s contains duplicate entries! Skipping!"
  296. msgstr "%s contém entradas duplicadas! Ignorando!"
  297. #, c-format
  298. msgid ""
  299. "Corrupted cpio header encountered in\n"
  300. "%s"
  301. msgstr ""
  302. "Cabeçalho cpio corrompido encontrado em\n"
  303. "%s"
  304. #, c-format
  305. msgid ""
  306. "Unexpected end of file\n"
  307. "%s"
  308. msgstr ""
  309. "Fim de arquivo inesperado\n"
  310. "%s"
  311. #, c-format
  312. msgid "Directory cache expired for %s"
  313. msgstr "Cache de dir expirou para %s"
  314. #
  315. msgid "Starting linear transfer..."
  316. msgstr "Iniciando transferência linear..."
  317. #, c-format
  318. msgid "%s: %s: %s %3d%% (%lu bytes transferred)"
  319. msgstr "%s: %s: %s %3d%% (%lu bytes transferidos)"
  320. #, c-format
  321. msgid "%s: %s: %s %lu bytes transferred"
  322. msgstr "%s: %s: %s %lu bytes transferidos"
  323. #
  324. msgid "Getting file"
  325. msgstr "Obtendo arquivo"
  326. #, c-format
  327. msgid ""
  328. "Cannot open %s archive\n"
  329. "%s"
  330. msgstr ""
  331. "Impossível abrir arquivo %s\n"
  332. "%s"
  333. msgid "Inconsistent extfs archive"
  334. msgstr "Arquivo extfs inconsistente"
  335. #, fuzzy, c-format
  336. msgid "Warning: cannot open %s directory\n"
  337. msgstr " Impossível mudar de diretório"
  338. #, c-format
  339. msgid "fish: Disconnecting from %s"
  340. msgstr "peixe: Desconectando de %s"
  341. msgid "fish: Waiting for initial line..."
  342. msgstr "peixe: Aguardando pela linha inicial..."
  343. msgid "Sorry, we cannot do password authenticated connections for now."
  344. msgstr "Desculpe, impossível fazer autenticação de senha no momento."
  345. #
  346. #, fuzzy, c-format
  347. msgid "fish: Password is required for %s"
  348. msgstr " fish: Senha requerida para"
  349. msgid "fish: Sending password..."
  350. msgstr "peixe: Enviando senha..."
  351. msgid "fish: Sending initial line..."
  352. msgstr "peixe: Enviando linha inicial..."
  353. msgid "fish: Handshaking version..."
  354. msgstr "peixe: versão de handshake..."
  355. msgid "fish: Setting up current directory..."
  356. msgstr "peixe: Configura o diretório corrente..."
  357. #, c-format
  358. msgid "fish: Connected, home %s."
  359. msgstr "peixe: Conectado, hone %s."
  360. #, c-format
  361. msgid "fish: Reading directory %s..."
  362. msgstr "peixe: Lendo diretório %s..."
  363. #, c-format
  364. msgid "%s: done."
  365. msgstr "%s: feito."
  366. #
  367. #, c-format
  368. msgid "%s: failure"
  369. msgstr "%s: falha"
  370. #, c-format
  371. msgid "fish: store %s: sending command..."
  372. msgstr "peixe: armazenar %s: enviando comando..."
  373. msgid "fish: Local read failed, sending zeros"
  374. msgstr "peixe: leitura local falhou, enviando zeros"
  375. #, fuzzy, c-format
  376. msgid "fish: storing %s %d (%lu)"
  377. msgstr "peixe: guardando %s %d (%d)"
  378. msgid "zeros"
  379. msgstr "zeros"
  380. msgid "file"
  381. msgstr "arquivo"
  382. msgid "Aborting transfer..."
  383. msgstr "Abortando transferência..."
  384. msgid "Error reported after abort."
  385. msgstr "Erro reportado depois de abortar."
  386. msgid "Aborted transfer would be successful."
  387. msgstr "Transferência abortada poderia ser bem sucedida."
  388. #, c-format
  389. msgid "ftpfs: Disconnecting from %s"
  390. msgstr "ftpfs: Desconectando de %s"
  391. #, fuzzy, c-format
  392. msgid "FTP: Password required for %s"
  393. msgstr "FTP: Senha requerida para "
  394. msgid "ftpfs: sending login name"
  395. msgstr "ftpfs: enviando nome de login"
  396. msgid "ftpfs: sending user password"
  397. msgstr "ftpfs: enviando senha do usuário"
  398. #, fuzzy, c-format
  399. msgid "FTP: Account required for user %s"
  400. msgstr "FTP: Senha requerida para "
  401. #, fuzzy
  402. msgid "Account:"
  403. msgstr "Total"
  404. #, fuzzy
  405. msgid "ftpfs: sending user account"
  406. msgstr "ftpfs: enviando senha do usuário"
  407. msgid "ftpfs: logged in"
  408. msgstr "ftpfs: logado"
  409. #, c-format
  410. msgid "ftpfs: Login incorrect for user %s "
  411. msgstr "ftpfs: Login incorreto para usuário %s "
  412. msgid "ftpfs: Invalid host name."
  413. msgstr "ftpfs: nome de host inválido."
  414. #, c-format
  415. msgid "ftpfs: %s"
  416. msgstr ""
  417. #, c-format
  418. msgid "ftpfs: making connection to %s"
  419. msgstr "ftpfs: fazendo conexão para %s"
  420. msgid "ftpfs: connection interrupted by user"
  421. msgstr "ftpfs: conexão interrompida pelo usuário"
  422. #, c-format
  423. msgid "ftpfs: connection to server failed: %s"
  424. msgstr "ftpfs: conexão para o servidor falhou: %s"
  425. #, c-format
  426. msgid "Waiting to retry... %d (Control-C to cancel)"
  427. msgstr "Aguardando para tentar novamente... %d (Control-C para cancelar)"
  428. #, fuzzy
  429. msgid "ftpfs: invalid address family"
  430. msgstr "ftpfs: Endereço de host inválido."
  431. #, fuzzy, c-format
  432. msgid "ftpfs: could not setup passive mode: %s"
  433. msgstr "ftpfs: não foi possível configurar modo passivo"
  434. #, fuzzy, c-format
  435. msgid "ftpfs: could not create socket: %s"
  436. msgstr " Impossível criar soquete: %s"
  437. msgid "ftpfs: could not setup passive mode"
  438. msgstr "ftpfs: não foi possível configurar modo passivo"
  439. msgid "ftpfs: aborting transfer."
  440. msgstr "ftpfs: abortando transferência."
  441. #, c-format
  442. msgid "ftpfs: abort error: %s"
  443. msgstr "ftpfs: erro: %s"
  444. msgid "ftpfs: abort failed"
  445. msgstr "ftpfs: cancelamento falhou"
  446. msgid "ftpfs: CWD failed."
  447. msgstr "ftpfs: CWD falhou."
  448. msgid "ftpfs: couldn't resolve symlink"
  449. msgstr "ftpfs: não é possível resolver ligação simbólica"
  450. msgid "Resolving symlink..."
  451. msgstr "Resolvendo ligações simbólicas..."
  452. #, c-format
  453. msgid "ftpfs: Reading FTP directory %s... %s%s"
  454. msgstr "ftpfs: Lendo diretório FTP %s... %s%s"
  455. msgid "(strict rfc959)"
  456. msgstr "(strict rfc959)"
  457. msgid "(chdir first)"
  458. msgstr "(chdir primeiro)"
  459. msgid "ftpfs: failed; nowhere to fallback to"
  460. msgstr "ftpfs: falha; não é possível voltar"
  461. #, fuzzy, c-format
  462. msgid "ftpfs: storing file %lu (%lu)"
  463. msgstr "ftpfs: guardando arquivo %d (%d)"
  464. #, fuzzy
  465. msgid ""
  466. "~/.netrc file has incorrect mode\n"
  467. "Remove password or correct mode"
  468. msgstr ""
  469. "arquivo ~/.netrc não está no modo correto.\n"
  470. "Remover a senha ou corrigir o modo."
  471. #, fuzzy
  472. msgid "MCFS"
  473. msgstr " MCFS "
  474. #, fuzzy
  475. msgid "The server does not support this version"
  476. msgstr " O servidor não suporta esta versão "
  477. #, fuzzy
  478. msgid ""
  479. "The remote server is not running on a system port\n"
  480. "you need a password to log in, but the information may\n"
  481. "not be safe on the remote side. Continue?\n"
  482. msgstr ""
  483. " O servidor remoto não está escutando na porta indicada. \n"
  484. " É necessária uma senha para acesso, mas a informação pode \n"
  485. " não estar segura na ponta remota. Continuar? \n"
  486. msgid "&Yes"
  487. msgstr "&Sim"
  488. msgid "&No"
  489. msgstr "&Não"
  490. #, fuzzy
  491. msgid "MCFS Password required"
  492. msgstr "Senha MCFS requerida "
  493. #, fuzzy
  494. msgid "Invalid password"
  495. msgstr " Senha inválida "
  496. #, fuzzy, c-format
  497. msgid "Cannot locate hostname: %s"
  498. msgstr " Impossível localizar máquina: %s "
  499. #, fuzzy, c-format
  500. msgid "Cannot create socket: %s"
  501. msgstr " Impossível criar soquete: %s"
  502. #, fuzzy, c-format
  503. msgid "Cannot connect to server: %s"
  504. msgstr " Impossível conectar ao servidor: %s"
  505. #, fuzzy
  506. msgid "Too many open connections"
  507. msgstr " Muitas conexões abertas "
  508. #, c-format
  509. msgid "Warning: file %s not found\n"
  510. msgstr ""
  511. #, c-format
  512. msgid ""
  513. "Warning: Invalid line in %s:\n"
  514. "%s\n"
  515. msgstr ""
  516. #, c-format
  517. msgid ""
  518. "Warning: Invalid flag %c in %s:\n"
  519. "%s\n"
  520. msgstr ""
  521. #, fuzzy, c-format
  522. msgid "reconnect to %s failed"
  523. msgstr ""
  524. " reconexão a %s falhou\n"
  525. " "
  526. #, fuzzy
  527. msgid "Authentication failed"
  528. msgstr " Falha na autenticação"
  529. #, fuzzy, c-format
  530. msgid "Error %s creating directory %s"
  531. msgstr " %s executando mkdir em %s "
  532. #, fuzzy, c-format
  533. msgid "Error %s removing directory %s"
  534. msgstr " %s executando rmdir em %s "
  535. #, fuzzy, c-format
  536. msgid "%s opening remote file %s"
  537. msgstr " %s abrindo arquivo remoto %s "
  538. #, fuzzy, c-format
  539. msgid "%s removing remote file %s"
  540. msgstr " %s abrindo arquivo remoto %s "
  541. #, fuzzy, c-format
  542. msgid "%s renaming files\n"
  543. msgstr " %s renomeando arquivos\n"
  544. #, c-format
  545. msgid ""
  546. "Cannot open tar archive\n"
  547. "%s"
  548. msgstr ""
  549. "Impossível abrir arquivo tar\n"
  550. "%s"
  551. msgid "Inconsistent tar archive"
  552. msgstr "Arquivo inconsistente"
  553. msgid "Unexpected EOF on archive file"
  554. msgstr "Fim de arquivo inesperado"
  555. #, fuzzy, c-format
  556. msgid ""
  557. "%s\n"
  558. "doesn't look like a tar archive."
  559. msgstr ""
  560. "Hmm,...\n"
  561. "%s\n"
  562. "não parece ser um arquivo tar."
  563. #
  564. #, fuzzy
  565. msgid "undelfs: error"
  566. msgstr " undelfs: erro "
  567. #, fuzzy
  568. msgid "not enough memory"
  569. msgstr " memória insuficiente"
  570. #, fuzzy
  571. msgid "while allocating block buffer"
  572. msgstr " alocando buffer de blocos"
  573. #, fuzzy, c-format
  574. msgid "open_inode_scan: %d"
  575. msgstr " open_inode_scan: %d "
  576. #, fuzzy, c-format
  577. msgid "while starting inode scan %d"
  578. msgstr " iniciando varredura de inodes %d "
  579. #, c-format
  580. msgid "undelfs: loading deleted files information %d inodes"
  581. msgstr "undelfs: carregando informação de arquivos excluídos inodes %d"
  582. #, fuzzy, c-format
  583. msgid "while calling ext2_block_iterate %d"
  584. msgstr " chamando ext2_block_iterate %d "
  585. #, fuzzy
  586. msgid "no more memory while reallocating array"
  587. msgstr " sem memória durante a realocação do vetor "
  588. #, fuzzy, c-format
  589. msgid "while doing inode scan %d"
  590. msgstr " executando a varredura do inode %d"
  591. #
  592. #, fuzzy
  593. msgid "Ext2lib error"
  594. msgstr " Erro Ext2lib"
  595. #, fuzzy, c-format
  596. msgid "Cannot open file %s"
  597. msgstr " Impossível abrir arquivo %s"
  598. msgid "undelfs: reading inode bitmap..."
  599. msgstr "undelfs: lendo mapa de bits do inode..."
  600. #, fuzzy, c-format
  601. msgid ""
  602. "Cannot load inode bitmap from:\n"
  603. "%s"
  604. msgstr ""
  605. " Impossível carregar mapa de bits do inode de: \n"
  606. " %s \n"
  607. msgid "undelfs: reading block bitmap..."
  608. msgstr "undelfs: lendo mapa de bits do bloco..."
  609. #, fuzzy, c-format
  610. msgid ""
  611. "Cannot load block bitmap from:\n"
  612. "%s"
  613. msgstr ""
  614. " Impossível carregar mapa de bits do bloco de: \n"
  615. " %s \n"
  616. #, fuzzy
  617. msgid "vfs_info is not fs!"
  618. msgstr " vfs_info não é fs! "
  619. #, fuzzy
  620. msgid "You have to chdir to extract files first"
  621. msgstr " Execute chdir para extrair arquivos primeiro"
  622. #, fuzzy
  623. msgid "while iterating over blocks"
  624. msgstr " iterando sobre blocos"
  625. #, fuzzy, c-format
  626. msgid "Cannot open file \"%s\""
  627. msgstr " Impossível abrir arquivo %s"
  628. #
  629. msgid "Cannot parse:"
  630. msgstr "Não foi possível verificar:"
  631. msgid "More parsing errors will be ignored."
  632. msgstr "Mais erros de verificação serão ignorados."
  633. #
  634. msgid "Internal error:"
  635. msgstr "Erro interno:"
  636. msgid "Password:"
  637. msgstr "Senha:"
  638. #
  639. msgid "Changes to file lost"
  640. msgstr "Alterações no arquivo perdidas"
  641. msgid "&Cancel"
  642. msgstr "&Cancelar"
  643. msgid "&Set"
  644. msgstr "&Configurar"
  645. msgid "S&kip"
  646. msgstr "&Ignorar"
  647. msgid "Set &all"
  648. msgstr "Configurar &tudo"
  649. msgid "owner"
  650. msgstr "Dono"
  651. msgid "group"
  652. msgstr "grupo"
  653. msgid "other"
  654. msgstr "outro"
  655. msgid "On"
  656. msgstr "Ligado"
  657. msgid "Flag"
  658. msgstr "Parâmetro"
  659. msgid "Mode"
  660. msgstr "Modo"
  661. #, c-format
  662. msgid "%6d of %d"
  663. msgstr "%6d de %d"
  664. #, fuzzy
  665. msgid "Chown advanced command"
  666. msgstr " Comando Chown avançado"
  667. #, fuzzy, c-format
  668. msgid ""
  669. "Cannot chmod \"%s\"\n"
  670. "%s"
  671. msgstr ""
  672. "Impossível executar chmod \"%s\" \n"
  673. " %s "
  674. #, fuzzy, c-format
  675. msgid ""
  676. "Cannot chown \"%s\"\n"
  677. "%s"
  678. msgstr ""
  679. "Impossível executar chmod \"%s\" \n"
  680. " %s "
  681. msgid "Displays the current version"
  682. msgstr "Mostra a versão atual"
  683. #, fuzzy
  684. msgid "Print data directory"
  685. msgstr "Cria um novo diretório"
  686. #, fuzzy
  687. msgid "Print last working directory to specified file"
  688. msgstr "Imprime o diretório atual ao encerrar"
  689. msgid "Enables subshell support (default)"
  690. msgstr "Habilita suporte à sub interpretadores de comandos (padrão)"
  691. msgid "Disables subshell support"
  692. msgstr "Desabilita suporte à sub interpretadores de comandos"
  693. msgid "Log ftp dialog to specified file"
  694. msgstr "Acessar diálogo FTP para um arquivo específico"
  695. msgid "Set debug level"
  696. msgstr ""
  697. msgid "Launches the file viewer on a file"
  698. msgstr "Lança o visualizador de arquivos"
  699. msgid "Edits one file"
  700. msgstr "Edita um arquivo"
  701. msgid "Forces xterm features"
  702. msgstr "Força recursos do xterm"
  703. msgid "Disable mouse support in text version"
  704. msgstr "Desabilita suporte à mouse em modo texto"
  705. msgid "Tries to use termcap instead of terminfo"
  706. msgstr "tenta utilizar termcap ao invés de terminfo"
  707. msgid "To run on slow terminals"
  708. msgstr "Para execução em terminais lentos"
  709. msgid "Use stickchars to draw"
  710. msgstr "Utilizar caracteres de traço para desenhar"
  711. msgid "Resets soft keys on HP terminals"
  712. msgstr "Reinicializa teclas em terminais HP"
  713. #, fuzzy
  714. msgid "Load definitions of key bindings from specified file"
  715. msgstr "Acessar diálogo FTP para um arquivo específico"
  716. msgid "Requests to run in black and white"
  717. msgstr "Requer execução em preto e branco"
  718. msgid "Request to run in color mode"
  719. msgstr "Solicita para ser executado em cores"
  720. msgid "Specifies a color configuration"
  721. msgstr "Especifica uma configuração de cores"
  722. msgid "Show mc with specified skin"
  723. msgstr ""
  724. #. TRANSLATORS: don't translate keywords and names of colors
  725. #, fuzzy
  726. msgid ""
  727. "--colors KEYWORD={FORE},{BACK}\n"
  728. "\n"
  729. "{FORE} and {BACK} can be omitted, and the default will be used\n"
  730. "\n"
  731. "Keywords:\n"
  732. " Global: errors, reverse, gauge, viewunderline\n"
  733. " input, inputmark, inputunchanged, commandlinemark\n"
  734. " File display: normal, selected, marked, markselect\n"
  735. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  736. " errdhotfocus\n"
  737. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  738. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  739. " editlinestate\n"
  740. msgstr ""
  741. "--colors PAL-CHAVE={FRENTE},{FUNDO}\n"
  742. "\n"
  743. "{FRENTE} e {FUNDO} podem ser omitidos, e o default será usado\n"
  744. "\n"
  745. "Palavras-chave:\n"
  746. " Global: errors, reverse, gauge, input\n"
  747. " Arquivos : normal, selected, marked, markselect\n"
  748. " Diálogos : dnormal, dfocus, dhotnormal, dhotfocus\n"
  749. " Menus: menu, menuhot, menusel, menuhotsel\n"
  750. " Ajuda: helpnormal, helpitalic, helplink, helpslink\n"
  751. " Tipos de arq.:directory, executable, link, stalelink, device, special, "
  752. "core\n"
  753. "\n"
  754. "Cores:\n"
  755. " black, gray, red, brightred, green, brightgreen, brown,\n"
  756. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  757. " brightcyan, lightgray and white\n"
  758. "\n"
  759. msgid ""
  760. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  761. "\n"
  762. "Colors:\n"
  763. " black, gray, red, brightred, green, brightgreen, brown,\n"
  764. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  765. " brightcyan, lightgray and white\n"
  766. "\n"
  767. msgstr ""
  768. #, fuzzy
  769. msgid "Color options"
  770. msgstr "Configurar Opções"
  771. #, fuzzy
  772. msgid "+number"
  773. msgstr "Número do Inode"
  774. #, fuzzy
  775. msgid "[this_dir] [other_panel_dir]"
  776. msgstr "[sinalizadores] [este_dir] [outro dir_painel]\n"
  777. msgid "Set initial line number for the internal editor"
  778. msgstr ""
  779. #, fuzzy
  780. msgid ""
  781. "\n"
  782. "Please send any bug reports (including the output of `mc -V')\n"
  783. "as tickets at www.midnight-commander.org\n"
  784. msgstr ""
  785. "\n"
  786. "Por favor envie qualquer relatório de problemas (incluindo a saída de 'mn - "
  787. "V')\n"
  788. "a mc-devel@gnome.org\n"
  789. #, fuzzy, c-format
  790. msgid "GNU Midnight Commander %s\n"
  791. msgstr "GNU Midnight Commander"
  792. msgid "No arguments given to the viewer."
  793. msgstr ""
  794. msgid "There 2 files are required to diffviewer."
  795. msgstr ""
  796. #, fuzzy
  797. msgid "Main options"
  798. msgstr " Opções de painel "
  799. #, fuzzy
  800. msgid "Terminal options"
  801. msgstr " Outras opções "
  802. #, fuzzy
  803. msgid "Background process error"
  804. msgstr " Erro no processo de segundo plano "
  805. #, fuzzy
  806. msgid "Unknown error in child"
  807. msgstr " Erro desconhecido no processo filho "
  808. #, fuzzy
  809. msgid "Child died unexpectedly"
  810. msgstr " Processo filho morreu inesperadamente "
  811. #, fuzzy
  812. msgid "Background protocol error"
  813. msgstr " Erro no protocolo de segundo plano "
  814. #, fuzzy
  815. msgid "Reading failed"
  816. msgstr "<erro ao ler ligação>"
  817. #, fuzzy
  818. msgid ""
  819. "Background process sent us a request for more arguments\n"
  820. "than we can handle."
  821. msgstr ""
  822. " O processo de segundo plano enviou mais requisições do que \n"
  823. " é possível administrar. \n"
  824. msgid "&Full file list"
  825. msgstr "Lista &Completa"
  826. msgid "&Brief file list"
  827. msgstr "Lista &Breve"
  828. msgid "&Long file list"
  829. msgstr "Lista &Longa"
  830. msgid "&User defined:"
  831. msgstr "&Personalizada:"
  832. msgid "Listing mode"
  833. msgstr "Modo de Listagem"
  834. #, fuzzy
  835. msgid "User &mini status"
  836. msgstr "&Mini status de usuário"
  837. msgid "&OK"
  838. msgstr "&OK"
  839. msgid "&Reverse"
  840. msgstr "&Reversa"
  841. #, fuzzy
  842. msgid "Case sensi&tive"
  843. msgstr "sensível à &caixa (minúsc/maiusc)"
  844. msgid "Executable &first"
  845. msgstr ""
  846. msgid "Sort order"
  847. msgstr "Parâmetros de ordenamento"
  848. #, fuzzy
  849. msgid "Confirmation"
  850. msgstr " Confirmação "
  851. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix
  852. #. 2
  853. #, fuzzy
  854. msgid "Confirmation|&History cleanup"
  855. msgstr " Confirmação "
  856. #, fuzzy
  857. msgid "Confirmation|&Directory hotlist delete"
  858. msgstr "Lista de di&retórios C-\\"
  859. #, fuzzy
  860. msgid "Confirmation|E&xit"
  861. msgstr " Confirmação "
  862. #, fuzzy
  863. msgid "Confirmation|&Execute"
  864. msgstr " Confirmação "
  865. #, fuzzy
  866. msgid "Confirmation|O&verwrite"
  867. msgstr " confirmar &Sobrescrita"
  868. #, fuzzy
  869. msgid "Confirmation|&Delete"
  870. msgstr " Confirmação "
  871. #, fuzzy
  872. msgid "UTF-8 output"
  873. msgstr " Saída completa de 8 bits "
  874. msgid "Full 8 bits output"
  875. msgstr " Saída completa de 8 bits "
  876. msgid "ISO 8859-1"
  877. msgstr "ISO 8859-1"
  878. msgid "7 bits"
  879. msgstr "7 bits"
  880. msgid "F&ull 8 bits input"
  881. msgstr " Entrada completa de 8 bits "
  882. #, fuzzy
  883. msgid "Display bits"
  884. msgstr " Mostrar bits "
  885. #, fuzzy
  886. msgid "Other 8 bit"
  887. msgstr "Outro"
  888. msgid "Input / display codepage:"
  889. msgstr ""
  890. #, fuzzy
  891. msgid "&Select"
  892. msgstr " Selecionar "
  893. #, fuzzy
  894. msgid "Directory tree"
  895. msgstr "Arvore de &Diretórios"
  896. #, fuzzy
  897. msgid "Use passive mode over pro&xy"
  898. msgstr "Modo de &gravação..."
  899. #, fuzzy
  900. msgid "Use &passive mode"
  901. msgstr "Modo de &gravação..."
  902. msgid "&Use ~/.netrc"
  903. msgstr ""
  904. msgid "&Always use ftp proxy"
  905. msgstr "&Sempre utilizar proxy ftp"
  906. msgid "sec"
  907. msgstr "seg"
  908. msgid "ftpfs directory cache timeout:"
  909. msgstr "tempo limite do cache do diretório ftpfs"
  910. msgid "ftp anonymous password:"
  911. msgstr "Senha de ftp anônimo:"
  912. msgid "Timeout for freeing VFSs:"
  913. msgstr "Tempo limite para liberar VFS:"
  914. #, fuzzy
  915. msgid "Virtual File System Setting"
  916. msgstr " Configuração do Sistema de arquivos virtual "
  917. msgid "cd"
  918. msgstr "cd"
  919. msgid "Quick cd"
  920. msgstr " cd rápido "
  921. msgid "Symbolic link filename:"
  922. msgstr "Nome do arquivo de ligação simbólica"
  923. msgid "Existing filename (filename symlink will point to):"
  924. msgstr ""
  925. "Nome do arquivo existente (nome do arquivo para o qual a ligação irá "
  926. "apontar):"
  927. msgid "Symbolic link"
  928. msgstr "Ligação Simbólica"
  929. #, fuzzy
  930. msgid "Running"
  931. msgstr "Executando "
  932. msgid "Stopped"
  933. msgstr "Parado"
  934. msgid "&Stop"
  935. msgstr "&Parar"
  936. msgid "&Resume"
  937. msgstr "&Reiniciar"
  938. msgid "&Kill"
  939. msgstr "&Finalizar"
  940. msgid "Background Jobs"
  941. msgstr "Processos em segundo plano"
  942. msgid "Domain:"
  943. msgstr "Domínio:"
  944. msgid "Username:"
  945. msgstr " Nome de usuário:"
  946. #, c-format
  947. msgid "Password for \\\\%s\\%s"
  948. msgstr "Senha para \\\\%s\\%s"
  949. msgid "7-bit ASCII"
  950. msgstr ""
  951. #, fuzzy, c-format
  952. msgid "Cannot translate from %s to %s"
  953. msgstr ""
  954. " Impossível testar arquivo \"%s\" \n"
  955. " %s "
  956. msgid "execute/search by others"
  957. msgstr "execução/procura por outros"
  958. msgid "write by others"
  959. msgstr "escrita por outros"
  960. msgid "read by others"
  961. msgstr "leitura por outros"
  962. msgid "execute/search by group"
  963. msgstr "execução/procura por grupo"
  964. msgid "write by group"
  965. msgstr "escrita por grupo"
  966. msgid "read by group"
  967. msgstr "leitura por grupo"
  968. msgid "execute/search by owner"
  969. msgstr "execução/procura pelo dono"
  970. msgid "write by owner"
  971. msgstr "escrita pelo dono"
  972. msgid "read by owner"
  973. msgstr "leitura pelo dono"
  974. msgid "sticky bit"
  975. msgstr "bit de propriedade"
  976. msgid "set group ID on execution"
  977. msgstr "configurar identificação do grupo para execução"
  978. msgid "set user ID on execution"
  979. msgstr "configurar identificação do usuário para execução"
  980. msgid "C&lear marked"
  981. msgstr "Lim&peza marcada"
  982. msgid "S&et marked"
  983. msgstr "Configurar &Marcado"
  984. msgid "&Marked all"
  985. msgstr "Marcar &todos"
  986. msgid "Name"
  987. msgstr "Nome"
  988. msgid "Permissions (Octal)"
  989. msgstr "Permissões (Formato Octal)"
  990. msgid "Owner name"
  991. msgstr "Nome do dono"
  992. msgid "Group name"
  993. msgstr "Nome do grupo"
  994. msgid "Use SPACE to change"
  995. msgstr "Use ESPAÇO para mudar "
  996. msgid "an option, ARROW KEYS"
  997. msgstr " uma opção, SETAS"
  998. msgid "to move between options"
  999. msgstr "para mover entre opções"
  1000. msgid "and T or INS to mark"
  1001. msgstr "e T ou INS para marcar"
  1002. msgid "Chmod command"
  1003. msgstr "Comando chmod"
  1004. msgid "File"
  1005. msgstr "Arquivo"
  1006. msgid "Permission"
  1007. msgstr "Permissão"
  1008. msgid "Set &users"
  1009. msgstr "Configurar usuários"
  1010. msgid "Set &groups"
  1011. msgstr "COnfigurar &grupos"
  1012. msgid "Size"
  1013. msgstr "Tamanho"
  1014. #, fuzzy
  1015. msgid "Chown command"
  1016. msgstr " Comando chown "
  1017. msgid "<Unknown user>"
  1018. msgstr "<Usuário desconheciso>"
  1019. msgid "<Unknown group>"
  1020. msgstr "<Grupo desconhecido>"
  1021. #, fuzzy
  1022. msgid "User name"
  1023. msgstr " Nome de usuário "
  1024. msgid "Files tagged, want to cd?"
  1025. msgstr "Arquivos selecionados. Deseja mudar localização?"
  1026. msgid "Cannot change directory"
  1027. msgstr " Impossível mudar de diretório"
  1028. #, fuzzy
  1029. msgid "View file"
  1030. msgstr " Ver arquivo "
  1031. #, fuzzy
  1032. msgid "Filename:"
  1033. msgstr " Nome do arquivo: "
  1034. #, fuzzy
  1035. msgid "Filtered view"
  1036. msgstr " Visualização filtrada"
  1037. #, fuzzy
  1038. msgid "Filter command and arguments:"
  1039. msgstr "Comando de filtro e argumentos:"
  1040. msgid "Create a new Directory"
  1041. msgstr "Criar um novo diretório"
  1042. #, fuzzy
  1043. msgid "Enter directory name:"
  1044. msgstr " Entre com o nome do diretório:"
  1045. #, fuzzy
  1046. msgid "Filter"
  1047. msgstr " Filtro "
  1048. #, fuzzy
  1049. msgid "Set expression for filtering filenames"
  1050. msgstr " Informe expressão para os filtros"
  1051. msgid "&Using shell patterns"
  1052. msgstr "&Usando máscaras de ambiente de trabalho"
  1053. #, fuzzy
  1054. msgid "&Case sensitive"
  1055. msgstr "sensível à &caixa (minúsc/maiusc)"
  1056. #, fuzzy
  1057. msgid "&Files only"
  1058. msgstr "Apenas &tamanho"
  1059. #, fuzzy
  1060. msgid "Select"
  1061. msgstr " Selecionar "
  1062. #, fuzzy
  1063. msgid "Unselect"
  1064. msgstr " Cancelar seleção "
  1065. msgid "Extension file edit"
  1066. msgstr "Editar extensão de arquivos"
  1067. #, fuzzy
  1068. msgid "Which extension file you want to edit?"
  1069. msgstr " Que extensão de arquivo você quer editar? "
  1070. msgid "&User"
  1071. msgstr "&Usuário"
  1072. msgid "&System Wide"
  1073. msgstr "&Todo o sistema"
  1074. #
  1075. #, fuzzy
  1076. msgid "Menu edit"
  1077. msgstr " Editar menu"
  1078. #
  1079. #, fuzzy
  1080. msgid "Which menu file do you want to edit?"
  1081. msgstr " Que arquivo de menu quer editar? "
  1082. msgid "&Local"
  1083. msgstr "&Local"
  1084. msgid "Highlighting groups file edit"
  1085. msgstr ""
  1086. #, fuzzy
  1087. msgid "Which highlighting file you want to edit?"
  1088. msgstr " Que extensão de arquivo você quer editar? "
  1089. #, fuzzy
  1090. msgid "Compare directories"
  1091. msgstr " Comparar diretórios"
  1092. #, fuzzy
  1093. msgid "Select compare method:"
  1094. msgstr " Selecionar método de comparação: "
  1095. msgid "&Quick"
  1096. msgstr "&Rápido"
  1097. msgid "&Size only"
  1098. msgstr "Apenas &tamanho"
  1099. msgid "&Thorough"
  1100. msgstr "&Através"
  1101. #, fuzzy
  1102. msgid ""
  1103. "Both panels should be in the listing mode\n"
  1104. "to use this command"
  1105. msgstr ""
  1106. " Ambos os painéis devem estar no modo de lista para se usar este comando. "
  1107. #, fuzzy
  1108. msgid ""
  1109. "Not an xterm or Linux console;\n"
  1110. "the panels cannot be toggled."
  1111. msgstr ""
  1112. " Não é um xterm ou uma console Linux; \n"
  1113. " os painéis não podem ser acionados. "
  1114. #, fuzzy, c-format
  1115. msgid "Link %s to:"
  1116. msgstr "ligar: %s"
  1117. #, fuzzy
  1118. msgid "Link"
  1119. msgstr "&Ligações"
  1120. #, fuzzy, c-format
  1121. msgid "link: %s"
  1122. msgstr "ligar: %s"
  1123. #, fuzzy, c-format
  1124. msgid "symlink: %s"
  1125. msgstr " Ligação simbólica: %s"
  1126. #, fuzzy, c-format
  1127. msgid "Symlink `%s' points to:"
  1128. msgstr " Ligação simbólica `%s' aponta para:"
  1129. #, fuzzy
  1130. msgid "Edit symlink"
  1131. msgstr " Editar ligação simbólica "
  1132. #, fuzzy, c-format
  1133. msgid "edit symlink, unable to remove %s: %s"
  1134. msgstr " edição de ligação simbólica, impossível remover %s: %s"
  1135. #, fuzzy, c-format
  1136. msgid "edit symlink: %s"
  1137. msgstr " editar ligação simbólica: %s"
  1138. #, fuzzy, c-format
  1139. msgid "`%s' is not a symbolic link"
  1140. msgstr "Ligação Simbólica"
  1141. #, fuzzy, c-format
  1142. msgid "Cannot chdir to %s"
  1143. msgstr " Não é possível mudar o diretório para %s "
  1144. #, fuzzy
  1145. msgid "Enter machine name (F1 for details):"
  1146. msgstr " Informe nome da máquina (F1 para detalhes): "
  1147. #, fuzzy
  1148. msgid "Link to a remote machine"
  1149. msgstr " Ligação para um máquina remota "
  1150. #, fuzzy
  1151. msgid "FTP to machine"
  1152. msgstr " FTP para máquina "
  1153. #, fuzzy
  1154. msgid "Shell link to machine"
  1155. msgstr " Ligação SMB para máquina "
  1156. #, fuzzy
  1157. msgid "SMB link to machine"
  1158. msgstr " Ligação SMB para máquina "
  1159. #, fuzzy
  1160. msgid "Undelete files on an ext2 file system"
  1161. msgstr " Recupera arquivos em um sistema ext2 "
  1162. #, fuzzy
  1163. msgid ""
  1164. "Enter device (without /dev/) to undelete\n"
  1165. "files on: (F1 for details)"
  1166. msgstr ""
  1167. " Informe dispositivo (sem /dev/) para recuperar\n"
  1168. " arquivo: (F1 para detalhes)"
  1169. #, fuzzy
  1170. msgid "Setup"
  1171. msgstr " Configuração "
  1172. #, fuzzy, c-format
  1173. msgid "Setup saved to ~/%s"
  1174. msgstr "Configuração salva em ~/"
  1175. #, fuzzy, c-format
  1176. msgid ""
  1177. "Cannot chdir to \"%s\"\n"
  1178. "%s"
  1179. msgstr ""
  1180. " Impossível mudar diretório para \"%s\" \n"
  1181. " %s "
  1182. #, fuzzy
  1183. msgid "Cannot execute commands on non-local filesystems"
  1184. msgstr " Não é possível executar comandos em um sistema de arquivos remoto"
  1185. #, fuzzy
  1186. msgid "The shell is already running a command"
  1187. msgstr " O interpretador de comandos já está executando um comando"
  1188. msgid "&Dismiss"
  1189. msgstr "&Dispensar"
  1190. msgid "All charsets"
  1191. msgstr ""
  1192. #, fuzzy
  1193. msgid "&Whole words"
  1194. msgstr "&Somente palavras inteiras"
  1195. msgid "&Backwards"
  1196. msgstr "&Para trás"
  1197. #, fuzzy
  1198. msgid "Case &sensitive"
  1199. msgstr "sensível à &caixa (minúsc/maiusc)"
  1200. #, fuzzy
  1201. msgid "Enter search string:"
  1202. msgstr "Digite a expressão a ser pesquisada:"
  1203. msgid "Search"
  1204. msgstr "Procurar"
  1205. #, fuzzy
  1206. msgid "Search is disabled"
  1207. msgstr "Procurar"
  1208. #, fuzzy, c-format
  1209. msgid ""
  1210. "Cannot create temporary diff file\n"
  1211. "%s"
  1212. msgstr ""
  1213. "Impossível criar arquivo de comando temporário \n"
  1214. " %s "
  1215. #, fuzzy, c-format
  1216. msgid ""
  1217. "Cannot create backup file\n"
  1218. "%s%s\n"
  1219. "%s"
  1220. msgstr ""
  1221. " Impossível criar arquivo de destino \"%s\" \n"
  1222. " %s "
  1223. #, fuzzy, c-format
  1224. msgid ""
  1225. "Cannot create temporary merge file\n"
  1226. "%s"
  1227. msgstr ""
  1228. "Impossível criar arquivo de comando temporário \n"
  1229. " %s "
  1230. #, fuzzy
  1231. msgid "&Normal"
  1232. msgstr "Formatar"
  1233. msgid "&Fastest (Assume large files)"
  1234. msgstr ""
  1235. msgid "&Minimal (Find a smaller set of change)"
  1236. msgstr ""
  1237. msgid "Strip &trailing carriage return"
  1238. msgstr ""
  1239. msgid "Ignore all &whitespace"
  1240. msgstr ""
  1241. msgid "Ignore &space change"
  1242. msgstr ""
  1243. msgid "Ignore tab &expansion"
  1244. msgstr ""
  1245. msgid "&Ignore case"
  1246. msgstr ""
  1247. #, fuzzy
  1248. msgid "Diff extra options"
  1249. msgstr " Outras opções "
  1250. msgid "Diff algorithm"
  1251. msgstr ""
  1252. #, fuzzy
  1253. msgid "Diff Options"
  1254. msgstr " Opções "
  1255. #, fuzzy
  1256. msgid "Edit"
  1257. msgstr "Editar"
  1258. #, fuzzy
  1259. msgid "Edit is disabled"
  1260. msgstr "Editar &Menu de arquivo"
  1261. #, fuzzy
  1262. msgid "Goto line (left)"
  1263. msgstr " Ir Para a linha "
  1264. #, fuzzy
  1265. msgid "Goto line (right)"
  1266. msgstr " Ir Para a linha "
  1267. #, fuzzy
  1268. msgid "Enter line:"
  1269. msgstr "Informe a linha: "
  1270. msgid "ButtonBar|Help"
  1271. msgstr ""
  1272. msgid "ButtonBar|Save"
  1273. msgstr ""
  1274. msgid "ButtonBar|Edit"
  1275. msgstr ""
  1276. msgid "ButtonBar|Merge"
  1277. msgstr ""
  1278. msgid "ButtonBar|Search"
  1279. msgstr ""
  1280. msgid "ButtonBar|Options"
  1281. msgstr ""
  1282. msgid "ButtonBar|Quit"
  1283. msgstr ""
  1284. msgid "Quit"
  1285. msgstr "Sair"
  1286. #, fuzzy
  1287. msgid "File was modified, Save with exit?"
  1288. msgstr " O arquivo foi modificado. Salvar antes de Sair ?"
  1289. msgid "Two files are needed to compare"
  1290. msgstr ""
  1291. #, fuzzy
  1292. msgid "Cannot read directory contents"
  1293. msgstr " Impossível mudar de diretório"
  1294. #, fuzzy
  1295. msgid "Choose syntax highlighting"
  1296. msgstr "Ressaltar sinta&xe"
  1297. #, fuzzy
  1298. msgid "< Auto >"
  1299. msgstr " Sobre "
  1300. msgid "< Reload Current Syntax >"
  1301. msgstr ""
  1302. #
  1303. #, fuzzy, c-format
  1304. msgid "Cannot open %s for reading"
  1305. msgstr " Falha ao abrir pipe para leitura: "
  1306. msgid "Error"
  1307. msgstr "Erro"
  1308. #, fuzzy, c-format
  1309. msgid "Error reading %s"
  1310. msgstr "Erro ao ler script:"
  1311. #
  1312. #, fuzzy, c-format
  1313. msgid "Error reading from pipe: %s"
  1314. msgstr " Problema lendo do pipe:"
  1315. #
  1316. #, fuzzy, c-format
  1317. msgid "Cannot open pipe for reading: %s"
  1318. msgstr " Falha ao abrir pipe para leitura: "
  1319. #, fuzzy, c-format
  1320. msgid "Cannot get size/permissions for %s"
  1321. msgstr " Impossível obter informações de tamanho/permissões no arquivo: "
  1322. #, fuzzy, c-format
  1323. msgid "\"%s\" is not a regular file"
  1324. msgstr " Impossível visualizar: não é arquivo regular "
  1325. #, fuzzy, c-format
  1326. msgid "File \"%s\" is too large"
  1327. msgstr " Arquivo grande demais: "
  1328. #, fuzzy
  1329. msgid "About"
  1330. msgstr " Sobre "
  1331. msgid ""
  1332. "\n"
  1333. " Cooledit v3.11.5\n"
  1334. "\n"
  1335. " Copyright (C) 1996 the Free Software Foundation\n"
  1336. "\n"
  1337. " A user friendly text editor written\n"
  1338. " for the Midnight Commander.\n"
  1339. msgstr ""
  1340. "\n"
  1341. " Cooledit v3.11.5\n"
  1342. "\n"
  1343. " Copyright (C) 1996 the Free Software Foundation\n"
  1344. "\n"
  1345. " Um editor de texto fácil escrito para o \n"
  1346. " Midnight Commander.\n"
  1347. msgid "Macro recursion is too deep"
  1348. msgstr ""
  1349. msgid "File has hard-links. Detach before saving?"
  1350. msgstr ""
  1351. msgid "The file has been modified in the meantime. Save anyway?"
  1352. msgstr ""
  1353. #
  1354. #, fuzzy, c-format
  1355. msgid "Error writing to pipe: %s"
  1356. msgstr " Erro escrevendo no pipe:"
  1357. #
  1358. #, fuzzy, c-format
  1359. msgid "Cannot open pipe for writing: %s"
  1360. msgstr " Falha ao abrir apipe para escrita:"
  1361. #
  1362. #, fuzzy, c-format
  1363. msgid "Cannot open file for writing: %s"
  1364. msgstr " Falha ao abrir apipe para escrita:"
  1365. #, fuzzy
  1366. msgid "&Quick save"
  1367. msgstr "Salvar rapidamente"
  1368. #, fuzzy
  1369. msgid "&Safe save"
  1370. msgstr "Salvar com segurança"
  1371. msgid "&Do backups with following extension:"
  1372. msgstr ""
  1373. msgid "Check &POSIX new line"
  1374. msgstr ""
  1375. #, fuzzy
  1376. msgid "Edit Save Mode"
  1377. msgstr " Editar modo de salvamento "
  1378. msgid "The file you are saving is not finished with a newline"
  1379. msgstr ""
  1380. #, fuzzy
  1381. msgid "C&ontinue"
  1382. msgstr "Continuar"
  1383. msgid "&Do not change"
  1384. msgstr ""
  1385. msgid "&Unix format (LF)"
  1386. msgstr ""
  1387. msgid "&Windows/DOS format (CR LF)"
  1388. msgstr ""
  1389. msgid "&Macintosh format (CR)"
  1390. msgstr ""
  1391. msgid "Change line breaks to:"
  1392. msgstr ""
  1393. #, fuzzy
  1394. msgid "Enter file name:"
  1395. msgstr " Informe nome do arquivo: "
  1396. #, fuzzy
  1397. msgid "Save As"
  1398. msgstr " Salvar Como "
  1399. #, fuzzy
  1400. msgid "A file already exists with this name"
  1401. msgstr " Um arquivo com esse nome já existe. "
  1402. #, fuzzy
  1403. msgid "&Overwrite"
  1404. msgstr "Sobrescrever"
  1405. #, fuzzy
  1406. msgid "Save as"
  1407. msgstr "&Gravar configuração"
  1408. #, fuzzy
  1409. msgid "Cannot save file"
  1410. msgstr " Erro ao tentar gravar arquivo. "
  1411. #, fuzzy
  1412. msgid "Delete macro"
  1413. msgstr " Apagar macro "
  1414. #, fuzzy
  1415. msgid "Cannot open temp file"
  1416. msgstr " Erro ao abrir arquivo temporário "
  1417. #, fuzzy
  1418. msgid "Cannot open macro file"
  1419. msgstr " Erro ao tentar abrir arquivo de macros "
  1420. #, fuzzy
  1421. msgid "Cannot overwrite macro file"
  1422. msgstr " Erro ao sobrescrever arquivo de macro "
  1423. #, fuzzy
  1424. msgid "Save macro"
  1425. msgstr " Salvar macro "
  1426. #, fuzzy
  1427. msgid "Press the macro's new hotkey:"
  1428. msgstr " Pressione a nova tecla de atalho para a macro: "
  1429. #, fuzzy
  1430. msgid "Press macro hotkey:"
  1431. msgstr " Pressionar a tecla de atalho da macro:"
  1432. #, fuzzy
  1433. msgid "Load macro"
  1434. msgstr " Carregar macro "
  1435. #, fuzzy, c-format
  1436. msgid "Confirm save file: \"%s\""
  1437. msgstr " Confirma gravação de arquivo? : "
  1438. #, fuzzy
  1439. msgid "Save file"
  1440. msgstr " Salvar arquivo "
  1441. msgid "&Save"
  1442. msgstr "&Gravar"
  1443. #, fuzzy
  1444. msgid ""
  1445. "Current text was modified without a file save.\n"
  1446. "Continue discards these changes"
  1447. msgstr ""
  1448. " O texto atual foi modificado e não foi salvo. \n"
  1449. " Continuar descartará as modificações. "
  1450. #, fuzzy
  1451. msgid "Syntax file edit"
  1452. msgstr "Editar &Menu de arquivo"
  1453. #, fuzzy
  1454. msgid "Which syntax file you want to edit?"
  1455. msgstr " Que extensão de arquivo você quer editar? "
  1456. #, fuzzy
  1457. msgid "Load"
  1458. msgstr " Carregar "
  1459. #, fuzzy
  1460. msgid "Block is large, you may not be able to undo this action"
  1461. msgstr " Bloco é muito grande, talvez esta ação não possa ser desfeita"
  1462. #, fuzzy
  1463. msgid "Replace"
  1464. msgstr "&Substituir"
  1465. #, fuzzy, c-format
  1466. msgid "%ld replacements made"
  1467. msgstr " %ld substituições feitas "
  1468. #, fuzzy
  1469. msgid "File was modified, save with exit?"
  1470. msgstr " O arquivo foi modificado. Salvar antes de Sair ?"
  1471. #, fuzzy
  1472. msgid "&Cancel quit"
  1473. msgstr " Cancelar a saída "
  1474. msgid "This function is not implemented"
  1475. msgstr ""
  1476. #, fuzzy
  1477. msgid "Copy to clipboard"
  1478. msgstr " Copia para a área de transferência "
  1479. #, fuzzy
  1480. msgid "Unable to save to file"
  1481. msgstr " Impossível de salvar o arquivo "
  1482. #, fuzzy
  1483. msgid "Cut to clipboard"
  1484. msgstr " Corta para a área de transferência "
  1485. #, fuzzy
  1486. msgid "Goto line"
  1487. msgstr " Ir Para a linha "
  1488. #, fuzzy
  1489. msgid "Save block"
  1490. msgstr " Salvar Bloco "
  1491. #, fuzzy
  1492. msgid "Insert file"
  1493. msgstr "&Inserir arquivo F15"
  1494. #, fuzzy
  1495. msgid "Cannot insert file"
  1496. msgstr " Erro ao tentar inserir arquivo "
  1497. #, fuzzy
  1498. msgid "Sort block"
  1499. msgstr " Ordenar Bloco"
  1500. #, fuzzy
  1501. msgid "You must first highlight a block of text"
  1502. msgstr "É preciso selecionar um bloco de texto primeiro"
  1503. #, fuzzy
  1504. msgid "Run sort"
  1505. msgstr "Ordenar"
  1506. #, fuzzy
  1507. msgid "Enter sort options (see manpage) separated by whitespace:"
  1508. msgstr ""
  1509. " Informe as opções de ordenamento (veja a página de manual) separas por "
  1510. "espaços "
  1511. #, fuzzy
  1512. msgid "Sort"
  1513. msgstr " Ordenar "
  1514. #, fuzzy
  1515. msgid "Cannot execute sort command"
  1516. msgstr " Erro ao tentar ordenar"
  1517. #, fuzzy, c-format
  1518. msgid "Sort returned non-zero: %s"
  1519. msgstr " Ordenamento retornou um erro: "
  1520. msgid "Paste output of external command"
  1521. msgstr ""
  1522. #, fuzzy
  1523. msgid "Enter shell command(s):"
  1524. msgstr " Informe o título do comando: "
  1525. #, fuzzy
  1526. msgid "External command"
  1527. msgstr "Outro comando"
  1528. #, fuzzy
  1529. msgid "Cannot execute command"
  1530. msgstr " Erro ao tentar ordenar"
  1531. msgid "Error creating script:"
  1532. msgstr "Erro ao criar script:"
  1533. msgid "Error reading script:"
  1534. msgstr "Erro ao ler script:"
  1535. msgid "Error closing script:"
  1536. msgstr "Erro ao fechar script:"
  1537. msgid "Script created:"
  1538. msgstr "Script criado:"
  1539. #
  1540. msgid "Process block"
  1541. msgstr " Processar bloco "
  1542. #, fuzzy
  1543. msgid "Error calling program"
  1544. msgstr "Erro ao fechar script:"
  1545. #, fuzzy
  1546. msgid "Copies to"
  1547. msgstr " Copias para "
  1548. #, fuzzy
  1549. msgid "Subject"
  1550. msgstr " Assunto "
  1551. #, fuzzy
  1552. msgid "To"
  1553. msgstr " Para"
  1554. #, fuzzy
  1555. msgid "mail -s <subject> -c <cc> <to>"
  1556. msgstr " mail -s <assunto> -c <com cópia> <para>"
  1557. #, fuzzy
  1558. msgid "Mail"
  1559. msgstr " Correio "
  1560. #, fuzzy
  1561. msgid "Insert literal"
  1562. msgstr "inserir &Literal... C-q"
  1563. #, fuzzy
  1564. msgid "Press any key:"
  1565. msgstr " Pressione qualquer tecla: "
  1566. #, fuzzy
  1567. msgid "Execute macro"
  1568. msgstr "&Executar macro... C-a, TECLA"
  1569. #, fuzzy
  1570. msgid ""
  1571. "Current text was modified without a file save\n"
  1572. "Continue discards these changes"
  1573. msgstr ""
  1574. " O texto atual foi modificado e não foi salvo. \n"
  1575. " Continuar descartará as modificações. "
  1576. #, fuzzy
  1577. msgid "In se&lection"
  1578. msgstr "Seleçã&O reversa M-*"
  1579. #, fuzzy
  1580. msgid "Enter replacement string:"
  1581. msgstr "Digite a expressão de substituição:"
  1582. #, fuzzy
  1583. msgid "&Find all"
  1584. msgstr "Procurar arquivo"
  1585. msgid "Cancel"
  1586. msgstr "Cancelar"
  1587. #, fuzzy
  1588. msgid ""
  1589. "Current text was modified without a file save.\n"
  1590. "Continue discards these changes."
  1591. msgstr ""
  1592. " O texto atual foi modificado e não foi salvo. \n"
  1593. " Continuar descartará as modificações. "
  1594. msgid "&Skip"
  1595. msgstr "&Ignorar"
  1596. msgid "A&ll"
  1597. msgstr " Tod&os "
  1598. msgid "&Replace"
  1599. msgstr "&Substituir"
  1600. #, fuzzy
  1601. msgid "Replace with:"
  1602. msgstr " Substituir com: "
  1603. #, fuzzy
  1604. msgid "Confirm replace"
  1605. msgstr " Confirme substituição "
  1606. #, c-format
  1607. msgid ""
  1608. "File \"%s\" is already being edited.\n"
  1609. "User: %s\n"
  1610. "Process ID: %d"
  1611. msgstr ""
  1612. msgid "File locked"
  1613. msgstr ""
  1614. msgid "&Grab lock"
  1615. msgstr ""
  1616. msgid "&Ignore lock"
  1617. msgstr ""
  1618. #, fuzzy
  1619. msgid "&Open file..."
  1620. msgstr "Abrir com..."
  1621. #, fuzzy
  1622. msgid "&New"
  1623. msgstr "&Nome"
  1624. #, fuzzy
  1625. msgid "Save &as..."
  1626. msgstr "&Gravar configuração"
  1627. #, fuzzy
  1628. msgid "&Insert file..."
  1629. msgstr "&Inserir arquivo F15"
  1630. #, fuzzy
  1631. msgid "Cop&y to file..."
  1632. msgstr "copiar para &Arquivo C-f"
  1633. #
  1634. #, fuzzy
  1635. msgid "&User menu..."
  1636. msgstr "Menu de &Usuário... F11"
  1637. #, fuzzy
  1638. msgid "A&bout..."
  1639. msgstr "&Layout..."
  1640. msgid "&Quit"
  1641. msgstr "&Encerrar"
  1642. msgid "&Undo"
  1643. msgstr ""
  1644. #, fuzzy
  1645. msgid "&Toggle ins/overw"
  1646. msgstr "Alternar &Inserir/sobrescrever Ins"
  1647. #, fuzzy
  1648. msgid "To&ggle mark"
  1649. msgstr "Lim&peza marcada"
  1650. msgid "&Mark columns"
  1651. msgstr ""
  1652. #, fuzzy
  1653. msgid "Mark &all"
  1654. msgstr "Marcar &todos"
  1655. msgid "Unmar&k"
  1656. msgstr ""
  1657. #, fuzzy
  1658. msgid "Cop&y"
  1659. msgstr "Copiar"
  1660. #, fuzzy
  1661. msgid "Mo&ve"
  1662. msgstr "Mover"
  1663. msgid "&Delete"
  1664. msgstr "&Apagar"
  1665. #, fuzzy
  1666. msgid "Co&py to clipfile"
  1667. msgstr "copiar para &Arquivo..."
  1668. #, fuzzy
  1669. msgid "&Cut to clipfile"
  1670. msgstr "Ir para a linha... M-l"
  1671. #, fuzzy
  1672. msgid "Pa&ste from clipfile"
  1673. msgstr "Ir para a linha... M-l"
  1674. msgid "&Beginning"
  1675. msgstr ""
  1676. #, fuzzy
  1677. msgid "&End"
  1678. msgstr "&Inode"
  1679. #, fuzzy
  1680. msgid "&Search..."
  1681. msgstr "Procurar"
  1682. #, fuzzy
  1683. msgid "Search &again"
  1684. msgstr "procurar &Novamente F17"
  1685. #, fuzzy
  1686. msgid "&Replace..."
  1687. msgstr "&Substituir"
  1688. #, fuzzy
  1689. msgid "&Toggle bookmark"
  1690. msgstr "&Alternar Marca F3"
  1691. #, fuzzy
  1692. msgid "&Next bookmark"
  1693. msgstr "Configurar &Marcado"
  1694. #, fuzzy
  1695. msgid "&Prev bookmark"
  1696. msgstr "orde&Nar M-t"
  1697. #, fuzzy
  1698. msgid "&Flush bookmark"
  1699. msgstr "&Correio... "
  1700. #, fuzzy
  1701. msgid "&Go to line..."
  1702. msgstr " Ir Para a linha "
  1703. #, fuzzy
  1704. msgid "&Toggle line state"
  1705. msgstr "&Alternar Marca F3"
  1706. #, fuzzy
  1707. msgid "Go to matching &bracket"
  1708. msgstr "ir para o Colchete correspondente M-b"
  1709. #, fuzzy
  1710. msgid "&Find declaration"
  1711. msgstr "A busca foi rejeitada após a atualização"
  1712. #, fuzzy
  1713. msgid "Back from &declaration"
  1714. msgstr "A busca foi rejeitada após a atualização"
  1715. #, fuzzy
  1716. msgid "For&ward to declaration"
  1717. msgstr "A busca foi rejeitada após a atualização"
  1718. #, fuzzy
  1719. msgid "Encod&ing..."
  1720. msgstr "orde&Nar M-t"
  1721. #, fuzzy
  1722. msgid "&Refresh screen"
  1723. msgstr "&Atualizar tela C-l"
  1724. #, fuzzy
  1725. msgid "&Start record macro"
  1726. msgstr "&Iniciar gravação de macro C-r"
  1727. #, fuzzy
  1728. msgid "Finis&h record macro..."
  1729. msgstr "&Terminar gravação de macro... C-r"
  1730. #, fuzzy
  1731. msgid "&Execute macro..."
  1732. msgstr "&Executar macro... C-a, TECLA"
  1733. #, fuzzy
  1734. msgid "Delete macr&o..."
  1735. msgstr " Apagar macro "
  1736. #, fuzzy
  1737. msgid "'ispell' s&pell check"
  1738. msgstr "'ispell' checar Ortografia C-p"
  1739. #, fuzzy
  1740. msgid "&Mail..."
  1741. msgstr "&Filtro..."
  1742. #, fuzzy
  1743. msgid "Insert &literal..."
  1744. msgstr "inserir &Literal... C-q"
  1745. #, fuzzy
  1746. msgid "Insert &date/time"
  1747. msgstr "inserir &Data/hora "
  1748. #, fuzzy
  1749. msgid "&Format paragraph"
  1750. msgstr "formatar p&arágrafo M-p"
  1751. #, fuzzy
  1752. msgid "&Sort..."
  1753. msgstr "&Ordem..."
  1754. msgid "&Paste output of..."
  1755. msgstr ""
  1756. #
  1757. #, fuzzy
  1758. msgid "&External formatter"
  1759. msgstr "Formatador E&xterno F19"
  1760. #, fuzzy
  1761. msgid "&General..."
  1762. msgstr "&Geral... "
  1763. #, fuzzy
  1764. msgid "Save &mode..."
  1765. msgstr "Modo de &gravação..."
  1766. #, fuzzy
  1767. msgid "Learn &keys..."
  1768. msgstr "aprender &Teclas..."
  1769. #, fuzzy
  1770. msgid "Syntax &highlighting..."
  1771. msgstr "Ressaltar sinta&xe"
  1772. #, fuzzy
  1773. msgid "S&yntax file"
  1774. msgstr "Editar &Menu de arquivo"
  1775. #, fuzzy
  1776. msgid "&Menu file"
  1777. msgstr "Editar &Menu de arquivo"
  1778. msgid "&Save setup"
  1779. msgstr "&Gravar configuração"
  1780. #, fuzzy
  1781. msgid "&File"
  1782. msgstr "Arquivo"
  1783. #, fuzzy
  1784. msgid "&Edit"
  1785. msgstr "Editar"
  1786. #, fuzzy
  1787. msgid "&Search"
  1788. msgstr "Procurar"
  1789. #, fuzzy
  1790. msgid "&Command"
  1791. msgstr "Comando"
  1792. #, fuzzy
  1793. msgid "For&mat"
  1794. msgstr "Formatar"
  1795. #, fuzzy
  1796. msgid "&Options"
  1797. msgstr " &Opções "
  1798. msgid "None"
  1799. msgstr "Nenhum"
  1800. msgid "Dynamic paragraphing"
  1801. msgstr "Paragrafos dinâmicos"
  1802. msgid "Type writer wrap"
  1803. msgstr "Empacotar texto"
  1804. #, fuzzy
  1805. msgid "Word wrap line length:"
  1806. msgstr "Tamanho da linha: "
  1807. msgid "Cursor beyond end of line"
  1808. msgstr ""
  1809. #, fuzzy
  1810. msgid "Pers&istent selection"
  1811. msgstr "Seleçã&O reversa M-*"
  1812. msgid "Synta&x highlighting"
  1813. msgstr "Ressaltar sinta&xe"
  1814. msgid "Visible tabs"
  1815. msgstr ""
  1816. msgid "Visible trailing spaces"
  1817. msgstr ""
  1818. #, fuzzy
  1819. msgid "Save file &position"
  1820. msgstr " Salvar arquivo "
  1821. msgid "Confir&m before saving"
  1822. msgstr "confir&Mar antes de Salvar"
  1823. msgid "&Return does autoindent"
  1824. msgstr "&Return faz auto identação"
  1825. #, fuzzy
  1826. msgid "Tab spacing:"
  1827. msgstr "Tabulação : "
  1828. msgid "Fill tabs with &spaces"
  1829. msgstr "preencher tabulação com e&Spaços"
  1830. msgid "&Backspace through tabs"
  1831. msgstr "&Retorna através das tabulações"
  1832. msgid "&Fake half tabs"
  1833. msgstr "Meias tabulações &falsas"
  1834. msgid "Wrap mode"
  1835. msgstr "Modo Empacotado"
  1836. #, fuzzy
  1837. msgid "Editor options"
  1838. msgstr " Opções do editor "
  1839. msgid "ButtonBar|Mark"
  1840. msgstr ""
  1841. msgid "ButtonBar|Replac"
  1842. msgstr ""
  1843. msgid "ButtonBar|Copy"
  1844. msgstr ""
  1845. msgid "ButtonBar|Move"
  1846. msgstr ""
  1847. msgid "ButtonBar|Delete"
  1848. msgstr ""
  1849. msgid "ButtonBar|PullDn"
  1850. msgstr ""
  1851. #, fuzzy
  1852. msgid "Load syntax file"
  1853. msgstr " Carregar arquivo de sintaxe "
  1854. #, fuzzy, c-format
  1855. msgid ""
  1856. "Cannot open file %s\n"
  1857. "%s"
  1858. msgstr ""
  1859. " Impossível abrir arquivo %s \n"
  1860. " %s "
  1861. #, fuzzy, c-format
  1862. msgid "Error in file %s on line %d"
  1863. msgstr " Erro de sintaxe no arquivo %s na linha %d "
  1864. #, fuzzy
  1865. msgid ""
  1866. "The Commander can't change to the directory that\n"
  1867. "the subshell claims you are in. Perhaps you have\n"
  1868. "deleted your working directory, or given yourself\n"
  1869. "extra access permissions with the \"su\" command?"
  1870. msgstr ""
  1871. " O Commander não pode mudar para o diretório \n"
  1872. " que o interpretador aponta. Talvez ele tenha \n"
  1873. " sido pagado, ou um comando de\n"
  1874. " permissões extras foi executado, como \"su\" ? "
  1875. #, c-format
  1876. msgid "Type `exit' to return to the Midnight Commander"
  1877. msgstr "digite 'exit' para retornar ao Midnight commander "
  1878. #, fuzzy, c-format
  1879. msgid "Cannot fetch a local copy of %s"
  1880. msgstr " Não foi possível editar uma cópia local de %s "
  1881. #, fuzzy, c-format
  1882. msgid ""
  1883. "Cannot create temporary command file\n"
  1884. "%s"
  1885. msgstr ""
  1886. "Impossível criar arquivo de comando temporário \n"
  1887. " %s "
  1888. #, fuzzy
  1889. msgid "Parameter"
  1890. msgstr " Parâmetro "
  1891. #, fuzzy, c-format
  1892. msgid " %s%s file error"
  1893. msgstr " erro de arquivo "
  1894. #, fuzzy, c-format
  1895. msgid ""
  1896. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1897. "the installation failed. Please fetch a fresh copy from the Midnight "
  1898. "Commander package."
  1899. msgstr ""
  1900. "Arquivo mc.ext foi alterado na\n"
  1901. "versão 3.0. Parece que a instalação\n"
  1902. "faihou. Por favor consiga uma nova cópia do pacote\n"
  1903. "Midnight Commander ou baixe de\n"
  1904. "ftp://ftp.nuclecu.unam.mx."
  1905. #, fuzzy, c-format
  1906. msgid "~/%s file error"
  1907. msgstr " erro de arquivo "
  1908. #, fuzzy, c-format
  1909. msgid ""
  1910. "The format of the ~/%s file has changed with version 3.0. You may either "
  1911. "want to copy it from %smc.ext or use that file as an example of how to write "
  1912. "it."
  1913. msgstr ""
  1914. "Arquivo mc.ext foi alterado na\n"
  1915. "versão 3.0. Parece que a instalação\n"
  1916. "faihou. Por favor consiga uma nova cópia do pacote\n"
  1917. "Midnight Commander ou baixe de\n"
  1918. "ftp://ftp.nuclecu.unam.mx."
  1919. msgid "DialogTitle|Copy"
  1920. msgstr ""
  1921. msgid "DialogTitle|Move"
  1922. msgstr ""
  1923. msgid "DialogTitle|Delete"
  1924. msgstr ""
  1925. #, fuzzy
  1926. msgid "Cannot make the hardlink"
  1927. msgstr " Impossível fazer a ligação (direta) "
  1928. #, fuzzy, c-format
  1929. msgid ""
  1930. "Cannot read source link \"%s\"\n"
  1931. "%s"
  1932. msgstr ""
  1933. " Não é possível ler ligação de origem \"%s\" \n"
  1934. " %s "
  1935. #, fuzzy
  1936. msgid ""
  1937. "Cannot make stable symlinks acrossnon-local filesystems:\n"
  1938. "\n"
  1939. "Option Stable Symlinks will be disabled"
  1940. msgstr ""
  1941. " Impossível fazer ligações simbólicas estáveis entre sistemas de arquivo "
  1942. "não locais: \n"
  1943. "\n"
  1944. " Opção de ligações simbólicas estáveis será desligada. "
  1945. #, fuzzy, c-format
  1946. msgid ""
  1947. "Cannot create target symlink \"%s\"\n"
  1948. "%s"
  1949. msgstr ""
  1950. " Impossível criar ligação simbólica \"%s\" \n"
  1951. " %s "
  1952. msgid "&Abort"
  1953. msgstr "C&Ancelar"
  1954. #, fuzzy, c-format
  1955. msgid ""
  1956. "Cannot overwrite directory\"%s\"\n"
  1957. "%s"
  1958. msgstr ""
  1959. " Impossível regravar diretório \"%s\" \n"
  1960. " %s "
  1961. #, fuzzy, c-format
  1962. msgid ""
  1963. "Cannot stat source file \"%s\"\n"
  1964. "%s"
  1965. msgstr ""
  1966. " Não é possível testar arquivo de origem \"%s\" \n"
  1967. " %s "
  1968. #, fuzzy, c-format
  1969. msgid ""
  1970. "\"%s\"\n"
  1971. "and\n"
  1972. "\"%s\"\n"
  1973. "are the same file"
  1974. msgstr " '%s' e '%s' são o mesmo arquivo"
  1975. #, fuzzy, c-format
  1976. msgid ""
  1977. "Cannot create special file \"%s\"\n"
  1978. "%s"
  1979. msgstr ""
  1980. " Impossível criar arquivo especial \"%s\" \n"
  1981. " %s "
  1982. #, fuzzy, c-format
  1983. msgid ""
  1984. "Cannot chown target file \"%s\"\n"
  1985. "%s"
  1986. msgstr ""
  1987. " Impossível mudar dono do arquivo \"%s\" \n"
  1988. " %s "
  1989. #, fuzzy, c-format
  1990. msgid ""
  1991. "Cannot chmod target file \"%s\"\n"
  1992. "%s"
  1993. msgstr ""
  1994. " Impossível alterar permissões do arquivo \"%s\" \n"
  1995. " %s "
  1996. #, fuzzy, c-format
  1997. msgid ""
  1998. "Cannot open source file \"%s\"\n"
  1999. "%s"
  2000. msgstr ""
  2001. " Impossível abrir arquivo de origem \"%s\" \n"
  2002. " %s "
  2003. #, fuzzy
  2004. msgid "Reget failed, about to overwrite file"
  2005. msgstr " Receber novamente falhou, arquivo será sobrescrito"
  2006. #, fuzzy, c-format
  2007. msgid ""
  2008. "Cannot fstat source file \"%s\"\n"
  2009. "%s"
  2010. msgstr ""
  2011. " Não é possível executar fstat no arquivo de origem \"%s\" \n"
  2012. " %s "
  2013. #, fuzzy, c-format
  2014. msgid ""
  2015. "Cannot create target file \"%s\"\n"
  2016. "%s"
  2017. msgstr ""
  2018. " Impossível criar arquivo de destino \"%s\" \n"
  2019. " %s "
  2020. #, fuzzy, c-format
  2021. msgid ""
  2022. "Cannot fstat target file \"%s\"\n"
  2023. "%s"
  2024. msgstr ""
  2025. " Impossível executar fstat no arquivo de origem \"%s\" \n"
  2026. " %s "
  2027. #, fuzzy, c-format
  2028. msgid ""
  2029. "Cannot read source file\"%s\"\n"
  2030. "%s"
  2031. msgstr ""
  2032. " Impossível ler arquivo de origem \"%s\" \n"
  2033. " %s "
  2034. #, fuzzy, c-format
  2035. msgid ""
  2036. "Cannot write target file \"%s\"\n"
  2037. "%s"
  2038. msgstr ""
  2039. " Impossível escrever arquivo de destino %s\" \n"
  2040. " %s "
  2041. msgid "(stalled)"
  2042. msgstr "(parado)"
  2043. #, fuzzy, c-format
  2044. msgid ""
  2045. "Cannot close source file \"%s\"\n"
  2046. "%s"
  2047. msgstr ""
  2048. " Impossível fechar arquivo de origem \"%s\" \n"
  2049. " %s "
  2050. #, fuzzy, c-format
  2051. msgid ""
  2052. "Cannot close target file \"%s\"\n"
  2053. "%s"
  2054. msgstr ""
  2055. " Impossível fechar arquivo de destino \"%s\" \n"
  2056. " %s "
  2057. msgid "Incomplete file was retrieved. Keep it?"
  2058. msgstr "Arquivo incompleto foi recuperado. Manter ?"
  2059. msgid "&Keep"
  2060. msgstr "&Manter"
  2061. #, fuzzy, c-format
  2062. msgid ""
  2063. "Cannot stat source directory \"%s\"\n"
  2064. "%s"
  2065. msgstr ""
  2066. " Não foi possível testar diretório de origem \"%s\" \n"
  2067. " %s "
  2068. #, fuzzy, c-format
  2069. msgid ""
  2070. "Source \"%s\" is not a directory\n"
  2071. "%s"
  2072. msgstr ""
  2073. " Diretório de origem \"%s\" não é um diretório \n"
  2074. " %s "
  2075. #, fuzzy, c-format
  2076. msgid ""
  2077. "Cannot copy cyclic symbolic link\n"
  2078. "\"%s\""
  2079. msgstr ""
  2080. " Impossível copiar ligações simbólicas cíclicas \n"
  2081. " `%s' "
  2082. #, fuzzy, c-format
  2083. msgid ""
  2084. "Destination \"%s\" must be a directory\n"
  2085. "%s"
  2086. msgstr ""
  2087. " Destino \"%s\" deve ser um diretório \n"
  2088. " %s "
  2089. #, fuzzy, c-format
  2090. msgid ""
  2091. "Cannot create target directory \"%s\"\n"
  2092. "%s"
  2093. msgstr ""
  2094. " Impossível criar diretório de destino \"%s\" \n"
  2095. " %s "
  2096. #, fuzzy, c-format
  2097. msgid ""
  2098. "Cannot chown target directory \"%s\"\n"
  2099. "%s"
  2100. msgstr ""
  2101. " Impossível mudar dono do diretório \"%s\" \n"
  2102. " %s "
  2103. #, fuzzy, c-format
  2104. msgid ""
  2105. "Cannot stat file \"%s\"\n"
  2106. "%s"
  2107. msgstr ""
  2108. " Impossível testar arquivo \"%s\" \n"
  2109. " %s "
  2110. #, fuzzy, c-format
  2111. msgid "Cannot overwrite directory \"%s\""
  2112. msgstr " Impossível sobrescrever diretório \"%s\" %s "
  2113. #, fuzzy, c-format
  2114. msgid ""
  2115. "Cannot move file \"%s\" to \"%s\"\n"
  2116. "%s"
  2117. msgstr ""
  2118. " Impossível mover arquivo \"%s\" de \"%s\" \n"
  2119. " %s "
  2120. #, fuzzy, c-format
  2121. msgid ""
  2122. "Cannot remove file \"%s\"\n"
  2123. "%s"
  2124. msgstr ""
  2125. " Impossível apagar arquivo \"%s\" \n"
  2126. " %s "
  2127. #, fuzzy, c-format
  2128. msgid ""
  2129. "\"%s\"\n"
  2130. "and\n"
  2131. "\"%s\"\n"
  2132. "are the same directory"
  2133. msgstr " '%s' e '%s' são o mesmo diretório"
  2134. #, fuzzy, c-format
  2135. msgid ""
  2136. "Cannot overwrite directory \"%s\"\n"
  2137. "%s"
  2138. msgstr ""
  2139. " Impossível regravar diretório \"%s\" \n"
  2140. " %s "
  2141. #, fuzzy, c-format
  2142. msgid ""
  2143. "Cannot overwrite file \"%s\"\n"
  2144. "%s"
  2145. msgstr " Impossível sobrescrever arquivo \"%s\" %s "
  2146. #, fuzzy, c-format
  2147. msgid ""
  2148. "Cannot move directory \"%s\" to \"%s\"\n"
  2149. "%s"
  2150. msgstr ""
  2151. " Impossível mover diretório \"%s\" para \"%s\" \n"
  2152. " %s "
  2153. #, fuzzy, c-format
  2154. msgid ""
  2155. "Cannot delete file \"%s\"\n"
  2156. "%s"
  2157. msgstr ""
  2158. " Impossível apagar arquivo \"%s\" \n"
  2159. " %s "
  2160. #, fuzzy, c-format
  2161. msgid ""
  2162. "Cannot remove directory \"%s\"\n"
  2163. "%s"
  2164. msgstr ""
  2165. " Impossível remover diretório \"%s\" \n"
  2166. " %s "
  2167. #, fuzzy
  2168. msgid "Directory scanning"
  2169. msgstr "Caminho do diretório"
  2170. msgid "FileOperation|Copy"
  2171. msgstr ""
  2172. msgid "FileOperation|Move"
  2173. msgstr ""
  2174. msgid "FileOperation|Delete"
  2175. msgstr ""
  2176. #, no-c-format
  2177. msgid "%o %f \"%s\"%m"
  2178. msgstr "%o %f \"%s\"%m"
  2179. #, no-c-format
  2180. msgid "%o %d %f%m"
  2181. msgstr "%o %d %f%m"
  2182. msgid "files"
  2183. msgstr "arquivos"
  2184. msgid "directory"
  2185. msgstr "diretório"
  2186. msgid "directories"
  2187. msgstr "diretórios"
  2188. msgid "files/directories"
  2189. msgstr "arquivos/diretórios"
  2190. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  2191. msgid " with source mask:"
  2192. msgstr " com máscara de origem:"
  2193. msgid "to:"
  2194. msgstr "para:"
  2195. #, c-format
  2196. msgid "%s?"
  2197. msgstr ""
  2198. #, fuzzy
  2199. msgid "Cannot operate on \"..\"!"
  2200. msgstr "Impossível operar em \"..\"! "
  2201. #, fuzzy
  2202. msgid "Sorry, I could not put the job in background"
  2203. msgstr "Desculpe, mas não posso colocar a tarefa em segundo plano"
  2204. msgid "&Retry"
  2205. msgstr "&Tentar Novamente"
  2206. #, fuzzy
  2207. msgid ""
  2208. "\n"
  2209. "Directory not empty.\n"
  2210. "Delete it recursively?"
  2211. msgstr ""
  2212. "\n"
  2213. " Diretório não está vazio. \n"
  2214. " Apagar recursivamente? "
  2215. #, fuzzy
  2216. msgid ""
  2217. "\n"
  2218. "Background process: Directory not empty.\n"
  2219. "Delete it recursively?"
  2220. msgstr ""
  2221. "\n"
  2222. " Segundo plano: Diretório não está vazio \n"
  2223. " Apagar recursivamente? "
  2224. #, fuzzy
  2225. msgid "Delete:"
  2226. msgstr "Excluir"
  2227. msgid "Non&e"
  2228. msgstr "&Nenhum"
  2229. #, c-format
  2230. msgid "%d:%02d.%02d"
  2231. msgstr ""
  2232. #, c-format
  2233. msgid "ETA %s"
  2234. msgstr ""
  2235. #, c-format
  2236. msgid "%.2f MB/s"
  2237. msgstr ""
  2238. #, c-format
  2239. msgid "%.2f KB/s"
  2240. msgstr ""
  2241. #, c-format
  2242. msgid "%ld B/s"
  2243. msgstr ""
  2244. #, c-format
  2245. msgid "Files processed: %llu of %llu"
  2246. msgstr ""
  2247. #, fuzzy, c-format
  2248. msgid "Time: %s %s (%s)"
  2249. msgstr "Tamanho: "
  2250. #, c-format
  2251. msgid "Total: %s of %s"
  2252. msgstr ""
  2253. msgid "Source"
  2254. msgstr "Origem"
  2255. msgid "Target"
  2256. msgstr "Destino"
  2257. msgid "Deleting"
  2258. msgstr "Apagando"
  2259. #, fuzzy
  2260. msgid "Target file already exists!"
  2261. msgstr "Arquivo de destino \"%s\" já existe"
  2262. #, fuzzy, c-format
  2263. msgid "Source date: %s, size %llu"
  2264. msgstr "Origem: data %s, tamanho %llu"
  2265. #, fuzzy, c-format
  2266. msgid "Target date: %s, size %llu"
  2267. msgstr "Destino: data: %s, tamanho %llu"
  2268. #, fuzzy, c-format
  2269. msgid "Source date: %s, size %u"
  2270. msgstr "Origem: data %s, tamanho %u"
  2271. #, fuzzy, c-format
  2272. msgid "Target date: %s, size %u"
  2273. msgstr "Destino: data: %s, tamanho %u"
  2274. msgid "If &size differs"
  2275. msgstr "se &Tamanho for diferente"
  2276. msgid "&Update"
  2277. msgstr "&Atualizar"
  2278. msgid "Overwrite all targets?"
  2279. msgstr "Sobrescrever tudo ?"
  2280. msgid "&Reget"
  2281. msgstr "&Obter novamente"
  2282. msgid "A&ppend"
  2283. msgstr "A&dicionar"
  2284. msgid "Overwrite this target?"
  2285. msgstr "Sobrescrever o destino ?"
  2286. #, fuzzy
  2287. msgid "File exists"
  2288. msgstr " O arquivo existe "
  2289. #, fuzzy
  2290. msgid "Background process: File exists"
  2291. msgstr " Segundo plano: O arquivo existe"
  2292. msgid "&Background"
  2293. msgstr "&Segundo plano"
  2294. msgid "&Stable Symlinks"
  2295. msgstr "Ligação simbólica &Estável"
  2296. #, fuzzy
  2297. msgid "Di&ve into subdir if exists"
  2298. msgstr "Descer nos sub&diretórios, se existirem"
  2299. #, fuzzy
  2300. msgid "Preserve &attributes"
  2301. msgstr "preservar &Atributos"
  2302. #, fuzzy
  2303. msgid "Follow &links"
  2304. msgstr "seguir &Ligações"
  2305. #, fuzzy, c-format
  2306. msgid "Invalid source pattern `%s'"
  2307. msgstr ""
  2308. "Padrão de origem inválido `%s' \n"
  2309. " %s "
  2310. msgid "&Suspend"
  2311. msgstr "&Suspender"
  2312. msgid "Con&tinue"
  2313. msgstr "Con&tinuar"
  2314. msgid "&Chdir"
  2315. msgstr "Alterar &Diretório"
  2316. msgid "&Again"
  2317. msgstr "&Novamente"
  2318. msgid "Pane&lize"
  2319. msgstr "Mostrar em Painé&is"
  2320. msgid "&View - F3"
  2321. msgstr "&Ver - F3"
  2322. msgid "&Edit - F4"
  2323. msgstr "&Editar - F4"
  2324. #, c-format
  2325. msgid "Found: %ld"
  2326. msgstr ""
  2327. #, fuzzy
  2328. msgid "Malformed regular expression"
  2329. msgstr " Expressão regular incorreta "
  2330. #, fuzzy
  2331. msgid "Cas&e sensitive"
  2332. msgstr "sensível à &caixa (minúsc/maiusc)"
  2333. msgid "&Find recursively"
  2334. msgstr ""
  2335. msgid "S&kip hidden"
  2336. msgstr ""
  2337. msgid "&All charsets"
  2338. msgstr ""
  2339. #, fuzzy
  2340. msgid "Case sens&itive"
  2341. msgstr "sensível à &caixa (minúsc/maiusc)"
  2342. #, fuzzy
  2343. msgid "Re&gular expression"
  2344. msgstr "E&xpressão Regular"
  2345. msgid "Fir&st hit"
  2346. msgstr ""
  2347. msgid "All cha&rsets"
  2348. msgstr ""
  2349. msgid "&Tree"
  2350. msgstr "&Árvore"
  2351. msgid "Find File"
  2352. msgstr "Procurar arquivo"
  2353. #, fuzzy
  2354. msgid "Content:"
  2355. msgstr "Conteúdo:"
  2356. #, fuzzy
  2357. msgid "File name:"
  2358. msgstr "Nome do arquivo:"
  2359. msgid "Start at:"
  2360. msgstr "Iniciar em:"
  2361. #, c-format
  2362. msgid "Grepping in %s"
  2363. msgstr "Localizando em %s"
  2364. msgid "Finished"
  2365. msgstr "Terminado"
  2366. #, c-format
  2367. msgid "Searching %s"
  2368. msgstr "Examinando %s"
  2369. msgid "Searching"
  2370. msgstr "Procurando"
  2371. #, fuzzy
  2372. msgid "Help file format error\n"
  2373. msgstr " Erro no formato de arquivo de ajuda\n"
  2374. #, fuzzy
  2375. msgid "Internal bug: Double start of link area"
  2376. msgstr " Problema interno: início duplo de área de ligação"
  2377. #, fuzzy, c-format
  2378. msgid "Cannot find node %s in help file"
  2379. msgstr " Impossível achar nó %s no arquivo de ajuda"
  2380. msgid "Help"
  2381. msgstr "Ajuda"
  2382. msgid "ButtonBar|Index"
  2383. msgstr ""
  2384. msgid "ButtonBar|Prev"
  2385. msgstr ""
  2386. msgid "&Move"
  2387. msgstr "&Mover"
  2388. msgid "&Remove"
  2389. msgstr "&Remover"
  2390. msgid "&Append"
  2391. msgstr "&Adicionar"
  2392. msgid "&Insert"
  2393. msgstr "&Inserir"
  2394. #, fuzzy
  2395. msgid "New &entry"
  2396. msgstr "Nova &Entrada"
  2397. #, fuzzy
  2398. msgid "New &group"
  2399. msgstr "Novo &Grupo"
  2400. msgid "&Up"
  2401. msgstr "&Acima"
  2402. msgid "&Add current"
  2403. msgstr "&Adicionar ao Atual"
  2404. #, fuzzy
  2405. msgid "&Refresh"
  2406. msgstr "&Reversa"
  2407. msgid "Fr&ee VFSs now"
  2408. msgstr "&Limpar VFSs agora"
  2409. #, fuzzy
  2410. msgid "Change &to"
  2411. msgstr "Mudar &Para"
  2412. msgid "Subgroup - press ENTER to see list"
  2413. msgstr "Subgrupo - pressione ENTER para ver lista"
  2414. msgid "Active VFS directories"
  2415. msgstr "Ativar diretório VFS"
  2416. msgid "Directory hotlist"
  2417. msgstr "Lista de diretório "
  2418. msgid "Directory path"
  2419. msgstr "Caminho do diretório"
  2420. msgid "Directory label"
  2421. msgstr " Descrição do diretório"
  2422. #, fuzzy, c-format
  2423. msgid "Moving %s"
  2424. msgstr "Movendo "
  2425. msgid "New hotlist entry"
  2426. msgstr "Nova entrada na lista "
  2427. #, fuzzy
  2428. msgid "Directory label:"
  2429. msgstr " Descrição do diretório"
  2430. #, fuzzy
  2431. msgid "Directory path:"
  2432. msgstr "Caminho do diretório"
  2433. #, fuzzy
  2434. msgid "New hotlist group"
  2435. msgstr " Novo grupo de listas "
  2436. #, fuzzy
  2437. msgid "Name of new group:"
  2438. msgstr "Nome do novo grupo"
  2439. #, c-format
  2440. msgid "Label for \"%s\":"
  2441. msgstr "Descrição para \"%s\": "
  2442. #, fuzzy
  2443. msgid "Add to hotlist"
  2444. msgstr " Adicionar à lista "
  2445. #, fuzzy
  2446. msgid "Remove:"
  2447. msgstr " Remover: "
  2448. msgid "Are you sure you want to remove this entry?"
  2449. msgstr ""
  2450. #, fuzzy
  2451. msgid ""
  2452. "Group not empty.\n"
  2453. "Remove it?"
  2454. msgstr ""
  2455. "\n"
  2456. " Grupo não está vazio.\n"
  2457. " Remover ?"
  2458. #, fuzzy
  2459. msgid "Top level group"
  2460. msgstr " Grupo de primeiro nível"
  2461. #, fuzzy
  2462. msgid "Hotlist Load"
  2463. msgstr " Carregar Lista"
  2464. #, fuzzy, c-format
  2465. msgid ""
  2466. "MC was unable to write ~/%s file,\n"
  2467. "your old hotlist entries were not deleted"
  2468. msgstr " a lista antiga não foi sobrescrita"
  2469. #, fuzzy
  2470. msgid "Information"
  2471. msgstr " Informação "
  2472. #, c-format
  2473. msgid "Midnight Commander %s"
  2474. msgstr "Midnight commander %s"
  2475. #, c-format
  2476. msgid "File: %s"
  2477. msgstr "Arquivo: %s"
  2478. #, fuzzy, c-format
  2479. msgid "Free nodes: %ld (%ld%%) of %ld"
  2480. msgstr "Liberados %d (%d%%) nós de %d"
  2481. msgid "No node information"
  2482. msgstr "Sem informação de nó"
  2483. #, fuzzy, c-format
  2484. msgid "Free space: %s (%d%%) of %s"
  2485. msgstr "Liberados %d (%d%%) nós de %d"
  2486. msgid "No space information"
  2487. msgstr "Sem informações sobre espaço"
  2488. #, fuzzy, c-format
  2489. msgid "Type: %s"
  2490. msgstr "Tipo: %s "
  2491. msgid "non-local vfs"
  2492. msgstr "vfs não local"
  2493. #, c-format
  2494. msgid "Device: %s"
  2495. msgstr "Dispositivo: %s"
  2496. #, c-format
  2497. msgid "Filesystem: %s"
  2498. msgstr "Sistema de arquivos: %s"
  2499. #, c-format
  2500. msgid "Accessed: %s"
  2501. msgstr "Acessado: %s"
  2502. #, c-format
  2503. msgid "Modified: %s"
  2504. msgstr "Modificado: %s"
  2505. #. TRANSLATORS: Time of last status change as in stat(2) man.
  2506. #, fuzzy, c-format
  2507. msgid "Changed: %s"
  2508. msgstr "Mudar &Para"
  2509. #, c-format
  2510. msgid "Dev. type: major %lu, minor %lu"
  2511. msgstr ""
  2512. #, fuzzy, c-format
  2513. msgid "Size: %s"
  2514. msgstr "Tamanho: "
  2515. #, fuzzy, c-format
  2516. msgid " (%ld block)"
  2517. msgid_plural " (%ld blocks)"
  2518. msgstr[0] " (%ld blocos)"
  2519. msgstr[1] " (%ld blocos)"
  2520. #, c-format
  2521. msgid "Owner: %s/%s"
  2522. msgstr "Dono: %s/%s"
  2523. #, c-format
  2524. msgid "Links: %d"
  2525. msgstr "Ligações: %d"
  2526. #, c-format
  2527. msgid "Mode: %s (%04o)"
  2528. msgstr "Modo: %s (%04o)"
  2529. #, c-format
  2530. msgid "Location: %Xh:%Xh"
  2531. msgstr "Localização: %Xh:%Xh"
  2532. msgid "&Vertical"
  2533. msgstr "&Vertical"
  2534. msgid "&Horizontal"
  2535. msgstr "&Horizontal"
  2536. msgid "Show free sp&ace"
  2537. msgstr ""
  2538. #, fuzzy
  2539. msgid "&XTerm window title"
  2540. msgstr "Dicas do &Xterm"
  2541. #, fuzzy
  2542. msgid "H&intbar visible"
  2543. msgstr "D&Icas visíveis"
  2544. msgid "&Keybar visible"
  2545. msgstr "Barra de &Teclas visível"
  2546. #, fuzzy
  2547. msgid "Command &prompt"
  2548. msgstr "&Indicador de Comando"
  2549. #, fuzzy
  2550. msgid "Show &mini status"
  2551. msgstr "mostrar &Mini status"
  2552. #, fuzzy
  2553. msgid "Menu&bar visible"
  2554. msgstr "&Barra de menu visível"
  2555. msgid "&Equal split"
  2556. msgstr "Dividir i&Gualmente"
  2557. #, fuzzy
  2558. msgid "Panel split"
  2559. msgstr " Dividir painel "
  2560. msgid "Console output"
  2561. msgstr ""
  2562. #, fuzzy
  2563. msgid "Other options"
  2564. msgstr " Outras opções "
  2565. #, fuzzy
  2566. msgid "Output lines:"
  2567. msgstr "linhas de saída"
  2568. msgid "Layout"
  2569. msgstr "Disposição"
  2570. msgid "Learn keys"
  2571. msgstr "Aprender teclas"
  2572. #, fuzzy
  2573. msgid "Teach me a key"
  2574. msgstr " Ensinar uma tecla "
  2575. #, c-format
  2576. msgid ""
  2577. "Please press the %s\n"
  2578. "and then wait until this message disappears.\n"
  2579. "\n"
  2580. "Then, press it again to see if OK appears\n"
  2581. "next to its button.\n"
  2582. "\n"
  2583. "If you want to escape, press a single Escape key\n"
  2584. "and wait as well."
  2585. msgstr ""
  2586. "Por favor, pressione %s\n"
  2587. "e espere até essa mensagem sumir.\n"
  2588. "\n"
  2589. "então, pressione ela de novo para ver se OK aparece\n"
  2590. "próximo ao botão.\n"
  2591. "\n"
  2592. "Se quiser desistir, pressione um ESC simples\n"
  2593. "e aguarde."
  2594. #, fuzzy
  2595. msgid "Cannot accept this key"
  2596. msgstr " Não posso aceitar esta tecla"
  2597. #, fuzzy, c-format
  2598. msgid "You have entered \"%s\""
  2599. msgstr " Você digitou \"%s\""
  2600. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2601. msgid "OK"
  2602. msgstr "OK"
  2603. msgid ""
  2604. "It seems that all your keys already\n"
  2605. "work fine. That's great."
  2606. msgstr ""
  2607. "Parece que todas as teclas já estão funcionando \n"
  2608. "adequadamente. OK!"
  2609. msgid "&Discard"
  2610. msgstr "&Descartar"
  2611. msgid ""
  2612. "Great! You have a complete terminal database!\n"
  2613. "All your keys work well."
  2614. msgstr ""
  2615. "Ótimo! Já temos um mapeamento de teclas completo!\n"
  2616. "todas as teclas funcionam bem."
  2617. msgid "Press all the keys mentioned here. After you have done it, check"
  2618. msgstr "Pressione todas as teclas mencionadas, após terminar, verifique"
  2619. msgid "which keys are not marked with OK. Press space on the missing"
  2620. msgstr "que teclas não estão marcadas com OK. Pressione espaço na "
  2621. msgid "key, or click with the mouse to define it. Move around with Tab."
  2622. msgstr "tecla para definir. Para mover-se entre elas use Tab"
  2623. #, fuzzy
  2624. msgid "The Midnight Commander"
  2625. msgstr " O Midnight Commander"
  2626. #, fuzzy
  2627. msgid "Do you really want to quit the Midnight Commander?"
  2628. msgstr " Deseja realmente encerrar o Midnight Commander? "
  2629. #, fuzzy
  2630. msgid "File listin&g"
  2631. msgstr "Lista &Completa"
  2632. #, fuzzy
  2633. msgid "&Quick view"
  2634. msgstr "Salvar rapidamente"
  2635. #, fuzzy
  2636. msgid "&Info"
  2637. msgstr "&Inode"
  2638. msgid "&Listing mode..."
  2639. msgstr "Modo de &Listagem"
  2640. msgid "&Sort order..."
  2641. msgstr "&Ordem..."
  2642. msgid "&Filter..."
  2643. msgstr "&Filtro..."
  2644. #, fuzzy
  2645. msgid "&Encoding..."
  2646. msgstr "orde&Nar M-t"
  2647. msgid "&Network link..."
  2648. msgstr "Ligação de &Rede..."
  2649. msgid "FT&P link..."
  2650. msgstr "Ligação FT&P..."
  2651. #, fuzzy
  2652. msgid "S&hell link..."
  2653. msgstr "Ligação SM&B..."
  2654. msgid "SM&B link..."
  2655. msgstr "Ligação SM&B..."
  2656. #, fuzzy
  2657. msgid "&Rescan"
  2658. msgstr "Reexaminar"
  2659. #, fuzzy
  2660. msgid "&View"
  2661. msgstr "Visualizar"
  2662. #, fuzzy
  2663. msgid "Vie&w file..."
  2664. msgstr " Ver arquivo "
  2665. #, fuzzy
  2666. msgid "&Filtered view"
  2667. msgstr " Visualização filtrada"
  2668. #, fuzzy
  2669. msgid "&Copy"
  2670. msgstr "Copiar"
  2671. msgid "C&hmod"
  2672. msgstr ""
  2673. #, fuzzy
  2674. msgid "&Link"
  2675. msgstr "&Ligações"
  2676. #, fuzzy
  2677. msgid "&Symlink"
  2678. msgstr "&Ligações"
  2679. #, fuzzy
  2680. msgid "Relative symlin&k"
  2681. msgstr "Resolvendo ligações simbólicas..."
  2682. #, fuzzy
  2683. msgid "Edit s&ymlink"
  2684. msgstr " Editar ligação simbólica "
  2685. msgid "Ch&own"
  2686. msgstr ""
  2687. #, fuzzy
  2688. msgid "&Advanced chown"
  2689. msgstr "chown &Avançado "
  2690. #, fuzzy
  2691. msgid "&Rename/Move"
  2692. msgstr "&Remover"
  2693. #, fuzzy
  2694. msgid "&Mkdir"
  2695. msgstr "Mkdir"
  2696. #, fuzzy
  2697. msgid "&Quick cd"
  2698. msgstr " cd rápido "
  2699. #, fuzzy
  2700. msgid "Select &group"
  2701. msgstr "COnfigurar &grupos"
  2702. #, fuzzy
  2703. msgid "U&nselect group"
  2704. msgstr " Cancelar seleção "
  2705. #, fuzzy
  2706. msgid "Reverse selec&tion"
  2707. msgstr "Seleçã&O reversa M-*"
  2708. #, fuzzy
  2709. msgid "E&xit"
  2710. msgstr "Editar"
  2711. #, fuzzy
  2712. msgid "&User menu"
  2713. msgstr " Menu de usuário "
  2714. msgid "&Directory tree"
  2715. msgstr "Arvore de &Diretórios"
  2716. #, fuzzy
  2717. msgid "&Find file"
  2718. msgstr "Procurar arquivo"
  2719. msgid "S&wap panels"
  2720. msgstr ""
  2721. #, fuzzy
  2722. msgid "Switch &panels on/off"
  2723. msgstr "&Paineis Ligados/Desligados"
  2724. #, fuzzy
  2725. msgid "&Compare directories"
  2726. msgstr " Comparar diretórios"
  2727. #, fuzzy
  2728. msgid "&View diff files"
  2729. msgstr " Ver arquivo "
  2730. #, fuzzy
  2731. msgid "E&xternal panelize"
  2732. msgstr "Painéis externos"
  2733. #, fuzzy
  2734. msgid "Show directory s&izes"
  2735. msgstr "Mostrar taman&Hos dos diretórios"
  2736. #, fuzzy
  2737. msgid "Command &history"
  2738. msgstr "&Histórico de comandos"
  2739. #, fuzzy
  2740. msgid "Di&rectory hotlist"
  2741. msgstr "Lista de diretório "
  2742. #, fuzzy
  2743. msgid "&Active VFS list"
  2744. msgstr "&Ativar lista VFS C-x a"
  2745. #, fuzzy
  2746. msgid "&Background jobs"
  2747. msgstr "Processos em segundo plano"
  2748. msgid "&Undelete files (ext2fs only)"
  2749. msgstr "&Recuperar arquivos (apenas ext2fs)"
  2750. msgid "&Listing format edit"
  2751. msgstr "Editar forma de &Listagem"
  2752. msgid "Edit &extension file"
  2753. msgstr "Editar &extensões de arquivo"
  2754. msgid "Edit &menu file"
  2755. msgstr "Editar &Menu de arquivo"
  2756. msgid "Edit hi&ghlighting group file"
  2757. msgstr ""
  2758. msgid "&Configuration..."
  2759. msgstr "&Configuração"
  2760. msgid "&Layout..."
  2761. msgstr "&Layout..."
  2762. #, fuzzy
  2763. msgid "&Panel options..."
  2764. msgstr " Opções de painel "
  2765. #, fuzzy
  2766. msgid "C&onfirmation..."
  2767. msgstr "c&Onfirmação..."
  2768. msgid "&Display bits..."
  2769. msgstr "&Mostrar Bits..."
  2770. msgid "&Virtual FS..."
  2771. msgstr "Sistema de Arquivos &Virtual..."
  2772. #, fuzzy
  2773. msgid "&Above"
  2774. msgstr " &Acima "
  2775. #, fuzzy
  2776. msgid "&Left"
  2777. msgstr " &Esquerda "
  2778. #, fuzzy
  2779. msgid "&Below"
  2780. msgstr " &Abaixo "
  2781. #, fuzzy
  2782. msgid "&Right"
  2783. msgstr " &Direita "
  2784. msgid "ButtonBar|Menu"
  2785. msgstr ""
  2786. msgid "ButtonBar|View"
  2787. msgstr ""
  2788. msgid "ButtonBar|RenMov"
  2789. msgstr ""
  2790. msgid "ButtonBar|Mkdir"
  2791. msgstr ""
  2792. msgid "The TERM environment variable is unset!\n"
  2793. msgstr "A variável de ambiente TERM não foi definida!\n"
  2794. #, fuzzy, c-format
  2795. msgid "Cannot create %s directory"
  2796. msgstr " Impossível mudar de diretório"
  2797. msgid "&Never"
  2798. msgstr "&Nunca"
  2799. #, fuzzy
  2800. msgid "On dum&b terminals"
  2801. msgstr "em &Terminais burros"
  2802. msgid "Alwa&ys"
  2803. msgstr "Sem&pre"
  2804. #, fuzzy
  2805. msgid "A&uto save setup"
  2806. msgstr "Configurar salvamento &Automático"
  2807. #, fuzzy
  2808. msgid "Sa&fe delete"
  2809. msgstr "E&Liminação segura"
  2810. #, fuzzy
  2811. msgid "Cd follows lin&ks"
  2812. msgstr "cd segue ligação"
  2813. #, fuzzy
  2814. msgid "Rotating d&ash"
  2815. msgstr "Hífen &Giratório"
  2816. #, fuzzy
  2817. msgid "Co&mplete: show all"
  2818. msgstr "co&Mpleto: mostrar Tudo"
  2819. #, fuzzy
  2820. msgid "Shell &patterns"
  2821. msgstr "mascarás de &interpretadores de comandos"
  2822. msgid "&Drop down menus"
  2823. msgstr "Menus &Suspensos"
  2824. #, fuzzy
  2825. msgid "Auto m&enus"
  2826. msgstr "auto m&Enus"
  2827. #, fuzzy
  2828. msgid "Use internal vie&w"
  2829. msgstr "&Usar visualizador interno"
  2830. #, fuzzy
  2831. msgid "Use internal edi&t"
  2832. msgstr "Usar editor interno"
  2833. #, fuzzy
  2834. msgid "Pause after run"
  2835. msgstr " Pausa após executar... "
  2836. #, fuzzy
  2837. msgid "Timeout:"
  2838. msgstr "Modificado"
  2839. #, fuzzy
  2840. msgid "S&ingle press"
  2841. msgstr "Tipo de &Arquivos"
  2842. #, fuzzy
  2843. msgid "Esc key mode"
  2844. msgstr "Barra no teclado numérico"
  2845. msgid "Mkdi&r autoname"
  2846. msgstr ""
  2847. msgid "Classic pro&gressbar"
  2848. msgstr ""
  2849. #, fuzzy
  2850. msgid "Compute tota&ls"
  2851. msgstr "Calcular Totais"
  2852. msgid "&Verbose operation"
  2853. msgstr "Mostrar P&rogresso"
  2854. #, fuzzy
  2855. msgid "File operation options"
  2856. msgstr " Outras opções "
  2857. msgid "Configure options"
  2858. msgstr "Configurar Opções"
  2859. #, fuzzy
  2860. msgid "Case &insensitive"
  2861. msgstr "sensível à &caixa (minúsc/maiusc)"
  2862. #, fuzzy
  2863. msgid "Case s&ensitive"
  2864. msgstr "sensível à &caixa (minúsc/maiusc)"
  2865. #, fuzzy
  2866. msgid "Use panel sort mo&de"
  2867. msgstr "Modo de &gravação..."
  2868. #, fuzzy
  2869. msgid "Quick search"
  2870. msgstr " cd rápido "
  2871. #, fuzzy
  2872. msgid "&Permissions"
  2873. msgstr "Permissão"
  2874. #, fuzzy
  2875. msgid "File &types"
  2876. msgstr "Tipo de &Arquivos"
  2877. #, fuzzy
  2878. msgid "File highlight"
  2879. msgstr " Destacar... "
  2880. msgid "&Mouse page scrolling"
  2881. msgstr ""
  2882. msgid "Pa&ge scrolling"
  2883. msgstr ""
  2884. msgid "L&ynx-like motion"
  2885. msgstr "Movimentação similar ao L&ynx"
  2886. msgid "Navigation"
  2887. msgstr ""
  2888. #, fuzzy
  2889. msgid "A&uto save panels setup"
  2890. msgstr "Configurar salvamento &Automático"
  2891. #, fuzzy
  2892. msgid "Re&verse files only"
  2893. msgstr "Apenas &tamanho"
  2894. #, fuzzy
  2895. msgid "Ma&rk moves down"
  2896. msgstr "mar&as movem-se para baixo"
  2897. msgid "&Fast dir reload"
  2898. msgstr "Atualização &Rápida de Diretório"
  2899. #, fuzzy
  2900. msgid "Show &hidden files"
  2901. msgstr "mostrar arquivos &Escondidos"
  2902. #, fuzzy
  2903. msgid "Show &backup files"
  2904. msgstr "mostrar arquivos de &Cópias de Segurança"
  2905. #, fuzzy
  2906. msgid "Mi&x all files"
  2907. msgstr "Misturar todos os ar&Quivos"
  2908. msgid "Use SI si&ze units"
  2909. msgstr ""
  2910. #, fuzzy
  2911. msgid "Main panel options"
  2912. msgstr " Opções de painel "
  2913. #, fuzzy
  2914. msgid "Panel options"
  2915. msgstr " Opções de painel "
  2916. #, fuzzy
  2917. msgid ""
  2918. "Using the fast reload option may not reflect the exact\n"
  2919. "directory contents. In this case you'll need to do a\n"
  2920. "manual reload of the directory. See the man page for\n"
  2921. "the details."
  2922. msgstr ""
  2923. " Usar a opção de recarga rápida pode não refletir \n"
  2924. " o conteúdo atual dos diretórios. Nesse caso, você deve \n"
  2925. " fazer uma recarga manual do Diretório. Leia as página de \n"
  2926. " manual para ver os detalhes. "
  2927. msgid "&Add new"
  2928. msgstr "&Adicionar Novo"
  2929. msgid "External panelize"
  2930. msgstr "Painéis externos"
  2931. msgid "Command"
  2932. msgstr "Comando"
  2933. msgid "Other command"
  2934. msgstr "Outro comando"
  2935. #, fuzzy
  2936. msgid "Add to external panelize"
  2937. msgstr " Adicionar aos painéis externos "
  2938. #, fuzzy
  2939. msgid "Enter command label:"
  2940. msgstr " Informe o título do comando: "
  2941. #, fuzzy
  2942. msgid "Cannot run external panelize in a non-local directory"
  2943. msgstr " Impossível executar painéis externos quando em um diretório local"
  2944. msgid "Find rejects after patching"
  2945. msgstr "A busca foi rejeitada após a atualização"
  2946. msgid "Find *.orig after patching"
  2947. msgstr " Procurar *.orig após atualização"
  2948. msgid "Find SUID and SGID programs"
  2949. msgstr "Procurar programas SUID e SGID"
  2950. msgid "Cannot invoke command."
  2951. msgstr "Impossível executar comando"
  2952. msgid "Pipe close failed"
  2953. msgstr "Falha ao fechar conector"
  2954. msgid "[dev]"
  2955. msgstr ""
  2956. msgid "UP--DIR"
  2957. msgstr "UP--DIR"
  2958. msgid "SYMLINK"
  2959. msgstr ""
  2960. msgid "SUB-DIR"
  2961. msgstr "SUB-DIR"
  2962. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2963. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2964. msgid "sort|u"
  2965. msgstr ""
  2966. msgid "&Unsorted"
  2967. msgstr "&Desordenado"
  2968. #. TRANSLATORS: one single character to represent 'name' sort mode
  2969. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2970. msgid "sort|n"
  2971. msgstr ""
  2972. msgid "&Name"
  2973. msgstr "&Nome"
  2974. #. TRANSLATORS: one single character to represent 'version' sort mode
  2975. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2976. #, fuzzy
  2977. msgid "sort|v"
  2978. msgstr "&Desordenado"
  2979. #, fuzzy
  2980. msgid "&Version"
  2981. msgstr "Permissão"
  2982. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2983. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2984. #, fuzzy
  2985. msgid "sort|e"
  2986. msgstr "&Desordenado"
  2987. msgid "&Extension"
  2988. msgstr "&Extensão"
  2989. #. TRANSLATORS: one single character to represent 'size' sort mode
  2990. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2991. msgid "sort|s"
  2992. msgstr ""
  2993. msgid "&Size"
  2994. msgstr "&Tamanho"
  2995. #, fuzzy
  2996. msgid "Block Size"
  2997. msgstr " Tamanho "
  2998. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2999. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  3000. msgid "sort|m"
  3001. msgstr ""
  3002. msgid "&Modify time"
  3003. msgstr "&Hora de modificação"
  3004. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  3005. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  3006. msgid "sort|a"
  3007. msgstr ""
  3008. msgid "&Access time"
  3009. msgstr "&Hora de acesso"
  3010. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  3011. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  3012. msgid "sort|h"
  3013. msgstr ""
  3014. #, fuzzy
  3015. msgid "C&hange time"
  3016. msgstr "&Hora de mudança"
  3017. msgid "Perm"
  3018. msgstr "Perm"
  3019. msgid "Nl"
  3020. msgstr "Nl"
  3021. #. TRANSLATORS: one single character to represent 'inode' sort mode
  3022. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  3023. msgid "sort|i"
  3024. msgstr ""
  3025. msgid "&Inode"
  3026. msgstr "&Inode"
  3027. msgid "UID"
  3028. msgstr "UID"
  3029. msgid "GID"
  3030. msgstr "GID"
  3031. msgid "Owner"
  3032. msgstr "Dono"
  3033. msgid "Group"
  3034. msgstr "Grupo"
  3035. msgid "<readlink failed>"
  3036. msgstr "<erro ao ler ligação>"
  3037. #, fuzzy, c-format
  3038. msgid "%s byte"
  3039. msgid_plural "%s bytes"
  3040. msgstr[0] "%s bytes"
  3041. msgstr[1] "%s bytes"
  3042. #, fuzzy, c-format
  3043. msgid "%s in %d file"
  3044. msgid_plural "%s in %d files"
  3045. msgstr[0] "%s bytes em %d arquivo"
  3046. msgstr[1] "%s bytes em %d arquivo"
  3047. #, fuzzy
  3048. msgid "Unknown tag on display format:"
  3049. msgstr "Padrão desconhecido no formato de apresentação:"
  3050. msgid "User supplied format looks invalid, reverting to default."
  3051. msgstr ""
  3052. "Formato disponibilizado pelo usuário parece inválido, voltando ao padrão."
  3053. #, fuzzy
  3054. msgid "Do you really want to execute?"
  3055. msgstr " Você quer realmente executar? "
  3056. #, fuzzy, c-format
  3057. msgid "Cannot chdir to \"%s\""
  3058. msgstr " Não é possível mudar o diretório para %s "
  3059. msgid "Choose codepage"
  3060. msgstr ""
  3061. msgid "- < No translation >"
  3062. msgstr ""
  3063. msgid "%b %e %Y"
  3064. msgstr "%b %e %Y"
  3065. msgid "%b %e %H:%M"
  3066. msgstr "%b %e %H:%M"
  3067. #, fuzzy, c-format
  3068. msgid ""
  3069. "Cannot save file %s:\n"
  3070. "%s"
  3071. msgstr " Erro ao tentar gravar arquivo. "
  3072. msgid ""
  3073. "GNU Midnight Commander is already\n"
  3074. "running on this terminal.\n"
  3075. "Subshell support will be disabled."
  3076. msgstr ""
  3077. #, c-format
  3078. msgid "Cannot open named pipe %s\n"
  3079. msgstr "Não foi possível abrir conexão denominada %s\n"
  3080. #, fuzzy
  3081. msgid "The shell is still active. Quit anyway?"
  3082. msgstr " O interpretador de comandos ainda está ativo. Encerrar mesmo assim? "
  3083. #, c-format
  3084. msgid "Warning: Cannot change to %s.\n"
  3085. msgstr "Alerta: Impossível mudar para %s.\n"
  3086. msgid "With builtin Editor\n"
  3087. msgstr "Com Editor embutido\n"
  3088. #, fuzzy
  3089. msgid "Using system-installed S-Lang library"
  3090. msgstr "instalado no sistema"
  3091. msgid "with terminfo database"
  3092. msgstr ""
  3093. #, fuzzy
  3094. msgid "Using the ncurses library"
  3095. msgstr "a biblioteca ncurses"
  3096. #, fuzzy
  3097. msgid "Using the ncursesw library"
  3098. msgstr "a biblioteca ncurses"
  3099. #
  3100. #, fuzzy
  3101. msgid "With optional subshell support"
  3102. msgstr "Com suporte à subinterpretadores de comandos"
  3103. #
  3104. #, fuzzy
  3105. msgid "With subshell support as default"
  3106. msgstr "Com suporte à subinterpretadores de comandos"
  3107. #
  3108. msgid "With support for background operations\n"
  3109. msgstr "Com suporte a operações em segundo plano\n"
  3110. #
  3111. #, fuzzy
  3112. msgid "With mouse support on xterm and Linux console\n"
  3113. msgstr "com suporte à mouse no xterm e no console Linux.\n"
  3114. #
  3115. #, fuzzy
  3116. msgid "With mouse support on xterm\n"
  3117. msgstr "com suporte a mouse no xterm.\n"
  3118. #
  3119. #, fuzzy
  3120. msgid "With support for X11 events\n"
  3121. msgstr "Com suporte a operações em segundo plano\n"
  3122. msgid "With internationalization support\n"
  3123. msgstr ""
  3124. msgid "With multiple codepages support\n"
  3125. msgstr ""
  3126. #
  3127. #, fuzzy, c-format
  3128. msgid "Virtual File Systems:"
  3129. msgstr "Sistema de arquivos virtual:"
  3130. #, c-format
  3131. msgid "Data types:"
  3132. msgstr ""
  3133. #, c-format
  3134. msgid ""
  3135. "Cannot open the %s file for writing:\n"
  3136. "%s\n"
  3137. msgstr ""
  3138. "Impossivel abrir arquivo %s para escrita:\n"
  3139. "%s\n"
  3140. #, c-format
  3141. msgid "Copy \"%s\" directory to:"
  3142. msgstr "Copiar diretório \"%s\" para:"
  3143. #, c-format
  3144. msgid "Move \"%s\" directory to:"
  3145. msgstr "Mover diretório \"%s\" para:"
  3146. #, fuzzy, c-format
  3147. msgid ""
  3148. "Cannot stat the destination\n"
  3149. "%s"
  3150. msgstr ""
  3151. " Não foi possível testar o destino \n"
  3152. " %s "
  3153. #, fuzzy, c-format
  3154. msgid "Delete %s?"
  3155. msgstr " Apagar %s? "
  3156. msgid "ButtonBar|Static"
  3157. msgstr ""
  3158. msgid "ButtonBar|Dynamc"
  3159. msgstr ""
  3160. msgid "ButtonBar|Rescan"
  3161. msgstr ""
  3162. msgid "ButtonBar|Forget"
  3163. msgstr ""
  3164. msgid "ButtonBar|Rmdir"
  3165. msgstr ""
  3166. #, c-format
  3167. msgid ""
  3168. "Cannot write to the %s file:\n"
  3169. "%s\n"
  3170. msgstr ""
  3171. "Impossível escrever para o arquivo %s :\n"
  3172. "%s\n"
  3173. #, fuzzy
  3174. msgid "Format error on file Extensions File"
  3175. msgstr " Erro no formato do arquivo de extensões"
  3176. #, fuzzy, c-format
  3177. msgid "The %%var macro has no default"
  3178. msgstr " A macro %%var não tem um padrão"
  3179. #, fuzzy, c-format
  3180. msgid "The %%var macro has no variable"
  3181. msgstr " A macro %%var não tem uma variável"
  3182. #, fuzzy
  3183. msgid "Debug"
  3184. msgstr " Depurar "
  3185. #, fuzzy
  3186. msgid "ERROR:"
  3187. msgstr " ERRO: "
  3188. #, fuzzy
  3189. msgid "True:"
  3190. msgstr " Verdadeiro: "
  3191. #, fuzzy
  3192. msgid "False:"
  3193. msgstr " Falso: "
  3194. #, fuzzy
  3195. msgid "Warning -- ignoring file"
  3196. msgstr " Alerta -- ignorando arquivo "
  3197. #, c-format
  3198. msgid ""
  3199. "File %s is not owned by root or you or is world writable.\n"
  3200. "Using it may compromise your security"
  3201. msgstr ""
  3202. "Arquivo %s não pertence ao superusuário ou a você ou pode\n"
  3203. "ser escrito por todos.\n"
  3204. "O seu uso pode comprometer a segurança"
  3205. #, fuzzy, c-format
  3206. msgid ""
  3207. "Cannot open file%s\n"
  3208. "%s"
  3209. msgstr ""
  3210. " Impossível abrir arquivo %s \n"
  3211. " %s "
  3212. #, fuzzy, c-format
  3213. msgid "No suitable entries found in %s"
  3214. msgstr " Nenhuma entrada apropriada encontrada em %s "
  3215. #, fuzzy
  3216. msgid "User menu"
  3217. msgstr " Menu de usuário "
  3218. #, fuzzy
  3219. msgid "Invalid value"
  3220. msgstr " Senha inválida "
  3221. #, fuzzy
  3222. msgid "Cannot spawn child process"
  3223. msgstr " Impossível trocar programa filho "
  3224. msgid "Empty output from child filter"
  3225. msgstr ""
  3226. msgid "&Line number (decimal)"
  3227. msgstr ""
  3228. msgid "Pe&rcents"
  3229. msgstr ""
  3230. msgid "&Decimal offset"
  3231. msgstr ""
  3232. msgid "He&xadecimal offset"
  3233. msgstr ""
  3234. msgid "Goto"
  3235. msgstr "Vai Para"
  3236. msgid "ButtonBar|Ascii"
  3237. msgstr ""
  3238. msgid "ButtonBar|HxSrch"
  3239. msgstr ""
  3240. msgid "ButtonBar|UnWrap"
  3241. msgstr ""
  3242. msgid "ButtonBar|Wrap"
  3243. msgstr ""
  3244. msgid "ButtonBar|Hex"
  3245. msgstr ""
  3246. msgid "ButtonBar|Goto"
  3247. msgstr ""
  3248. msgid "ButtonBar|Raw"
  3249. msgstr ""
  3250. msgid "ButtonBar|Parse"
  3251. msgstr ""
  3252. msgid "ButtonBar|Unform"
  3253. msgstr ""
  3254. msgid "ButtonBar|Format"
  3255. msgstr ""
  3256. #, c-format
  3257. msgid ""
  3258. "Error while closing the file:\n"
  3259. "%s\n"
  3260. "Data may have been written or not"
  3261. msgstr ""
  3262. #, fuzzy, c-format
  3263. msgid ""
  3264. "Cannot save file:\n"
  3265. "%s"
  3266. msgstr " Erro ao tentar gravar arquivo. "
  3267. #, fuzzy, c-format
  3268. msgid ""
  3269. "Cannot open \"%s\"\n"
  3270. "%s"
  3271. msgstr ""
  3272. " Não é possível abrir \"%s\"\n"
  3273. " %s "
  3274. #, fuzzy, c-format
  3275. msgid ""
  3276. "Cannot stat \"%s\"\n"
  3277. "%s"
  3278. msgstr ""
  3279. " Não foi possível verificar status de \"%s\"\n"
  3280. " %s "
  3281. #, fuzzy
  3282. msgid "Cannot view: not a regular file"
  3283. msgstr " Impossível visualizar: não é arquivo regular "
  3284. msgid "Seeking to search result"
  3285. msgstr ""
  3286. #, fuzzy
  3287. msgid "Search done"
  3288. msgstr "Procurar"
  3289. msgid "Continue from begining?"
  3290. msgstr ""
  3291. #, fuzzy
  3292. msgid "History"
  3293. msgstr " Histórico de comandos"
  3294. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  3295. msgid "DialogTitle|History cleanup"
  3296. msgstr ""
  3297. msgid "Do you want clean this history?"
  3298. msgstr ""
  3299. msgid "Background process:"
  3300. msgstr "Processo em segundo plano:"
  3301. #~ msgid " Permission "
  3302. #~ msgstr " Permissão "
  3303. #~ msgid " File "
  3304. #~ msgstr " Arquivo "
  3305. #~ msgid " Name "
  3306. #~ msgstr " Nome "
  3307. #~ msgid " Owner name "
  3308. #~ msgstr " Nome do dono "
  3309. #~ msgid " Group name "
  3310. #~ msgstr " Nome do grupo "
  3311. #~ msgid " Size "
  3312. #~ msgstr " Tamanho "
  3313. #~ msgid " Confirmation "
  3314. #~ msgstr " Confirmação "
  3315. #~ msgid " Filtered view "
  3316. #~ msgstr " Visualização filtrada"
  3317. #~ msgid " Select "
  3318. #~ msgstr " Selecionar "
  3319. #~ msgid " Compare directories "
  3320. #~ msgstr " Comparar diretórios"
  3321. #~ msgid " Link "
  3322. #~ msgstr " Ligação "
  3323. #~ msgid " Edit symlink "
  3324. #~ msgstr " Editar ligação simbólica "
  3325. #~ msgid "case &Sensitive"
  3326. #~ msgstr "Sensível à &Caixa Alta ou Baixa"
  3327. #~ msgid " Replace "
  3328. #~ msgstr " Substituir "
  3329. #, fuzzy
  3330. #~ msgid " Error "
  3331. #~ msgstr "Erro"
  3332. #~ msgid " Insert File "
  3333. #~ msgstr " Inserir Arquivo "
  3334. #~ msgid " Insert Literal "
  3335. #~ msgstr " Inserir Literal"
  3336. #~ msgid " Execute Macro "
  3337. #~ msgstr " Executar Macro "
  3338. #~ msgid " Cannot overwrite directory `%s' "
  3339. #~ msgstr " Impossível sobrescrever diretório '%s' "
  3340. #~ msgid " to:"
  3341. #~ msgstr " para:"
  3342. #~ msgid " Delete: "
  3343. #~ msgstr "Apagar: "
  3344. #~ msgid " Directory path "
  3345. #~ msgstr " Caminho do diretório "
  3346. #~ msgid " Directory label "
  3347. #~ msgstr " Descrição do diretório "
  3348. #~ msgid "File: %s"
  3349. #~ msgstr "Arquivo: %s"
  3350. #~ msgid "pe&Rmissions"
  3351. #~ msgstr "per&Rmissões"
  3352. #~ msgid " User menu "
  3353. #~ msgstr " Menu de usuário "
  3354. #, fuzzy
  3355. #~ msgid ""
  3356. #~ " Cannot save file: \n"
  3357. #~ " %s "
  3358. #~ msgstr " Erro ao tentar gravar arquivo. "
  3359. #, fuzzy
  3360. #~ msgid "Status: %s"
  3361. #~ msgstr "Criado: %s"
  3362. #~ msgid "Count"
  3363. #~ msgstr "Total"
  3364. #~ msgid "Bytes"
  3365. #~ msgstr "Bytes"
  3366. #~ msgid " confirm &Exit "
  3367. #~ msgstr " confirmar &Saída"
  3368. #~ msgid " confirm e&Xecute "
  3369. #~ msgstr "confirmar e&Xecução "
  3370. #~ msgid " confirm &Delete "
  3371. #~ msgstr " confirmar &Exclusão "
  3372. #, fuzzy
  3373. #~ msgid ""
  3374. #~ " The current line number is %lld.\n"
  3375. #~ " Enter the new line number:"
  3376. #~ msgstr ""
  3377. #~ " O número de linha atual é %d.\n"
  3378. #~ " Informe o número da nova linha:"
  3379. #, fuzzy
  3380. #~ msgid ""
  3381. #~ " The current address is %s.\n"
  3382. #~ " Enter the new address:"
  3383. #~ msgstr ""
  3384. #~ " O número de linha atual é %d.\n"
  3385. #~ " Informe o número da nova linha:"
  3386. #~ msgid " Goto Address "
  3387. #~ msgstr " Ir Para o endereço "
  3388. #~ msgid "Offset 0x%08lx"
  3389. #~ msgstr "Deslocamento 0x%08lx"
  3390. #~ msgid "%s bytes"
  3391. #~ msgstr "%s bytes"
  3392. #, fuzzy
  3393. #~ msgid ">= %s bytes"
  3394. #~ msgstr "%s bytes"
  3395. #~ msgid "File: None"
  3396. #~ msgstr "Arquivo: Nenhum"
  3397. #~ msgid "Do backups -->"
  3398. #~ msgstr "Fazer cópias de segurança -->"
  3399. #~ msgid "Extension:"
  3400. #~ msgstr "Extensão:"
  3401. #~ msgid "&New C-n"
  3402. #~ msgstr "&Novo C-n"
  3403. #~ msgid "&Save F2"
  3404. #~ msgstr "&Salvar F2"
  3405. #~ msgid "Save &as... F12"
  3406. #~ msgstr "salvar &Como F12"
  3407. #~ msgid "A&bout... "
  3408. #~ msgstr "&Sobre.. "
  3409. #~ msgid "&Quit F10"
  3410. #~ msgstr "S&air F10"
  3411. #~ msgid "&New C-x k"
  3412. #~ msgstr "&Novo C-x k"
  3413. #~ msgid "Copy to &file... "
  3414. #~ msgstr "copiar para &Arquivo..."
  3415. #, fuzzy
  3416. #~ msgid "&Toggle mark F3"
  3417. #~ msgstr "&Alternar Marca F3"
  3418. #, fuzzy
  3419. #~ msgid "Mar&k columns S-F3"
  3420. #~ msgstr "&Marcar Colunas S-F3"
  3421. #, fuzzy
  3422. #~ msgid "&Copy F5"
  3423. #~ msgstr "&Copiar F5"
  3424. #, fuzzy
  3425. #~ msgid "&Move F6"
  3426. #~ msgstr "&Mover F6"
  3427. #, fuzzy
  3428. #~ msgid "&Delete F8"
  3429. #~ msgstr "&Apagar F8"
  3430. #, fuzzy
  3431. #~ msgid "&Next bookmark M-j"
  3432. #~ msgstr "&Novo C-n"
  3433. #, fuzzy
  3434. #~ msgid "&Undo C-u"
  3435. #~ msgstr "&Desfazer C-u"
  3436. #, fuzzy
  3437. #~ msgid "&Beginning C-PgUp"
  3438. #~ msgstr "&Início C-PgUp"
  3439. #, fuzzy
  3440. #~ msgid "&End C-PgDn"
  3441. #~ msgstr "&Final C-PgDn"
  3442. #, fuzzy
  3443. #~ msgid "C&opy to clipfile M-w"
  3444. #~ msgstr "Ir para a linha... M-l"
  3445. #, fuzzy
  3446. #~ msgid "C&ut to clipfile C-w"
  3447. #~ msgstr "Ir para a linha... M-l"
  3448. #, fuzzy
  3449. #~ msgid "Toggle bookmar&k "
  3450. #~ msgstr "&Alternar Marca F3"
  3451. #, fuzzy
  3452. #~ msgid "&Next bookmark "
  3453. #~ msgstr "&Novo C-n"
  3454. #, fuzzy
  3455. #~ msgid "Pre&v bookmark "
  3456. #~ msgstr "orde&Nar M-t"
  3457. #, fuzzy
  3458. #~ msgid "&Flush bookmark "
  3459. #~ msgstr "&Correio... "
  3460. #~ msgid "&Search... F7"
  3461. #~ msgstr "&Procurar F7"
  3462. #~ msgid "&Replace... F4"
  3463. #~ msgstr "&Substituir F4"
  3464. #~ msgid "&Go to line... M-l"
  3465. #~ msgstr "Ir para a linha... M-l"
  3466. #, fuzzy
  3467. #~ msgid "Encod&ing... M-e"
  3468. #~ msgstr "orde&Nar M-t"
  3469. #~ msgid "Delete macr&o... "
  3470. #~ msgstr "apagar macr&O"
  3471. #~ msgid "Sor&t... M-t"
  3472. #~ msgstr "orde&Nar M-t"
  3473. #~ msgid "&Mail... "
  3474. #~ msgstr "&Correio... "
  3475. #~ msgid "&Execute macro... C-x e, KEY"
  3476. #~ msgstr "&Executar macro... C-x e, TECLA"
  3477. #~ msgid "'ispell' s&pell check M-$"
  3478. #~ msgstr "'ispell' Chegagem orto&Gráfica M-$"
  3479. #, fuzzy
  3480. #~ msgid "Save setu&p"
  3481. #~ msgstr "&Gravar configuração"
  3482. #~ msgid " Edit "
  3483. #~ msgstr " Editar "
  3484. #~ msgid " Sear/Repl "
  3485. #~ msgstr " Proc/Subs "
  3486. #~ msgid " Command "
  3487. #~ msgstr " Comando "
  3488. #~ msgid "Intuitive"
  3489. #~ msgstr "Intuitivo"
  3490. #~ msgid "Emacs"
  3491. #~ msgstr "Emacs"
  3492. #, fuzzy
  3493. #~ msgid "User-defined"
  3494. #~ msgstr "&Personalizada:"
  3495. #~ msgid "Key emulation"
  3496. #~ msgstr "Emulação de teclas"
  3497. #~ msgid "Save"
  3498. #~ msgstr "Salvar"
  3499. #~ msgid "Mark"
  3500. #~ msgstr "Marcar"
  3501. #~ msgid "Replac"
  3502. #~ msgstr "Substituir"
  3503. #~ msgid "PullDn"
  3504. #~ msgstr "Levar para baixo"
  3505. #~ msgid " Copy "
  3506. #~ msgstr "Copiar"
  3507. #~ msgid " Move "
  3508. #~ msgstr " Mover "
  3509. #~ msgid " Delete "
  3510. #~ msgstr " Apagar "
  3511. #~ msgid "1Copy"
  3512. #~ msgstr "1Copiar"
  3513. #~ msgid "1Move"
  3514. #~ msgstr "1Mover"
  3515. #~ msgid "1Delete"
  3516. #~ msgstr "1Apagar"
  3517. #~ msgid "Index"
  3518. #~ msgstr "Índice"
  3519. #~ msgid "Prev"
  3520. #~ msgstr "Ant"
  3521. #~ msgid "&Quick view C-x q"
  3522. #~ msgstr "Vista &rápida C-x q"
  3523. #~ msgid "&Info C-x i"
  3524. #~ msgstr "&Info C-x i"
  3525. #~ msgid "&Rescan C-r"
  3526. #~ msgstr "&Atualizar C-r"
  3527. #~ msgid "&View F3"
  3528. #~ msgstr "&Visão F3"
  3529. #~ msgid "Vie&w file... "
  3530. #~ msgstr "V&er arquivo... "
  3531. #~ msgid "&Filtered view M-!"
  3532. #~ msgstr "Visualização filtrada M-!"
  3533. #~ msgid "&Edit F4"
  3534. #~ msgstr "&Editar F4"
  3535. #~ msgid "&Copy F5"
  3536. #~ msgstr "&Copiar F5"
  3537. #~ msgid "c&Hmod C-x c"
  3538. #~ msgstr "c&Hmod C-x c"
  3539. #~ msgid "&Link C-x l"
  3540. #~ msgstr "&Ligação C-x l"
  3541. #~ msgid "&SymLink C-x s"
  3542. #~ msgstr "Ligação &Simbólica C-x s"
  3543. #~ msgid "edit s&Ymlink C-x C-s"
  3544. #~ msgstr "editar ligação s&Imbólica C-x C-s"
  3545. #~ msgid "ch&Own C-x o"
  3546. #~ msgstr "ch&Own C-x o"
  3547. #~ msgid "&Rename/Move F6"
  3548. #~ msgstr "Renomear/&Mover F6"
  3549. #~ msgid "&Mkdir F7"
  3550. #~ msgstr "&Mkdir F7"
  3551. #~ msgid "&Delete F8"
  3552. #~ msgstr "&Apagar F8"
  3553. #~ msgid "&Quick cd M-c"
  3554. #~ msgstr " cd &Rápido M-c"
  3555. #~ msgid "select &Group M-+"
  3556. #~ msgstr "selecionar &Grupo M-+"
  3557. #~ msgid "u&Nselect group M-\\"
  3558. #~ msgstr "cancelar sele&ção de grupo M-\\"
  3559. #~ msgid "e&Xit F10"
  3560. #~ msgstr "S&Air F10"
  3561. #~ msgid "&User menu F2"
  3562. #~ msgstr "Menu de &Usuário F2"
  3563. #~ msgid "&Find file M-?"
  3564. #~ msgstr "&Localizar arquivo M-?"
  3565. #~ msgid "s&Wap panels C-u"
  3566. #~ msgstr "T&Rocar Painéis C-u"
  3567. #~ msgid "&Compare directories C-x d"
  3568. #~ msgstr "&Comparar diretórios C-x d"
  3569. #~ msgid "e&Xternal panelize C-x !"
  3570. #~ msgstr "Painéis e&xternos c-x !"
  3571. #, fuzzy
  3572. #~ msgid "Command &history M-h"
  3573. #~ msgstr " Histórico de comandos "
  3574. #~ msgid "di&Rectory hotlist C-\\"
  3575. #~ msgstr "Lista de di&retórios C-\\"
  3576. #~ msgid "&Background jobs C-x j"
  3577. #~ msgstr "Tarefas em &Segundo plano C-x j"
  3578. #~ msgid "learn &Keys..."
  3579. #~ msgstr "aprender &Teclas..."
  3580. #~ msgid " &File "
  3581. #~ msgstr " &Arquivo "
  3582. #~ msgid " &Command "
  3583. #~ msgstr " &Comandos "
  3584. #~ msgid "Menu"
  3585. #~ msgstr "Menu"
  3586. #, fuzzy
  3587. #~ msgid "n"
  3588. #~ msgstr "Ligado"
  3589. #, fuzzy
  3590. #~ msgid "Extension"
  3591. #~ msgstr "Extensão:"
  3592. #~ msgid "ATime"
  3593. #~ msgstr "Acessado"
  3594. #~ msgid "CTime"
  3595. #~ msgstr "Criado"
  3596. #~ msgid "Inode"
  3597. #~ msgstr "Inode"
  3598. #~ msgid "RenMov"
  3599. #~ msgstr "RenMov"
  3600. #~ msgid "Static"
  3601. #~ msgstr "Estático"
  3602. #~ msgid "Dynamc"
  3603. #~ msgstr "Dinâmico"
  3604. #~ msgid "Forget"
  3605. #~ msgstr "Esqueça"
  3606. #~ msgid "Rmdir"
  3607. #~ msgstr "Rmdir"
  3608. #, fuzzy
  3609. #~ msgid "bind: Unknown command: `%s'"
  3610. #~ msgstr " Comando chown "
  3611. #, fuzzy
  3612. #~ msgid "%s: Unknown command: `%s'"
  3613. #~ msgstr " Comando chown "
  3614. #, fuzzy
  3615. #~ msgid "%s:%d: unknown command `%s'"
  3616. #~ msgstr " Comando chown "
  3617. #~ msgid "NumLock on keypad"
  3618. #~ msgstr "NumLock no teclado numérico"
  3619. #~ msgid " Emacs key: "
  3620. #~ msgstr " Tecla do Emacs: "
  3621. #~ msgid " %d items found, %d bookmarks added "
  3622. #~ msgstr " %d buscas encontradas, %d favoritos adicionados"
  3623. #~ msgid "Displays this help message"
  3624. #~ msgstr "Mostra esse texto de ajuda"
  3625. #~ msgid "Displays a help screen on how to change the color scheme"
  3626. #~ msgstr "Mostra uma tela de ajuda sobre como mudar o esquema de cores"
  3627. #, fuzzy
  3628. #~ msgid "unknown option"
  3629. #~ msgstr "<Grupo desconhecido>"
  3630. #~ msgid "Show this help message"
  3631. #~ msgstr "Mostra essa mensagem de ajuda"
  3632. #~ msgid "Display brief usage message"
  3633. #~ msgstr "Mostra uma breve explanação sobre o uso"
  3634. #, fuzzy
  3635. #~ msgid "Usage:"
  3636. #~ msgstr " Nome de usuário:"
  3637. #~ msgid "pro&Mpt on replace"
  3638. #~ msgstr "&Perguntar antes de sobrescrever"
  3639. #~ msgid "replace &All"
  3640. #~ msgstr "Substituir &Todos"
  3641. #~ msgid "O&ne"
  3642. #~ msgstr "U&M"
  3643. #, fuzzy
  3644. #~ msgid "%b %d %H:%M"
  3645. #~ msgstr "%b %e %H:%M"
  3646. #, fuzzy
  3647. #~ msgid "%b %d %Y"
  3648. #~ msgstr "%b %e %Y"
  3649. #, fuzzy
  3650. #~ msgid " The current address is 0x%08"
  3651. #~ msgstr ""
  3652. #~ " O endereço atual é 0x%lx.\n"
  3653. #~ " Informe o novo endereço:"
  3654. #~ msgid "scanf &Expression"
  3655. #~ msgstr "&Expressão do scanf"
  3656. #~ msgid " Enter replacement argument order eg. 3,2,1,4 "
  3657. #~ msgstr " Digite a ordem dos argumentos de substituição ex. 3,2,1,4"
  3658. #~ msgid ""
  3659. #~ " Invalid regular expression, or scanf expression with too many "
  3660. #~ "conversions "
  3661. #~ msgstr ""
  3662. #~ "Expressão Regular inválida, ou expreesão scanf com muitas conversões"
  3663. #~ msgid " Error in replacement format string. "
  3664. #~ msgstr " Erro na expressão de substituição "
  3665. #, fuzzy
  3666. #~ msgid " Replacement too long. "
  3667. #~ msgstr "Digite a expressão de substituição:"
  3668. #~ msgid "&Copy F5"
  3669. #~ msgstr "&Copiar F5"
  3670. #~ msgid "&Delete F8"
  3671. #~ msgstr "&Apagar F8"
  3672. #~ msgid " The command history is empty "
  3673. #~ msgstr " O histórico de comandos está vazio "
  3674. #
  3675. #~ msgid "Edit edi&tor menu file"
  3676. #~ msgstr "Editar Edi&tor de Menu"
  3677. #, fuzzy
  3678. #~ msgid "Invalid hex search expression"
  3679. #~ msgstr " Expressão regular inválida"
  3680. #~ msgid " Invalid regular expression "
  3681. #~ msgstr " Expressão regular inválida"
  3682. #~ msgid " Enter regexp:"
  3683. #~ msgstr " Informar regexp:"
  3684. #, fuzzy
  3685. #~ msgid "Using included S-Lang library"
  3686. #~ msgstr "Biblioteca S-lang com "
  3687. #, fuzzy
  3688. #~ msgid "with termcap database"
  3689. #~ msgstr " banco de dados"
  3690. #~ msgid "&Home"
  3691. #~ msgstr "Diretório &Pessoal "
  3692. #~ msgid "&Type"
  3693. #~ msgstr "&Tipo"
  3694. #~ msgid "N&GID"
  3695. #~ msgstr "N&GID"
  3696. #~ msgid "N&UID"
  3697. #~ msgstr "N&UID"
  3698. #~ msgid "&Owner"
  3699. #~ msgstr "&Dono"
  3700. #~ msgid "&Group"
  3701. #~ msgstr "&Grupo"
  3702. #~ msgid "MC was unable to write ~/"
  3703. #~ msgstr "MC não pode escrever em ~/"
  3704. #~ msgid " (%ld blocks)"
  3705. #~ msgstr " (%ld blocos)"
  3706. #~ msgid " Notice "
  3707. #~ msgstr " Nota "
  3708. #~ msgid ""
  3709. #~ " The Midnight Commander configuration files \n"
  3710. #~ " are now stored in the ~/.mc directory, the \n"
  3711. #~ " files have been moved now\n"
  3712. #~ msgstr ""
  3713. #~ " Os arquivos de configuração do Midnight Commander \n"
  3714. #~ " são gravados no diretório ~/.mc , os \n"
  3715. #~ " arquivos foram movidos agora.\n"
  3716. #~ msgid "%s bytes in %d files"
  3717. #~ msgstr "%s bytes em %d arquivos"
  3718. #~ msgid " Cannot open file for reading: "
  3719. #~ msgstr " Falha ao abrir arquivo para leitura: "
  3720. #~ msgid " Not an ordinary file: "
  3721. #~ msgstr " Não é um arquivo simples: "
  3722. #~ msgid "Format of the "
  3723. #~ msgstr " Formato de "
  3724. #~ msgid ""
  3725. #~ " file has changed\n"
  3726. #~ "with version 3.0. You may want either to\n"
  3727. #~ "copy it from "
  3728. #~ msgstr ""
  3729. #~ " Arquivo foi modificado\n"
  3730. #~ "com a versão 3.0. Você pode copiá-lo. "
  3731. #~ msgid ""
  3732. #~ "mc.ext or use that\n"
  3733. #~ "file as an example of how to write it.\n"
  3734. #~ msgstr ""
  3735. #~ "mc.ext ou usar\n"
  3736. #~ "esse arquivo como um exemplo de como escrevê-lo.\n"
  3737. #~ msgid "mc.ext will be used for this moment."
  3738. #~ msgstr "mc.ext será utilizado nesse momento"
  3739. #~ msgid " Cannot open file "
  3740. #~ msgstr " Impossível abrir arquivo"
  3741. #~ msgid "Col %d"
  3742. #~ msgstr "Col %d"
  3743. #~ msgid " [grow]"
  3744. #~ msgstr " [crescer]"
  3745. #~ msgid "Ascii"
  3746. #~ msgstr "ASCII"
  3747. #~ msgid "Hex"
  3748. #~ msgstr "Hex"
  3749. #~ msgid "Line"
  3750. #~ msgstr "Linha"
  3751. #~ msgid "RxSrch"
  3752. #~ msgstr "RxSrch"
  3753. #~ msgid "EdHex"
  3754. #~ msgstr "EdHex"
  3755. #~ msgid "EdText"
  3756. #~ msgstr "EdText"
  3757. #~ msgid "UnWrap"
  3758. #~ msgstr "Desempacotar"
  3759. #~ msgid "Wrap"
  3760. #~ msgstr "Empacotar"
  3761. #~ msgid "HxSrch"
  3762. #~ msgstr "HxSrch"
  3763. #~ msgid "Raw"
  3764. #~ msgstr "Bruto"
  3765. #~ msgid "Parse"
  3766. #~ msgstr "Analisar"
  3767. #~ msgid "Unform"
  3768. #~ msgstr "Deformar"
  3769. #, fuzzy
  3770. #~ msgid "User menu available only in mcedit invoked from mc"
  3771. #~ msgstr "Menu do usuário disponível apenas em mcedit chamado por mc"
  3772. #~ msgid " Socket source routing setup "
  3773. #~ msgstr " Configurar roteamento de origem de conexões "
  3774. #~ msgid " Enter host name to use as a source routing hop: "
  3775. #~ msgstr " Informe o nome da máquina de origem de roteamento: "
  3776. #~ msgid " Host name "
  3777. #~ msgstr " Nome da máquina "
  3778. #~ msgid " Error while looking up IP address "
  3779. #~ msgstr " Erro ao procurar endereço IP "
  3780. #~ msgid ""
  3781. #~ "\n"
  3782. #~ "\n"
  3783. #~ "\n"
  3784. #~ "refresh stack underflow!\n"
  3785. #~ "\n"
  3786. #~ "\n"
  3787. #~ msgstr ""
  3788. #~ "\n"
  3789. #~ "\n"
  3790. #~ "\n"
  3791. #~ "atualizar sobrecarga da pilha!\n"
  3792. #~ "\n"
  3793. #~ "\n"
  3794. #, fuzzy
  3795. #~ msgid " Listing format edit "
  3796. #~ msgstr "Editar forma de &Listagem"
  3797. #~ msgid "&Drive... M-d"
  3798. #~ msgstr "&Dispositivo... M-d"
  3799. #~ msgid "Use to debug the background code"
  3800. #~ msgstr "Utilize para depurar código em segundo plano"
  3801. #, fuzzy
  3802. #~ msgid "Force subshell execution"
  3803. #~ msgstr "configurar identificação do usuário para execução"
  3804. #~ msgid " No action taken "
  3805. #~ msgstr " Nenhuma ação executada"
  3806. #~ msgid " Cannot set source routing (%s)"
  3807. #~ msgstr " Impossível configurar rota fonte (%s)"