pt.po 93 KB

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