pt.po 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the mc package.
  4. #
  5. # Translators:
  6. # Gilberto J <2101458@my.ipleiria.pt>, 2012
  7. # Gilberto Jorge <gmj125@gmail.com>, 2012-2013
  8. # Gilberto Jorge <gmj125@gmail.com>, 2013-2024
  9. # Peter J. Mello <admin@petermello.net>, 2021
  10. # Slava Zanko <slavazanko@gmail.com>, 2011
  11. msgid ""
  12. msgstr ""
  13. "Project-Id-Version: Midnight Commander\n"
  14. "Report-Msgid-Bugs-To: https://www.midnight-commander.org/\n"
  15. "POT-Creation-Date: 2024-06-02 12:47+0300\n"
  16. "PO-Revision-Date: 2010-12-29 10:19+0000\n"
  17. "Last-Translator: Gilberto Jorge <gmj125@gmail.com>, 2013-2024\n"
  18. "Language-Team: Portuguese (http://app.transifex.com/mc/mc/language/pt/)\n"
  19. "Language: pt\n"
  20. "MIME-Version: 1.0\n"
  21. "Content-Type: text/plain; charset=UTF-8\n"
  22. "Content-Transfer-Encoding: 8bit\n"
  23. "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
  24. "1000000 == 0 ? 1 : 2;\n"
  25. # "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  26. msgid "Warning: cannot load codepages list"
  27. msgstr "Aviso: Não foi possível carregar lista de páginas de código"
  28. msgid "7-bit ASCII"
  29. msgstr "7-bit ASCII"
  30. #, c-format
  31. msgid "Cannot translate from %s to %s"
  32. msgstr "Não é possível traduzir de %s para %s"
  33. msgid "Event system already initialized"
  34. msgstr "Sistema de eventos já inicializado"
  35. msgid "Failed to initialize event system"
  36. msgstr "Falha ao iniciar sistema de eventos"
  37. msgid "Event system not initialized"
  38. msgstr "Sistema de eventos não inicializado"
  39. msgid "Check input data! Some of parameters are NULL!"
  40. msgstr "Verifique os dados de entrada! Alguns parâmetros são NULL!"
  41. #, c-format
  42. msgid "Unable to create group '%s' for events!"
  43. msgstr "Não é possível criar grupo '%s' para eventos!"
  44. #, c-format
  45. msgid "Unable to create event '%s'!"
  46. msgstr "Não é possível criar evento '%s'!"
  47. #, c-format
  48. msgid ""
  49. "File \"%s\" is already being edited.\n"
  50. "User: %s\n"
  51. "Process ID: %d"
  52. msgstr ""
  53. "Ficheiro \"%s\" já está a ser editado.\n"
  54. "Utilizador: %s\n"
  55. "ID do Processo: %d"
  56. msgid "File locked"
  57. msgstr "Ficheiro bloqueado"
  58. msgid "&Grab lock"
  59. msgstr "A&dquire lock"
  60. msgid "&Ignore lock"
  61. msgstr "&Ignora lock"
  62. #, c-format
  63. msgid "Cannot create %s directory"
  64. msgstr "Não é possível criar diretório %s"
  65. msgid "FATAL: not a directory:"
  66. msgstr "FATAL: não é um diretório:"
  67. msgid ""
  68. "Number out of range (should be in byte range, 0 <= n <= 0xFF, expressed in "
  69. "hex)"
  70. msgstr ""
  71. "Número excede o limite (deve situar-se no intervalo de um byte, 0 <= n <= "
  72. "0xFF, em hex)"
  73. msgid "Invalid character"
  74. msgstr "Caracter inválido"
  75. msgid "Unmatched quotes character"
  76. msgstr "Caracter aspas sem o respetivo par"
  77. #, c-format
  78. msgid ""
  79. "Hex pattern error at position %d:\n"
  80. "%s."
  81. msgstr ""
  82. "Erro no padrão hex na posição %d:\n"
  83. "%s."
  84. msgid "Search string not found"
  85. msgstr "Cadeia de carateres de procura não encontrada"
  86. msgid "Not implemented yet"
  87. msgstr "Ainda não implementado"
  88. msgid "Num of replace tokens not equal to num of found tokens"
  89. msgstr "Num de tokens de substituição não igual ao num de tokens encontrados"
  90. #, c-format
  91. msgid "Invalid token number %d"
  92. msgstr "Número de token inválido %d"
  93. msgid "Regular expression error"
  94. msgstr "Erro de expressão regular"
  95. msgid "No&rmal"
  96. msgstr "No&rmal"
  97. msgid "Re&gular expression"
  98. msgstr "Expressão re&gular"
  99. msgid "He&xadecimal"
  100. msgstr "He&xadecimal"
  101. msgid "Wil&dcard search"
  102. msgstr "Procura por wil&dcard"
  103. #, c-format
  104. msgid ""
  105. "Unable to load '%s' skin.\n"
  106. "Default skin has been loaded"
  107. msgstr ""
  108. "Não é possível carregar a skin '%s'.\n"
  109. "Skin por omissão carregada"
  110. #, c-format
  111. msgid ""
  112. "Unable to parse '%s' skin.\n"
  113. "Default skin has been loaded"
  114. msgstr ""
  115. "Não é possível processar a skin '%s'.\n"
  116. "Skin por omissão carregada"
  117. #, c-format
  118. msgid ""
  119. "Unable to use '%s' skin with true colors support:\n"
  120. "%s\n"
  121. "Default skin has been loaded"
  122. msgstr ""
  123. "Não foi possível usar a skin '%s' com suporte true colors:\n"
  124. "%s\n"
  125. "Foi carregada a skin por omissão"
  126. #, c-format
  127. msgid ""
  128. "Unable to use '%s' skin with 256 colors support\n"
  129. "on non-256 colors terminal.\n"
  130. "Default skin has been loaded"
  131. msgstr ""
  132. "Não é possível usar a skin '%s' com suporte para 256 cores\n"
  133. "num terminal que não suporta 256 cores.\n"
  134. "Skin por defeito foi carregada"
  135. msgid "True color not supported with ncurses."
  136. msgstr "True color não suportado com o ncurses."
  137. msgid "Your terminal doesn't even seem to support 256 colors."
  138. msgstr "O seu terminal não parece suportar nem 256 cores."
  139. msgid "True color not supported in this slang version."
  140. msgstr "True color não suportado nesta versão slang."
  141. msgid "Set COLORTERM=truecolor if your terminal really supports true colors."
  142. msgstr ""
  143. "Colocar COLORTERM=truecolor se o seu terminal suportar mesmo true colors."
  144. msgid "Escape"
  145. msgstr "Escape"
  146. msgid "Function key 1"
  147. msgstr "Tecla de função 1"
  148. msgid "Function key 2"
  149. msgstr "Tecla de função 2"
  150. msgid "Function key 3"
  151. msgstr "Tecla de função 3"
  152. msgid "Function key 4"
  153. msgstr "Tecla de função 4"
  154. msgid "Function key 5"
  155. msgstr "Tecla de função 5"
  156. msgid "Function key 6"
  157. msgstr "Tecla de função 6"
  158. msgid "Function key 7"
  159. msgstr "Tecla de função 7"
  160. msgid "Function key 8"
  161. msgstr "Tecla de função 8"
  162. msgid "Function key 9"
  163. msgstr "Tecla de função 9"
  164. msgid "Function key 10"
  165. msgstr "Tecla de função 10"
  166. msgid "Function key 11"
  167. msgstr "Tecla de função 11"
  168. msgid "Function key 12"
  169. msgstr "Tecla de função 12"
  170. msgid "Function key 13"
  171. msgstr "Tecla de função 13"
  172. msgid "Function key 14"
  173. msgstr "Tecla de função 14"
  174. msgid "Function key 15"
  175. msgstr "Tecla de função 15"
  176. msgid "Function key 16"
  177. msgstr "Tecla de função 16"
  178. msgid "Function key 17"
  179. msgstr "Tecla de função 17"
  180. msgid "Function key 18"
  181. msgstr "Tecla de função 18"
  182. msgid "Function key 19"
  183. msgstr "Tecla de função 19"
  184. msgid "Function key 20"
  185. msgstr "Tecla de função 20"
  186. msgid "Completion/M-tab"
  187. msgstr "Completar/M-tab"
  188. msgid "BackTab/S-tab"
  189. msgstr "BackTab/S-tab"
  190. msgid "Backspace"
  191. msgstr "Backspace"
  192. msgid "Up arrow"
  193. msgstr "Seta cima"
  194. msgid "Down arrow"
  195. msgstr "Seta baixo"
  196. msgid "Left arrow"
  197. msgstr "Seta esquerda"
  198. msgid "Right arrow"
  199. msgstr "Seta direita"
  200. msgid "Insert"
  201. msgstr "Inserir"
  202. msgid "Delete"
  203. msgstr "Apagar"
  204. msgid "Home"
  205. msgstr "Início"
  206. msgid "End key"
  207. msgstr "Tecla End"
  208. msgid "Page Up"
  209. msgstr "Página cima"
  210. msgid "Page Down"
  211. msgstr "Página baixo"
  212. msgid "/ on keypad"
  213. msgstr "/ no teclado numérico"
  214. msgid "* on keypad"
  215. msgstr "* no teclado numérico"
  216. msgid "- on keypad"
  217. msgstr "- no teclado numérico"
  218. msgid "+ on keypad"
  219. msgstr "+ no teclado numérico"
  220. msgid "Left arrow keypad"
  221. msgstr "Seta esquerda no teclado numérico"
  222. msgid "Right arrow keypad"
  223. msgstr "Seta direita no teclado numérico"
  224. msgid "Up arrow keypad"
  225. msgstr "Seta acima no teclado numérico"
  226. msgid "Down arrow keypad"
  227. msgstr "Seta abaixo no teclado numérico"
  228. msgid "Home on keypad"
  229. msgstr "Home no teclado numérico"
  230. msgid "End on keypad"
  231. msgstr "End no teclado numérico"
  232. msgid "Page Down keypad"
  233. msgstr "Page Down no teclado numérico"
  234. msgid "Page Up keypad"
  235. msgstr "Page Up no teclado numérico"
  236. msgid "Insert on keypad"
  237. msgstr "Insert no teclado numérico"
  238. msgid "Delete on keypad"
  239. msgstr "Delete no teclado numérico"
  240. msgid "Enter on keypad"
  241. msgstr "Enter no teclado numérico"
  242. msgid "Function key 21"
  243. msgstr "Tecla de função 21"
  244. msgid "Function key 22"
  245. msgstr "Tecla de função 22"
  246. msgid "Function key 23"
  247. msgstr "Tecla de função 23"
  248. msgid "Function key 24"
  249. msgstr "Tecla de função 24"
  250. msgid "A1 key"
  251. msgstr "Tecla A1"
  252. msgid "C1 key"
  253. msgstr "Tecla C1"
  254. msgid "Asterisk"
  255. msgstr "Asterisco"
  256. msgid "Minus"
  257. msgstr "Menos"
  258. msgid "Plus"
  259. msgstr "Mais"
  260. msgid "Dot"
  261. msgstr "Ponto"
  262. msgid "Less than"
  263. msgstr "Menos de"
  264. msgid "Great than"
  265. msgstr "Mais de"
  266. msgid "Equal"
  267. msgstr "Igual"
  268. msgid "Comma"
  269. msgstr "Vírgula"
  270. msgid "Apostrophe"
  271. msgstr "Apóstrofe"
  272. msgid "Colon"
  273. msgstr "Dois pontos"
  274. msgid "Semicolon"
  275. msgstr "Ponto e vírgula"
  276. msgid "Exclamation mark"
  277. msgstr "Ponto de exclamação"
  278. msgid "Question mark"
  279. msgstr "Ponto de Interrogação"
  280. msgid "Ampersand"
  281. msgstr "E comercial"
  282. msgid "Dollar sign"
  283. msgstr "Símbolo de dólar"
  284. msgid "Quotation mark"
  285. msgstr "Aspas"
  286. msgid "Percent sign"
  287. msgstr "Símbolo de percentagem"
  288. msgid "Caret"
  289. msgstr "Acento circunflexo"
  290. msgid "Tilda"
  291. msgstr "Til"
  292. msgid "Prime"
  293. msgstr "Plica"
  294. msgid "Underline"
  295. msgstr "Sublinhado"
  296. msgid "Understrike"
  297. msgstr "Riscado"
  298. msgid "Pipe"
  299. msgstr "Pipe"
  300. msgid "Left parenthesis"
  301. msgstr "Parêntese esquerdo"
  302. msgid "Right parenthesis"
  303. msgstr "Parêntese direito"
  304. msgid "Left bracket"
  305. msgstr "Parêntese esquerdo"
  306. msgid "Right bracket"
  307. msgstr "Parêntese direito"
  308. msgid "Left brace"
  309. msgstr "Colchete esquerdo"
  310. msgid "Right brace"
  311. msgstr "Colchete Direito"
  312. msgid "Enter"
  313. msgstr "Enter"
  314. msgid "Tab key"
  315. msgstr "Tecla tab"
  316. msgid "Space key"
  317. msgstr "Barra de espaços"
  318. msgid "Slash key"
  319. msgstr "Barra"
  320. msgid "Backslash key"
  321. msgstr "Barra invertida"
  322. msgid "Number sign #"
  323. msgstr "Sinal numérico #"
  324. #. TRANSLATORS: Please translate as in "at sign" (@).
  325. msgid "At sign"
  326. msgstr "Sinal At"
  327. msgid "Ctrl"
  328. msgstr "Ctrl"
  329. msgid "Alt"
  330. msgstr "Alt"
  331. msgid "Shift"
  332. msgstr "Shift"
  333. msgid "The TERM environment variable is unset!\n"
  334. msgstr "A variável de ambiente TERM foi limpa!\n"
  335. msgid "Cannot check SIGWINCH pipe"
  336. msgstr "Não é possível verificar o pipe SIGWINCH"
  337. #, c-format
  338. msgid ""
  339. "\n"
  340. "Cannot create pipe for SIGWINCH: %s (%d)\n"
  341. msgstr ""
  342. "\n"
  343. "Não é possível criar o pipe para SIGWINCH: %s (%d)\n"
  344. #, c-format
  345. msgid ""
  346. "\n"
  347. "Cannot configure write end of SIGWINCH pipe: %s (%d)\n"
  348. msgstr ""
  349. "\n"
  350. "Não é possível configurar o ponto de escrita do pipe SIGWINCH: %s (%d)\n"
  351. #, c-format
  352. msgid ""
  353. "\n"
  354. "Cannot configure read end of SIGWINCH pipe: %s (%d)\n"
  355. msgstr ""
  356. "\n"
  357. "Não é possível configurar o ponto de leitura do pipe SIGWINCH: %s (%d)\n"
  358. #, c-format
  359. msgid ""
  360. "Screen size %dx%d is not supported.\n"
  361. "Check the TERM environment variable.\n"
  362. msgstr ""
  363. "Tamanho de ecrã %dx%d não é suportado.\n"
  364. "Verifique a variável de ambiente TERM.\n"
  365. msgid "B"
  366. msgstr "B"
  367. msgid "kB"
  368. msgstr "kB"
  369. msgid "KiB"
  370. msgstr "KiB"
  371. msgid "MB"
  372. msgstr "MB"
  373. msgid "MiB"
  374. msgstr "MiB"
  375. msgid "GB"
  376. msgstr "GB"
  377. msgid "GiB"
  378. msgstr "GiB"
  379. msgid "Cannot create pipe descriptor"
  380. msgstr "Não é possível criar o descriptor do pipe"
  381. msgid "Cannot create pipe streams"
  382. msgstr "Não é possível criar streams de pipes"
  383. #, c-format
  384. msgid ""
  385. "Unexpected error in select() reading data from a child process:\n"
  386. "%s"
  387. msgstr ""
  388. "Erro inesperado em select() ao ler dados de um processo child:\n"
  389. "%s"
  390. msgid "Cannot close pipe descriptor (p == NULL)"
  391. msgstr "Não é possível fechar o pipe descriptor (p == NULL)"
  392. #, c-format
  393. msgid ""
  394. "Unexpected error in waitpid():\n"
  395. "%s"
  396. msgstr ""
  397. "Erro inesperado em waitpid():\n"
  398. "%s"
  399. #, c-format
  400. msgid "Directory cache expired for %s"
  401. msgstr "Cache de diretório expirou para %s"
  402. #, c-format
  403. msgid "%s: %s: %s %3d%% (%lld) bytes transferred"
  404. msgstr "%s: %s: %s %3d%% (%lld) bytes transferidos"
  405. #, c-format
  406. msgid "%s: %s: %s %lld bytes transferred"
  407. msgstr "%s: %s: %s %lld bytes transferidos"
  408. msgid "Starting linear transfer..."
  409. msgstr "A iniciar transferência linear..."
  410. msgid "Getting file"
  411. msgstr "A obter ficheiro"
  412. msgid "Changes to file lost"
  413. msgstr "Modificações ao ficheiro perdidas"
  414. #, fuzzy, c-format
  415. msgid ""
  416. "Cannot create temporary directory %s: %s.\n"
  417. "Temporary files will not be created\n"
  418. msgstr "Não é possível criar diretório temporário %s: %s\n"
  419. msgid "Press any key to continue..."
  420. msgstr "Prima qualquer tecla para continuar..."
  421. msgid "Cannot parse:"
  422. msgstr "Não é possível de parsear:"
  423. msgid "More parsing errors will be ignored."
  424. msgstr "Mais erros de parseamento serão ignorados."
  425. msgid "Internal error:"
  426. msgstr "Erro interno:"
  427. msgid "Password:"
  428. msgstr "Senha:"
  429. msgid "Screens"
  430. msgstr "Ecrãs"
  431. msgid "History"
  432. msgstr "Histórico"
  433. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  434. msgid "DialogTitle|History cleanup"
  435. msgstr "DialogTitle|Limpeza de histórico"
  436. msgid "Do you want clean this history?"
  437. msgstr "Deseja apagar este histórico?"
  438. msgid "&Yes"
  439. msgstr "&Sim"
  440. msgid "&No"
  441. msgstr "&Não"
  442. msgid "&OK"
  443. msgstr "&OK"
  444. msgid "&Cancel"
  445. msgstr "&Cancelar"
  446. msgid "Background process:"
  447. msgstr "Processo de background:"
  448. msgid "Error"
  449. msgstr "Erro"
  450. #, c-format
  451. msgid "%s (%d)"
  452. msgstr "%s (%d)"
  453. msgid "&Abort"
  454. msgstr "&Abortar"
  455. msgid "Displays the current version"
  456. msgstr "Mostra a versão atual"
  457. msgid "Print data directory"
  458. msgstr "Imprime dados do diretório"
  459. msgid "Print extended info about used data directories"
  460. msgstr "Imprime informação extendida sobre diretórios de dados usados"
  461. msgid "Print configure options"
  462. msgstr "Opções de configuração de impressão"
  463. msgid "Print last working directory to specified file"
  464. msgstr "Imprime último diretório de trabalho para o ficheiro especificado"
  465. msgid "<file>"
  466. msgstr "<file>"
  467. msgid "Enables subshell support (default)"
  468. msgstr "Ativar suporte de subshell (defeito)"
  469. msgid "Disables subshell support"
  470. msgstr "Desabilitar suporte de subshell"
  471. msgid "Log ftp dialog to specified file"
  472. msgstr "Registar diálogo de ftp para o ficheiro especificado"
  473. msgid "Launches the file viewer on a file"
  474. msgstr "Executa o visualizador de ficheiros sobre um ficheiro"
  475. msgid "Edit files"
  476. msgstr "Editar ficheiros"
  477. msgid "<file> ..."
  478. msgstr "<file> ..."
  479. msgid "Forces xterm features"
  480. msgstr "Força funcionalidades xterm"
  481. msgid "Disable X11 support"
  482. msgstr "Desabilitar suporte X11"
  483. msgid "Tries to use an old highlight mouse tracking"
  484. msgstr "Tenta usar um antigo realce de rastreamento de rato"
  485. msgid "Disable mouse support in text version"
  486. msgstr "Desabilitar suporte para rato na versão texto"
  487. msgid "Tries to use termcap instead of terminfo"
  488. msgstr "Tenta utilizar termcap em vez do terminfo"
  489. msgid "To run on slow terminals"
  490. msgstr "Para correr em terminais lentos"
  491. msgid "Use stickchars to draw"
  492. msgstr "Utilizar caracteres lineares para desenhar"
  493. msgid "Resets soft keys on HP terminals"
  494. msgstr "Limpa teclas de atalho nos terminais HP"
  495. msgid "Load definitions of key bindings from specified file"
  496. msgstr ""
  497. "Carregar definições de combinação de teclas a partir de ficheiro especificado"
  498. msgid "Don't load definitions of key bindings from file, use defaults"
  499. msgstr ""
  500. "Não carregar definições de combinações de teclas a partir de ficheiro, usar "
  501. "predefinições"
  502. msgid "Requests to run in black and white"
  503. msgstr "Requerer a execução em modo preto e branco"
  504. msgid "Request to run in color mode"
  505. msgstr "Requerer a execução em modo de cor"
  506. msgid "Specifies a color configuration"
  507. msgstr "Especificar uma configuração de cor"
  508. msgid "<string>"
  509. msgstr "<string>"
  510. msgid "Show mc with specified skin"
  511. msgstr "Mostra mc com a skin especificada"
  512. #. TRANSLATORS: don't translate keywords
  513. msgid ""
  514. "--colors KEYWORD={FORE},{BACK},{ATTR}:KEYWORD2=...\n"
  515. "\n"
  516. "{FORE}, {BACK} and {ATTR} can be omitted, and the default will be used\n"
  517. "\n"
  518. " Keywords:\n"
  519. " Global: errors, disabled, reverse, gauge, header\n"
  520. " input, inputmark, inputunchanged, commandlinemark\n"
  521. " bbarhotkey, bbarbutton, statusbar\n"
  522. " File display: normal, selected, marked, markselect\n"
  523. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  524. " errdhotfocus\n"
  525. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  526. " Popup menus: pmenunormal, pmenusel, pmenutitle\n"
  527. " Editor: editnormal, editbold, editmarked, editwhitespace, "
  528. "editnonprintable,\n"
  529. " editlinestate, editbg, editframe, editframeactive\n"
  530. " editframedrag\n"
  531. " Viewer: viewnormal,viewbold, viewunderline, viewselected\n"
  532. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  533. msgstr ""
  534. "--colors KEYWORD={FORE},{BACK},{ATTR}:KEYWORD2=...\n"
  535. "\n"
  536. "{FORE}, {BACK} e {ATTR} podem ser omitidos, o valor por omissão será usado\n"
  537. "\n"
  538. " Keywords:\n"
  539. " Global: errors, disabled, reverse, gauge, header\n"
  540. " input, inputmark, inputunchanged, commandlinemark\n"
  541. " bbarhotkey, bbarbutton, statusbar\n"
  542. " File display: normal, selected, marked, markselect\n"
  543. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  544. " errdhotfocus\n"
  545. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  546. " Popup menus: pmenunormal, pmenusel, pmenutitle\n"
  547. " Editor: editnormal, editbold, editmarked, editwhitespace, "
  548. "editnonprintable,\n"
  549. " editlinestate, editbg, editframe, editframeactive\n"
  550. " editframedrag\n"
  551. " Viewer: viewnormal,viewbold, viewunderline, viewselected\n"
  552. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  553. #. TRANSLATORS: don't translate color names and attributes
  554. msgid ""
  555. "Standard Colors:\n"
  556. " black, gray, red, brightred, green, brightgreen, brown,\n"
  557. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  558. " brightcyan, lightgray and white\n"
  559. "\n"
  560. "Extended colors, when 256 colors are available:\n"
  561. " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
  562. "\n"
  563. "Attributes:\n"
  564. " bold, italic, underline, reverse, blink; append more with '+'\n"
  565. msgstr ""
  566. "Cores Standard:\n"
  567. " black, gray, red, brightred, green, brightgreen, brown,\n"
  568. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  569. " brightcyan, lightgray and white\n"
  570. "\n"
  571. "Cores adicionais, quando estão disponíveis 256 cores:\n"
  572. " color16 to color255, ou rgb000 a rgb555 e gray0 a gray23\n"
  573. "\n"
  574. "Atributos:\n"
  575. " bold, italic, underline, reverse, blink; concatenar mais com '+'\n"
  576. msgid "Color options"
  577. msgstr "Opções de cor"
  578. msgid "[+lineno] file1[:lineno] [file2[:lineno]...]"
  579. msgstr "[+lineno] file1[:lineno] [file2[:lineno]...]"
  580. msgid "file"
  581. msgstr "ficheiro"
  582. msgid "file1 file2"
  583. msgstr "file1 file2"
  584. msgid "[this_dir] [other_panel_dir]"
  585. msgstr "[este_dir] [outro_painel_dir]"
  586. msgid ""
  587. "\n"
  588. "Please send any bug reports (including the output of 'mc -V')\n"
  589. "as tickets at www.midnight-commander.org\n"
  590. msgstr ""
  591. "\n"
  592. "Por favor envie quaisquer relatório de erros (incluindo o output de 'mc -"
  593. "V')\n"
  594. "como tickets em www.midnight-commander.org\n"
  595. #, c-format
  596. msgid "GNU Midnight Commander %s\n"
  597. msgstr "GNU Midnight Commander %s\n"
  598. msgid "Main options"
  599. msgstr "Opções principais"
  600. msgid "Terminal options"
  601. msgstr "Opções para o terminal"
  602. msgid "Arguments parse error!"
  603. msgstr "Erro de parseamento de argumentos!"
  604. #, fuzzy
  605. msgid "MC is built without builtin editor."
  606. msgstr "Com Editor integrado"
  607. msgid "No arguments given to the viewer."
  608. msgstr "Nenhum argumento dado ao visualizador."
  609. msgid "Two files are required to invoke the diffviewer."
  610. msgstr "São necessários dois ficheiros para invocar o diffviewer."
  611. msgid "Background protocol error"
  612. msgstr "Erro de protocolo em background"
  613. msgid "Reading failed"
  614. msgstr "Falha na leitura"
  615. msgid "Background process error"
  616. msgstr "Erro de processamento em background"
  617. msgid "Unknown error in child"
  618. msgstr "Erro desconhecido em child"
  619. msgid "Child died unexpectedly"
  620. msgstr "Child morreu inesperadamente"
  621. msgid ""
  622. "Background process sent us a request for more arguments\n"
  623. "than we can handle."
  624. msgstr ""
  625. "Processo em background enviou-nos um pedido para mais argumentos\n"
  626. "do que aqueles que podemos suportar."
  627. msgid "&Dismiss"
  628. msgstr "&Fechar"
  629. msgid "Enter search string:"
  630. msgstr "Insira string de pesquisa:"
  631. msgid "Cas&e sensitive"
  632. msgstr "S&ensível à capitalização"
  633. msgid "&Backwards"
  634. msgstr "&Para trás"
  635. msgid "&Whole words"
  636. msgstr "&Todas as palavras"
  637. msgid "&All charsets"
  638. msgstr "Todos os ch&arsets"
  639. msgid "Search"
  640. msgstr "Procurar"
  641. msgid "Search is disabled"
  642. msgstr "Pesquisa está desabilitada"
  643. #, c-format
  644. msgid ""
  645. "Cannot create temporary diff file\n"
  646. "%s"
  647. msgstr ""
  648. "Não é possível criar ficheiro temporario diff\n"
  649. "%s"
  650. #, c-format
  651. msgid ""
  652. "Cannot create backup file\n"
  653. "%s%s\n"
  654. "%s"
  655. msgstr ""
  656. "Não é possível criar ficheiro de backup\n"
  657. "%s%s\n"
  658. "%s"
  659. #, c-format
  660. msgid ""
  661. "Cannot create temporary merge file\n"
  662. "%s"
  663. msgstr ""
  664. "Não é possível criar ficheiro temporário de fusão\n"
  665. "%s"
  666. msgid "&Fastest (Assume large files)"
  667. msgstr "&Mais rápido (Assume ficheiros grandes)"
  668. msgid "&Minimal (Find a smaller set of change)"
  669. msgstr "&Minimalista (Localiza um pequeno conjunto de alteração)"
  670. msgid "Diff algorithm"
  671. msgstr "Algoritmo diff"
  672. msgid "Diff extra options"
  673. msgstr "Opções extra de diff"
  674. msgid "&Ignore case"
  675. msgstr "&Ignora letras maiúsculas"
  676. msgid "Ignore tab &expansion"
  677. msgstr "Ignora &expansão de tab"
  678. msgid "Ignore &space change"
  679. msgstr "Ignora &mudança de espaços"
  680. msgid "Ignore all &whitespace"
  681. msgstr "Ignora todos os &espaços brancos"
  682. msgid "Strip &trailing carriage return"
  683. msgstr "Remove trailing carriage return"
  684. msgid "Diff Options"
  685. msgstr "Opções Diff"
  686. msgid "Edit"
  687. msgstr "Editar"
  688. msgid "Edit is disabled"
  689. msgstr "Edição está desabilitada"
  690. msgid "Goto line (left)"
  691. msgstr "Ir para a linha (esquerda)"
  692. msgid "Goto line (right)"
  693. msgstr "Ir para a linha (direita)"
  694. msgid "Enter line:"
  695. msgstr "Inserir linha:"
  696. msgid "ButtonBar|Help"
  697. msgstr "ButtonBar|Ajuda"
  698. msgid "ButtonBar|Save"
  699. msgstr "ButtonBar|Guarda"
  700. msgid "ButtonBar|Edit"
  701. msgstr "ButtonBar|Editar"
  702. msgid "ButtonBar|Merge"
  703. msgstr "ButtonBar|Fundir"
  704. msgid "ButtonBar|Search"
  705. msgstr "ButtonBar|Local."
  706. msgid "ButtonBar|Options"
  707. msgstr "ButtonBar|Opções"
  708. msgid "ButtonBar|Quit"
  709. msgstr "ButtonBar|Sair"
  710. msgid "Quit"
  711. msgstr "Sair"
  712. msgid "File(s) was modified. Save with exit?"
  713. msgstr "Ficheiro(s) foram modificados. Guardar e sair?"
  714. msgid ""
  715. "Midnight Commander is being shut down.\n"
  716. "Save modified file(s)?"
  717. msgstr ""
  718. "Midnight Commander está a terminar.\n"
  719. "Guardar ficheiro(s) modificado(s)?"
  720. msgid "Diff:"
  721. msgstr "Diff:"
  722. #, c-format
  723. msgid "\"%s\" is a directory"
  724. msgstr "\"%s\" é um diretório"
  725. #, c-format
  726. msgid ""
  727. "Cannot stat \"%s\"\n"
  728. "%s"
  729. msgstr ""
  730. "Não é possível efetuar stat \"%s\"\n"
  731. "%s"
  732. msgid "Diff viewer: invalid mode"
  733. msgstr "Visualizador diff: modo inválido"
  734. msgid "Two files are needed to compare"
  735. msgstr "São necessários dois ficheiros para a comparação"
  736. #, c-format
  737. msgid "Loading: %3d%%"
  738. msgstr "A carregar: %3d%%"
  739. msgid "Loading..."
  740. msgstr "A carregar..."
  741. #, c-format
  742. msgid "Cannot open %s for reading"
  743. msgstr "Não é possível abrir %s para leitura"
  744. msgid "Load file"
  745. msgstr "Carregar ficheiro"
  746. #, c-format
  747. msgid "Error reading %s"
  748. msgstr "Erro de leitura %s"
  749. #, c-format
  750. msgid "Cannot get size/permissions for %s"
  751. msgstr "Não é possível obter tamanho/permissões para %s"
  752. #, c-format
  753. msgid "\"%s\" is not a regular file"
  754. msgstr "\"%s\" não é um ficheiro regular"
  755. #, c-format
  756. msgid ""
  757. "File \"%s\" is too large.\n"
  758. "Open it anyway?"
  759. msgstr ""
  760. "O ficheiro \"%s\" é demasiado grande.\n"
  761. "Deseja mesmo abrir?"
  762. msgid "Warning"
  763. msgstr "Aviso"
  764. #, c-format
  765. msgid "Error reading from pipe: %s"
  766. msgstr "Erro ao ler do pipe: %s"
  767. #, c-format
  768. msgid "Cannot open pipe for reading: %s"
  769. msgstr "Não é possível abrir pipe para leitura: %s"
  770. msgid "File has hard-links. Detach before saving?"
  771. msgstr "Ficheiro tem hard-links. Separar antes de guardar?"
  772. msgid "The file has been modified in the meantime. Save anyway?"
  773. msgstr "O ficheiro foi modificado entretanto. Sair na mesma?"
  774. #, c-format
  775. msgid "Error writing to pipe: %s"
  776. msgstr "Erro ao escrever para o pipe: %s"
  777. #, c-format
  778. msgid "Cannot open pipe for writing: %s"
  779. msgstr "Não é possível abrir o pipe para escrita: %s"
  780. #, c-format
  781. msgid "Cannot open file for writing: %s"
  782. msgstr "Não é possível abrir o ficheiro para escrita: %s"
  783. msgid "The file you are saving does not end with a newline."
  784. msgstr "O ficheiro que está a guardar não termina com uma nova linha."
  785. msgid "C&ontinue"
  786. msgstr "C&ontinuar"
  787. msgid "&Do not change"
  788. msgstr "Não mo&dificar"
  789. msgid "&Unix format (LF)"
  790. msgstr "Formato &Unix (LF)"
  791. msgid "&Windows/DOS format (CR LF)"
  792. msgstr "Formato &Windows/DOS (CR LF)"
  793. msgid "&Macintosh format (CR)"
  794. msgstr "Formato &Macintosh (CR)"
  795. msgid "Enter file name:"
  796. msgstr "Inserir nome de ficheiro:"
  797. msgid "Change line breaks to:"
  798. msgstr "Modificar quebras de linha para:"
  799. msgid "Save As"
  800. msgstr "Guardar Como"
  801. msgid "&Quick save"
  802. msgstr "G&uardar rápido"
  803. msgid "&Safe save"
  804. msgstr "Guardar com &segurança"
  805. msgid "&Do backups with following extension:"
  806. msgstr "Efetuar backups com a extensão seguinte:"
  807. msgid "Check &POSIX new line"
  808. msgstr "Verificar nova linha &POSIX"
  809. msgid "Edit Save Mode"
  810. msgstr "Editar Modo de Gravação"
  811. msgid "Save as"
  812. msgstr "Guardar como"
  813. msgid "Cannot save: destination is not a regular file"
  814. msgstr "Não é possível guardar: destino não é um ficheiro regular"
  815. msgid "A file already exists with this name"
  816. msgstr "Já existe um ficheiro com este nome"
  817. msgid "&Overwrite"
  818. msgstr "Escrever p&or cima"
  819. msgid "Cannot save file"
  820. msgstr "Não é possível guardar ficheiro"
  821. #, c-format
  822. msgid "Confirm save file: \"%s\""
  823. msgstr "Confirmar gravação de ficheiro: \"%s\""
  824. msgid "Save file"
  825. msgstr "Guardar ficheiro"
  826. msgid "&Save"
  827. msgstr "&Gravar"
  828. msgid "Load"
  829. msgstr "Carregar"
  830. msgid "Syntax file edit"
  831. msgstr "Editar ficheiro de sintaxe"
  832. msgid "Which syntax file you want to edit?"
  833. msgstr "Que ficheiro de sintaxe deseja editar?"
  834. msgid "&User"
  835. msgstr "&Utilizador"
  836. msgid "&System wide"
  837. msgstr "&Sistema geral"
  838. msgid "Menu edit"
  839. msgstr "Editar menu"
  840. msgid "Which menu file do you want to edit?"
  841. msgstr "Que ficheiro de menu deseja editar?"
  842. msgid "&Local"
  843. msgstr "&Local"
  844. msgid "[NoName]"
  845. msgstr "[SemNome]"
  846. #, c-format
  847. msgid ""
  848. "File %s was modified.\n"
  849. "Save before close?"
  850. msgstr ""
  851. "Ficheiro %s foi modificado.\n"
  852. "Guardar antes de fechar?"
  853. msgid "Close file"
  854. msgstr "Fechar ficheiro"
  855. #, c-format
  856. msgid ""
  857. "Midnight Commander is being shut down.\n"
  858. "Save modified file %s?"
  859. msgstr ""
  860. "Midnight Commander está a terminar.\n"
  861. "Guardar ficheiro %s modificado?"
  862. msgid "This function is not implemented"
  863. msgstr "Esta função não está implementada"
  864. msgid "Copy to clipboard"
  865. msgstr "Copiar para o clipboard"
  866. msgid "Unable to save to file"
  867. msgstr "Não foi possível guardar para ficheiro"
  868. msgid "Cut to clipboard"
  869. msgstr "Cortar para o clipboard"
  870. msgid "Goto line"
  871. msgstr "Ir para a linha"
  872. msgid "Save block"
  873. msgstr "Guardar bloco"
  874. msgid "Insert file"
  875. msgstr "Inserir ficheiro"
  876. msgid "Cannot insert file"
  877. msgstr "Não é possível inserir ficheiro"
  878. msgid "Sort block"
  879. msgstr "Ordenar bloco"
  880. msgid "You must first highlight a block of text"
  881. msgstr "Primeiro tem de destacar um bloco de texto"
  882. msgid "Run sort"
  883. msgstr "Excutar ordenar"
  884. msgid "Enter sort options (see sort(1) manpage) separated by whitespace:"
  885. msgstr ""
  886. "Introduza opções de ordenação (ver sort(1) manpage) separadas por espaço "
  887. "branco:"
  888. msgid "Sort"
  889. msgstr "Ordenar"
  890. msgid "Cannot execute sort command"
  891. msgstr "Não é possível executar o comando ordenar"
  892. #, c-format
  893. msgid "Sort returned non-zero: %s"
  894. msgstr "Ordenar devolveu não zero: %s"
  895. msgid "Paste output of external command"
  896. msgstr "Colar output de comando externo"
  897. msgid "Enter shell command(s):"
  898. msgstr "Inserir comando(s) shell:"
  899. msgid "External command"
  900. msgstr "Comando externo"
  901. msgid "Cannot execute command"
  902. msgstr "Não é possível executar comando"
  903. msgid "mail -s <subject> -c <cc> <to>"
  904. msgstr "mail -s <subject> -c <cc> <to>"
  905. msgid "To"
  906. msgstr "Para"
  907. msgid "Subject"
  908. msgstr "Assunto"
  909. msgid "Copies to"
  910. msgstr "Copia para"
  911. msgid "Mail"
  912. msgstr "Mail"
  913. msgid "Insert literal"
  914. msgstr "Inserir literal"
  915. msgid "Press any key:"
  916. msgstr "Pressione uma tecla:"
  917. msgid ""
  918. "Current text was modified without a file save.\n"
  919. "Continue discards these changes."
  920. msgstr ""
  921. "O texto atual foi modificado sem guardar o ficheiro.\n"
  922. "Continuar descarta as alterações."
  923. msgid "Cancel"
  924. msgstr "Cancelar"
  925. msgid "Collect completions"
  926. msgstr "Recolher finalizações"
  927. msgid "NoName"
  928. msgstr "SemNome"
  929. msgid "Save macro"
  930. msgstr "Guardar macro"
  931. msgid "Press the macro's new hotkey:"
  932. msgstr "Pressione o novo atalho da macro:"
  933. msgid "Delete macro"
  934. msgstr "Apagar macro"
  935. msgid "Press macro hotkey:"
  936. msgstr "Pressione atalho de macro:"
  937. msgid "Macro not deleted"
  938. msgstr "Macro não apagada"
  939. msgid "Repeat last commands"
  940. msgstr "Repetir últimos comandos"
  941. msgid "Repeat times:"
  942. msgstr "Repetir vezes:"
  943. msgid "&Open file..."
  944. msgstr "&Abrir ficheiro..."
  945. msgid "&New"
  946. msgstr "&Novo"
  947. msgid "&Close"
  948. msgstr "&Fechar"
  949. msgid "&History..."
  950. msgstr "&Histórico..."
  951. msgid "Save &as..."
  952. msgstr "Guard&ar como..."
  953. msgid "&Insert file..."
  954. msgstr "&Inserir ficheiro..."
  955. msgid "Cop&y to file..."
  956. msgstr "Cop&iar para ficheiro..."
  957. msgid "&User menu..."
  958. msgstr "Menu de &utilizador..."
  959. msgid "A&bout..."
  960. msgstr "Acer&ca..."
  961. msgid "&Quit"
  962. msgstr "Sai&r"
  963. msgid "&Undo"
  964. msgstr "Desfa&zer"
  965. msgid "&Redo"
  966. msgstr "&Refazer"
  967. msgid "&Toggle ins/overw"
  968. msgstr "Comu&tar ins/overw"
  969. msgid "To&ggle mark"
  970. msgstr "C&omutar marca"
  971. msgid "&Mark columns"
  972. msgstr "&Marcar colunas"
  973. msgid "Mark &all"
  974. msgstr "M&arcar tudo"
  975. msgid "Unmar&k"
  976. msgstr "Desmar&car"
  977. msgid "Cop&y"
  978. msgstr "Cop&iar"
  979. msgid "Mo&ve"
  980. msgstr "Mo&ver"
  981. msgid "&Delete"
  982. msgstr "&Apagar"
  983. msgid "Co&py to clipfile"
  984. msgstr "Co&piar para clipfile"
  985. msgid "&Cut to clipfile"
  986. msgstr "&Cortar para clipfile"
  987. msgid "Pa&ste from clipfile"
  988. msgstr "Co&lar para clipfile"
  989. msgid "&Beginning"
  990. msgstr "&Inicio"
  991. msgid "&End"
  992. msgstr "&Fim"
  993. msgid "&Search..."
  994. msgstr "&Procurar..."
  995. msgid "Search &again"
  996. msgstr "Procur&ar novamente"
  997. msgid "&Replace..."
  998. msgstr "Substitui&r..."
  999. msgid "&Toggle bookmark"
  1000. msgstr "Comu&tar marcador"
  1001. msgid "&Next bookmark"
  1002. msgstr "Próxi&mo marcador"
  1003. msgid "&Prev bookmark"
  1004. msgstr "Marcador a&nterior"
  1005. msgid "&Flush bookmarks"
  1006. msgstr "L&impar marcadores"
  1007. msgid "&Go to line..."
  1008. msgstr "Ir p&ara a linha..."
  1009. msgid "&Toggle line state"
  1010. msgstr "Comu&tar estado da linha"
  1011. msgid "Go to matching &bracket"
  1012. msgstr "Ir para o parêntese reto correspondente"
  1013. msgid "Toggle s&yntax highlighting"
  1014. msgstr "Comutar destaque de sinta&xe"
  1015. msgid "&Find declaration"
  1016. msgstr "&Procurar declaração"
  1017. msgid "Back from &declaration"
  1018. msgstr "Voltar de &declaração"
  1019. msgid "For&ward to declaration"
  1020. msgstr "En&caminhar para declaração"
  1021. msgid "Encod&ing..."
  1022. msgstr "Cod&ificação..."
  1023. msgid "&Refresh screen"
  1024. msgstr "&Refrescar ecrã"
  1025. msgid "&Start/Stop record macro"
  1026. msgstr "I&niciar/Parar gravação de macro"
  1027. msgid "Delete macr&o..."
  1028. msgstr "Apagar macr&o..."
  1029. msgid "Record/Repeat &actions"
  1030. msgstr "Gravar/Repetir &ações"
  1031. msgid "S&pell check"
  1032. msgstr "Verificação or&tográfica"
  1033. msgid "C&heck word"
  1034. msgstr "&Verificação ortográfica"
  1035. msgid "Change spelling &language..."
  1036. msgstr "A&lterar idioma..."
  1037. msgid "&Mail..."
  1038. msgstr "&Mail..."
  1039. msgid "Insert &literal..."
  1040. msgstr "Inserir &literal..."
  1041. msgid "Insert &date/time"
  1042. msgstr "Inserir &data/hora"
  1043. msgid "&Format paragraph"
  1044. msgstr "&Formatar parágrafo"
  1045. msgid "&Sort..."
  1046. msgstr "O&rdenar..."
  1047. msgid "&Paste output of..."
  1048. msgstr "Colar out&put de..."
  1049. msgid "&External formatter"
  1050. msgstr "Formatador &externo"
  1051. msgid "&Move"
  1052. msgstr "&Mover"
  1053. msgid "&Resize"
  1054. msgstr "&Redimensionar"
  1055. msgid "&Toggle fullscreen"
  1056. msgstr "Comu&tar ecrã completo"
  1057. msgid "&Next"
  1058. msgstr "Pró&ximo"
  1059. msgid "&Previous"
  1060. msgstr "Ant&erior"
  1061. msgid "&List..."
  1062. msgstr "&Listar..."
  1063. msgid "&General..."
  1064. msgstr "&Geral..."
  1065. msgid "Save &mode..."
  1066. msgstr "Guardar &modo..."
  1067. msgid "Learn &keys..."
  1068. msgstr "Aprender te&clas..."
  1069. msgid "Syntax &highlighting..."
  1070. msgstr "Destaque de sinta&xe..."
  1071. msgid "S&yntax file"
  1072. msgstr "Ficheiro de s&intaxe"
  1073. msgid "&Menu file"
  1074. msgstr "Ficheiro &menu"
  1075. msgid "&Save setup"
  1076. msgstr "&Gravar configuração"
  1077. msgid "&File"
  1078. msgstr "&Ficheiro"
  1079. msgid "&Edit"
  1080. msgstr "&Editar"
  1081. msgid "&Search"
  1082. msgstr "Procura&r"
  1083. msgid "&Command"
  1084. msgstr "&Comando"
  1085. msgid "For&mat"
  1086. msgstr "For&matar"
  1087. msgid "&Window"
  1088. msgstr "&Janela"
  1089. msgid "&Options"
  1090. msgstr "&Opções"
  1091. msgid "&None"
  1092. msgstr "&Nenhum"
  1093. msgid "&Dynamic paragraphing"
  1094. msgstr "Paragrafos &dinamicos"
  1095. msgid "Type &writer wrap"
  1096. msgstr "Quebra &máq. escrever"
  1097. msgid "Wrap mode"
  1098. msgstr "Modo de quebra"
  1099. msgid "Tabulation"
  1100. msgstr "Tabulação"
  1101. msgid "&Fake half tabs"
  1102. msgstr "&Fingir meios tabs"
  1103. msgid "&Backspace through tabs"
  1104. msgstr "Apagar através de ta&bs"
  1105. msgid "Fill tabs with &spaces"
  1106. msgstr "Preencher tabs com e&spaços"
  1107. msgid "Tab spacing:"
  1108. msgstr "Espaçamento de Tab:"
  1109. msgid "Other options"
  1110. msgstr "Outras opções"
  1111. msgid "&Return does autoindent"
  1112. msgstr "Ente&r faz auto-indentação"
  1113. msgid "Confir&m before saving"
  1114. msgstr "Confir&mar antes de gravar"
  1115. msgid "Save file &position"
  1116. msgstr "Guardar &posição de ficheiro"
  1117. msgid "&Visible trailing spaces"
  1118. msgstr "Espaços à direita &visíveis"
  1119. msgid "Visible &tabs"
  1120. msgstr "&Tabs visíveis"
  1121. msgid "Synta&x highlighting"
  1122. msgstr "Destaque de sinta&xe"
  1123. msgid "C&ursor after inserted block"
  1124. msgstr "C&ursor depois de bloco inserido"
  1125. msgid "Pers&istent selection"
  1126. msgstr "Seleção pers&istente"
  1127. msgid "Cursor be&yond end of line"
  1128. msgstr "Cursor para além do &fim de linha"
  1129. msgid "&Group undo"
  1130. msgstr "Desfazer &grupo"
  1131. msgid "Word wrap line length:"
  1132. msgstr "Comprimento de linha word wrap:"
  1133. msgid "Editor options"
  1134. msgstr "Opções de editor"
  1135. msgid "In se&lection"
  1136. msgstr "Na se&leção"
  1137. msgid "&Find all"
  1138. msgstr "&Encontrar todos"
  1139. msgid "Enter replacement string:"
  1140. msgstr "Insira a string de substituição:"
  1141. msgid "Replace"
  1142. msgstr "Substituir"
  1143. msgid "Replace with:"
  1144. msgstr "Substituir com:"
  1145. msgid "&Replace"
  1146. msgstr "&Substituir"
  1147. msgid "A&ll"
  1148. msgstr "To&dos"
  1149. msgid "&Skip"
  1150. msgstr "&Saltar"
  1151. msgid "Confirm replace"
  1152. msgstr "Confirmar substituição"
  1153. #, c-format
  1154. msgid "Searching %s: %3d%%"
  1155. msgstr "A procurar %s: %3d%%"
  1156. #, c-format
  1157. msgid "Searching %s"
  1158. msgstr "A procurar %s"
  1159. #, c-format
  1160. msgid "%ld replacements made"
  1161. msgstr "%ld substituições efetuadas"
  1162. msgid ""
  1163. "A user friendly text editor\n"
  1164. "written for the Midnight Commander."
  1165. msgstr ""
  1166. "Um editor de texto amigo do utilizador\n"
  1167. "escrito para o Midnight Commander."
  1168. msgid "Copyright (C) 1996-2024 the Free Software Foundation"
  1169. msgstr "Copyright (C) 1996-2024 the Free Software Foundation"
  1170. msgid "About"
  1171. msgstr "Acerca"
  1172. msgid "Open files"
  1173. msgstr "Abrir ficheiros"
  1174. msgid "Edit: "
  1175. msgstr "Editar:"
  1176. msgid "ButtonBar|Mark"
  1177. msgstr "ButtonBar|Marcar"
  1178. msgid "ButtonBar|Replac"
  1179. msgstr "ButtonBar|Substi"
  1180. msgid "ButtonBar|Copy"
  1181. msgstr "ButtonBar|Copiar"
  1182. msgid "ButtonBar|Move"
  1183. msgstr "ButtonBar|Mover"
  1184. msgid "ButtonBar|Delete"
  1185. msgstr "ButtonBar|Apagar"
  1186. msgid "ButtonBar|PullDn"
  1187. msgstr "ButtonBar|PuxarM"
  1188. msgid "Breton"
  1189. msgstr "Bretão"
  1190. msgid "Czech"
  1191. msgstr "Checo"
  1192. msgid "Welsh"
  1193. msgstr "Galês"
  1194. msgid "Danish"
  1195. msgstr "Dinamarquês"
  1196. msgid "German"
  1197. msgstr "Alemão"
  1198. msgid "Greek"
  1199. msgstr "Grego"
  1200. msgid "English"
  1201. msgstr "Inglês"
  1202. msgid "British English"
  1203. msgstr "Inglês Britânico"
  1204. msgid "Canadian English"
  1205. msgstr "Inglês Canadiano"
  1206. msgid "American English"
  1207. msgstr "Inglês Americano"
  1208. msgid "Esperanto"
  1209. msgstr "Esperanto"
  1210. msgid "Spanish"
  1211. msgstr "Espanhol"
  1212. msgid "Faroese"
  1213. msgstr "Língua Feroesa"
  1214. msgid "French"
  1215. msgstr "Francês"
  1216. msgid "Italian"
  1217. msgstr "Italiano"
  1218. msgid "Dutch"
  1219. msgstr "Holandês"
  1220. msgid "Norwegian"
  1221. msgstr "Norueguês"
  1222. msgid "Polish"
  1223. msgstr "Polaco"
  1224. msgid "Portuguese"
  1225. msgstr "Português"
  1226. msgid "Romanian"
  1227. msgstr "Romeno"
  1228. msgid "Russian"
  1229. msgstr "Russo"
  1230. msgid "Slovak"
  1231. msgstr "Eslovaco"
  1232. msgid "Swedish"
  1233. msgstr "Sueco"
  1234. msgid "Ukrainian"
  1235. msgstr "Ucraniano"
  1236. msgid "&Add word"
  1237. msgstr "&Adicionar palavra"
  1238. msgid "Language"
  1239. msgstr "Linguagem"
  1240. msgid "Misspelled"
  1241. msgstr "Com erros ortográficos"
  1242. msgid "Check word"
  1243. msgstr "Verificar palavra"
  1244. msgid "Suggest"
  1245. msgstr "Sugestão"
  1246. msgid "Select language"
  1247. msgstr "Selecionar linguagem"
  1248. msgid "Choose syntax highlighting"
  1249. msgstr "Escolha destaque de sintaxe"
  1250. msgid "< Auto >"
  1251. msgstr "< Auto >"
  1252. msgid "< Reload Current Syntax >"
  1253. msgstr "< Carrega Syntax Atual>"
  1254. msgid "Load syntax file"
  1255. msgstr "Carregar ficheiro de sintaxe"
  1256. #, c-format
  1257. msgid ""
  1258. "Cannot open file %s\n"
  1259. "%s"
  1260. msgstr ""
  1261. "Não é possível abrir ficheiro %s\n"
  1262. "%s"
  1263. #, c-format
  1264. msgid "Error in file %s on line %d"
  1265. msgstr "Erro no ficheiro %s na linha %d"
  1266. msgid ""
  1267. "The Commander can't change to the directory that\n"
  1268. "the subshell claims you are in. Perhaps you have\n"
  1269. "deleted your working directory, or given yourself\n"
  1270. "extra access permissions with the \"su\" command?"
  1271. msgstr ""
  1272. "O Commander não pode mudar para o diretório que\n"
  1273. "o subshell diz que você está. Talvez tenha apagado\n"
  1274. "o seu diretório de trabalho, ou dado a você mesmo\n"
  1275. "permissões com acesso extra com o comando \"su\"?"
  1276. #, c-format
  1277. msgid "Cannot fetch a local copy of %s"
  1278. msgstr "Não é possível obter uma copia local de %s"
  1279. msgid "The shell is already running a command"
  1280. msgstr "A shell já está a executar um comando"
  1281. msgid ""
  1282. "Not an xterm or Linux console;\n"
  1283. "the subshell cannot be toggled."
  1284. msgstr ""
  1285. "Não é um xterm or consola Linux;\n"
  1286. "a subshell não pode ser comutada."
  1287. msgid "Type 'exit' to return to the Midnight Commander"
  1288. msgstr "Digite 'exit' para voltar ao Midnight Commander"
  1289. msgid "Set &all"
  1290. msgstr "Definir &todos"
  1291. msgid "S&kip"
  1292. msgstr "Sa&ltar"
  1293. msgid "&Set"
  1294. msgstr "&Definir"
  1295. msgid "owner"
  1296. msgstr "dono"
  1297. msgid "group"
  1298. msgstr "grupo"
  1299. msgid "other"
  1300. msgstr "outro"
  1301. msgid "Flag"
  1302. msgstr "Flag"
  1303. #, c-format
  1304. msgid "Permissions (octal): %o"
  1305. msgstr "Permissões (octal): %o"
  1306. msgid "Chown advanced command"
  1307. msgstr "Comando avançado chown"
  1308. #, c-format
  1309. msgid ""
  1310. "Cannot chmod \"%s\"\n"
  1311. "%s"
  1312. msgstr ""
  1313. "Não é possível efetuar chmod \"%s\"\n"
  1314. "%s"
  1315. msgid "&Ignore"
  1316. msgstr "&Ignorar"
  1317. msgid "Ignore &all"
  1318. msgstr "Ignor&ar tudo"
  1319. msgid "&Retry"
  1320. msgstr "&Repetir"
  1321. #, c-format
  1322. msgid ""
  1323. "Cannot chown \"%s\"\n"
  1324. "%s"
  1325. msgstr ""
  1326. "Não é possível efetuar chown \"%s\"\n"
  1327. "%s"
  1328. msgid "< Default >"
  1329. msgstr "< Default >"
  1330. msgid "Skins"
  1331. msgstr "Skins"
  1332. msgid "Other 8 bit"
  1333. msgstr "Outros 8 bit"
  1334. msgid "Running"
  1335. msgstr "A executar"
  1336. msgid "Stopped"
  1337. msgstr "Parado"
  1338. msgid "&Never"
  1339. msgstr "&Nunca"
  1340. msgid "On dum&b terminals"
  1341. msgstr "Em terminais &burros"
  1342. msgid "Alwa&ys"
  1343. msgstr "Se&mpre"
  1344. msgid "File operations"
  1345. msgstr "Operações em ficheiro"
  1346. msgid "&Verbose operation"
  1347. msgstr "Operação com info. de&talhada"
  1348. msgid "Compute tota&ls"
  1349. msgstr "Calcu&lar totais"
  1350. msgid "Classic pro&gressbar"
  1351. msgstr "Barra de pro&gresso classica"
  1352. msgid "Mkdi&r autoname"
  1353. msgstr "Mkdi&r auto nome"
  1354. msgid "&Preallocate space"
  1355. msgstr "&Prealocar espaço"
  1356. msgid "Esc key mode"
  1357. msgstr "Modo tecla Esc"
  1358. msgid "S&ingle press"
  1359. msgstr "Pressão ún&ica"
  1360. msgid "Timeout:"
  1361. msgstr "Tempo limite:"
  1362. msgid "Pause after run"
  1363. msgstr "Pausar após executar"
  1364. msgid "Use internal edi&t"
  1365. msgstr "Usar edição in&terna"
  1366. msgid "Use internal vie&w"
  1367. msgstr "Usar visuali&zação interna"
  1368. msgid "A&sk new file name"
  1369. msgstr "Pe&dir novo nome de ficheiro"
  1370. msgid "Auto m&enus"
  1371. msgstr "M&enus auto"
  1372. msgid "&Drop down menus"
  1373. msgstr "Men&us em cascata"
  1374. msgid "S&hell patterns"
  1375. msgstr "&Padrões de shell"
  1376. msgid "Co&mplete: show all"
  1377. msgstr "Co&mpletar: mostrar tudo"
  1378. msgid "Rotating d&ash"
  1379. msgstr "Traço rot&ativo"
  1380. msgid "Cd follows lin&ks"
  1381. msgstr "Cd segue ligações"
  1382. msgid "Sa&fe delete"
  1383. msgstr "Apa&gar com segurança"
  1384. msgid "Safe overwrite"
  1385. msgstr "Sobregravação segura"
  1386. msgid "A&uto save setup"
  1387. msgstr "Guardar setup a&uto"
  1388. msgid "Configure options"
  1389. msgstr "Opções de configuração"
  1390. msgid "Skin:"
  1391. msgstr "Skin:"
  1392. msgid "&Shadows"
  1393. msgstr "&Sombras"
  1394. msgid "Appearance"
  1395. msgstr "Aspeto"
  1396. msgid "Case &insensitive"
  1397. msgstr "Insensível à cap&italização"
  1398. msgid "Use panel sort mo&de"
  1399. msgstr "Usar mo&do de ord. do painel"
  1400. msgid "Show mi&ni-status"
  1401. msgstr "Mostrar mi&ni-status"
  1402. msgid "Use SI si&ze units"
  1403. msgstr "U&sar unidades de tamanho SI"
  1404. msgid "Mi&x all files"
  1405. msgstr "M&isturar todos os ficheiros"
  1406. msgid "Show &backup files"
  1407. msgstr "Mostrar ficheiros de &backup"
  1408. msgid "Show &hidden files"
  1409. msgstr "Mostrar fic&heiros escondidos"
  1410. msgid "&Fast dir reload"
  1411. msgstr "Recarregar dir &rápido"
  1412. msgid "Ma&rk moves down"
  1413. msgstr "Ma&rca move para baixo"
  1414. msgid "Re&verse files only"
  1415. msgstr "Re&verter apenas ficheiros"
  1416. msgid "Simple s&wap"
  1417. msgstr "Troca si&mples"
  1418. msgid "A&uto save panels setup"
  1419. msgstr "Guardar setup de painéis a&uto"
  1420. msgid "Navigation"
  1421. msgstr "Navegação"
  1422. msgid "L&ynx-like motion"
  1423. msgstr "Movimento tipo l&ynx"
  1424. msgid "Pa&ge scrolling"
  1425. msgstr "Deslocamento de pá&gina"
  1426. msgid "Center &scrolling"
  1427. msgstr "Centrar &scrolling"
  1428. msgid "&Mouse page scrolling"
  1429. msgstr "Desloca&mento de página com rato"
  1430. msgid "File highlight"
  1431. msgstr "Destaque de ficheiros"
  1432. msgid "File &types"
  1433. msgstr "&Tipos de ficheiro"
  1434. msgid "&Permissions"
  1435. msgstr "&Permissões"
  1436. msgid "Quick search"
  1437. msgstr "Procura rápida"
  1438. msgid "Panel options"
  1439. msgstr "Opções de painel"
  1440. msgid "Information"
  1441. msgstr "Informação"
  1442. msgid ""
  1443. "Using the fast reload option may not reflect the exact\n"
  1444. "directory contents. In this case you'll need to do a\n"
  1445. "manual reload of the directory. See the man page for\n"
  1446. "the details."
  1447. msgstr ""
  1448. "Utilizando opção de refrescamento rápido pode não\n"
  1449. "refletir o conteúdo exato do diretório. Neste caso\n"
  1450. "necessitará de fazer um refrescamento manual do diretório.\n"
  1451. "Verifique a página man para mais detalhes."
  1452. msgid "&Full file list"
  1453. msgstr "Listagem de todos &ficheiros"
  1454. msgid "&Brief file list:"
  1455. msgstr "&Breve lista de ficheiros:"
  1456. msgid "&Long file list"
  1457. msgstr "Listagem &longa de ficheiros"
  1458. msgid "&User defined:"
  1459. msgstr "Definido pelo &utilizador:"
  1460. msgid "columns"
  1461. msgstr "colunas"
  1462. msgid "User &mini status"
  1463. msgstr "&Mini status do utilizador"
  1464. msgid "Listing format"
  1465. msgstr "Formato da listagem"
  1466. msgid "Executable &first"
  1467. msgstr "Executável p&rimeiro"
  1468. msgid "&Reverse"
  1469. msgstr "&Revertido"
  1470. msgid "Sort order"
  1471. msgstr "Ordem de ordenação"
  1472. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix
  1473. msgid "Confirmation|&Delete"
  1474. msgstr "Confirmation|&Apagar"
  1475. msgid "Confirmation|O&verwrite"
  1476. msgstr "Confirmation|Escrever p&or cima"
  1477. msgid "Confirmation|&Execute"
  1478. msgstr "Confirmation|&Executar"
  1479. msgid "Confirmation|E&xit"
  1480. msgstr "Confirmation|&Sair"
  1481. msgid "Confirmation|Di&rectory hotlist delete"
  1482. msgstr "Confirmation|Apagar hotlist de di&retórios"
  1483. msgid "Confirmation|&History cleanup"
  1484. msgstr "Confirmation|Limpeza de &histórico"
  1485. msgid "Confirmation"
  1486. msgstr "Confirmação"
  1487. msgid "&UTF-8 output"
  1488. msgstr "saída &UTF-8"
  1489. msgid "&Full 8 bits output"
  1490. msgstr "saída com 8 bits completos"
  1491. msgid "&ISO 8859-1"
  1492. msgstr "&ISO 8859-1"
  1493. msgid "7 &bits"
  1494. msgstr "7 &bits"
  1495. msgid "F&ull 8 bits input"
  1496. msgstr "E&ntrada em 8 bits completos"
  1497. msgid "Display bits"
  1498. msgstr "Bits de display"
  1499. msgid "Input / display codepage:"
  1500. msgstr "Entrada / mostrar página de codificação:"
  1501. msgid "Directory tree"
  1502. msgstr "Árvore de diretório"
  1503. msgid "Timeout for freeing VFSs (sec):"
  1504. msgstr "Tempo limite para libertar VFSs (sec):"
  1505. msgid "FTP anonymous password:"
  1506. msgstr "Senha de ftp anónimo:"
  1507. msgid "FTP directory cache timeout (sec):"
  1508. msgstr "Tempo limite de cache de diretório FTP (sec):"
  1509. msgid "&Always use ftp proxy:"
  1510. msgstr "Usar sempre pr&oxy ftp:"
  1511. msgid "&Use ~/.netrc"
  1512. msgstr "&Usar ~/.netrc"
  1513. msgid "Use &passive mode"
  1514. msgstr "Usar modo &passivo"
  1515. msgid "Use passive mode over pro&xy"
  1516. msgstr "Usar modo passivo sobre pro&xy"
  1517. msgid "Virtual File System Setting"
  1518. msgstr "Configuração de Sistema Virtual de Ficheiros"
  1519. msgid "cd"
  1520. msgstr "cd"
  1521. msgid "Quick cd"
  1522. msgstr "Cd rápido"
  1523. msgid "Existing filename (filename symlink will point to):"
  1524. msgstr "Nome de ficheiro existente (para onde symlink aponta):"
  1525. msgid "Symbolic link filename:"
  1526. msgstr "Nome de ficheiro de ligação simbólica:"
  1527. msgid "Symbolic link"
  1528. msgstr "Ligação simbólica"
  1529. msgid "&Stop"
  1530. msgstr "&Parar"
  1531. msgid "&Resume"
  1532. msgstr "&Resumir"
  1533. msgid "&Kill"
  1534. msgstr "&Matar"
  1535. msgid "Background jobs"
  1536. msgstr "Jobs em background"
  1537. #, c-format
  1538. msgid ""
  1539. "Cannot change directory to\n"
  1540. "%s\n"
  1541. "%s"
  1542. msgstr ""
  1543. "Não é possível alterar directório para\n"
  1544. "%s\n"
  1545. "%s"
  1546. msgid "Secure deletion"
  1547. msgstr "Eliminação segura"
  1548. msgid "Undelete"
  1549. msgstr "Desfazer eliminação"
  1550. msgid "Synchronous updates"
  1551. msgstr "Actualizações síncronas"
  1552. msgid "Synchronous directory updates"
  1553. msgstr "Actualizações síncronas de directório"
  1554. msgid "Immutable"
  1555. msgstr "Imutável"
  1556. msgid "Append only"
  1557. msgstr "Apenas acrescentar"
  1558. msgid "No dump"
  1559. msgstr "Sem dump"
  1560. msgid "No update atime"
  1561. msgstr "Sem actualizar atime"
  1562. msgid "Compress"
  1563. msgstr "Comprimir"
  1564. msgid "Compressed clusters"
  1565. msgstr "Clusters comprimidos"
  1566. msgid "Compressed dirty file"
  1567. msgstr "Ficheiro sujo comprimido"
  1568. msgid "Compression raw access"
  1569. msgstr "Compressão acesso raw"
  1570. msgid "Encrypted inode"
  1571. msgstr "Inode encryptado"
  1572. msgid "Journaled data"
  1573. msgstr "Journaled data"
  1574. msgid "Indexed directory"
  1575. msgstr "Directório indexado"
  1576. msgid "No tail merging"
  1577. msgstr "Sem fusão de extremidade"
  1578. msgid "Top of directory hierarchies"
  1579. msgstr "Topo de hierarquias de directório"
  1580. msgid "Inode uses extents"
  1581. msgstr "Inode usa extents"
  1582. msgid "Huge_file"
  1583. msgstr "Huge_file"
  1584. msgid "No COW"
  1585. msgstr "Sem COW"
  1586. msgid "Direct access for files"
  1587. msgstr "Acesso directo para ficheiros"
  1588. msgid "Casefolded file"
  1589. msgstr "Ficheiro casefolded"
  1590. msgid "Inode has inline data"
  1591. msgstr "Inode tem dados inline"
  1592. msgid "Project hierarchy"
  1593. msgstr "Hierarquia do projecto"
  1594. msgid "Verity protected inode"
  1595. msgstr "Verity inode protegido"
  1596. msgid "&Marked all"
  1597. msgstr "&Marcar todos"
  1598. msgid "S&et marked"
  1599. msgstr "D&efinir marcados"
  1600. msgid "C&lear marked"
  1601. msgstr "&Limpar marcados"
  1602. msgid "Chattr command"
  1603. msgstr "Comando chattr"
  1604. #, c-format
  1605. msgid ""
  1606. "Cannot chattr \"%s\"\n"
  1607. "%s"
  1608. msgstr ""
  1609. "Não é possível chattr \"%s\"\n"
  1610. "%s"
  1611. #, c-format
  1612. msgid ""
  1613. "Cannot get flags of \"%s\"\n"
  1614. "%s"
  1615. msgstr ""
  1616. "Não é possível obter as flags de \"%s\"\n"
  1617. "%s"
  1618. msgid "set &user ID on execution"
  1619. msgstr "definir ID de &utilizador na execução"
  1620. msgid "set &group ID on execution"
  1621. msgstr "definir ID de &grupo na execução"
  1622. msgid "stick&y bit"
  1623. msgstr "stick&y bit"
  1624. msgid "&read by owner"
  1625. msgstr "leitu&ra pelo dono"
  1626. msgid "&write by owner"
  1627. msgstr "es&crita por dono"
  1628. msgid "e&xecute/search by owner"
  1629. msgstr "e&xecutar/procurar por dono"
  1630. msgid "rea&d by group"
  1631. msgstr "le&itura por grupo"
  1632. msgid "write by grou&p"
  1633. msgstr "escrita por gru&po"
  1634. msgid "execu&te/search by group"
  1635. msgstr "e&xecutar/procurar por grupo"
  1636. msgid "read &by others"
  1637. msgstr "l&eitura por outros"
  1638. msgid "wr&ite by others"
  1639. msgstr "escr&ita por outros"
  1640. msgid "execute/searc&h by others"
  1641. msgstr "execução/procura por o&utros"
  1642. msgid "Name:"
  1643. msgstr "Nome:"
  1644. msgid "Permissions (octal):"
  1645. msgstr "Permissões (octal):"
  1646. msgid "Owner name:"
  1647. msgstr "Nome do dono:"
  1648. msgid "Group name:"
  1649. msgstr "Nome do grupo:"
  1650. msgid "Chmod command"
  1651. msgstr "Comando chmod"
  1652. msgid "Permission"
  1653. msgstr "Permissão"
  1654. msgid "File"
  1655. msgstr "Ficheiro"
  1656. msgid "Set &groups"
  1657. msgstr "Definir &grupos"
  1658. msgid "Set &users"
  1659. msgstr "Definir &utilizadores"
  1660. msgid "Name"
  1661. msgstr "Nome"
  1662. msgid "Owner name"
  1663. msgstr "Nome dono"
  1664. msgid "Group name"
  1665. msgstr "Nome grupo"
  1666. msgid "Size"
  1667. msgstr "Tamanho"
  1668. msgid "Chown command"
  1669. msgstr "Comando chown"
  1670. msgid "User name"
  1671. msgstr "Nome de utilizador"
  1672. msgid "<Unknown user>"
  1673. msgstr "<Utilizador desconhecido>"
  1674. msgid "<Unknown group>"
  1675. msgstr "<Grupo desconhecido>"
  1676. msgid "Enter machine name (F1 for details):"
  1677. msgstr "Insira nome da máquina (F1 para detalhes):"
  1678. msgid "Files tagged, want to cd?"
  1679. msgstr "Ficheiros etiquetados, quer executar cd?"
  1680. #, c-format
  1681. msgid "Link %s to:"
  1682. msgstr "Ligar %s a:"
  1683. msgid "Link"
  1684. msgstr "Ligar"
  1685. #, c-format
  1686. msgid "link: %s"
  1687. msgstr "ligar: %s"
  1688. #, c-format
  1689. msgid "symlink: %s"
  1690. msgstr "symlink: %s"
  1691. msgid "View file"
  1692. msgstr "Ver ficheiro"
  1693. msgid "Filename:"
  1694. msgstr "Nome de ficheiro:"
  1695. msgid "Filtered view"
  1696. msgstr "Visualização filtrada"
  1697. msgid "Filter command and arguments:"
  1698. msgstr "Filtrar comando e argumentos:"
  1699. msgid "Edit file"
  1700. msgstr "Editar ficheiro"
  1701. msgid "Create a new Directory"
  1702. msgstr "Criar novo Diretório"
  1703. msgid "Enter directory name:"
  1704. msgstr "Inserir nome de diretório:"
  1705. msgid "Extension file edit"
  1706. msgstr "Editar ficheiro de extensão"
  1707. msgid "Which extension file you want to edit?"
  1708. msgstr "Que ficheiro de extensão deseja editar?"
  1709. msgid "&System Wide"
  1710. msgstr "Todo o &Sistema"
  1711. msgid "Highlighting groups file edit"
  1712. msgstr "Editar ficheiro de realce de grupos"
  1713. msgid "Which highlighting file you want to edit?"
  1714. msgstr "Que ficheiro de realce deseja editar?"
  1715. msgid "Compare directories"
  1716. msgstr "Comparar diretórios"
  1717. msgid "Select compare method:"
  1718. msgstr "Selecionar método de comparação:"
  1719. msgid "&Quick"
  1720. msgstr "&Rápido"
  1721. msgid "&Size only"
  1722. msgstr "Apena&s tamanho"
  1723. msgid "&Thorough"
  1724. msgstr "&Minucioso"
  1725. msgid ""
  1726. "Both panels should be in the listing mode\n"
  1727. "to use this command"
  1728. msgstr ""
  1729. "Ambos os painéis deveriam estar no modo de listagem\n"
  1730. "para usar este comando"
  1731. #, c-format
  1732. msgid "'%s' is not a symbolic link"
  1733. msgstr "'%s' não é uma ligação simbólica"
  1734. #, c-format
  1735. msgid "Symlink '%s' points to:"
  1736. msgstr "Symlink '%s' aponta para:"
  1737. msgid "Edit symlink"
  1738. msgstr "Ediart symlink"
  1739. #, c-format
  1740. msgid "edit symlink, unable to remove %s: %s"
  1741. msgstr "editar symlink, não é possível remover %s: %s"
  1742. #, c-format
  1743. msgid "edit symlink: %s"
  1744. msgstr "editar symlink: %s"
  1745. msgid "FTP to machine"
  1746. msgstr "FTP para a máquina"
  1747. msgid "SFTP to machine"
  1748. msgstr "SFTP para a máquina"
  1749. msgid "Shell link to machine"
  1750. msgstr "Ligação shell à máquina"
  1751. msgid "Undelete files on an ext2 file system"
  1752. msgstr "Repor ficheiros num sistema de ficheiros ext2"
  1753. msgid ""
  1754. "Enter device (without /dev/) to undelete\n"
  1755. "files on: (F1 for details)"
  1756. msgstr ""
  1757. "Inserir dispositivo (sem /dev/) para reposição\n"
  1758. "de ficheiros: (F1 para detalhes)"
  1759. msgid "Directory scanning"
  1760. msgstr "Análise de diretório"
  1761. msgid "Setup"
  1762. msgstr "Setup"
  1763. #, c-format
  1764. msgid "Setup saved to %s"
  1765. msgstr "Setup guardado em %s"
  1766. #, c-format
  1767. msgid "Unable to save setup to %s"
  1768. msgstr "Não é possível guardar setup em %s"
  1769. msgid "Cannot execute commands on non-local filesystems"
  1770. msgstr "Não é possível executar comandos em sistemas de ficheiros não locais"
  1771. msgid "Parameter"
  1772. msgstr "Parâmetro"
  1773. #, c-format
  1774. msgid ""
  1775. "Cannot create temporary command file\n"
  1776. "%s"
  1777. msgstr ""
  1778. "Não é possível criar ficheiro de comando temporário\n"
  1779. "%s"
  1780. msgid "Pipe failed"
  1781. msgstr "Falha de Pipe"
  1782. #, c-format
  1783. msgid ""
  1784. "You have an outdated %s file.\n"
  1785. "Midnight Commander now uses %s file.\n"
  1786. "Please copy your modifications of the old file to the new one."
  1787. msgstr ""
  1788. "Tem um ficheiro %s desactualizado.\n"
  1789. "Midnight Commander agora usa ficheiro %s.\n"
  1790. "Por favor copie as suas modificações do ficheiro antigo para o novo."
  1791. #, c-format
  1792. msgid ""
  1793. "The format of the\n"
  1794. "%s%s\n"
  1795. "file has changed with version 4.0.\n"
  1796. "It seems that the installation has failed.\n"
  1797. "Please fetch a fresh copy from the Midnight Commander package."
  1798. msgstr ""
  1799. "O formato do ficheiro\n"
  1800. "%s%s\n"
  1801. "foi alterado na versão 4.0.\n"
  1802. "Parece que a instalação falhou.\n"
  1803. "Por favor obtenha uma nova cópia a partir do pacote do Midnight Commander."
  1804. #, c-format
  1805. msgid ""
  1806. "The format of the\n"
  1807. "%s\n"
  1808. "file has changed with version 4.0.\n"
  1809. "You may either want to copy it from\n"
  1810. "%s%s\n"
  1811. "or use that file as an example of how to write it."
  1812. msgstr ""
  1813. "O formato do ficheiro\n"
  1814. "%s\n"
  1815. "foi alterado na versão 4.0.\n"
  1816. "Pode copia-lo a partir de\n"
  1817. "%s%s\n"
  1818. "ou usar esse ficheiro como um exemplo de como o escrever."
  1819. msgid "DialogTitle|Copy"
  1820. msgstr "DialogTitle|Copiar"
  1821. msgid "DialogTitle|Move"
  1822. msgstr "DialogTitle|Mover"
  1823. msgid "DialogTitle|Delete"
  1824. msgstr "DialogTitle|Apagar"
  1825. msgid "FileOperation|Copy"
  1826. msgstr "FileOperation|Copiar"
  1827. msgid "FileOperation|Move"
  1828. msgstr "FileOperation|Mover"
  1829. msgid "FileOperation|Delete"
  1830. msgstr "FileOperation|Apagar"
  1831. #, no-c-format
  1832. msgid "%o %f%n\"%s\"%m"
  1833. msgstr "%o %f%n\"%s\"%m"
  1834. #, no-c-format
  1835. msgid "%o %d %f%m"
  1836. msgstr "%o %d %f%m"
  1837. msgid "files"
  1838. msgstr "ficheiros"
  1839. msgid "directory"
  1840. msgstr "diretório"
  1841. msgid "directories"
  1842. msgstr "diretórios"
  1843. msgid "files/directories"
  1844. msgstr "ficheiros/diretórios"
  1845. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  1846. msgid " with source mask:"
  1847. msgstr " com máscara na origem:"
  1848. #, c-format
  1849. msgid ""
  1850. "Cannot stat hardlink source file \"%s\"\n"
  1851. "%s"
  1852. msgstr ""
  1853. "Não é possível efetuar stat no hardlink do ficheiro fonte \"%s\"\n"
  1854. "%s"
  1855. #, c-format
  1856. msgid ""
  1857. "Cannot create target hardlink \"%s\"\n"
  1858. "%s"
  1859. msgstr ""
  1860. "Não é possível criar o hardlink alvo \"%s\"\n"
  1861. "%s"
  1862. #, c-format
  1863. msgid "Cannot create target hardlink \"%s\""
  1864. msgstr "Não é possível criar o hardlink alvo \"%s\""
  1865. #, c-format
  1866. msgid ""
  1867. "Cannot read source link \"%s\"\n"
  1868. "%s"
  1869. msgstr ""
  1870. "Não é possível ler a ligação fonte \"%s\"\n"
  1871. "%s"
  1872. msgid ""
  1873. "Cannot make stable symlinks across non-local filesystems:\n"
  1874. "\n"
  1875. "Option Stable Symlinks will be disabled"
  1876. msgstr ""
  1877. "Não é possível efetuar symlinks estáveis para sistemas de ficheiros não "
  1878. "locais:\n"
  1879. "\n"
  1880. "Opção Symlinks Estáveis será desativada"
  1881. #, c-format
  1882. msgid ""
  1883. "Cannot create target symlink \"%s\"\n"
  1884. "%s"
  1885. msgstr ""
  1886. "Não é possível criar symlink alvo \"%s\"\n"
  1887. "%s"
  1888. #, c-format
  1889. msgid ""
  1890. "\"%s\"\n"
  1891. "and\n"
  1892. "\"%s\"\n"
  1893. "are the same directory"
  1894. msgstr ""
  1895. "\"%s\"\n"
  1896. "e\n"
  1897. "\"%s\"\n"
  1898. "são o mesmo diretório"
  1899. #, c-format
  1900. msgid ""
  1901. "\"%s\"\n"
  1902. "and\n"
  1903. "\"%s\"\n"
  1904. "are the same file"
  1905. msgstr ""
  1906. "\"%s\"\n"
  1907. "e\n"
  1908. "\"%s\"\n"
  1909. "são o mesmo ficheiro"
  1910. msgid "Ski&p all"
  1911. msgstr "Sal&tar todos"
  1912. #, c-format
  1913. msgid ""
  1914. "Directory \"%s\" not empty.\n"
  1915. "Delete it recursively?"
  1916. msgstr ""
  1917. "Directório \"%s\" não vazio.\n"
  1918. "Apagá-lo recursivamente?"
  1919. #, c-format
  1920. msgid ""
  1921. "Background process:\n"
  1922. "Directory \"%s\" not empty.\n"
  1923. "Delete it recursively?"
  1924. msgstr ""
  1925. "Processo em background :\n"
  1926. "Directório \"%s\" não vazio.\n"
  1927. "Apagá-lo recursivamente?"
  1928. msgid "Non&e"
  1929. msgstr "N&enhum"
  1930. #, c-format
  1931. msgid ""
  1932. "Cannot remove file \"%s\"\n"
  1933. "%s"
  1934. msgstr ""
  1935. "Não é possível remover o ficheiro \"%s\"\n"
  1936. "%s"
  1937. #, c-format
  1938. msgid ""
  1939. "Cannot stat file \"%s\"\n"
  1940. "%s"
  1941. msgstr ""
  1942. "Não é possível efetuar stat no ficheiro \"%s\"\n"
  1943. "%s"
  1944. #, c-format
  1945. msgid "Cannot overwrite directory \"%s\""
  1946. msgstr "Não é possível escrever por cima do diretório \"%s\""
  1947. #, c-format
  1948. msgid ""
  1949. "Cannot move file \"%s\" to \"%s\"\n"
  1950. "%s"
  1951. msgstr ""
  1952. "Não é possível mover o ficheiro \"%s\" para \"%s\"\n"
  1953. "%s"
  1954. #, c-format
  1955. msgid ""
  1956. "Cannot remove directory \"%s\"\n"
  1957. "%s"
  1958. msgstr ""
  1959. "Não é possível remover o diretório \"%s\"\n"
  1960. "%s"
  1961. #, c-format
  1962. msgid ""
  1963. "Cannot overwrite directory \"%s\"\n"
  1964. "%s"
  1965. msgstr ""
  1966. "Não é possível escrever por cima do diretório \"%s\"\n"
  1967. "%s"
  1968. #, c-format
  1969. msgid ""
  1970. "Cannot overwrite file \"%s\"\n"
  1971. "%s"
  1972. msgstr ""
  1973. "Não é possível escrever por cima do ficheiro \"%s\"\n"
  1974. "%s"
  1975. #, c-format
  1976. msgid ""
  1977. "Cannot move directory \"%s\" to \"%s\"\n"
  1978. "%s"
  1979. msgstr ""
  1980. "Não é possível mover diretório \"%s\" para \"%s\"\n"
  1981. "%s"
  1982. msgid "Cannot operate on \"..\"!"
  1983. msgstr "Não é possível operar em \"..\"!"
  1984. #, c-format
  1985. msgid ""
  1986. "Cannot stat source file \"%s\"\n"
  1987. "%s"
  1988. msgstr ""
  1989. "Não é possível efetuar stat no ficheiro fonte \"%s\"\n"
  1990. "%s"
  1991. #, fuzzy, c-format
  1992. msgid ""
  1993. "Cannot get attributes of source file \"%s\"\n"
  1994. "%s"
  1995. msgstr ""
  1996. "Não é possível efetuar stat no ficheiro fonte \"%s\"\n"
  1997. "%s"
  1998. #, fuzzy, c-format
  1999. msgid ""
  2000. "Cannot set attributes of target file \"%s\"\n"
  2001. "%s"
  2002. msgstr ""
  2003. "Não é possível efetuar fstat no ficheiro alvo \"%s\"\n"
  2004. "%s"
  2005. #, c-format
  2006. msgid ""
  2007. "Cannot create special file \"%s\"\n"
  2008. "%s"
  2009. msgstr ""
  2010. "Não é possível criar ficheiro especial \"%s\"\n"
  2011. "%s"
  2012. #, c-format
  2013. msgid ""
  2014. "Cannot chown target file \"%s\"\n"
  2015. "%s"
  2016. msgstr ""
  2017. "Não é possível efetuar chown no ficheiro alvo \"%s\"\n"
  2018. "%s"
  2019. #, c-format
  2020. msgid ""
  2021. "Cannot chmod target file \"%s\"\n"
  2022. "%s"
  2023. msgstr ""
  2024. "Não é possível efetuar chmod no ficheiro alvo \"%s\"\n"
  2025. "%s"
  2026. #, c-format
  2027. msgid ""
  2028. "Cannot open source file \"%s\"\n"
  2029. "%s"
  2030. msgstr ""
  2031. "Não é possível abrir o ficheiro fonte \"%s\"\n"
  2032. "%s"
  2033. msgid "Reget failed, about to overwrite file"
  2034. msgstr "Reget falhou, prestes a escrever por cima do ficheiro"
  2035. #, c-format
  2036. msgid ""
  2037. "Cannot fstat source file \"%s\"\n"
  2038. "%s"
  2039. msgstr ""
  2040. "Não é possível efetuar fstat no ficheiro fonte \"%s\"\n"
  2041. "%s"
  2042. #, c-format
  2043. msgid ""
  2044. "Cannot create target file \"%s\"\n"
  2045. "%s"
  2046. msgstr ""
  2047. "Não é possível criar ficheiro alvo \"%s\"\n"
  2048. "%s"
  2049. #, c-format
  2050. msgid ""
  2051. "Cannot fstat target file \"%s\"\n"
  2052. "%s"
  2053. msgstr ""
  2054. "Não é possível efetuar fstat no ficheiro alvo \"%s\"\n"
  2055. "%s"
  2056. #, c-format
  2057. msgid ""
  2058. "Cannot preallocate space for target file \"%s\"\n"
  2059. "%s"
  2060. msgstr ""
  2061. "Não é possível pre-alocar espaço para o ficheiro alvo \"%s\"\n"
  2062. "%s"
  2063. #, c-format
  2064. msgid ""
  2065. "Cannot read source file \"%s\"\n"
  2066. "%s"
  2067. msgstr ""
  2068. "Não é possível ler o ficheiro fonte \"%s\"\n"
  2069. "%s"
  2070. #, c-format
  2071. msgid ""
  2072. "Cannot write target file \"%s\"\n"
  2073. "%s"
  2074. msgstr ""
  2075. "Não é possível escrever no ficheiro alvo \"%s\"\n"
  2076. "%s"
  2077. msgid "(stalled)"
  2078. msgstr "(estagnado)"
  2079. msgid "Incomplete file was retrieved"
  2080. msgstr "Foi obtido ficheiro incompleto"
  2081. msgid "&Keep"
  2082. msgstr "&Manter"
  2083. msgid "&Continue copy"
  2084. msgstr "&Continuar a copiar"
  2085. #, c-format
  2086. msgid ""
  2087. "Cannot close source file \"%s\"\n"
  2088. "%s"
  2089. msgstr ""
  2090. "Não é possível fechar o ficheiro fonte \"%s\"\n"
  2091. "%s"
  2092. #, c-format
  2093. msgid ""
  2094. "Cannot close target file \"%s\"\n"
  2095. "%s"
  2096. msgstr ""
  2097. "Não é possível fechar o ficheiro alvo \"%s\"\n"
  2098. "%s"
  2099. #, fuzzy, c-format
  2100. msgid ""
  2101. "Cannot set attributes for target file \"%s\"\n"
  2102. "%s"
  2103. msgstr ""
  2104. "Não é possível efetuar fstat no ficheiro alvo \"%s\"\n"
  2105. "%s"
  2106. #, c-format
  2107. msgid ""
  2108. "Cannot stat source directory \"%s\"\n"
  2109. "%s"
  2110. msgstr ""
  2111. "Não é possível efetuar stat no diretório fonte \"%s\"\n"
  2112. "%s"
  2113. #, fuzzy, c-format
  2114. msgid ""
  2115. "Cannot get attributes of source directory \"%s\"\n"
  2116. "%s"
  2117. msgstr ""
  2118. "Não é possível efetuar stat no diretório fonte \"%s\"\n"
  2119. "%s"
  2120. #, c-format
  2121. msgid ""
  2122. "Source \"%s\" is not a directory\n"
  2123. "%s"
  2124. msgstr ""
  2125. "Fonte \"%s\" não é um diretório\n"
  2126. "%s"
  2127. #, c-format
  2128. msgid ""
  2129. "Cannot copy cyclic symbolic link\n"
  2130. "\"%s\""
  2131. msgstr ""
  2132. "Não é possível copiar ligação simbólica ciclíca\n"
  2133. "\"%s\""
  2134. #, c-format
  2135. msgid ""
  2136. "Destination \"%s\" must be a directory\n"
  2137. "%s"
  2138. msgstr ""
  2139. "Destino \"%s\" deve ser um diretório\n"
  2140. "%s"
  2141. #, c-format
  2142. msgid ""
  2143. "Cannot create target directory \"%s\"\n"
  2144. "%s"
  2145. msgstr ""
  2146. "Não é possível criar diretório alvo \"%s\"\n"
  2147. "%s"
  2148. #, c-format
  2149. msgid ""
  2150. "Cannot chown target directory \"%s\"\n"
  2151. "%s"
  2152. msgstr ""
  2153. "Não é possível efetuar chown no diretório alvo \"%s\"\n"
  2154. "%s"
  2155. #, c-format
  2156. msgid "Directories: %zu, total size: %s"
  2157. msgstr "Directórios: %zu, tamanho total: %s"
  2158. msgid "Sorry, I could not put the job in background"
  2159. msgstr "Desculpe, não foi possível colocar o job em background"
  2160. msgid "S&uspend"
  2161. msgstr "S&uspender"
  2162. msgid "Con&tinue"
  2163. msgstr "Con&tinuar"
  2164. #, c-format
  2165. msgid "%d:%02d:%02d"
  2166. msgstr "%d:%02d:%02d"
  2167. #, c-format
  2168. msgid "ETA %s"
  2169. msgstr "ETA %s"
  2170. #, c-format
  2171. msgid "%.2f MB/s"
  2172. msgstr "%.2f MB/s"
  2173. #, c-format
  2174. msgid "%.2f KB/s"
  2175. msgstr "%.2f KB/s"
  2176. #, c-format
  2177. msgid "%ld B/s"
  2178. msgstr "%ld B/s"
  2179. msgid "New :"
  2180. msgstr "Novo :"
  2181. msgid "Existing:"
  2182. msgstr "Existente:"
  2183. msgid "Overwrite this file?"
  2184. msgstr "Escrever por cima deste ficheiro?"
  2185. msgid "A&ppend"
  2186. msgstr "&Acrescentar"
  2187. msgid "&Reget"
  2188. msgstr "&Re-obter"
  2189. msgid "Overwrite all files?"
  2190. msgstr "Escrever por cima de todos os ficheiros?"
  2191. msgid "Don't overwrite with &zero length file"
  2192. msgstr "Não escrever por cima com um ficheiro de tamanho &zero"
  2193. msgid "&Older"
  2194. msgstr "Antig&o"
  2195. msgid "S&maller"
  2196. msgstr "Peq&ueno"
  2197. msgid "&Size differs"
  2198. msgstr "Tamanho é &diferente"
  2199. msgid "File exists"
  2200. msgstr "Ficheiro existe"
  2201. msgid "Background process: File exists"
  2202. msgstr "Processo em background: Ficheiro existe"
  2203. #, c-format
  2204. msgid "Files processed: %zu / %zu"
  2205. msgstr "Ficheiros processados: %zu / %zu"
  2206. #, c-format
  2207. msgid "Files processed: %zu"
  2208. msgstr "Ficheiros processados: %zu"
  2209. #, c-format
  2210. msgid "Time: %s %s"
  2211. msgstr "Hora: %s %s"
  2212. #, c-format
  2213. msgid "Time: %s %s (%s)"
  2214. msgstr "Hora: %s %s (%s)"
  2215. #, c-format
  2216. msgid "Time: %s"
  2217. msgstr "Hora: %s"
  2218. #, c-format
  2219. msgid "Time: %s (%s)"
  2220. msgstr "Hora: %s (%s)"
  2221. #, c-format
  2222. msgid " Total: %s "
  2223. msgstr " Total: %s "
  2224. #, c-format
  2225. msgid " Total: %s / %s "
  2226. msgstr " Total: %s / %s "
  2227. msgid "Source"
  2228. msgstr "Fonte"
  2229. msgid "Target"
  2230. msgstr "Alvo"
  2231. msgid "Deleting"
  2232. msgstr "A apagar"
  2233. msgid "&Using shell patterns"
  2234. msgstr "A &usar padrões da shell"
  2235. msgid "to:"
  2236. msgstr "para:"
  2237. msgid "Follow &links"
  2238. msgstr "Seguir &ligações"
  2239. msgid "Preserve &attributes"
  2240. msgstr "Preservar &atributos"
  2241. msgid "Di&ve into subdir if exists"
  2242. msgstr "Merg&ulhar no subdir se existir"
  2243. msgid "&Stable symlinks"
  2244. msgstr "&Symlinks estáveis"
  2245. msgid "&Background"
  2246. msgstr "&Background"
  2247. #, c-format
  2248. msgid "Invalid source pattern '%s'"
  2249. msgstr "Padrão fonte inválido '%s'"
  2250. msgid "File listin&g"
  2251. msgstr "Lista&gem de ficheiros"
  2252. msgid "&Quick view"
  2253. msgstr "Visualização &rápida"
  2254. msgid "&Info"
  2255. msgstr "&Informação"
  2256. msgid "&Tree"
  2257. msgstr "&Árvore"
  2258. msgid "&Listing format..."
  2259. msgstr "Formato da &listagem..."
  2260. msgid "&Sort order..."
  2261. msgstr "Ordem de cla&ssificação..."
  2262. msgid "&Filter..."
  2263. msgstr "&Filtro..."
  2264. msgid "&Encoding..."
  2265. msgstr "&Codificação..."
  2266. msgid "FT&P link..."
  2267. msgstr "Ligação FT&P..."
  2268. msgid "S&hell link..."
  2269. msgstr "Ligação s&hell..."
  2270. msgid "SFTP li&nk..."
  2271. msgstr "Lig&ação SFTP..."
  2272. msgid "Paneli&ze"
  2273. msgstr "Em Pai&nel"
  2274. msgid "&Rescan"
  2275. msgstr "&Reanalisar"
  2276. msgid "&View"
  2277. msgstr "&Ver"
  2278. msgid "Vie&w file..."
  2279. msgstr "Ver f&icheiro..."
  2280. msgid "&Filtered view"
  2281. msgstr "Visualização &filtrada"
  2282. msgid "&Copy"
  2283. msgstr "&Copiar"
  2284. msgid "C&hmod"
  2285. msgstr "C&hmod"
  2286. msgid "&Link"
  2287. msgstr "&Ligação"
  2288. msgid "&Symlink"
  2289. msgstr "&Symlink"
  2290. msgid "Relative symlin&k"
  2291. msgstr "Symlin&k relativo"
  2292. msgid "Edit s&ymlink"
  2293. msgstr "Editar s&ymlink"
  2294. msgid "Ch&own"
  2295. msgstr "Ch&own"
  2296. msgid "&Advanced chown"
  2297. msgstr "Chown &Avançado"
  2298. msgid "Cha&ttr"
  2299. msgstr "Cha&ttr"
  2300. msgid "&Rename/Move"
  2301. msgstr "&Renomear/Mover"
  2302. msgid "&Mkdir"
  2303. msgstr "&Mkdir"
  2304. msgid "&Quick cd"
  2305. msgstr "Cd &rápido"
  2306. msgid "Select &group"
  2307. msgstr "Selecionar &grupo"
  2308. msgid "U&nselect group"
  2309. msgstr "Ca&ncelar seleção de grupo"
  2310. msgid "&Invert selection"
  2311. msgstr "&Inverter seleção"
  2312. msgid "E&xit"
  2313. msgstr "&Sair"
  2314. msgid "&User menu"
  2315. msgstr "Menu de &utilizador"
  2316. msgid "&Directory tree"
  2317. msgstr "Árvore de &diretório"
  2318. msgid "&Find file"
  2319. msgstr "Procurar &ficheiro"
  2320. msgid "S&wap panels"
  2321. msgstr "Tro&car painéis"
  2322. msgid "Switch &panels on/off"
  2323. msgstr "Ligar &painéis on/off"
  2324. msgid "&Compare directories"
  2325. msgstr "&Comparar diretórios"
  2326. msgid "C&ompare files"
  2327. msgstr "C&omparar ficheiros"
  2328. msgid "E&xternal panelize"
  2329. msgstr "E&xterior Em Painel"
  2330. msgid "Show directory s&izes"
  2331. msgstr "Mostrar tamanho de diretórios"
  2332. msgid "Command &history"
  2333. msgstr "&Histórico de comandos"
  2334. msgid "Viewed/edited files hi&story"
  2335. msgstr "Hi&stórico de ficheiros visualizados/editados"
  2336. msgid "Di&rectory hotlist"
  2337. msgstr "Hotlist de di&retórios"
  2338. msgid "&Active VFS list"
  2339. msgstr "Lista de VFS &activos"
  2340. msgid "&Background jobs"
  2341. msgstr "Jobs em &background"
  2342. msgid "Screen lis&t"
  2343. msgstr "Lis&ta de ecrãs"
  2344. msgid "&Undelete files (ext2fs only)"
  2345. msgstr "Rec&uperar ficheiros (apenas ext2fs)"
  2346. msgid "&Listing format edit"
  2347. msgstr "Editar formato de &listagem"
  2348. msgid "Edit &extension file"
  2349. msgstr "Editar &extensão de ficheiro"
  2350. msgid "Edit &menu file"
  2351. msgstr "Editar &menu ficheiro"
  2352. msgid "Edit hi&ghlighting group file"
  2353. msgstr "Editar ficheiro de realce de grupo"
  2354. msgid "&Configuration..."
  2355. msgstr "&Configuração..."
  2356. msgid "&Layout..."
  2357. msgstr "&Disposição..."
  2358. msgid "&Panel options..."
  2359. msgstr "Opções de &painel..."
  2360. msgid "C&onfirmation..."
  2361. msgstr "C&onfirmação..."
  2362. msgid "&Appearance..."
  2363. msgstr "&Aspeto..."
  2364. msgid "&Display bits..."
  2365. msgstr "Mostrar &bits..."
  2366. msgid "&Virtual FS..."
  2367. msgstr "FS &Virtual..."
  2368. msgid "Panels:"
  2369. msgstr "Painéis:"
  2370. #, c-format
  2371. msgid "You have %zu opened screen. Quit anyway?"
  2372. msgid_plural "You have %zu opened screens. Quit anyway?"
  2373. msgstr[0] "Tem %zu ecrã aberto. Terminar de qualquer modo?"
  2374. msgstr[1] "Tem %zu ecrãs abertos. Terminar de qualquer modo?"
  2375. msgstr[2] "Tem %zu ecrãs abertos. Terminar de qualquer modo?"
  2376. msgid "The Midnight Commander"
  2377. msgstr "O Midnight Commander"
  2378. msgid "Do you really want to quit the Midnight Commander?"
  2379. msgstr "Deseja mesmo sair do Midnight Commander?"
  2380. msgid "&Above"
  2381. msgstr "&Acima"
  2382. msgid "&Left"
  2383. msgstr "&Esquerdo"
  2384. msgid "&Below"
  2385. msgstr "A&baixo"
  2386. msgid "&Right"
  2387. msgstr "Di&reito"
  2388. msgid "ButtonBar|Menu"
  2389. msgstr "ButtonBar|Menu"
  2390. msgid "ButtonBar|View"
  2391. msgstr "ButtonBar|Ver"
  2392. msgid "ButtonBar|RenMov"
  2393. msgstr "ButtonBar|RenMov"
  2394. msgid "ButtonBar|Mkdir"
  2395. msgstr "ButtonBar|Mkdir"
  2396. msgid "&Chdir"
  2397. msgstr "&Chdir"
  2398. msgid "&Again"
  2399. msgstr "&Novamente"
  2400. msgid "Pane&lize"
  2401. msgstr "Em &Painel"
  2402. msgid "&View - F3"
  2403. msgstr "&Ver - F3"
  2404. msgid "&Edit - F4"
  2405. msgstr "&Editar - F4"
  2406. #, c-format
  2407. msgid "Found: %lu"
  2408. msgstr "Encontrado: %lu"
  2409. msgid "Malformed regular expression"
  2410. msgstr "Expressão regular malformada"
  2411. msgid "File name:"
  2412. msgstr "Nome do ficheiro:"
  2413. msgid "&Find recursively"
  2414. msgstr "Procurar &recursivamente"
  2415. msgid "Follow s&ymlinks"
  2416. msgstr "Seguir s&ymlinks"
  2417. msgid "S&kip hidden"
  2418. msgstr "Saltar esc&ondidos"
  2419. msgid "Content:"
  2420. msgstr "Conteúdo:"
  2421. msgid "Sea&rch for content"
  2422. msgstr "Procu&rar por conteúdo"
  2423. msgid "Case sens&itive"
  2424. msgstr "Sensível à capital&ização"
  2425. msgid "A&ll charsets"
  2426. msgstr "To&dos os conjuntos de carateres"
  2427. msgid "Fir&st hit"
  2428. msgstr "Pri&meiro encontrado"
  2429. msgid "Find File"
  2430. msgstr "Procurar Ficheiro"
  2431. msgid "Start at:"
  2432. msgstr "Começar em:"
  2433. msgid "Ena&ble ignore directories:"
  2434. msgstr "Ha&bilitar ignorar diretórios:"
  2435. #, c-format
  2436. msgid "Grepping in %s"
  2437. msgstr "A executar grep em %s"
  2438. msgid "Finished"
  2439. msgstr "Terminado"
  2440. #, c-format
  2441. msgid "Finished (ignored %zu directory)"
  2442. msgid_plural "Finished (ignored %zu directories)"
  2443. msgstr[0] "Terminado (%zu directório ignorado)"
  2444. msgstr[1] "Terminado (%zu directórios ignorados)"
  2445. msgstr[2] "Terminado (%zu directórios ignorados)"
  2446. #, c-format
  2447. msgid "Find File: \"%s\". Content: \"%s\""
  2448. msgstr "Procurar Ficheiro: \"%s\". Conteúdo: \"%s\""
  2449. #, c-format
  2450. msgid "Find File: \"%s\""
  2451. msgstr "Procurar Ficheiro: \"%s\""
  2452. msgid "Searching"
  2453. msgstr "A procurar"
  2454. msgid "Change &to"
  2455. msgstr "Mudar p&ara"
  2456. msgid "&Free VFSs now"
  2457. msgstr "Libertar V&Fss agora"
  2458. msgid "&Refresh"
  2459. msgstr "&Refrescar"
  2460. msgid "&Add current"
  2461. msgstr "&Adicionar atual"
  2462. msgid "&Up"
  2463. msgstr "A&cima"
  2464. msgid "New &group"
  2465. msgstr "Novo &grupo"
  2466. msgid "New &entry"
  2467. msgstr "Nova &entrada"
  2468. msgid "&Insert"
  2469. msgstr "&Inserir"
  2470. msgid "&Remove"
  2471. msgstr "&Remover"
  2472. msgid "Subgroup - press ENTER to see list"
  2473. msgstr "Subgrupo - prima ENTER para ver lista"
  2474. msgid "Active VFS directories"
  2475. msgstr "Diretórios VFS ativos"
  2476. msgid "Directory hotlist"
  2477. msgstr "Hotlist de diretórios"
  2478. msgid "Top level group"
  2479. msgstr "Grupo de nível de topo"
  2480. msgid "Directory path"
  2481. msgstr "Caminho de diretório"
  2482. #, c-format
  2483. msgid "Moving %s"
  2484. msgstr "A mover %s"
  2485. msgid "Directory label"
  2486. msgstr "Etiqueta de diretório"
  2487. msgid "&Append"
  2488. msgstr "&Acrescentar"
  2489. msgid "New hotlist entry"
  2490. msgstr "Nova entrada de hotlist"
  2491. msgid "Directory label:"
  2492. msgstr "Etiqueta de diretório:"
  2493. msgid "Directory path:"
  2494. msgstr "Caminho de diretório:"
  2495. msgid "New hotlist group"
  2496. msgstr "Novo grupo de hotlist"
  2497. msgid "Name of new group:"
  2498. msgstr "Nome do novo grupo:"
  2499. #, c-format
  2500. msgid "Are you sure you want to remove entry \"%s\"?"
  2501. msgstr "Tem a certeza que deseja remover a entrada \"%s\"?"
  2502. #, c-format
  2503. msgid ""
  2504. "Group \"%s\" is not empty.\n"
  2505. "Remove it?"
  2506. msgstr ""
  2507. "Grupo \"%s\" não está vazio.\n"
  2508. "Remover?"
  2509. msgid "Hotlist Load"
  2510. msgstr "Carregar Hotlist"
  2511. #, c-format
  2512. msgid ""
  2513. "MC was unable to write %s file,\n"
  2514. "your old hotlist entries were not deleted"
  2515. msgstr ""
  2516. "MC não consegui escrever o ficheiro %s,\n"
  2517. "as suas antigas entradas na hotlist não foram apagadas"
  2518. #, c-format
  2519. msgid "Label for \"%s\":"
  2520. msgstr "Etiqueta para \"%s\":"
  2521. msgid "Add to hotlist"
  2522. msgstr "Adicionar à hotlist"
  2523. #, c-format
  2524. msgid "Midnight Commander %s"
  2525. msgstr "Midnight Commander %s"
  2526. #, c-format
  2527. msgid "File: %s"
  2528. msgstr "Ficheiro: %s"
  2529. msgid "No node information"
  2530. msgstr "Nenhuma informação de nó"
  2531. msgid "Free nodes:"
  2532. msgstr "Nós livres:"
  2533. msgid "No space information"
  2534. msgstr "Nenhuma informação de espaço"
  2535. #, c-format
  2536. msgid "Free space: %s / %s (%d%%)"
  2537. msgstr "Espaço livre: %s / %s (%d%%)"
  2538. #, c-format
  2539. msgid "Type: %s"
  2540. msgstr "Tipo: %s"
  2541. msgid "non-local vfs"
  2542. msgstr "vfs não local"
  2543. #, c-format
  2544. msgid "Device: %s"
  2545. msgstr "Dispositivo: %s"
  2546. #, c-format
  2547. msgid "Filesystem: %s"
  2548. msgstr "Sist. Fich.: %s"
  2549. #, c-format
  2550. msgid "Accessed: %s"
  2551. msgstr "Acedido: %s"
  2552. #, c-format
  2553. msgid "Modified: %s"
  2554. msgstr "Modificado: %s"
  2555. #. TRANSLATORS: Time of last status change as in stat(2) man.
  2556. #, c-format
  2557. msgid "Changed: %s"
  2558. msgstr "Alterado: %s"
  2559. #, c-format
  2560. msgid "Dev. type: major %lu, minor %lu"
  2561. msgstr "Dev. tipo: maior %lu, menor %lu"
  2562. #, c-format
  2563. msgid "Size: %s"
  2564. msgstr "Tamanho: %s"
  2565. #, c-format
  2566. msgid " (%lu block)"
  2567. msgid_plural " (%lu blocks)"
  2568. msgstr[0] " (%lu bloco)"
  2569. msgstr[1] " (%lu blocos)"
  2570. msgstr[2] " (%lu blocos)"
  2571. #, c-format
  2572. msgid "Owner: %s/%s"
  2573. msgstr "Proprietário: %s/%s"
  2574. #, c-format
  2575. msgid "Links: %d"
  2576. msgstr "Ligações: %d"
  2577. #, c-format
  2578. msgid "Attributes: %s"
  2579. msgstr "Atributos: %s"
  2580. msgid "Attributes: unavailable"
  2581. msgstr "Atributos: indisponível"
  2582. #, c-format
  2583. msgid "Mode: %s (%04o)"
  2584. msgstr "Modo: %s (%04o)"
  2585. #, c-format
  2586. msgid "Location: %Xh:%Xh"
  2587. msgstr "Localização: %Xh:%Xh"
  2588. msgid "&Equal split"
  2589. msgstr "Divisão i&gual"
  2590. msgid "&Menubar visible"
  2591. msgstr "&Menubar visível"
  2592. msgid "Command &prompt"
  2593. msgstr "&Prompt de comandos"
  2594. msgid "&Keybar visible"
  2595. msgstr "Barra de &teclas visível"
  2596. msgid "H&intbar visible"
  2597. msgstr "Barra de d&icas visível"
  2598. msgid "&XTerm window title"
  2599. msgstr "Título de janela &XTerm"
  2600. msgid "&Show free space"
  2601. msgstr "Mostrar e&spaço livre"
  2602. msgid "Panel split"
  2603. msgstr "Divisão de painel"
  2604. msgid "Console output"
  2605. msgstr "Output de consola"
  2606. msgid "&Vertical"
  2607. msgstr "&Vertical"
  2608. msgid "&Horizontal"
  2609. msgstr "&Horizontal"
  2610. msgid "Output lines:"
  2611. msgstr "Linhas de output:"
  2612. msgid "Layout"
  2613. msgstr "Disposição"
  2614. msgid "Memory exhausted!"
  2615. msgstr "Memória esgotada!"
  2616. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2617. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2618. msgid "sort|u"
  2619. msgstr "sort|u"
  2620. msgid "&Unsorted"
  2621. msgstr "Não &ordenado"
  2622. #. TRANSLATORS: one single character to represent 'name' sort mode
  2623. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2624. msgid "sort|n"
  2625. msgstr "sort|n"
  2626. msgid "&Name"
  2627. msgstr "&Nome"
  2628. #. TRANSLATORS: one single character to represent 'version' sort mode
  2629. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2630. msgid "sort|v"
  2631. msgstr "sort|v"
  2632. msgid "&Version"
  2633. msgstr "&Versão"
  2634. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2635. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2636. msgid "sort|e"
  2637. msgstr "sort|e"
  2638. msgid "E&xtension"
  2639. msgstr "E&xtensão"
  2640. #. TRANSLATORS: one single character to represent 'size' sort mode
  2641. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2642. msgid "sort|s"
  2643. msgstr "sort|s"
  2644. msgid "&Size"
  2645. msgstr "Tama&nho"
  2646. msgid "Block Size"
  2647. msgstr "Tamanho de bloco"
  2648. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2649. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2650. msgid "sort|m"
  2651. msgstr "sort|m"
  2652. msgid "&Modify time"
  2653. msgstr "&Modificado"
  2654. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2655. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2656. msgid "sort|a"
  2657. msgstr "sort|a"
  2658. msgid "&Access time"
  2659. msgstr "Hora de &acesso"
  2660. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2661. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2662. msgid "sort|h"
  2663. msgstr "sort|h"
  2664. msgid "C&hange time"
  2665. msgstr "Al&terar hora"
  2666. msgid "Perm"
  2667. msgstr "Perm"
  2668. msgid "Nl"
  2669. msgstr "Nl"
  2670. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2671. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2672. msgid "sort|i"
  2673. msgstr "sort|i"
  2674. msgid "&Inode"
  2675. msgstr "&Inode"
  2676. msgid "UID"
  2677. msgstr "UID"
  2678. msgid "GID"
  2679. msgstr "GID"
  2680. msgid "Owner"
  2681. msgstr "Dono"
  2682. msgid "Group"
  2683. msgstr "Grupo"
  2684. msgid "[dev]"
  2685. msgstr "[dev]"
  2686. msgid "UP--DIR"
  2687. msgstr "UP--DIR"
  2688. msgid "SYMLINK"
  2689. msgstr "SYMLINK"
  2690. msgid "SUB-DIR"
  2691. msgstr "SUB-DIR"
  2692. msgid "<readlink failed>"
  2693. msgstr "<falha readlink>"
  2694. #, c-format
  2695. msgid "%s in %d file"
  2696. msgid_plural "%s in %d files"
  2697. msgstr[0] "%s em %d ficheiro"
  2698. msgstr[1] "%s em %d ficheiros"
  2699. msgstr[2] "%s em %d ficheiros"
  2700. msgid "Panelize"
  2701. msgstr "Em Panel"
  2702. msgid "Unknown tag on display format:"
  2703. msgstr "Etiqueta desconhecida em formato de exibição:"
  2704. msgid "&Files only"
  2705. msgstr "Apenas &ficheiros"
  2706. msgid "&Case sensitive"
  2707. msgstr "Sensível à &capitalização"
  2708. msgid "Select"
  2709. msgstr "Selecionar"
  2710. msgid "Unselect"
  2711. msgstr "Cancelar seleção"
  2712. msgid "Filter"
  2713. msgstr "Filtrar"
  2714. msgid "Do you really want to execute?"
  2715. msgstr "Deseja mesmo executar?"
  2716. msgid "Cannot read directory contents"
  2717. msgstr "Não é possível ler conteúdo do diretório"
  2718. msgid "User supplied format looks invalid, reverting to default."
  2719. msgstr ""
  2720. "Formato indicado pelo utilizador parece inválido, a reverter para defeito."
  2721. msgid "&Add new"
  2722. msgstr "&Adicionar novo"
  2723. msgid "External panelize"
  2724. msgstr "Exterior Em Painel"
  2725. msgid "Other command"
  2726. msgstr "Outro comando"
  2727. msgid "Command"
  2728. msgstr "Comando"
  2729. msgid "Add to external panelize"
  2730. msgstr "Adicionar a \"Exterior Em Painel\""
  2731. msgid "Enter command label:"
  2732. msgstr "Adicionar a \"Exterior Em Painel\""
  2733. #, c-format
  2734. msgid ""
  2735. "External panelize:\n"
  2736. "%s"
  2737. msgstr ""
  2738. "Exterior Em Painel:\n"
  2739. "%s"
  2740. #, c-format
  2741. msgid ""
  2742. "External panelize:\n"
  2743. "failed to read data from child stdout:\n"
  2744. "%s"
  2745. msgstr ""
  2746. "Exterior Em Painel:\n"
  2747. "falha ao ler dados a partir do stdout encaixado:\n"
  2748. "%s"
  2749. msgid "Cannot run external panelize in a non-local directory"
  2750. msgstr "Não é possível executar \"Exterior Em Painel\" num diretório não local"
  2751. msgid "Modified git files"
  2752. msgstr "Ficheiros git modificados"
  2753. msgid "Find rejects after patching"
  2754. msgstr "Encontrar rejeitados após patching"
  2755. msgid "Find *.orig after patching"
  2756. msgstr "Encontrar *.orig após patching"
  2757. msgid "Find SUID and SGID programs"
  2758. msgstr "Encontrar aplicações SUID e SGID"
  2759. #, c-format
  2760. msgid ""
  2761. "Cannot open the %s file for writing:\n"
  2762. "%s\n"
  2763. msgstr ""
  2764. "Não é poss+ivel abrir o ficheiro %s para escrita:\n"
  2765. "%s\n"
  2766. #, c-format
  2767. msgid "Copy \"%s\" directory to:"
  2768. msgstr "Copiar diretório \"%s\" para:"
  2769. #, c-format
  2770. msgid "Move \"%s\" directory to:"
  2771. msgstr "Mover diretório \"%s\" para:"
  2772. #, c-format
  2773. msgid ""
  2774. "Cannot stat the destination\n"
  2775. "%s"
  2776. msgstr ""
  2777. "Não é possível efetuar stat no destino\n"
  2778. "%s"
  2779. #, c-format
  2780. msgid "Delete %s?"
  2781. msgstr "Apagar %s?"
  2782. msgid "ButtonBar|Static"
  2783. msgstr "ButtonBar|Static"
  2784. msgid "ButtonBar|Dynamc"
  2785. msgstr "ButtonBar|Dynamc"
  2786. msgid "ButtonBar|Rescan"
  2787. msgstr "ButtonBar|Rescan"
  2788. msgid "ButtonBar|Forget"
  2789. msgstr "ButtonBar|Forget"
  2790. msgid "ButtonBar|Rmdir"
  2791. msgstr "ButtonBar|Rmdir"
  2792. #, c-format
  2793. msgid ""
  2794. "Cannot write to the %s file:\n"
  2795. "%s\n"
  2796. msgstr ""
  2797. "Não é possíve escrever para o ficheiro %s:\n"
  2798. "%s\n"
  2799. msgid "Help file format error\n"
  2800. msgstr "Erro de formato de ficheiro de ajuda\n"
  2801. msgid "Internal bug: Double start of link area"
  2802. msgstr "Problema interno: Início duplo de área de ligação"
  2803. #, c-format
  2804. msgid "Cannot find node %s in help file"
  2805. msgstr "Não é possível encontrar nó %s no ficheiro de ajuda"
  2806. msgid "Help"
  2807. msgstr "Ajuda"
  2808. msgid "ButtonBar|Index"
  2809. msgstr "ButtonBar|Indice"
  2810. msgid "ButtonBar|Prev"
  2811. msgstr "ButtonBar|Prev"
  2812. msgid "Learn keys"
  2813. msgstr "Aprender teclas"
  2814. msgid "Teach me a key"
  2815. msgstr "Ensina-me uma tecla"
  2816. #, c-format
  2817. msgid ""
  2818. "Please press the %s\n"
  2819. "and then wait until this message disappears.\n"
  2820. "\n"
  2821. "Then, press it again to see if OK appears\n"
  2822. "next to its button.\n"
  2823. "\n"
  2824. "If you want to escape, press a single Escape key\n"
  2825. "and wait as well."
  2826. msgstr ""
  2827. "Prima %s\n"
  2828. "e depois aguarde que a mensagem desapareça.\n"
  2829. "\n"
  2830. "Depois, prima-a novamente para ver se aparece OK\n"
  2831. "junto ao seu botão.\n"
  2832. "\n"
  2833. "Se quiser sair, prima a tecla Escape\n"
  2834. "e aguarde também."
  2835. msgid "Cannot accept this key"
  2836. msgstr "Não é possível aceitar esta tecla"
  2837. #, c-format
  2838. msgid "You have entered \"%s\""
  2839. msgstr "Você inseriu \"%s\""
  2840. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2841. msgid "OK"
  2842. msgstr "OK"
  2843. msgid ""
  2844. "It seems that all your keys already\n"
  2845. "work fine. That's great."
  2846. msgstr ""
  2847. "Parece que todas as suas teclas já\n"
  2848. "funcionam bem. Isso é ótimo."
  2849. msgid "&Discard"
  2850. msgstr "&Descartar"
  2851. msgid ""
  2852. "Great! You have a complete terminal database!\n"
  2853. "All your keys work well."
  2854. msgstr ""
  2855. "Ótimo! Você possui uma base de dados de terminal completa!\n"
  2856. "Todas as suas teclas funcionam bem."
  2857. msgid ""
  2858. "Press all the keys mentioned here. After you have done it, check\n"
  2859. "which keys are not marked with OK. Press space on the missing\n"
  2860. "key, or click with the mouse to define it. Move around with Tab."
  2861. msgstr ""
  2862. "Pressione todas as teclas mencionadas aqui. Depois disso, verifique\n"
  2863. "quais as teclas não marcadas com OK. Pressione espaço na tecla em falta\n"
  2864. ", ou clique com o rato para a definir. Mover com o Tab."
  2865. #, c-format
  2866. msgid ""
  2867. "Failed to run:\n"
  2868. "%s\n"
  2869. msgstr ""
  2870. "Falha ao executar:\n"
  2871. "%s\n"
  2872. msgid "Home directory path is not absolute"
  2873. msgstr "Caminho do diretório home não é absoluto"
  2874. msgid ""
  2875. "GNU Midnight Commander\n"
  2876. "is already running on this terminal.\n"
  2877. "Subshell support will be disabled."
  2878. msgstr ""
  2879. "GNU Midnight Commander\n"
  2880. "já está a ser executado neste terminal.\n"
  2881. "O suporte para subshell irá ser desactivado."
  2882. #, c-format
  2883. msgid ""
  2884. "\n"
  2885. "Failed while close:\n"
  2886. "%s\n"
  2887. msgstr ""
  2888. "\n"
  2889. "Falha ao fechar:\n"
  2890. "%s\n"
  2891. msgid "Choose codepage"
  2892. msgstr "Escolha a página de código"
  2893. msgid "- < No translation >"
  2894. msgstr "- < Sem tradução >"
  2895. msgid "%b %e %Y"
  2896. msgstr "%b %e %Y"
  2897. msgid "%b %e %H:%M"
  2898. msgstr "%b %e %H:%M"
  2899. #, c-format
  2900. msgid ""
  2901. "Cannot save file %s:\n"
  2902. "%s"
  2903. msgstr ""
  2904. "Não é possível guardar ficheiro %s:\n"
  2905. "%s"
  2906. #, c-format
  2907. msgid "Cannot open named pipe %s\n"
  2908. msgstr "Não é possível abrir pipe com nome %s\n"
  2909. msgid "The shell is still active. Quit anyway?"
  2910. msgstr "A shell ainda está ativa. Sair na mesma?"
  2911. #, c-format
  2912. msgid "Warning: Cannot change to %s.\n"
  2913. msgstr "Aviso: Não é possível mudar para %s.\n"
  2914. #, fuzzy
  2915. msgid "With builtin editor and aspell support"
  2916. msgstr "Com Editor integrado and suporte Aspell"
  2917. #, fuzzy
  2918. msgid "With builtin editor"
  2919. msgstr "Com Editor integrado"
  2920. msgid "With optional subshell support"
  2921. msgstr "Com suporte opcional para subshell"
  2922. msgid "With subshell support as default"
  2923. msgstr "Com suporte para subshell por omissão"
  2924. msgid "With support for background operations"
  2925. msgstr "Com suporte para operations em background"
  2926. msgid "With mouse support on xterm and Linux console"
  2927. msgstr "Com suporte para rato na consola xterm e Linux"
  2928. msgid "With mouse support on xterm"
  2929. msgstr "Com suporte para rato no xterm"
  2930. msgid "With support for X11 events"
  2931. msgstr "Com suporte para eventos X11"
  2932. msgid "With internationalization support"
  2933. msgstr "Com suporte para internacionalização"
  2934. msgid "With multiple codepages support"
  2935. msgstr "Com suporte para múltiplas páginas de código"
  2936. msgid "With ext2fs attributes support"
  2937. msgstr "Com suporte de atributos ext2fs"
  2938. #, c-format
  2939. msgid "Built with GLib %d.%d.%d\n"
  2940. msgstr "Compilado com GLib %d.%d.%d\n"
  2941. #, c-format
  2942. msgid "Built with S-Lang %s with terminfo database\n"
  2943. msgstr "Desenvolvido com S-Lang %s com base de dados terminfo\n"
  2944. #, c-format
  2945. msgid "Built with ncurses %s\n"
  2946. msgstr "Desenvolvido com ncurses %s\n"
  2947. msgid "Built with ncurses (unknown version)"
  2948. msgstr "Desenvolvido com ncurses (versão desconhecida)"
  2949. #, c-format
  2950. msgid "Built with ncursesw %s\n"
  2951. msgstr "Desenvolvido com ncursesw %s\n"
  2952. msgid "Built with ncursesw (unknown version)"
  2953. msgstr "Desenvolvido com ncursesw (versão desconhecida)"
  2954. #, c-format
  2955. msgid "Built with libssh2 %d.%d.%d\n"
  2956. msgstr "Compilado com libssh2 %d.%d.%d\n"
  2957. msgid "Virtual File Systems:"
  2958. msgstr "Sistemas de Ficheiros Virtuais:"
  2959. msgid "Data types:"
  2960. msgstr "Tipos de dados:"
  2961. msgid "Home directory:"
  2962. msgstr "Directório Home:"
  2963. msgid "Profile root directory:"
  2964. msgstr "Directório do perfil root:"
  2965. msgid "System data"
  2966. msgstr "Dados de sistema"
  2967. msgid "Config directory:"
  2968. msgstr "Diretório de configuração:"
  2969. msgid "Data directory:"
  2970. msgstr "Diretório de dados:"
  2971. msgid "File extension handlers:"
  2972. msgstr "Handlers de extensões de ficheiro:"
  2973. msgid "VFS plugins and scripts:"
  2974. msgstr "VFS plugins e scripts:"
  2975. msgid "User data"
  2976. msgstr "Dados de utilizador"
  2977. msgid "Cache directory:"
  2978. msgstr "Diretório de cache:"
  2979. msgid "Debug"
  2980. msgstr "Debug"
  2981. msgid "ERROR:"
  2982. msgstr "ERRO:"
  2983. msgid "True:"
  2984. msgstr "Verdadeiro:"
  2985. msgid "False:"
  2986. msgstr "Falso:"
  2987. msgid "Error calling program"
  2988. msgstr "Erro ao chamar programa"
  2989. msgid "Warning -- ignoring file"
  2990. msgstr "Aviso -- a ignorar ficheiro"
  2991. #, c-format
  2992. msgid ""
  2993. "File %s is not owned by root or you or is world writable.\n"
  2994. "Using it may compromise your security"
  2995. msgstr ""
  2996. "O ficheiro %s não é possuido pelo root ou você ou é de escrita para todos.\n"
  2997. "Utiliza-lo poderá comprometer a sua segurança"
  2998. msgid "Format error on file Extensions File"
  2999. msgstr "Erro de formato em ficheiro de Extensões de Ficheiro"
  3000. #, c-format
  3001. msgid "The %%var macro has no default"
  3002. msgstr "A %%var macro não tem predefinição"
  3003. #, c-format
  3004. msgid "The %%var macro has no variable"
  3005. msgstr "A %%var macro não tem variável"
  3006. #, c-format
  3007. msgid "No suitable entries found in %s"
  3008. msgstr "Não foram encontradas entradas adequadas em %s"
  3009. msgid "User menu"
  3010. msgstr "Menu de utilizador"
  3011. #, c-format
  3012. msgid ""
  3013. "Cannot open cpio archive\n"
  3014. "%s"
  3015. msgstr ""
  3016. "Não é possível abrir ficheiro cpio\n"
  3017. "%s"
  3018. #, c-format
  3019. msgid ""
  3020. "Premature end of cpio archive\n"
  3021. "%s"
  3022. msgstr ""
  3023. "Fim prematuro de ficheiro cpio\n"
  3024. "%s"
  3025. #, c-format
  3026. msgid ""
  3027. "Inconsistent hardlinks of\n"
  3028. "%s\n"
  3029. "in cpio archive\n"
  3030. "%s"
  3031. msgstr ""
  3032. "Hardlinks de\n"
  3033. "%s\n"
  3034. "inconsistentes no ficheiro cpio\n"
  3035. "%s"
  3036. #, c-format
  3037. msgid "%s contains duplicate entries! Skipping!"
  3038. msgstr "%s contém entradas duplicadas! A ignorar!"
  3039. #, c-format
  3040. msgid ""
  3041. "Corrupted cpio header encountered in\n"
  3042. "%s"
  3043. msgstr ""
  3044. "Encontrado cabeçalho de cpio corrompido em\n"
  3045. "%s"
  3046. #, c-format
  3047. msgid ""
  3048. "Unexpected end of file\n"
  3049. "%s"
  3050. msgstr ""
  3051. "Fim de ficheiro inesperado\n"
  3052. "%s"
  3053. msgid "Inconsistent archive"
  3054. msgstr "Arquivo inconsistente"
  3055. #, c-format
  3056. msgid ""
  3057. "Cannot open %s archive\n"
  3058. "%s:\n"
  3059. "%s"
  3060. msgstr ""
  3061. "Não é possível abrir arquivo %s\n"
  3062. "%s;\n"
  3063. "%s"
  3064. #, c-format
  3065. msgid ""
  3066. "EXTFS virtual file system:\n"
  3067. "%s"
  3068. msgstr ""
  3069. "Sistema de ficheiro virtual EXTFS:\n"
  3070. "%s"
  3071. msgid ""
  3072. "EXTFS virtual file system:\n"
  3073. "wrong file name"
  3074. msgstr ""
  3075. "Sistema de ficheiros virtual EXTFS:\n"
  3076. "nome de ficheiro errado"
  3077. msgid ""
  3078. "EXTFS virtual file system:\n"
  3079. "wrong archive name"
  3080. msgstr ""
  3081. "Sistema de ficheiros virtual EXTFS:\n"
  3082. "nome de arquivo errado"
  3083. msgid ""
  3084. "EXTFS virtual file system:\n"
  3085. "cannot build command"
  3086. msgstr ""
  3087. "Sistema de ficheiros virtual EXTFS:\n"
  3088. "não é possível construir comando"
  3089. #, c-format
  3090. msgid "Warning: cannot open %s directory\n"
  3091. msgstr "Aviso: não é possível abrir o diretório %s\n"
  3092. #, c-format
  3093. msgid "ftpfs: Disconnecting from %s"
  3094. msgstr "ftpfs: A desligar de %s"
  3095. #, c-format
  3096. msgid "FTP: Password required for %s"
  3097. msgstr "FTP: É necessário senha para %s"
  3098. msgid "ftpfs: sending login name"
  3099. msgstr "ftpfs: a enviar nome de utilizador"
  3100. msgid "ftpfs: sending user password"
  3101. msgstr "ftpfs: a enviar senha de utilizador"
  3102. #, c-format
  3103. msgid "FTP: Account required for user %s"
  3104. msgstr "FTP: É necessário conta para o utilizador %s"
  3105. msgid "Account:"
  3106. msgstr "Conta:"
  3107. msgid "ftpfs: sending user account"
  3108. msgstr "ftpfs: a enviar conta de utilizador"
  3109. msgid "ftpfs: logged in"
  3110. msgstr "ftpfs: sessão iniciada"
  3111. #, c-format
  3112. msgid "ftpfs: Login incorrect for user %s "
  3113. msgstr "ftpfs: Login incorrecto para o utilizador %s "
  3114. msgid "ftpfs: Invalid host name."
  3115. msgstr "ftpfs: Nome de servidor inválido."
  3116. #, c-format
  3117. msgid "ftpfs: %s"
  3118. msgstr "ftpfs: %s"
  3119. #, c-format
  3120. msgid "ftpfs: making connection to %s"
  3121. msgstr "ftpfs: a estabelecer ligação a %s"
  3122. msgid "ftpfs: connection interrupted by user"
  3123. msgstr "ftpfs: ligação interrompida pelo utilizador"
  3124. #, c-format
  3125. msgid "ftpfs: connection to server failed: %s"
  3126. msgstr "ftpfs: ligação ao servidor falhou: %s"
  3127. #, c-format
  3128. msgid "Waiting to retry... %d (Control-G to cancel)"
  3129. msgstr "Aguardando para repetir... %d (Control-G para cancelar)"
  3130. #, c-format
  3131. msgid "ftpfs: could not make address-to-name translation: %s"
  3132. msgstr "ftpfs: não foi possível a tradução endereço-para-nome: %s"
  3133. #, c-format
  3134. msgid "ftpfs: try reconnect to server, attempt %u"
  3135. msgstr "ftpfs: tentativa de reconexão ao servidor, tentativa %u"
  3136. #, c-format
  3137. msgid "ftpfs: could not get socket name: %s"
  3138. msgstr "ftpfs: não foi possível obter o nome do socket: %s"
  3139. msgid "ftpfs: could not reconnect to server"
  3140. msgstr "ftpfs: não foi possível reconectar ao servidor"
  3141. msgid "ftpfs: invalid address family"
  3142. msgstr "ftpfs: endereço de família inválido"
  3143. #, c-format
  3144. msgid "ftpfs: could not create socket: %s"
  3145. msgstr "ftpfs: não foi possível criar socket: %s"
  3146. msgid "ftpfs: could not setup passive mode"
  3147. msgstr "ftpfs: não foi possível efetuar modo passivo"
  3148. msgid "ftpfs: aborting transfer."
  3149. msgstr "ftpfs: a abortar transferência."
  3150. #, c-format
  3151. msgid "ftpfs: abort error: %s"
  3152. msgstr "ftpfs: erro ao abortar: %s"
  3153. msgid "ftpfs: abort failed"
  3154. msgstr "ftpfs: falha ao abortar"
  3155. msgid "ftpfs: CWD failed."
  3156. msgstr "ftpfs: CWD falhou."
  3157. msgid "ftpfs: couldn't resolve symlink"
  3158. msgstr "ftpfs: não foi possível resolver symlink"
  3159. msgid "Resolving symlink..."
  3160. msgstr "A resolver symlink..."
  3161. #, c-format
  3162. msgid "ftpfs: Reading FTP directory %s... %s%s"
  3163. msgstr "ftpfs: A ler directório FTP %s... %s%s"
  3164. msgid "(strict rfc959)"
  3165. msgstr "(rfc959 estrito)"
  3166. msgid "(chdir first)"
  3167. msgstr "(chdir primeiro)"
  3168. msgid "ftpfs: failed; nowhere to fallback to"
  3169. msgstr "ftpfs: falhou; nenhum local para onde ir"
  3170. #, c-format
  3171. msgid "%s: failure"
  3172. msgstr "%s: falha"
  3173. #, c-format
  3174. msgid "%s: done."
  3175. msgstr "%s: terminado."
  3176. msgid "ftpfs: storing file"
  3177. msgstr "ftpfs: a guardar ficheiro"
  3178. msgid ""
  3179. "~/.netrc file has incorrect mode\n"
  3180. "Remove password or correct mode"
  3181. msgstr ""
  3182. "ficheiro ~/.netrc tem modo incorreto\n"
  3183. "Remova a senha ou corrija o modo"
  3184. #, c-format
  3185. msgid ""
  3186. "SFS virtual file system:\n"
  3187. "%s"
  3188. msgstr ""
  3189. "Sistema de ficheiro virtual SFS:\n"
  3190. "%s"
  3191. #, c-format
  3192. msgid "%s: Warning: file %s not found\n"
  3193. msgstr "%s: Aviso: ficheiro %s não encontrado\n"
  3194. #, c-format
  3195. msgid ""
  3196. "Warning: Invalid line in %s:\n"
  3197. "%s\n"
  3198. msgstr ""
  3199. "Aviso: Linha inválida em %s:\n"
  3200. "%s\n"
  3201. #, c-format
  3202. msgid ""
  3203. "Warning: Invalid flag %c in %s:\n"
  3204. "%s\n"
  3205. msgstr ""
  3206. "Aviso: Flag inválida %c em %s:\n"
  3207. "%s\n"
  3208. #, c-format
  3209. msgid "sftp: an error occurred while reading %s: %s"
  3210. msgstr "sftp: ocorreu um erro durante a leitura %s: %s"
  3211. msgid "sftp: Unable to get current user name."
  3212. msgstr "sftp: Não foi possível obter nome de utilizador atual."
  3213. msgid "sftp: Invalid host name."
  3214. msgstr "sftp: Nome de host inválido."
  3215. #, c-format
  3216. msgid "sftp: %s"
  3217. msgstr "sftp: %s"
  3218. msgid "sftp: failed to convert remote host IP address into text form"
  3219. msgstr "sftp: falha ao converter endereço IP de host remoto em forma de texto"
  3220. #, c-format
  3221. msgid "sftp: making connection to %s"
  3222. msgstr "sftp: a efetuar ligação a %s"
  3223. msgid "sftp: connection interrupted by user"
  3224. msgstr "sftp: ligação interrompida pelo utilizador"
  3225. #, c-format
  3226. msgid "sftp: connection to server failed: %s"
  3227. msgstr "sftp: falha na ligação ao servidor: %s"
  3228. msgid "sftp: found host key of unsupported type: RSA1"
  3229. msgstr "sftp: encontrado host key de tipo não suportado: RSA1"
  3230. msgid "sftp: unknown host key type:"
  3231. msgstr "sftp: tipo de host key desconhecido:"
  3232. #, c-format
  3233. msgid ""
  3234. "Permanently added\n"
  3235. "%s (%s)\n"
  3236. "to the list of known hosts."
  3237. msgstr ""
  3238. "Adicionado permanentemente\n"
  3239. "%s (%s)\n"
  3240. "à lista de hosts desconhecidos."
  3241. msgid "sftp: cannot get the remote host key"
  3242. msgstr "sftp: não é possível obter o host key remoto"
  3243. msgid "sftp: unsupported key type, can't check remote host key"
  3244. msgstr ""
  3245. "sftp: tipo de key não suportado, não foi possível verificar o host key remoto"
  3246. msgid "sftp: can't compute host key fingerprint hash"
  3247. msgstr "sftp: não é possível processar o fingerprint hash do host key"
  3248. #, c-format
  3249. msgid ""
  3250. "The authenticity of host\n"
  3251. "%s (%s)\n"
  3252. "can't be established!\n"
  3253. "%s key fingerprint hash is\n"
  3254. "SHA1:%s.\n"
  3255. "Do you want to add it to the list of known hosts and continue connecting?"
  3256. msgstr ""
  3257. "A autenticidade do host\n"
  3258. "%s (%s)\n"
  3259. "não é possível estabelecer!\n"
  3260. "%s a fingerprint hash da key é\n"
  3261. "SHA1:%s.\n"
  3262. "Pretende adicioná-la à lista de hosts conhecidos e continuar a conexão?"
  3263. #, c-format
  3264. msgid ""
  3265. "%s (%s)\n"
  3266. "is found in the list of known hosts but\n"
  3267. "KEYS DO NOT MATCH! THIS COULD BE A MITM ATTACK!\n"
  3268. "Are you sure you want to add it to the list of known hosts and continue "
  3269. "connecting?"
  3270. msgstr ""
  3271. "%s (%s)\n"
  3272. "foi encontrado na lista de hosts conhecidos mas\n"
  3273. "AS KEYS NÃO SÃO IGUAIS! ISTO PODERÁ SER UM ATAQUE MITM!\n"
  3274. "Tem a certeza que deseja adicioná-lo à lista de hosts conhecidos e continuar "
  3275. "a conexão?"
  3276. msgid "sftp: host key verification failed"
  3277. msgstr "sftp: verificação da host key falhou"
  3278. #, c-format
  3279. msgid "sftp: Enter passphrase for %s "
  3280. msgstr "sftp: Insira a passphrase para %s "
  3281. msgid "sftp: Passphrase is empty."
  3282. msgstr "sftp: Passphrase está vazia."
  3283. #, c-format
  3284. msgid "sftp: Enter password for %s "
  3285. msgstr "sftp: Insira senha para %s "
  3286. msgid "sftp: Password is empty."
  3287. msgstr "sftp: Senha está vazia."
  3288. msgid "sftp: failure establishing SSH session"
  3289. msgstr "sftp: falha ao estabelecer sessão SSH"
  3290. msgid "sftp: No file handler data present for reading file"
  3291. msgstr "sftp: Sem dados de uso de ficheiro presentes para ler ficheiro"
  3292. #, c-format
  3293. msgid "sftp: socket error: %s"
  3294. msgstr "sftp: erro de socket: %s"
  3295. #, c-format
  3296. msgid "sftp: (Ctrl-G break) Listing... %s"
  3297. msgstr "sftp: (Ctrl-G break) A listar... %s"
  3298. msgid "sftp: Listing done."
  3299. msgstr "sftp: Listagem efetuada."
  3300. #, c-format
  3301. msgid "shell: Disconnecting from %s"
  3302. msgstr "shell: A desligar de %s"
  3303. msgid "shell: Waiting for initial line..."
  3304. msgstr "shell: À espera da linha inicial..."
  3305. msgid "Sorry, we cannot do password authenticated connections for now."
  3306. msgstr "Desculpe, por ora ligações com senha autenticada não são possíveis."
  3307. #, c-format
  3308. msgid "shell: Password is required for %s"
  3309. msgstr "shell: É necessário password para %s"
  3310. msgid "shell: Sending password..."
  3311. msgstr "shell: A enviar password..."
  3312. msgid "shell: Sending initial line..."
  3313. msgstr "shell: A enviar linha inicial..."
  3314. msgid "shell: Getting host info..."
  3315. msgstr "shell: A obter informação do host..."
  3316. #, c-format
  3317. msgid "shell: Reading directory %s..."
  3318. msgstr "shell: A ler directório %s..."
  3319. #, c-format
  3320. msgid "shell: store %s: sending command..."
  3321. msgstr "shell: guardar %s: a enviar comando..."
  3322. msgid "shell: Local read failed, sending zeros"
  3323. msgstr "shell: Leitura local falhou, a enviar zeros"
  3324. msgid "shell: storing file"
  3325. msgstr "shell: a guardar ficheiro"
  3326. msgid "Aborting transfer..."
  3327. msgstr "A abortar transferência..."
  3328. msgid "Error reported after abort."
  3329. msgstr "Erro reportado após abortar."
  3330. msgid "Aborted transfer would be successful."
  3331. msgstr "Transferência abortada teria tido sucesso."
  3332. msgid "Inconsistent tar archive"
  3333. msgstr "Arquivo tar inconsistente"
  3334. msgid "Unexpected EOF on archive file"
  3335. msgstr "EOF (final ficheiro) inesperado no arquivo"
  3336. #, c-format
  3337. msgid ""
  3338. "Cannot open tar archive\n"
  3339. "%s"
  3340. msgstr ""
  3341. "Não é possível abrir arquivo tar\n"
  3342. "%s"
  3343. #, c-format
  3344. msgid ""
  3345. "%s\n"
  3346. "doesn't look like a tar archive"
  3347. msgstr ""
  3348. "%s\n"
  3349. "não parece um arquivo tar"
  3350. msgid "tar: mc_lseek not stopped at a record boundary"
  3351. msgstr "tar: mc_lseek não parou num limite de registo"
  3352. msgid "undelfs: error"
  3353. msgstr "undelfs: erro"
  3354. msgid "not enough memory"
  3355. msgstr "sem memória suficiente"
  3356. msgid "while allocating block buffer"
  3357. msgstr "ao alocar block buffer"
  3358. #, c-format
  3359. msgid "open_inode_scan: %d"
  3360. msgstr "open_inode_scan: %d"
  3361. #, c-format
  3362. msgid "while starting inode scan %d"
  3363. msgstr "ao iniciar verificação de inode %d"
  3364. #, c-format
  3365. msgid "undelfs: loading deleted files information %d inodes"
  3366. msgstr "undelfs: a ler informação de ficheiros apagados dos %d inodes"
  3367. #, c-format
  3368. msgid "while calling ext2_block_iterate %d"
  3369. msgstr "ao chamar ext2_block_iterate %d"
  3370. msgid "no more memory while reallocating array"
  3371. msgstr "sem mais memória ao realocar array"
  3372. #, c-format
  3373. msgid "while doing inode scan %d"
  3374. msgstr "ao efetuar análise de inode %d"
  3375. #, c-format
  3376. msgid "Cannot open file %s"
  3377. msgstr "Não é possível abrir ficheiro %s"
  3378. msgid "undelfs: reading inode bitmap..."
  3379. msgstr "undelfs: a ler mapa de bits do inode..."
  3380. #, c-format
  3381. msgid ""
  3382. "Cannot load inode bitmap from:\n"
  3383. "%s"
  3384. msgstr ""
  3385. "Não é possível carregar bitmap de inode de:\n"
  3386. "%s"
  3387. msgid "undelfs: reading block bitmap..."
  3388. msgstr "undelfs: a ler bloco de mapa de bits..."
  3389. #, c-format
  3390. msgid ""
  3391. "Cannot load block bitmap from:\n"
  3392. "%s"
  3393. msgstr ""
  3394. "Não é possível carregar block bitmap de:\n"
  3395. "%s"
  3396. msgid "vfs_info is not fs!"
  3397. msgstr "vfs_info não é fs!"
  3398. msgid "You have to chdir to extract files first"
  3399. msgstr "Tem de chdir para extrair os ficheiros primeiro"
  3400. msgid "while iterating over blocks"
  3401. msgstr "ao iterar sobre blocos"
  3402. #, c-format
  3403. msgid "Cannot open file \"%s\""
  3404. msgstr "Não é possível abrir o ficheiro \"%s\""
  3405. msgid "Ext2lib error"
  3406. msgstr "Erro de Ext2lib"
  3407. msgid "Invalid value"
  3408. msgstr "Valor inválido"
  3409. msgid "File was modified. Save with exit?"
  3410. msgstr "Ficheiro foi modificado. Guardar ao sair?"
  3411. msgid "&Cancel quit"
  3412. msgstr "&Cancelar saída"
  3413. msgid ""
  3414. "Midnight Commander is being shut down.\n"
  3415. "Save modified file?"
  3416. msgstr ""
  3417. "Midnight Commander está a terminar.\n"
  3418. "Guardar ficheiro modificado?"
  3419. msgid "&Line number"
  3420. msgstr "Número da &linha"
  3421. msgid "Pe&rcents"
  3422. msgstr "Pe&rcentagens"
  3423. msgid "&Decimal offset"
  3424. msgstr "Offset &decimal"
  3425. msgid "He&xadecimal offset"
  3426. msgstr "Offset he&xadecimal"
  3427. msgid "Goto"
  3428. msgstr "Ir para"
  3429. msgid "ButtonBar|Ascii"
  3430. msgstr "ButtonBar|Ascii"
  3431. msgid "ButtonBar|HxSrch"
  3432. msgstr "ButtonBar|HxSrch"
  3433. msgid "ButtonBar|UnWrap"
  3434. msgstr "ButtonBar|UnWrap"
  3435. msgid "ButtonBar|Wrap"
  3436. msgstr "ButtonBar|Wrap"
  3437. msgid "ButtonBar|Hex"
  3438. msgstr "ButtonBar|Hex"
  3439. msgid "ButtonBar|Goto"
  3440. msgstr "ButtonBar|IrPara"
  3441. msgid "ButtonBar|Raw"
  3442. msgstr "ButtonBar|Raw"
  3443. msgid "ButtonBar|Parse"
  3444. msgstr "ButtonBar|Parse"
  3445. msgid "ButtonBar|Unform"
  3446. msgstr "ButtonBar|Unform"
  3447. msgid "ButtonBar|Format"
  3448. msgstr "ButtonBar|Format"
  3449. #, c-format
  3450. msgid ""
  3451. "Failed to read data from child stdout:\n"
  3452. "%s"
  3453. msgstr ""
  3454. "Falha ao ler dados a partir do child stdout:\n"
  3455. "%s"
  3456. #, c-format
  3457. msgid ""
  3458. "Error while closing the file:\n"
  3459. "%s\n"
  3460. "Data may have been written or not"
  3461. msgstr ""
  3462. "Erro ao fechar o ficheiro:\n"
  3463. "%s\n"
  3464. "Dados podem ter sido escritos ou não"
  3465. #, c-format
  3466. msgid ""
  3467. "Cannot save file:\n"
  3468. "%s"
  3469. msgstr ""
  3470. "Não é possível guardar ficheiro:\n"
  3471. "%s"
  3472. msgid "View: "
  3473. msgstr "Ver: "
  3474. #, c-format
  3475. msgid ""
  3476. "Cannot open \"%s\"\n"
  3477. "%s"
  3478. msgstr ""
  3479. "Não é possível abrir \"%s\"\n"
  3480. "%s"
  3481. msgid "Cannot view: not a regular file"
  3482. msgstr "Não é possível visualizar: não é um ficheiro regular"
  3483. #, c-format
  3484. msgid ""
  3485. "Cannot open \"%s\" in parse mode\n"
  3486. "%s"
  3487. msgstr ""
  3488. "Não foi possível abrir \"%s\" em modo parse\n"
  3489. "%s"
  3490. msgid "Search done"
  3491. msgstr "Procura terminada"
  3492. msgid "Continue from beginning?"
  3493. msgstr "Continuar do início?"
  3494. msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
  3495. msgstr "Não é possível obter uma cópia local de /ftp://some.host/editme.txt"
  3496. #, c-format
  3497. #~ msgid "%s is not a directory\n"
  3498. #~ msgstr "%s não é um diretório\n"
  3499. #, c-format
  3500. #~ msgid "Directory %s is not owned by you\n"
  3501. #~ msgstr "Não tem permissões para o diretório %s\n"
  3502. #, c-format
  3503. #~ msgid "Cannot set correct permissions for directory %s\n"
  3504. #~ msgstr "Não é possível definir permissões corretas para o diretório %s\n"
  3505. #, c-format
  3506. #~ msgid "Temporary files will be created in %s\n"
  3507. #~ msgstr "Ficheiros temporários serão criados em %s\n"
  3508. #, c-format
  3509. #~ msgid "Temporary files will not be created\n"
  3510. #~ msgstr "Ficheiros temporários não serão criados\n"