gl.po 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698
  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. # Miguel Anxo Bouzada <mbouzada@gmail.com>, 2013
  7. # Miguel Anxo Bouzada <mbouzada@gmail.com>, 2011-2012
  8. # Miguel Anxo Bouzada <mbouzada@gmail.com>, 2011
  9. # Miguel Anxo Bouzada <mbouzada@gmail.com>, 2012,2014-2015,2019
  10. # Slava Zanko <slavazanko@gmail.com>, 2011
  11. msgid ""
  12. msgstr ""
  13. "Project-Id-Version: Midnight Commander\n"
  14. "Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
  15. "POT-Creation-Date: 2021-06-20 16:14+0300\n"
  16. "PO-Revision-Date: 2020-12-31 14:19+0000\n"
  17. "Last-Translator: Transifex Bot <>\n"
  18. "Language-Team: Galician (http://www.transifex.com/mc/mc/language/gl/)\n"
  19. "Language: gl\n"
  20. "MIME-Version: 1.0\n"
  21. "Content-Type: text/plain; charset=UTF-8\n"
  22. "Content-Transfer-Encoding: 8bit\n"
  23. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  24. # "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  25. msgid "Warning: cannot load codepages list"
  26. msgstr "Aviso: non é posíbel cargar a lista de codificacións"
  27. msgid "7-bit ASCII"
  28. msgstr "ASCII (7 bits)"
  29. #, c-format
  30. msgid "Cannot translate from %s to %s"
  31. msgstr "Non é posíbel converter de %s a %s"
  32. msgid "Event system already initialized"
  33. msgstr "O sistema de accións xa foi iniciado"
  34. msgid "Failed to initialize event system"
  35. msgstr "Non foi posíbel iniciar o sistema de accións"
  36. msgid "Event system not initialized"
  37. msgstr "O sistema de accións non foi iniciado"
  38. msgid "Check input data! Some of parameters are NULL!"
  39. msgstr "Verifique os datos de entrada! Hai parámetros nulos!"
  40. #, c-format
  41. msgid "Unable to create group '%s' for events!"
  42. msgstr "Non foi posíbel crear o grupo «%s» para accións!"
  43. #, c-format
  44. msgid "Unable to create event '%s'!"
  45. msgstr "Non foi posíbel crear a acción «%s»!"
  46. #, c-format
  47. msgid ""
  48. "File \"%s\" is already being edited.\n"
  49. "User: %s\n"
  50. "Process ID: %d"
  51. msgstr ""
  52. "O ficheiro «%s» esta xa sendo editado\n"
  53. "Usuario: %s\n"
  54. "ID. do proceso: %d"
  55. msgid "File locked"
  56. msgstr "Ficheiro bloqueado"
  57. msgid "&Grab lock"
  58. msgstr "Obter &Bloqueo"
  59. msgid "&Ignore lock"
  60. msgstr "&Ignorar bloqueo"
  61. #, c-format
  62. msgid "Cannot create %s directory"
  63. msgstr "Non é posíbel crear o directorio %s"
  64. msgid "FATAL: not a directory:"
  65. msgstr "FATAL! Non é un directorio:"
  66. msgid ""
  67. "Number out of range (should be in byte range, 0 <= n <= 0xFF, expressed in "
  68. "hex)"
  69. msgstr ""
  70. "Número fóra de intervalo (debe estar no intervalo de bytes, 0 <= n <= 0xFF, "
  71. "expresado en hexadecimal)"
  72. msgid "Invalid character"
  73. msgstr "Carácter non válido"
  74. msgid "Unmatched quotes character"
  75. msgstr "Carácter de comiñas desemparellado"
  76. #, c-format
  77. msgid ""
  78. "Hex pattern error at position %d:\n"
  79. "%s."
  80. msgstr ""
  81. "Erro de patrón hexadecimal na posición %d:\n"
  82. "%s."
  83. msgid "Search string not found"
  84. msgstr "Non se atopa a cadea buscada"
  85. msgid "Not implemented yet"
  86. msgstr "Non implementado aínda"
  87. msgid "Num of replace tokens not equal to num of found tokens"
  88. msgstr ""
  89. "O número de elementos a substituír non é o mesmo que o número de elementos "
  90. "atopados"
  91. #, c-format
  92. msgid "Invalid token number %d"
  93. msgstr "O elemento número %d é incorrecto"
  94. msgid "Regular expression error"
  95. msgstr "Atopouse un erro nunha expresión regular"
  96. msgid "No&rmal"
  97. msgstr "No&Rmal"
  98. msgid "Re&gular expression"
  99. msgstr "Expresión re&Gular"
  100. msgid "He&xadecimal"
  101. msgstr "He&Xadecimal"
  102. msgid "Wil&dcard search"
  103. msgstr "Busca por como&Díns"
  104. #, c-format
  105. msgid ""
  106. "Unable to load '%s' skin.\n"
  107. "Default skin has been loaded"
  108. msgstr ""
  109. "Non foi posíbel cargar o tema «%s».\n"
  110. "Cargouse o tema predeterminado."
  111. #, c-format
  112. msgid ""
  113. "Unable to parse '%s' skin.\n"
  114. "Default skin has been loaded"
  115. msgstr ""
  116. "Non foi posíbel analizar o tema «%s».\n"
  117. "Cargouse o tema predeterminado."
  118. #, c-format
  119. msgid ""
  120. "Unable to use '%s' skin with true colors support:\n"
  121. "%s\n"
  122. "Default skin has been loaded"
  123. msgstr ""
  124. "Non é posíbel empregar o tema «%s» con compatibilidade para cores "
  125. "verdadeiros:\n"
  126. "%s\n"
  127. "Cargouse o tema predeterminado"
  128. #, c-format
  129. msgid ""
  130. "Unable to use '%s' skin with 256 colors support\n"
  131. "on non-256 colors terminal.\n"
  132. "Default skin has been loaded"
  133. msgstr ""
  134. "Non é posíbel empregar o tema «%s» con compatibilidade\n"
  135. "para 256 cores en terminais sen esta característica.\n"
  136. "Cargouse o tema predeterminado"
  137. msgid "True color not supported with ncurses."
  138. msgstr "Non se admite a cor verdadeira con ncurses."
  139. msgid "Your terminal doesn't even seem to support 256 colors."
  140. msgstr "Semella que a súa terminal non admite 256 cores."
  141. msgid "True color not supported in this slang version."
  142. msgstr "Non se admite a cor verdadeira nesta versión da xiria."
  143. msgid "Set COLORTERM=truecolor if your terminal really supports true colors."
  144. msgstr ""
  145. "Estabeleza COLORTERM=truecolor, se a súa terminal admite realmente cores "
  146. "verdadeiras."
  147. msgid "Escape"
  148. msgstr "Escape"
  149. msgid "Function key 1"
  150. msgstr "Tecla «F1»"
  151. msgid "Function key 2"
  152. msgstr "Tecla «F2»"
  153. msgid "Function key 3"
  154. msgstr "Tecla «F3»"
  155. msgid "Function key 4"
  156. msgstr "Tecla «F4»"
  157. msgid "Function key 5"
  158. msgstr "Tecla «F5»"
  159. msgid "Function key 6"
  160. msgstr "Tecla «F6»"
  161. msgid "Function key 7"
  162. msgstr "Tecla «F7»"
  163. msgid "Function key 8"
  164. msgstr "Tecla «F8»"
  165. msgid "Function key 9"
  166. msgstr "Tecla «F9»"
  167. msgid "Function key 10"
  168. msgstr "Tecla «F10»"
  169. msgid "Function key 11"
  170. msgstr "Tecla «F11»"
  171. msgid "Function key 12"
  172. msgstr "Tecla «F12»"
  173. msgid "Function key 13"
  174. msgstr "Tecla «F13»"
  175. msgid "Function key 14"
  176. msgstr "Tecla «F14»"
  177. msgid "Function key 15"
  178. msgstr "Tecla «F15»"
  179. msgid "Function key 16"
  180. msgstr "Tecla «F16»"
  181. msgid "Function key 17"
  182. msgstr "Tecla «F17»"
  183. msgid "Function key 18"
  184. msgstr "Tecla «F18»"
  185. msgid "Function key 19"
  186. msgstr "Tecla «F19»"
  187. msgid "Function key 20"
  188. msgstr "Tecla «F20»"
  189. msgid "Completion/M-tab"
  190. msgstr "Completar/M-Tab"
  191. msgid "BackTab/S-tab"
  192. msgstr "Retroceso/S-tab"
  193. msgid "Backspace"
  194. msgstr "Retroceso (<--)"
  195. msgid "Up arrow"
  196. msgstr "Frecha arriba"
  197. msgid "Down arrow"
  198. msgstr "Frecha abaixo"
  199. msgid "Left arrow"
  200. msgstr "Frecha esquerda"
  201. msgid "Right arrow"
  202. msgstr "Frecha dereita"
  203. msgid "Insert"
  204. msgstr "Inserir"
  205. msgid "Delete"
  206. msgstr "Eliminar"
  207. msgid "Home"
  208. msgstr "Inicio"
  209. msgid "End key"
  210. msgstr "Tecla «Fin»"
  211. msgid "Page Up"
  212. msgstr "Re Páx"
  213. msgid "Page Down"
  214. msgstr "Av Páx"
  215. msgid "/ on keypad"
  216. msgstr "/ no teclado numérico"
  217. msgid "* on keypad"
  218. msgstr "* no teclado numérico"
  219. msgid "- on keypad"
  220. msgstr "- no teclado numérico"
  221. msgid "+ on keypad"
  222. msgstr "+ no teclado numérico"
  223. msgid "Left arrow keypad"
  224. msgstr "«Frecha esquerda» do teclado numérico"
  225. msgid "Right arrow keypad"
  226. msgstr "«Frecha dereita» do teclado numérico"
  227. msgid "Up arrow keypad"
  228. msgstr "«Frecha arriba» do teclado numérico"
  229. msgid "Down arrow keypad"
  230. msgstr "«Frecha abaixo» do teclado numérico"
  231. msgid "Home on keypad"
  232. msgstr "«Inicio» do teclado numérico"
  233. msgid "End on keypad"
  234. msgstr "«Fin» do teclado numérico"
  235. msgid "Page Down keypad"
  236. msgstr "«Av Pág (páxina abaixo) do teclado numérico"
  237. msgid "Page Up keypad"
  238. msgstr "«Re Pág» (páxina arriba) do teclado numérico"
  239. msgid "Insert on keypad"
  240. msgstr "«Insert» do teclado numérico"
  241. msgid "Delete on keypad"
  242. msgstr "«Supr» do teclado numérico"
  243. msgid "Enter on keypad"
  244. msgstr "«Intro» do teclado numérico"
  245. msgid "Function key 21"
  246. msgstr "Tecla «F21»"
  247. msgid "Function key 22"
  248. msgstr "Tecla «F22»"
  249. msgid "Function key 23"
  250. msgstr "Tecla «F23»"
  251. msgid "Function key 24"
  252. msgstr "Tecla «F24»"
  253. msgid "A1 key"
  254. msgstr "Tecla «A1»"
  255. msgid "C1 key"
  256. msgstr "Tecla «C1»"
  257. msgid "Asterisk"
  258. msgstr "Asterisco"
  259. msgid "Minus"
  260. msgstr "Menos"
  261. msgid "Plus"
  262. msgstr "Máis"
  263. msgid "Dot"
  264. msgstr "Punto"
  265. msgid "Less than"
  266. msgstr "Menor que"
  267. msgid "Great than"
  268. msgstr "Maior que"
  269. msgid "Equal"
  270. msgstr "Igual"
  271. msgid "Comma"
  272. msgstr "Coma"
  273. msgid "Apostrophe"
  274. msgstr "Apostrofo"
  275. msgid "Colon"
  276. msgstr "Dous puntos"
  277. msgid "Semicolon"
  278. msgstr "Punto e coma"
  279. msgid "Exclamation mark"
  280. msgstr "Signo de exclamación"
  281. msgid "Question mark"
  282. msgstr "Signo de interrogación"
  283. msgid "Ampersand"
  284. msgstr "Et"
  285. msgid "Dollar sign"
  286. msgstr "Símbolo do dólar"
  287. msgid "Quotation mark"
  288. msgstr "Comiñas (\")"
  289. msgid "Percent sign"
  290. msgstr "Símbolo de porcentaxe"
  291. msgid "Caret"
  292. msgstr "Circunflexo"
  293. msgid "Tilda"
  294. msgstr "Til"
  295. msgid "Prime"
  296. msgstr "Primo"
  297. msgid "Underline"
  298. msgstr "Subliñado"
  299. msgid "Understrike"
  300. msgstr "Guión baixo"
  301. msgid "Pipe"
  302. msgstr "Canalización «|»"
  303. msgid "Left parenthesis"
  304. msgstr "Paréntese esquerdo"
  305. msgid "Right parenthesis"
  306. msgstr "Paréntese dereito"
  307. msgid "Left bracket"
  308. msgstr "Corchete esquerdo"
  309. msgid "Right bracket"
  310. msgstr "Corchete dereito"
  311. msgid "Left brace"
  312. msgstr "Chave esquerda"
  313. msgid "Right brace"
  314. msgstr "Chave dereita"
  315. msgid "Enter"
  316. msgstr "Intro"
  317. msgid "Tab key"
  318. msgstr "Tecla «tabulador»"
  319. msgid "Space key"
  320. msgstr "Barra espazadora"
  321. msgid "Slash key"
  322. msgstr "«/» Barra inclinada"
  323. msgid "Backslash key"
  324. msgstr "«\\» Barra invertida"
  325. msgid "Number sign #"
  326. msgstr "Símbolo de numeral #"
  327. #. TRANSLATORS: Please translate as in "at sign" (@).
  328. msgid "At sign"
  329. msgstr "Símbolo de «en» (at) @"
  330. msgid "Ctrl"
  331. msgstr "Ctrl"
  332. msgid "Alt"
  333. msgstr "Alt"
  334. msgid "Shift"
  335. msgstr "Maiús"
  336. msgid "The TERM environment variable is unset!\n"
  337. msgstr "A variábel de contorno TERM está sen definir!\n"
  338. msgid "Cannot check SIGWINCH pipe"
  339. msgstr ""
  340. #, c-format
  341. msgid ""
  342. "\n"
  343. "Cannot create pipe for SIGWINCH: %s (%d)\n"
  344. msgstr ""
  345. #, c-format
  346. msgid ""
  347. "\n"
  348. "Cannot configure write end of SIGWINCH pipe: %s (%d)\n"
  349. msgstr ""
  350. #, c-format
  351. msgid ""
  352. "\n"
  353. "Cannot configure read end of SIGWINCH pipe: %s (%d)\n"
  354. msgstr ""
  355. #, c-format
  356. msgid ""
  357. "Screen size %dx%d is not supported.\n"
  358. "Check the TERM environment variable.\n"
  359. msgstr ""
  360. "O tamaño de xanela %dx%d non esta admitido.\n"
  361. "Verifique o valor da variábel de contorno TERM.\n"
  362. msgid "B"
  363. msgstr "B"
  364. msgid "kB"
  365. msgstr "kB"
  366. msgid "KiB"
  367. msgstr "KiB"
  368. msgid "MB"
  369. msgstr "MB"
  370. msgid "MiB"
  371. msgstr "MiB"
  372. msgid "GB"
  373. msgstr "GB"
  374. msgid "GiB"
  375. msgstr "GiB"
  376. msgid "Cannot create pipe descriptor"
  377. msgstr "Non foi posíbel crear o descritor da canalización"
  378. msgid "Cannot create pipe streams"
  379. msgstr "Non é posíbel crear a canalización de fluxos"
  380. #, c-format
  381. msgid ""
  382. "Unexpected error in select() reading data from a child process:\n"
  383. "%s"
  384. msgstr ""
  385. "Produciuse un erro en select() lendo os datos para o proceso fillo:\n"
  386. "%s"
  387. #, c-format
  388. msgid ""
  389. "Unexpected error in waitpid():\n"
  390. "%s"
  391. msgstr ""
  392. "Produciuse un erro non agardado en waitpid():\n"
  393. "%s"
  394. #, c-format
  395. msgid "Directory cache expired for %s"
  396. msgstr "O cache para %s expirou"
  397. #, c-format
  398. msgid "%s: %s: %s %3d%% (%lld) bytes transferred"
  399. msgstr "%s: %s: %s %3d%% (%lld) bytes transferidos"
  400. #, c-format
  401. msgid "%s: %s: %s %lld bytes transferred"
  402. msgstr "%s: %s: %s %lld bytes transferidos"
  403. msgid "Starting linear transfer..."
  404. msgstr "Iniciando transferencia en liña..."
  405. msgid "Getting file"
  406. msgstr "Obtendo ficheiro"
  407. msgid "Changes to file lost"
  408. msgstr "Perdéronse os cambios no ficheiro"
  409. #, c-format
  410. msgid "%s is not a directory\n"
  411. msgstr "%s non é un directorio\n"
  412. #, c-format
  413. msgid "Directory %s is not owned by you\n"
  414. msgstr "Non é propietario do directorio %s \n"
  415. #, c-format
  416. msgid "Cannot set correct permissions for directory %s\n"
  417. msgstr "Non é posíbel dar permisos axeitados ao directorio %s\n"
  418. #, c-format
  419. msgid "Cannot create temporary directory %s: %s\n"
  420. msgstr "Non é posíbel crear directorio temporal %s: %s\n"
  421. #, c-format
  422. msgid "Temporary files will be created in %s\n"
  423. msgstr "Os ficheiros temporais crearanse en %s\n"
  424. #, c-format
  425. msgid "Temporary files will not be created\n"
  426. msgstr "Non se crearán ficheiros temporais\n"
  427. msgid "Press any key to continue..."
  428. msgstr "Prema calquera tecla para continuar..."
  429. msgid "Cannot parse:"
  430. msgstr "Non é posíbel analizar:"
  431. msgid "More parsing errors will be ignored."
  432. msgstr "O resto de erros de análise serán ignorados."
  433. msgid "Internal error:"
  434. msgstr "Produciuse un erro interno:"
  435. msgid "Password:"
  436. msgstr "Contrasinal:"
  437. msgid "Screens"
  438. msgstr "Pantallas"
  439. msgid "History"
  440. msgstr "Historial"
  441. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  442. msgid "DialogTitle|History cleanup"
  443. msgstr "DialogTitle|Limpar historial"
  444. msgid "Do you want clean this history?"
  445. msgstr "Desexa eliminar este historial?"
  446. msgid "&Yes"
  447. msgstr "&Si"
  448. msgid "&No"
  449. msgstr "&Non"
  450. msgid "&OK"
  451. msgstr "&Aceptar"
  452. msgid "&Cancel"
  453. msgstr "&Cancelar"
  454. msgid "Background process:"
  455. msgstr "Procesos en 2º plano"
  456. msgid "Error"
  457. msgstr "Erro"
  458. #, c-format
  459. msgid "%s (%d)"
  460. msgstr "%s (%d)"
  461. msgid "&Abort"
  462. msgstr "&Interromper"
  463. msgid "Displays the current version"
  464. msgstr "Mostrar a versión actual"
  465. msgid "Print data directory"
  466. msgstr "Mostrar directorio de datos"
  467. msgid "Print extended info about used data directories"
  468. msgstr "Mostrar información adicional sobre directorios usados"
  469. msgid "Print configure options"
  470. msgstr "Mostrar as opcións de configuración"
  471. msgid "Print last working directory to specified file"
  472. msgstr "Mostrar o último directorio de traballo para o ficheiro especificado"
  473. msgid "<file>"
  474. msgstr "<file>"
  475. msgid "Enables subshell support (default)"
  476. msgstr "Activar uso de subterminal (predeterminado)"
  477. msgid "Disables subshell support"
  478. msgstr "Desactivar o uso de subterminal"
  479. msgid "Log ftp dialog to specified file"
  480. msgstr "Gardar rexistro dos diálogos ftp nun ficheiro"
  481. msgid "Set debug level"
  482. msgstr "Definir o nivel de depuración"
  483. msgid "<integer>"
  484. msgstr "<integer>"
  485. msgid "Launches the file viewer on a file"
  486. msgstr "Abrir un ficheiro co visor"
  487. msgid "Edit files"
  488. msgstr "Editar ficheiros"
  489. msgid "<file> ..."
  490. msgstr "<file> ..."
  491. msgid "Forces xterm features"
  492. msgstr "Forzar as funcionalidades de xterm"
  493. msgid "Disable X11 support"
  494. msgstr "Desactivar a compatibilidade X11"
  495. msgid "Tries to use an old highlight mouse tracking"
  496. msgstr "Tentar usar o ronsel do rato co antigo resaltado"
  497. msgid "Disable mouse support in text version"
  498. msgstr "Desactivar o rato na versión texto"
  499. msgid "Tries to use termcap instead of terminfo"
  500. msgstr "Tentar utilizar «termcap» no canto de «terminfo»"
  501. msgid "To run on slow terminals"
  502. msgstr "Para executar en terminais lentos"
  503. msgid "Use stickchars to draw"
  504. msgstr "Usar caracteres simples para recadros"
  505. msgid "Resets soft keys on HP terminals"
  506. msgstr "Restabelecer teclas en terminais HP"
  507. msgid "Load definitions of key bindings from specified file"
  508. msgstr "Cargar asociacións de teclas desde o ficheiro indicado"
  509. msgid "Don't load definitions of key bindings from file, use defaults"
  510. msgstr "Non cargar as asociacións de teclas, empregar as predeterminadas"
  511. msgid "Requests to run in black and white"
  512. msgstr "Solicitar execución en branco e negro"
  513. msgid "Request to run in color mode"
  514. msgstr "Solicitar a execución a cores"
  515. msgid "Specifies a color configuration"
  516. msgstr "Indicar unha configuración de cores"
  517. msgid "<string>"
  518. msgstr "<string>"
  519. msgid "Show mc with specified skin"
  520. msgstr "Mostrar mc co tema especificado"
  521. #. TRANSLATORS: don't translate keywords
  522. msgid ""
  523. "--colors KEYWORD={FORE},{BACK},{ATTR}:KEYWORD2=...\n"
  524. "\n"
  525. "{FORE}, {BACK} and {ATTR} can be omitted, and the default will be used\n"
  526. "\n"
  527. " Keywords:\n"
  528. " Global: errors, disabled, reverse, gauge, header\n"
  529. " input, inputmark, inputunchanged, commandlinemark\n"
  530. " bbarhotkey, bbarbutton, statusbar\n"
  531. " File display: normal, selected, marked, markselect\n"
  532. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  533. " errdhotfocus\n"
  534. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  535. " Popup menus: pmenunormal, pmenusel, pmenutitle\n"
  536. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  537. " editlinestate, editbg, editframe, editframeactive\n"
  538. " editframedrag\n"
  539. " Viewer: viewnormal,viewbold, viewunderline, viewselected\n"
  540. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  541. msgstr ""
  542. "--colors CONTEXTO={FRENTE},{FONDO},{ATRIBUTOS}:CONTEXTO2=...\n"
  543. "\n"
  544. "{FRENTE}, {FONDO} e {ATRIBUTOS}poden omitirse, empregarase o valor "
  545. "predeterminado\n"
  546. "\n"
  547. " Contextos:\n"
  548. " Globais: errors, disabled, reverse, gauge, header\n"
  549. " input, inputmark, inputunchanged, commandlinemark\n"
  550. " bbarhotkey, bbarbutton, statusbar\n"
  551. " Visor de ficheiros: normal, selected, marked, markselect\n"
  552. " Diálogos: dnormal, dfocus, dhotnormal, dhotfocus, "
  553. "errdhotnormal,\n"
  554. " errdhotfocus\n"
  555. " Menús: menunormal, menuhot, menusel, menuhotsel, "
  556. "menuinactive\n"
  557. " Menús emerxentes: pmenunormal, pmenusel, pmenutitle\n"
  558. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  559. " editlinestate, editbg, editframe, editframeactive\n"
  560. " editframedrag\n"
  561. " Visor: viewnormal,viewbold, viewunderline, viewselected\n"
  562. " Axuda: helpnormal, helpitalic, helpbold, helplink, "
  563. "helpslink\n"
  564. #. TRANSLATORS: don't translate color names and attributes
  565. msgid ""
  566. "Standard Colors:\n"
  567. " black, gray, red, brightred, green, brightgreen, brown,\n"
  568. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  569. " brightcyan, lightgray and white\n"
  570. "\n"
  571. "Extended colors, when 256 colors are available:\n"
  572. " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
  573. "\n"
  574. "Attributes:\n"
  575. " bold, italic, underline, reverse, blink; append more with '+'\n"
  576. msgstr ""
  577. "Cores estándar:\n"
  578. " black, gray, red, brightred, green, brightgreen, brown,\n"
  579. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  580. " brightcyan, lightgray e white\n"
  581. "\n"
  582. "Cores estendidas, cando estean dispoñíbeis 256 cores::\n"
  583. " color16 to color255, ou rgb000 ata rgb555 e gray0 ata gray23\n"
  584. "\n"
  585. "Atributos:\n"
  586. " bold, underline, reverse, blink; engadir máis con «+»\n"
  587. msgid "Color options"
  588. msgstr "Opcións de cor"
  589. msgid "[+lineno] file1[:lineno] [file2[:lineno]...]"
  590. msgstr "[+liñanúm] ficheiro1[:liñanúm] [ficheiro2[:liñanúm]...]"
  591. msgid "file"
  592. msgstr "ficheiro"
  593. msgid "file1 file2"
  594. msgstr "ficheiro1 ficheiro2"
  595. msgid "[this_dir] [other_panel_dir]"
  596. msgstr "[Este_directorio] [outro_directorio _de_panel]"
  597. msgid ""
  598. "\n"
  599. "Please send any bug reports (including the output of 'mc -V')\n"
  600. "as tickets at www.midnight-commander.org\n"
  601. msgstr ""
  602. "\n"
  603. "Envíe calquera informe de fallo (incluíndo a saída de «mc -V»)\n"
  604. "como un ticket a www.midnight-commander.org\n"
  605. #, c-format
  606. msgid "GNU Midnight Commander %s\n"
  607. msgstr "GNU Midnight Commander %s\n"
  608. msgid "Main options"
  609. msgstr "Opcións principais"
  610. msgid "Terminal options"
  611. msgstr "Opcións de terminal"
  612. msgid "Arguments parse error!"
  613. msgstr "Produciuse un erro ao analizar os argumentos!"
  614. msgid "No arguments given to the viewer."
  615. msgstr "Non hai argumentos para o visor."
  616. msgid "Two files are required to envoke the diffviewer."
  617. msgstr "Precísanse dous ficheiros para invocar o visor de diferenzas."
  618. msgid "Background protocol error"
  619. msgstr "Produciuse un erro de protocolo en proceso en 2º plano"
  620. msgid "Reading failed"
  621. msgstr "Produciuse un fallo na lectura"
  622. msgid "Background process error"
  623. msgstr "Produciuse un erro nun proceso en 2º plano"
  624. msgid "Unknown error in child"
  625. msgstr "Produciuse un erro descoñecido no proceso fillo"
  626. msgid "Child died unexpectedly"
  627. msgstr "O proceso fillo rematou inesperadamente"
  628. msgid ""
  629. "Background process sent us a request for more arguments\n"
  630. "than we can handle."
  631. msgstr ""
  632. "O proceso en 2º plano enviounos unha petición con máis argumentos\n"
  633. "dos que estamos preparados para manexar."
  634. msgid "&Dismiss"
  635. msgstr "&Ignorar"
  636. msgid "Enter search string:"
  637. msgstr "Escriba a cadea a buscar:"
  638. msgid "Cas&e sensitive"
  639. msgstr "Distinguir &Maiúsculas"
  640. msgid "&Backwards"
  641. msgstr "&Cara atrás"
  642. msgid "&Whole words"
  643. msgstr "&Palabras completas"
  644. msgid "&All charsets"
  645. msgstr "&Todos os xogos de caracteres"
  646. msgid "Search"
  647. msgstr "Buscar"
  648. msgid "Search is disabled"
  649. msgstr "A busca está desactivada"
  650. #, c-format
  651. msgid ""
  652. "Cannot create temporary diff file\n"
  653. "%s"
  654. msgstr ""
  655. "Non é posíbel crear o ficheiro temporal «diff»\n"
  656. "%s"
  657. #, c-format
  658. msgid ""
  659. "Cannot create backup file\n"
  660. "%s%s\n"
  661. "%s"
  662. msgstr ""
  663. "Non é posíbel crear o ficheiro de copia de seguranza\n"
  664. "%s%s\n"
  665. "%s"
  666. #, c-format
  667. msgid ""
  668. "Cannot create temporary merge file\n"
  669. "%s"
  670. msgstr ""
  671. "Non é posíbel crear o ficheiro temporal para mesturas\n"
  672. "%s"
  673. msgid "&Fastest (Assume large files)"
  674. msgstr "Máis &Rápido (asume ficheiros grandes)"
  675. msgid "&Minimal (Find a smaller set of change)"
  676. msgstr "&Mínimo (busca o conxunto máis pequeno de cambio)"
  677. msgid "Diff algorithm"
  678. msgstr "Algoritmo de comparación"
  679. msgid "Diff extra options"
  680. msgstr "Outras opcións de comparación"
  681. msgid "&Ignore case"
  682. msgstr "&Ignorar maiúsculas/minúsculas"
  683. msgid "Ignore tab &expansion"
  684. msgstr "Ignorar &Tabulacións"
  685. msgid "Ignore &space change"
  686. msgstr "Ignorar cambios en e&Spazos"
  687. msgid "Ignore all &whitespace"
  688. msgstr "Ignora os espa&Zos en branco"
  689. msgid "Strip &trailing carriage return"
  690. msgstr "Franxa de final de re&Torno de carro"
  691. msgid "Diff Options"
  692. msgstr "Opcións de comparación"
  693. msgid "Edit"
  694. msgstr "Editar"
  695. msgid "Edit is disabled"
  696. msgstr "A edición está desactivada"
  697. msgid "Goto line (left)"
  698. msgstr "Ir á liña (esquerda)"
  699. msgid "Goto line (right)"
  700. msgstr "Ir á liña (dereita)"
  701. msgid "Enter line:"
  702. msgstr "Escriba a liña:"
  703. msgid "ButtonBar|Help"
  704. msgstr "ButtonBar|Axuda"
  705. msgid "ButtonBar|Save"
  706. msgstr "ButtonBar|Gardar"
  707. msgid "ButtonBar|Edit"
  708. msgstr "ButtonBar|Editar"
  709. msgid "ButtonBar|Merge"
  710. msgstr "ButtonBar|Mesturar"
  711. msgid "ButtonBar|Search"
  712. msgstr "ButtonBar|Buscar"
  713. msgid "ButtonBar|Options"
  714. msgstr "ButtonBar|Opcións"
  715. msgid "ButtonBar|Quit"
  716. msgstr "ButtonBar|Saír"
  717. msgid "Quit"
  718. msgstr "Saír"
  719. msgid "File(s) was modified. Save with exit?"
  720. msgstr "O(s) ficheiro(s) foi/foron modificado(s). Quere gardalo(s) ao saír?"
  721. msgid ""
  722. "Midnight Commander is being shut down.\n"
  723. "Save modified file(s)?"
  724. msgstr ""
  725. "Saíndo de Midnight Commander.\n"
  726. "Gardar o(s) ficheiro(s) modificado(s)?"
  727. msgid "Diff:"
  728. msgstr "Diferenza:"
  729. #, c-format
  730. msgid "\"%s\" is a directory"
  731. msgstr "«%s» é un directorio"
  732. #, c-format
  733. msgid ""
  734. "Cannot stat \"%s\"\n"
  735. "%s"
  736. msgstr ""
  737. "Non é posíbel identificar «%s»\n"
  738. "%s"
  739. msgid "Diff viewer: invalid mode"
  740. msgstr "Visor de diferenzas: modo incorrecto"
  741. msgid "Two files are needed to compare"
  742. msgstr "Son precisos dous ficheiros para comparar"
  743. #, c-format
  744. msgid "Loading: %3d%%"
  745. msgstr "Cargando: %3d%%"
  746. msgid "Loading..."
  747. msgstr "Cargando..."
  748. #, c-format
  749. msgid "Cannot open %s for reading"
  750. msgstr "Non é posíbel abrir %s para lectura"
  751. msgid "Load file"
  752. msgstr "Cargar ficheiro"
  753. #, c-format
  754. msgid "Error reading %s"
  755. msgstr "Produciuse un erro ao ler %s"
  756. #, c-format
  757. msgid "Cannot get size/permissions for %s"
  758. msgstr "Non é posíbel obter tamaño/permisos do ficheiro: %s"
  759. #, c-format
  760. msgid "\"%s\" is not a regular file"
  761. msgstr "«%s» non é un ficheiro regular"
  762. #, c-format
  763. msgid ""
  764. "File \"%s\" is too large.\n"
  765. "Open it anyway?"
  766. msgstr ""
  767. "O ficheiro «%s» é grande de máis.\n"
  768. "Abrir aínda así?"
  769. msgid "Warning"
  770. msgstr "Atención"
  771. #, c-format
  772. msgid "Error reading from pipe: %s"
  773. msgstr "Produciuse un erro ao ler da canalización: %s"
  774. #, c-format
  775. msgid "Cannot open pipe for reading: %s"
  776. msgstr "Non é posíbel abrir canalización para lectura: %s"
  777. msgid "File has hard-links. Detach before saving?"
  778. msgstr "Hai outras ligazóns duras ao ficheiro. Desexa separalas ao gardar?"
  779. msgid "The file has been modified in the meantime. Save anyway?"
  780. msgstr "O ficheiro esta a ser modificado por outros. Desexa gardar aínda así?"
  781. #, c-format
  782. msgid "Error writing to pipe: %s"
  783. msgstr "Produciuse un erro ao escribir na canalización: %s"
  784. #, c-format
  785. msgid "Cannot open pipe for writing: %s"
  786. msgstr "Non é posíbel abrir canalización para escritura: %s"
  787. #, c-format
  788. msgid "Cannot open file for writing: %s"
  789. msgstr "Non é posíbel abrir o ficheiro para escritura: %s"
  790. msgid "The file you are saving does not end with a newline."
  791. msgstr "O ficheiro a gardar non remata nunha liña nova."
  792. msgid "C&ontinue"
  793. msgstr "c&Ontinuar"
  794. msgid "&Do not change"
  795. msgstr "&Sen cambios"
  796. msgid "&Unix format (LF)"
  797. msgstr "Formato &Unix (LF)"
  798. msgid "&Windows/DOS format (CR LF)"
  799. msgstr "Formato &Windows/DOS (CR LF)"
  800. msgid "&Macintosh format (CR)"
  801. msgstr "Formato &Macintosh (CR)"
  802. msgid "Enter file name:"
  803. msgstr "Escriba o nome do ficheiro:"
  804. msgid "Change line breaks to:"
  805. msgstr "Cambiar saltos de liña por:"
  806. msgid "Save As"
  807. msgstr "Gardar como"
  808. msgid "&Quick save"
  809. msgstr "Gardar &Rápido"
  810. msgid "&Safe save"
  811. msgstr "Gardar &Seguro"
  812. msgid "&Do backups with following extension:"
  813. msgstr "&Facer copias de seguranza coa seguinte extensión:"
  814. msgid "Check &POSIX new line"
  815. msgstr "Verificar salto de líña &POSIX"
  816. msgid "Edit Save Mode"
  817. msgstr "Editar modo de gardar"
  818. msgid "Save as"
  819. msgstr "Gardar como"
  820. msgid "Cannot save: destination is not a regular file"
  821. msgstr "Non se pode gardar: o destino non é un ficheiro normal"
  822. msgid "A file already exists with this name"
  823. msgstr "Xa existe un ficheiro con ese nome"
  824. msgid "&Overwrite"
  825. msgstr "s&Obrescribir"
  826. msgid "Cannot save file"
  827. msgstr "Non é posíbel gardar o ficheiro"
  828. #, c-format
  829. msgid "Confirm save file: \"%s\""
  830. msgstr "Gardar o ficheiro: «%s»?"
  831. msgid "Save file"
  832. msgstr "Gardar ficheiro"
  833. msgid "&Save"
  834. msgstr "&Gardar"
  835. msgid "Load"
  836. msgstr "Cargar"
  837. msgid "Syntax file edit"
  838. msgstr "Editar ficheiro de sintaxe"
  839. msgid "Which syntax file you want to edit?"
  840. msgstr "Que ficheiro de sintaxe desexa editar?"
  841. msgid "&User"
  842. msgstr "&Usuario"
  843. msgid "&System wide"
  844. msgstr "Todo o &Sistema"
  845. msgid "Menu edit"
  846. msgstr "Editar menú"
  847. msgid "Which menu file do you want to edit?"
  848. msgstr "Que ficheiro de menú desexa editar?"
  849. msgid "&Local"
  850. msgstr "&Local"
  851. msgid "[NoName]"
  852. msgstr "[SenNome]"
  853. #, c-format
  854. msgid ""
  855. "File %s was modified.\n"
  856. "Save before close?"
  857. msgstr ""
  858. "O ficheiro %s foi modificado.\n"
  859. "Quere gardalo antes de pechar?"
  860. msgid "Close file"
  861. msgstr "Pechar o ficheiro"
  862. #, c-format
  863. msgid ""
  864. "Midnight Commander is being shut down.\n"
  865. "Save modified file %s?"
  866. msgstr ""
  867. "Saíndo de Midnight Commander.\n"
  868. "Gardar o ficheiro modificado %s?"
  869. msgid "This function is not implemented"
  870. msgstr "Esa función non está implementada"
  871. msgid "Copy to clipboard"
  872. msgstr "Copiar ao portapapeis"
  873. msgid "Unable to save to file"
  874. msgstr "Non foi posíbel gardar o ficheiro"
  875. msgid "Cut to clipboard"
  876. msgstr "Cortar ao portapapeis"
  877. msgid "Goto line"
  878. msgstr "Ir á liña"
  879. msgid "Save block"
  880. msgstr "Gardar o bloque"
  881. msgid "Insert file"
  882. msgstr "Inserir ficheiro"
  883. msgid "Cannot insert file"
  884. msgstr "Non é posíbel inserir o ficheiro"
  885. msgid "Sort block"
  886. msgstr "Ordenar bloque"
  887. msgid "You must first highlight a block of text"
  888. msgstr "É necesario seleccionar primeiro un bloque de texto"
  889. msgid "Run sort"
  890. msgstr "Proceder a ordenar"
  891. msgid "Enter sort options (see manpage) separated by whitespace:"
  892. msgstr "Opcións para ordenar (ver manual), separadas por espazos:"
  893. msgid "Sort"
  894. msgstr "Ordenar"
  895. msgid "Cannot execute sort command"
  896. msgstr "Non foi posíbel executar «ordenar»"
  897. #, c-format
  898. msgid "Sort returned non-zero: %s"
  899. msgstr "«Ordenar» devolveu un erro (non cero): %s"
  900. msgid "Paste output of external command"
  901. msgstr "Pegar a saída dunha orde externa"
  902. msgid "Enter shell command(s):"
  903. msgstr "Orde(s) a executar:"
  904. msgid "External command"
  905. msgstr "Orde externa"
  906. msgid "Cannot execute command"
  907. msgstr "Non é posíbel executar a orde"
  908. msgid "mail -s <subject> -c <cc> <to>"
  909. msgstr "correo -s <asunto> -c <cc> <para>"
  910. msgid "To"
  911. msgstr "Para"
  912. msgid "Subject"
  913. msgstr "Asunto"
  914. msgid "Copies to"
  915. msgstr "Enviar copias a"
  916. msgid "Mail"
  917. msgstr "Correo-e"
  918. msgid "Insert literal"
  919. msgstr "Inserir literalmente"
  920. msgid "Press any key:"
  921. msgstr "Prema calquera tecla:"
  922. msgid ""
  923. "Current text was modified without a file save.\n"
  924. "Continue discards these changes."
  925. msgstr ""
  926. "O texto actual foi modificado e non foi gardado.\n"
  927. "Continuar debotará estes cambios."
  928. msgid "Cancel"
  929. msgstr "Cancelar"
  930. msgid "Collect completions"
  931. msgstr "Recoller os remates"
  932. msgid "NoName"
  933. msgstr "SenNome"
  934. msgid "Save macro"
  935. msgstr "Gardar macro"
  936. msgid "Press the macro's new hotkey:"
  937. msgstr "Prema a nova tecla para a macro:"
  938. msgid "Delete macro"
  939. msgstr "Eliminar macro"
  940. msgid "Press macro hotkey:"
  941. msgstr "Prema a tecla de macro:"
  942. msgid "Macro not deleted"
  943. msgstr "Macro non eliminada"
  944. msgid "Repeat last commands"
  945. msgstr "Repetir as últimas ordes"
  946. msgid "Repeat times:"
  947. msgstr "Número de repeticións:"
  948. msgid "&Open file..."
  949. msgstr "&Abrir ficheiro..."
  950. msgid "&New"
  951. msgstr "&Novo"
  952. msgid "&Close"
  953. msgstr "&Pechar"
  954. msgid "&History..."
  955. msgstr ""
  956. msgid "Save &as..."
  957. msgstr "Gardar &Como..."
  958. msgid "&Insert file..."
  959. msgstr "&Inserir ficheiro..."
  960. msgid "Cop&y to file..."
  961. msgstr "Copiar a un &Ficheiro...."
  962. msgid "&User menu..."
  963. msgstr "Menú de &Usuario..."
  964. msgid "A&bout..."
  965. msgstr "So&Bre..."
  966. msgid "&Quit"
  967. msgstr "&Sair"
  968. msgid "&Undo"
  969. msgstr "&Desfacer"
  970. msgid "&Redo"
  971. msgstr "&Refacer"
  972. msgid "&Toggle ins/overw"
  973. msgstr "Alternar &Inserción"
  974. msgid "To&ggle mark"
  975. msgstr "Alter&Nar marcados"
  976. msgid "&Mark columns"
  977. msgstr "&Marcar columnas"
  978. msgid "Mark &all"
  979. msgstr "Marcar &Todos"
  980. msgid "Unmar&k"
  981. msgstr "Desmarca&R"
  982. msgid "Cop&y"
  983. msgstr "c&Opiar"
  984. msgid "Mo&ve"
  985. msgstr "Mo&Ver"
  986. msgid "&Delete"
  987. msgstr "&Eliminar"
  988. msgid "Co&py to clipfile"
  989. msgstr "Copiar ao &Portapapeis"
  990. msgid "&Cut to clipfile"
  991. msgstr "&Cortar ao portapapeis"
  992. msgid "Pa&ste from clipfile"
  993. msgstr "Pegar do portapapei&S"
  994. msgid "&Beginning"
  995. msgstr "&Principio"
  996. msgid "&End"
  997. msgstr "&Final"
  998. msgid "&Search..."
  999. msgstr "&Busca..."
  1000. msgid "Search &again"
  1001. msgstr "Buscar de &Novo"
  1002. msgid "&Replace..."
  1003. msgstr "Substituí&R..."
  1004. msgid "&Toggle bookmark"
  1005. msgstr "Al&Ternar o marcador"
  1006. msgid "&Next bookmark"
  1007. msgstr "&Seguinte marcador"
  1008. msgid "&Prev bookmark"
  1009. msgstr "Marcador ante&Rior"
  1010. msgid "&Flush bookmarks"
  1011. msgstr "Limpar &Todos os marcadores"
  1012. msgid "&Go to line..."
  1013. msgstr "&Ir á liña "
  1014. msgid "&Toggle line state"
  1015. msgstr "Alternar &Liña de estado"
  1016. msgid "Go to matching &bracket"
  1017. msgstr "Ir á coincidencia do &Paréntese"
  1018. msgid "Toggle s&yntax highlighting"
  1019. msgstr "Alternar a Sinta&Xe de resalte"
  1020. msgid "&Find declaration"
  1021. msgstr "Buscar &Declaración"
  1022. msgid "Back from &declaration"
  1023. msgstr "&Volver á declaración"
  1024. msgid "For&ward to declaration"
  1025. msgstr "Ava&Nzar á declaración"
  1026. msgid "Encod&ing..."
  1027. msgstr "Cod&Ificando..."
  1028. msgid "&Refresh screen"
  1029. msgstr "&Actualizar a pantalla"
  1030. msgid "&Start/Stop record macro"
  1031. msgstr "Iniciar/parar gravación da &Macro"
  1032. msgid "Delete macr&o..."
  1033. msgstr "Eliminar macr&O..."
  1034. msgid "Record/Repeat &actions"
  1035. msgstr "Gravar/repetir &Accións"
  1036. msgid "S&pell check"
  1037. msgstr "&Revisión ortográfica"
  1038. msgid "C&heck word"
  1039. msgstr "Re&Visar palabra"
  1040. msgid "Change spelling &language..."
  1041. msgstr "Cambiar i &Idioma de revisión"
  1042. msgid "&Mail..."
  1043. msgstr "&Correo..."
  1044. msgid "Insert &literal..."
  1045. msgstr "Inserir &Literalmente..."
  1046. msgid "Insert &date/time"
  1047. msgstr "Inserir &Data e hora"
  1048. msgid "&Format paragraph"
  1049. msgstr "Dar formato ao parágra&Fo"
  1050. msgid "&Sort..."
  1051. msgstr "&Ordenar..."
  1052. msgid "&Paste output of..."
  1053. msgstr "&Pegar a saída de..."
  1054. msgid "&External formatter"
  1055. msgstr "Formatador e&Xterno"
  1056. msgid "&Move"
  1057. msgstr "&Mover"
  1058. msgid "&Resize"
  1059. msgstr "&Redimensionar"
  1060. msgid "&Toggle fullscreen"
  1061. msgstr "Al&Ternar o modo de pantalla completa"
  1062. msgid "&Next"
  1063. msgstr "&Seguinte"
  1064. msgid "&Previous"
  1065. msgstr "&Anterior"
  1066. msgid "&List..."
  1067. msgstr "&Lista..."
  1068. msgid "&General..."
  1069. msgstr "&Xeral..."
  1070. msgid "Save &mode..."
  1071. msgstr "&Modo de gardar..."
  1072. msgid "Learn &keys..."
  1073. msgstr "Redefinir &Teclas..."
  1074. msgid "Syntax &highlighting..."
  1075. msgstr "Sintaxe de &Resalte"
  1076. msgid "S&yntax file"
  1077. msgstr "Ficheiro de sinta&Xe"
  1078. msgid "&Menu file"
  1079. msgstr "Ficheiro de &Menú"
  1080. msgid "&Save setup"
  1081. msgstr "&Gardar configuración"
  1082. msgid "&File"
  1083. msgstr "&Ficheiro"
  1084. msgid "&Edit"
  1085. msgstr "&Editar"
  1086. msgid "&Search"
  1087. msgstr "&Busca"
  1088. msgid "&Command"
  1089. msgstr "&Orde"
  1090. msgid "For&mat"
  1091. msgstr "For&Mato"
  1092. msgid "&Window"
  1093. msgstr "&Xanela"
  1094. msgid "&Options"
  1095. msgstr "&Opcións"
  1096. msgid "&None"
  1097. msgstr "&Ningún"
  1098. msgid "&Dynamic paragraphing"
  1099. msgstr "Paragrafado &Dinámico"
  1100. msgid "Type &writer wrap"
  1101. msgstr "Axuste de má&Quina de escribir"
  1102. msgid "Wrap mode"
  1103. msgstr "Axuste de parágrafo"
  1104. msgid "Tabulation"
  1105. msgstr "Tabulación"
  1106. msgid "&Fake half tabs"
  1107. msgstr "&Finxir medias tabulacións"
  1108. msgid "&Backspace through tabs"
  1109. msgstr "&Eliminar en tabulacións"
  1110. msgid "Fill tabs with &spaces"
  1111. msgstr "Cambia tabulacións por e&Spazos"
  1112. msgid "Tab spacing:"
  1113. msgstr "Tamaño de tabulacións:"
  1114. msgid "Other options"
  1115. msgstr "Outras opcións"
  1116. msgid "&Return does autoindent"
  1117. msgstr "&Volver a autosangrado"
  1118. msgid "Confir&m before saving"
  1119. msgstr "Confir&Mar antes de gardar"
  1120. msgid "Save file &position"
  1121. msgstr "Gardar &Posición no ficheiro"
  1122. msgid "&Visible trailing spaces"
  1123. msgstr "Espazos finais &Visíbeis"
  1124. msgid "Visible &tabs"
  1125. msgstr "&Lapelas visíbeis"
  1126. msgid "Synta&x highlighting"
  1127. msgstr "Sinta&Xe coreada"
  1128. msgid "C&ursor after inserted block"
  1129. msgstr "C&ursor despois do bloque inserido"
  1130. msgid "Pers&istent selection"
  1131. msgstr "Selecció&N persistente"
  1132. msgid "Cursor be&yond end of line"
  1133. msgstr "Cursor &Máis aló do fin da liña"
  1134. msgid "&Group undo"
  1135. msgstr "Desfacer no &Grupo"
  1136. msgid "Word wrap line length:"
  1137. msgstr "Lonxitude do axuste de liña:"
  1138. msgid "Editor options"
  1139. msgstr "Opcións do editor"
  1140. msgid "In se&lection"
  1141. msgstr "Na se&Lección"
  1142. msgid "&Find all"
  1143. msgstr "Buscar &Todos"
  1144. msgid "Enter replacement string:"
  1145. msgstr "Escriba a cadea a substituír:"
  1146. msgid "Replace"
  1147. msgstr "Substituír"
  1148. msgid "Replace with:"
  1149. msgstr "Substituír con:"
  1150. msgid "&Replace"
  1151. msgstr "Substituí&R"
  1152. msgid "A&ll"
  1153. msgstr "&Todos"
  1154. msgid "&Skip"
  1155. msgstr "&Omitir"
  1156. msgid "Confirm replace"
  1157. msgstr "Confirmar cambios"
  1158. #, c-format
  1159. msgid "Searching %s: %3d%%"
  1160. msgstr "Buscando %s: %3d%%"
  1161. #, c-format
  1162. msgid "Searching %s"
  1163. msgstr "Buscando %s"
  1164. #, c-format
  1165. msgid "%ld replacements made"
  1166. msgstr " %ld substitucións feitas"
  1167. msgid ""
  1168. "A user friendly text editor\n"
  1169. "written for the Midnight Commander."
  1170. msgstr ""
  1171. "Un editor de texto de uso amigábel\n"
  1172. "escrito para o Midnight Commander."
  1173. msgid "Copyright (C) 1996-2021 the Free Software Foundation"
  1174. msgstr ""
  1175. msgid "About"
  1176. msgstr "Sobre"
  1177. msgid "Open files"
  1178. msgstr "Abrir ficheiros"
  1179. msgid "Edit: "
  1180. msgstr "Editar: "
  1181. msgid "ButtonBar|Mark"
  1182. msgstr "ButtonBar|Marcar"
  1183. msgid "ButtonBar|Replac"
  1184. msgstr "ButtonBar|Rempl"
  1185. msgid "ButtonBar|Copy"
  1186. msgstr "ButtonBar|Copiar"
  1187. msgid "ButtonBar|Move"
  1188. msgstr "ButtonBar|Mover"
  1189. msgid "ButtonBar|Delete"
  1190. msgstr "ButtonBar|Eliminar"
  1191. msgid "ButtonBar|PullDn"
  1192. msgstr "ButtonBar|Baixar"
  1193. msgid "Breton"
  1194. msgstr "Bretón"
  1195. msgid "Czech"
  1196. msgstr "Checo"
  1197. msgid "Welsh"
  1198. msgstr "Galés"
  1199. msgid "Danish"
  1200. msgstr "Danés"
  1201. msgid "German"
  1202. msgstr "Alemán"
  1203. msgid "Greek"
  1204. msgstr "Grego"
  1205. msgid "English"
  1206. msgstr "Inglés"
  1207. msgid "British English"
  1208. msgstr "Inglés británico"
  1209. msgid "Canadian English"
  1210. msgstr "Inglés canadense"
  1211. msgid "American English"
  1212. msgstr "Inglés americano"
  1213. msgid "Esperanto"
  1214. msgstr "Esperanto"
  1215. msgid "Spanish"
  1216. msgstr "Español"
  1217. msgid "Faroese"
  1218. msgstr "Faroés"
  1219. msgid "French"
  1220. msgstr "Francés"
  1221. msgid "Italian"
  1222. msgstr "Italiano"
  1223. msgid "Dutch"
  1224. msgstr "Holandés"
  1225. msgid "Norwegian"
  1226. msgstr "Noruegués"
  1227. msgid "Polish"
  1228. msgstr "Polaco"
  1229. msgid "Portuguese"
  1230. msgstr "Portugués"
  1231. msgid "Romanian"
  1232. msgstr "Romanés"
  1233. msgid "Russian"
  1234. msgstr "Ruso"
  1235. msgid "Slovak"
  1236. msgstr "Eslovaco"
  1237. msgid "Swedish"
  1238. msgstr "Sueco"
  1239. msgid "Ukrainian"
  1240. msgstr "Ucraíno"
  1241. msgid "&Add word"
  1242. msgstr "&Engadir palabra"
  1243. msgid "Language"
  1244. msgstr "Idioma"
  1245. msgid "Misspelled"
  1246. msgstr "Mal escrita"
  1247. msgid "Check word"
  1248. msgstr "Revisar palabra"
  1249. msgid "Suggest"
  1250. msgstr "Suxerir"
  1251. msgid "Select language"
  1252. msgstr "Escoller o idioma"
  1253. msgid "Choose syntax highlighting"
  1254. msgstr "Elixa a sintaxe de resalte"
  1255. msgid "< Auto >"
  1256. msgstr "< Auto >"
  1257. msgid "< Reload Current Syntax >"
  1258. msgstr "< Recargar a sintaxe actual >"
  1259. msgid "Load syntax file"
  1260. msgstr "Cargar ficheiro de sintaxe"
  1261. #, c-format
  1262. msgid ""
  1263. "Cannot open file %s\n"
  1264. "%s"
  1265. msgstr ""
  1266. "Non se pode abrir o ficheiro %s\n"
  1267. "%s"
  1268. #, c-format
  1269. msgid "Error in file %s on line %d"
  1270. msgstr "Produciuse un erro no ficheiro %s na liña %d"
  1271. msgid ""
  1272. "The Commander can't change to the directory that\n"
  1273. "the subshell claims you are in. Perhaps you have\n"
  1274. "deleted your working directory, or given yourself\n"
  1275. "extra access permissions with the \"su\" command?"
  1276. msgstr ""
  1277. "Midnight Commander non pode cambiar ao directorio\n"
  1278. "que o terminal di que é o directorio actual\n"
  1279. "Seica borrou vostede o directorio? ou deulle outros\n"
  1280. "permisos coa orde «su»?"
  1281. #, c-format
  1282. msgid "Cannot fetch a local copy of %s"
  1283. msgstr "Non é posíbel obter unha copia local de %s"
  1284. msgid "The shell is already running a command"
  1285. msgstr "O terminal xa esta executando unha orde"
  1286. msgid ""
  1287. "Not an xterm or Linux console;\n"
  1288. "the subshell cannot be toggled."
  1289. msgstr ""
  1290. msgid "Type 'exit' to return to the Midnight Commander"
  1291. msgstr "Escriba «exit» para volver ao Midnight Commander"
  1292. msgid "Set &all"
  1293. msgstr "Aplicar &Todos"
  1294. msgid "S&kip"
  1295. msgstr "&Ignorar"
  1296. msgid "&Set"
  1297. msgstr "A&Plicar"
  1298. msgid "owner"
  1299. msgstr "propietario"
  1300. msgid "group"
  1301. msgstr "grupo"
  1302. msgid "other"
  1303. msgstr "outros"
  1304. msgid "Flag"
  1305. msgstr "Marca"
  1306. #, c-format
  1307. msgid "Permissions (octal): %o"
  1308. msgstr ""
  1309. msgid "Chown advanced command"
  1310. msgstr "Cambiar propietario e permisos"
  1311. #, c-format
  1312. msgid ""
  1313. "Cannot chmod \"%s\"\n"
  1314. "%s"
  1315. msgstr ""
  1316. "Non é posíbel cambiar permisos de «%s»\n"
  1317. "%s"
  1318. msgid "&Ignore"
  1319. msgstr "&Ignorar"
  1320. msgid "Ignore &all"
  1321. msgstr "Ignorar &Todo"
  1322. msgid "&Retry"
  1323. msgstr "&Reintentar"
  1324. #, c-format
  1325. msgid ""
  1326. "Cannot chown \"%s\"\n"
  1327. "%s"
  1328. msgstr ""
  1329. "Non é posíbel cambiar o propietario de «%s»\n"
  1330. "%s"
  1331. msgid "< Default >"
  1332. msgstr "< Predeterminado >"
  1333. msgid "Skins"
  1334. msgstr "Temas"
  1335. msgid "Other 8 bit"
  1336. msgstr "Outro (8 bit)"
  1337. msgid "Running"
  1338. msgstr "Executándose"
  1339. msgid "Stopped"
  1340. msgstr "Detido"
  1341. msgid "&Never"
  1342. msgstr "&Nunca"
  1343. msgid "On dum&b terminals"
  1344. msgstr "Só en terminais &Bobas"
  1345. msgid "Alwa&ys"
  1346. msgstr "&Sempre"
  1347. msgid "File operations"
  1348. msgstr "Operacións de ficheiro"
  1349. msgid "&Verbose operation"
  1350. msgstr "&Operación detallada"
  1351. msgid "Compute tota&ls"
  1352. msgstr "Calcular &Totais"
  1353. msgid "Classic pro&gressbar"
  1354. msgstr "Barra de pro&Greso clásica"
  1355. msgid "Mkdi&r autoname"
  1356. msgstr "Nomear automaticamente ao crear di&Rectorio"
  1357. msgid "&Preallocate space"
  1358. msgstr "&Preasignar espazo"
  1359. msgid "Esc key mode"
  1360. msgstr "Tecla «Escape»"
  1361. msgid "S&ingle press"
  1362. msgstr "Premer só &Unha vez"
  1363. msgid "Timeout:"
  1364. msgstr "Tempo de espera:"
  1365. msgid "Pause after run"
  1366. msgstr "Pausa logo de executar"
  1367. msgid "Use internal edi&t"
  1368. msgstr "Usar ed&Itor interno"
  1369. msgid "Use internal vie&w"
  1370. msgstr "&Usar visor interno"
  1371. msgid "A&sk new file name"
  1372. msgstr "Pre&Guntar polo novo nome de ficheiro"
  1373. msgid "Auto m&enus"
  1374. msgstr "Auto m&Enús"
  1375. msgid "&Drop down menus"
  1376. msgstr "Menús &Despregábeis"
  1377. msgid "S&hell patterns"
  1378. msgstr "Modelos de ter&Minal"
  1379. msgid "Co&mplete: show all"
  1380. msgstr "co&Mpletar: mostrar todos"
  1381. msgid "Rotating d&ash"
  1382. msgstr "Rotación do t&Aboleiro"
  1383. msgid "Cd follows lin&ks"
  1384. msgstr "Cd segue li&Gazóns"
  1385. msgid "Sa&fe delete"
  1386. msgstr "&Borrado seguro"
  1387. msgid "Safe overwrite"
  1388. msgstr "Sobrescritura segura"
  1389. msgid "A&uto save setup"
  1390. msgstr "Configuración do &Auto-gardado"
  1391. msgid "Configure options"
  1392. msgstr "Configuración"
  1393. msgid "Skin:"
  1394. msgstr "Tema:"
  1395. msgid "&Shadows"
  1396. msgstr ""
  1397. msgid "Appearance"
  1398. msgstr "Aparencia"
  1399. msgid "Case &insensitive"
  1400. msgstr "&Non distinguir maiúsculas"
  1401. msgid "Use panel sort mo&de"
  1402. msgstr "Usar o m&Odo de orden do panel"
  1403. msgid "Show mi&ni-status"
  1404. msgstr "Mostrar m&Ini-estado"
  1405. msgid "Use SI si&ze units"
  1406. msgstr "Tama&Ños en unidades SI"
  1407. msgid "Mi&x all files"
  1408. msgstr "me&Sturar todos os ficheiros"
  1409. msgid "Show &backup files"
  1410. msgstr "Mostrar ficheiros de co&Pia de seguranza"
  1411. msgid "Show &hidden files"
  1412. msgstr "Mostrar ficheiros agoc&Hados"
  1413. msgid "&Fast dir reload"
  1414. msgstr "Re&Carga rápida de directorios"
  1415. msgid "Ma&rk moves down"
  1416. msgstr "Ma&Rcar e baixar"
  1417. msgid "Re&verse files only"
  1418. msgstr "In&Verter só ficheiros"
  1419. msgid "Simple s&wap"
  1420. msgstr "Intercambio &Simple de paneis"
  1421. msgid "A&uto save panels setup"
  1422. msgstr "Configuración do &Auto-gardado"
  1423. msgid "Navigation"
  1424. msgstr "Navegación"
  1425. msgid "L&ynx-like motion"
  1426. msgstr "Navegación ao estilo L&Ynx"
  1427. msgid "Pa&ge scrolling"
  1428. msgstr "Desprazamento da pá&xina"
  1429. msgid "Center &scrolling"
  1430. msgstr "De&sprazamento central"
  1431. msgid "&Mouse page scrolling"
  1432. msgstr "Desprazamento da páxina co &rato"
  1433. msgid "File highlight"
  1434. msgstr "Resaltar ficheiro"
  1435. msgid "File &types"
  1436. msgstr "&Tipos de ficheiros"
  1437. msgid "&Permissions"
  1438. msgstr "&Permisos"
  1439. msgid "Quick search"
  1440. msgstr "Busca rápida"
  1441. msgid "Panel options"
  1442. msgstr "Opcións dos paneis"
  1443. msgid "Information"
  1444. msgstr "Información"
  1445. msgid ""
  1446. "Using the fast reload option may not reflect the exact\n"
  1447. "directory contents. In this case you'll need to do a\n"
  1448. "manual reload of the directory. See the man page for\n"
  1449. "the details."
  1450. msgstr ""
  1451. "O uso do «cargado rápido» pode ocasionar que o contido\n"
  1452. "do panel non sempre reflicta o contido do directorio. Nese\n"
  1453. "caso terá que recargar manualmente o directorio.\n"
  1454. "Vexa a páxina do manual para obter máis información."
  1455. msgid "&Full file list"
  1456. msgstr "Lista &Completa"
  1457. msgid "&Brief file list:"
  1458. msgstr "Lista &Breve:"
  1459. msgid "&Long file list"
  1460. msgstr "Lista &Longa"
  1461. msgid "&User defined:"
  1462. msgstr "Definida polo &Usuario:"
  1463. msgid "columns"
  1464. msgstr "columnas"
  1465. msgid "User &mini status"
  1466. msgstr "&Mini-estado de usuario"
  1467. msgid "Listing format"
  1468. msgstr "Formato de lista"
  1469. msgid "Executable &first"
  1470. msgstr "&Executábeis primeiro"
  1471. msgid "&Reverse"
  1472. msgstr "Inve&Rter"
  1473. msgid "Sort order"
  1474. msgstr "Ordenar"
  1475. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix
  1476. msgid "Confirmation|&Delete"
  1477. msgstr "Confirmation|&Eliminar"
  1478. msgid "Confirmation|O&verwrite"
  1479. msgstr "Confirmation|s&Obrescritura"
  1480. msgid "Confirmation|&Execute"
  1481. msgstr "Confirmation|e&Xecutar"
  1482. msgid "Confirmation|E&xit"
  1483. msgstr "Confirmation|Saí&R"
  1484. msgid "Confirmation|Di&rectory hotlist delete"
  1485. msgstr "Confirmation|Eliminar &Favoritos"
  1486. msgid "Confirmation|&History cleanup"
  1487. msgstr "Confirmation|Limpar &Historial"
  1488. msgid "Confirmation"
  1489. msgstr "Confirmación"
  1490. msgid "&UTF-8 output"
  1491. msgstr "Saída &UTF-8"
  1492. msgid "&Full 8 bits output"
  1493. msgstr "Saída &Completa de 8 bits"
  1494. msgid "&ISO 8859-1"
  1495. msgstr "&ISO 8859-1"
  1496. msgid "7 &bits"
  1497. msgstr "7 &bits"
  1498. msgid "F&ull 8 bits input"
  1499. msgstr "&Entrada completa de 8 bits"
  1500. msgid "Display bits"
  1501. msgstr "Mostrar bits"
  1502. msgid "Input / display codepage:"
  1503. msgstr "Entrada / mostrar xogo de caracteres:"
  1504. msgid "Directory tree"
  1505. msgstr "Árbore de directorios"
  1506. msgid "Timeout for freeing VFSs (sec):"
  1507. msgstr "Atraso para a liberación de VFS (seg):"
  1508. msgid "FTP anonymous password:"
  1509. msgstr "Contrasinal do FTP anónimo:"
  1510. msgid "FTP directory cache timeout (sec):"
  1511. msgstr "Atraso da caché do directorio FTP (seg):"
  1512. msgid "&Always use ftp proxy:"
  1513. msgstr "Empregar &Sempre o proxy ftp:"
  1514. msgid "&Use ~/.netrc"
  1515. msgstr "&Usar ~/.netrc"
  1516. msgid "Use &passive mode"
  1517. msgstr "Usar modo &Pasivo"
  1518. msgid "Use passive mode over pro&xy"
  1519. msgstr "Usar modo pasivo sobre pro&Xy"
  1520. msgid "Virtual File System Setting"
  1521. msgstr "Configuración do sistema de ficheiros virtual"
  1522. msgid "cd"
  1523. msgstr "cd"
  1524. msgid "Quick cd"
  1525. msgstr "Cambiar directorio"
  1526. msgid "Existing filename (filename symlink will point to):"
  1527. msgstr ""
  1528. "Apuntando a:O nome de ficheiro xa existe (ligazón simbólica apuntando):"
  1529. msgid "Symbolic link filename:"
  1530. msgstr "Nome da nova ligazón simbólica:"
  1531. msgid "Symbolic link"
  1532. msgstr "Ligazón simbólica"
  1533. msgid "&Stop"
  1534. msgstr "&Deter"
  1535. msgid "&Resume"
  1536. msgstr "Continua&R"
  1537. msgid "&Kill"
  1538. msgstr "&Eliminar"
  1539. msgid "Background jobs"
  1540. msgstr "Traballos en segundo plano"
  1541. #, c-format
  1542. msgid "Password for \\\\%s\\%s"
  1543. msgstr "Contrasinal para \\\\%s\\%s"
  1544. msgid "Domain:"
  1545. msgstr "Dominio:"
  1546. msgid "Username:"
  1547. msgstr "Usuario:"
  1548. msgid "SMB authentication"
  1549. msgstr "Autenticación SMB"
  1550. #, c-format
  1551. msgid ""
  1552. "Cannot chdir to \"%s\"\n"
  1553. "%s"
  1554. msgstr ""
  1555. "Non é posíbel cambiar ao directorio «%s»\n"
  1556. "%s"
  1557. msgid "Secure deletion"
  1558. msgstr ""
  1559. msgid "Undelete"
  1560. msgstr ""
  1561. msgid "Synchronous updates"
  1562. msgstr ""
  1563. msgid "Synchronous directory updates"
  1564. msgstr ""
  1565. msgid "Immutable"
  1566. msgstr ""
  1567. msgid "Append only"
  1568. msgstr ""
  1569. msgid "No dump"
  1570. msgstr ""
  1571. msgid "No update atime"
  1572. msgstr ""
  1573. msgid "Compress"
  1574. msgstr ""
  1575. msgid "Compressed clusters"
  1576. msgstr ""
  1577. msgid "Compressed dirty file"
  1578. msgstr ""
  1579. msgid "Compression raw access"
  1580. msgstr ""
  1581. msgid "Encrypted inode"
  1582. msgstr ""
  1583. msgid "Journaled data"
  1584. msgstr ""
  1585. msgid "Indexed directory"
  1586. msgstr ""
  1587. msgid "No tail merging"
  1588. msgstr ""
  1589. msgid "Top of directory hierarchies"
  1590. msgstr ""
  1591. msgid "Inode uses extents"
  1592. msgstr ""
  1593. msgid "Huge_file"
  1594. msgstr ""
  1595. msgid "No COW"
  1596. msgstr ""
  1597. msgid "Direct access for files"
  1598. msgstr ""
  1599. msgid "Casefolded file"
  1600. msgstr ""
  1601. msgid "Inode has inline data"
  1602. msgstr ""
  1603. msgid "Project hierarchy"
  1604. msgstr ""
  1605. msgid "Verity protected inode"
  1606. msgstr ""
  1607. msgid "&Marked all"
  1608. msgstr "Todos &Marcados"
  1609. msgid "S&et marked"
  1610. msgstr "&Estabelecer marcados"
  1611. msgid "C&lear marked"
  1612. msgstr "&Limpar marcados"
  1613. msgid "Chattr command"
  1614. msgstr ""
  1615. #, c-format
  1616. msgid ""
  1617. "Cannot chattr \"%s\"\n"
  1618. "%s"
  1619. msgstr ""
  1620. msgid "Cannot change attributes on non-local filesystems"
  1621. msgstr ""
  1622. #, c-format
  1623. msgid ""
  1624. "Cannot get flags of \"%s\"\n"
  1625. "%s"
  1626. msgstr ""
  1627. msgid "set &user ID on execution"
  1628. msgstr "Estabelecer o ID do &Ususrio na execución"
  1629. msgid "set &group ID on execution"
  1630. msgstr "Estabelecer o ID do &Grupo na execución"
  1631. msgid "stick&y bit"
  1632. msgstr "bit pega&Ñento"
  1633. msgid "&read by owner"
  1634. msgstr "&Lido polo propietario"
  1635. msgid "&write by owner"
  1636. msgstr "Esc&rito polo propietario"
  1637. msgid "e&xecute/search by owner"
  1638. msgstr "e&Xecutado/buscado polo propietario"
  1639. msgid "rea&d by group"
  1640. msgstr "li&Do polo grupo"
  1641. msgid "write by grou&p"
  1642. msgstr "Escritura por gru&Po"
  1643. msgid "execu&te/search by group"
  1644. msgstr "Execu&Tado/buscado polo propietario"
  1645. msgid "read &by others"
  1646. msgstr "Lido por o&Utros"
  1647. msgid "wr&ite by others"
  1648. msgstr "Escr&Ito por outros"
  1649. msgid "execute/searc&h by others"
  1650. msgstr "Executado/&Buscado por outros"
  1651. msgid "Name:"
  1652. msgstr "Nome:"
  1653. msgid "Permissions (octal):"
  1654. msgstr "Permisos (octal):"
  1655. msgid "Owner name:"
  1656. msgstr "Nome do propietario:"
  1657. msgid "Group name:"
  1658. msgstr "Nome do grupo"
  1659. msgid "Chmod command"
  1660. msgstr "Orde chmod"
  1661. msgid "Permission"
  1662. msgstr "Permisos"
  1663. msgid "File"
  1664. msgstr "Ficheiro"
  1665. msgid "Set &groups"
  1666. msgstr "Asignar &Grupos"
  1667. msgid "Set &users"
  1668. msgstr "Asignar &Usuarios"
  1669. msgid "Name"
  1670. msgstr "Nome"
  1671. msgid "Owner name"
  1672. msgstr "Nome do propietario"
  1673. msgid "Group name"
  1674. msgstr "Nome do grupo"
  1675. msgid "Size"
  1676. msgstr "Tamaño"
  1677. msgid "Chown command"
  1678. msgstr "Cambiar propietario"
  1679. msgid "User name"
  1680. msgstr "Nome de usuario"
  1681. msgid "<Unknown user>"
  1682. msgstr "<Usuario descoñecido>"
  1683. msgid "<Unknown group>"
  1684. msgstr "<Grupo descoñecido>"
  1685. msgid "Enter machine name (F1 for details):"
  1686. msgstr "Escriba o nome da máquina (F1 para máis detalles):"
  1687. msgid "Files tagged, want to cd?"
  1688. msgstr "Hai ficheiros marcados. Quere cambiar de directorio?"
  1689. msgid "Cannot change directory"
  1690. msgstr "Non é posíbel cambiar de directorio"
  1691. msgid "Filter"
  1692. msgstr "Filtro"
  1693. msgid "Set expression for filtering filenames"
  1694. msgstr "Introduza a expresión para filtrar nomes de ficheiro"
  1695. #, c-format
  1696. msgid "Link %s to:"
  1697. msgstr "Crear ligazón a %s como:"
  1698. msgid "Link"
  1699. msgstr "Ligar"
  1700. #, c-format
  1701. msgid "link: %s"
  1702. msgstr "ligar: %s"
  1703. #, c-format
  1704. msgid "symlink: %s"
  1705. msgstr "ligazón simbólica: %s"
  1706. #, c-format
  1707. msgid "Cannot chdir to \"%s\""
  1708. msgstr "Non é posíbel cambiar ao directorio «%s»"
  1709. msgid "View file"
  1710. msgstr "Ver ficheiro"
  1711. msgid "Filename:"
  1712. msgstr "Nome do ficheiro:"
  1713. msgid "Filtered view"
  1714. msgstr "Vista filtrada"
  1715. msgid "Filter command and arguments:"
  1716. msgstr "Orde de filtrado e argumentos:"
  1717. msgid "Edit file"
  1718. msgstr "Editar o ficheiro"
  1719. msgid "Create a new Directory"
  1720. msgstr "Crear un novo directorio"
  1721. msgid "Enter directory name:"
  1722. msgstr "Introduza nome do directorio:"
  1723. msgid "Extension file edit"
  1724. msgstr "Editar o ficheiro de extensións"
  1725. msgid "Which extension file you want to edit?"
  1726. msgstr "Que ficheiro de extensión desexa editar?"
  1727. msgid "&System Wide"
  1728. msgstr "Todo o &Sistema"
  1729. msgid "Highlighting groups file edit"
  1730. msgstr "Editar resaltes de cor do grupo"
  1731. msgid "Which highlighting file you want to edit?"
  1732. msgstr "Que ficheiro de resaltes desexa editar?"
  1733. msgid "Compare directories"
  1734. msgstr "Comparar directorios"
  1735. msgid "Select compare method:"
  1736. msgstr "Seleccione o método de comparación:"
  1737. msgid "&Quick"
  1738. msgstr "&Rápido"
  1739. msgid "&Size only"
  1740. msgstr "&Só tamaño"
  1741. msgid "&Thorough"
  1742. msgstr "Comple&To"
  1743. msgid ""
  1744. "Both panels should be in the listing mode\n"
  1745. "to use this command"
  1746. msgstr ""
  1747. "Ambos os dous paneis deben estar en modo lista\n"
  1748. "para usar esta orde"
  1749. #, c-format
  1750. msgid "'%s' is not a symbolic link"
  1751. msgstr "«%s» non é unha ligazón simbólica"
  1752. #, c-format
  1753. msgid "Symlink '%s' points to:"
  1754. msgstr "A ligazón simbólica «%s» apunta a:"
  1755. msgid "Edit symlink"
  1756. msgstr "Editar ligazón simbólica"
  1757. #, c-format
  1758. msgid "edit symlink, unable to remove %s: %s"
  1759. msgstr "edite a ligazón simbólica, non é posíbel eliminar %s: %s"
  1760. #, c-format
  1761. msgid "edit symlink: %s"
  1762. msgstr "editar ligazón simbólica: %s"
  1763. msgid "FTP to machine"
  1764. msgstr "Conexión por FTP"
  1765. msgid "SFTP to machine"
  1766. msgstr "SFTP á máquina"
  1767. msgid "Shell link to machine"
  1768. msgstr "Ligazón á máquina do terminal"
  1769. msgid "SMB link to machine"
  1770. msgstr "Ligazón á máquina SMB"
  1771. msgid "Undelete files on an ext2 file system"
  1772. msgstr "Recuperar ficheiros dun sistema de ficheiros ext2"
  1773. msgid ""
  1774. "Enter device (without /dev/) to undelete\n"
  1775. "files on: (F1 for details)"
  1776. msgstr ""
  1777. "Introduza o dispositivo (sen /dev/) onde quere\n"
  1778. "recuperar ficheiros: (F1 para máis detalles)"
  1779. msgid "Directory scanning"
  1780. msgstr "Examinando directorio"
  1781. msgid "Setup"
  1782. msgstr "Configuración"
  1783. #, c-format
  1784. msgid "Setup saved to %s"
  1785. msgstr "Configuración gardada en %s"
  1786. #, c-format
  1787. msgid "Unable to save setup to %s"
  1788. msgstr "Non foi posíbel gardar a configuración en %s"
  1789. msgid "Cannot execute commands on non-local filesystems"
  1790. msgstr "Non é posíbel executar ordes desde sistemas de ficheiros non locais"
  1791. msgid "Parameter"
  1792. msgstr "Parámetro"
  1793. #, c-format
  1794. msgid ""
  1795. "Cannot create temporary command file\n"
  1796. "%s"
  1797. msgstr ""
  1798. "Non é posíbel crear o ficheiro temporal para ordes\n"
  1799. "%s"
  1800. msgid "Pipe failed"
  1801. msgstr "Fallo na canalización"
  1802. #, c-format
  1803. msgid " %s%s file error"
  1804. msgstr "Produciuse un erro no ficheiro %s%s"
  1805. #, c-format
  1806. msgid ""
  1807. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1808. "the installation failed. Please fetch a fresh copy from the Midnight "
  1809. "Commander package."
  1810. msgstr ""
  1811. "O formato do ficheiro %smc.ext cambiou coa versión 3.0. Parece que está mal "
  1812. "instalado. Por favor, tente conseguir unha copia intacta dende o paquete "
  1813. "Midnight Commander."
  1814. #, c-format
  1815. msgid "%s file error"
  1816. msgstr "Erro no ficheiro %s"
  1817. #, c-format
  1818. msgid ""
  1819. "The format of the %s file has changed with version 3.0. You may either want "
  1820. "to copy it from %smc.ext or use that file as an example of how to write it."
  1821. msgstr ""
  1822. "O formato do ficheiro %s ha cambiou coa versión 3.0. Pode facer unha copia "
  1823. "de %smc.ext ou empregalo como modelo."
  1824. msgid "DialogTitle|Copy"
  1825. msgstr "DialogTitle|Copiar"
  1826. msgid "DialogTitle|Move"
  1827. msgstr "DialogTitle|Mover"
  1828. msgid "DialogTitle|Delete"
  1829. msgstr "DialogTitle|Eliminar"
  1830. msgid "FileOperation|Copy"
  1831. msgstr "FileOperation|Copiar"
  1832. msgid "FileOperation|Move"
  1833. msgstr "FileOperation|Mover"
  1834. msgid "FileOperation|Delete"
  1835. msgstr "FileOperation|Eliminar"
  1836. #, no-c-format
  1837. msgid "%o %f%n\"%s\"%m"
  1838. msgstr "%o %f%n«%s»%m"
  1839. #, no-c-format
  1840. msgid "%o %d %f%m"
  1841. msgstr "%o %d %f%m"
  1842. msgid "files"
  1843. msgstr "ficheiros"
  1844. msgid "directory"
  1845. msgstr "directorio"
  1846. msgid "directories"
  1847. msgstr "directorios"
  1848. msgid "files/directories"
  1849. msgstr "ficheiros/directorios"
  1850. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  1851. msgid " with source mask:"
  1852. msgstr " con máscara de orixe:"
  1853. #, c-format
  1854. msgid ""
  1855. "Cannot stat hardlink source file \"%s\"\n"
  1856. "%s"
  1857. msgstr ""
  1858. "Non é posíbel estabelecer o ficheiro orixe da ligazón dura «%s»\n"
  1859. "%s"
  1860. #, c-format
  1861. msgid ""
  1862. "Cannot create target hardlink \"%s\"\n"
  1863. "%s"
  1864. msgstr ""
  1865. "Non é posíbel crear o destino da ligazón dura «%s»\n"
  1866. "%s"
  1867. #, c-format
  1868. msgid "Cannot create target hardlink \"%s\""
  1869. msgstr "Non é posíbel crear o destino da ligazón dura «%s»"
  1870. #, c-format
  1871. msgid ""
  1872. "Cannot read source link \"%s\"\n"
  1873. "%s"
  1874. msgstr ""
  1875. "Non é posíbel ler a ligazón orixe «%s»\n"
  1876. "%s"
  1877. msgid ""
  1878. "Cannot make stable symlinks across non-local filesystems:\n"
  1879. "\n"
  1880. "Option Stable Symlinks will be disabled"
  1881. msgstr ""
  1882. "Non é posíbel crear ligazóns simbólicas estábeis se os ficheiros\n"
  1883. "están en sistemas de ficheiros non-locais:\n"
  1884. "\n"
  1885. "A opción de ligazóns simbólicas estábeis será desactivada"
  1886. #, c-format
  1887. msgid ""
  1888. "Cannot create target symlink \"%s\"\n"
  1889. "%s"
  1890. msgstr ""
  1891. "Non é posíbel crear a ligazón simbólica «%s»\n"
  1892. "%s"
  1893. #, c-format
  1894. msgid ""
  1895. "\"%s\"\n"
  1896. "and\n"
  1897. "\"%s\"\n"
  1898. "are the same directory"
  1899. msgstr ""
  1900. "«%s»\n"
  1901. "e\n"
  1902. "«%s»\n"
  1903. "son o mesmo directorio"
  1904. #, c-format
  1905. msgid ""
  1906. "\"%s\"\n"
  1907. "and\n"
  1908. "\"%s\"\n"
  1909. "are the same file"
  1910. msgstr ""
  1911. "«%s»\n"
  1912. "e\n"
  1913. "«%s»\n"
  1914. "son o mesmo ficheiro"
  1915. msgid "Ski&p all"
  1916. msgstr "Omitir &Todos"
  1917. #, c-format
  1918. msgid ""
  1919. "Directory \"%s\" not empty.\n"
  1920. "Delete it recursively?"
  1921. msgstr ""
  1922. "O directorio «%s» non está baleiro.\n"
  1923. "Eliminalo recursivamente?"
  1924. #, c-format
  1925. msgid ""
  1926. "Background process:\n"
  1927. "Directory \"%s\" not empty.\n"
  1928. "Delete it recursively?"
  1929. msgstr ""
  1930. "Proceso en segundo plano:\n"
  1931. "O directorio «%s» non está baleiro.\n"
  1932. "Eliminalo recursivamente?"
  1933. msgid "Non&e"
  1934. msgstr "Nin&Gún"
  1935. #, c-format
  1936. msgid ""
  1937. "Cannot remove file \"%s\"\n"
  1938. "%s"
  1939. msgstr ""
  1940. "Non é posíbel eliminar o ficheiro «%s»\n"
  1941. "%s"
  1942. #, c-format
  1943. msgid ""
  1944. "Cannot stat file \"%s\"\n"
  1945. "%s"
  1946. msgstr ""
  1947. "Non é posíbel identificar o ficheiro «%s»\n"
  1948. "%s"
  1949. #, c-format
  1950. msgid "Cannot overwrite directory \"%s\""
  1951. msgstr "Non é posíbel sobrescribir o directorio «%s»"
  1952. #, c-format
  1953. msgid ""
  1954. "Cannot move file \"%s\" to \"%s\"\n"
  1955. "%s"
  1956. msgstr ""
  1957. "Non é posíbel mover o ficheiro «%s» a «%s»\n"
  1958. "%s"
  1959. #, c-format
  1960. msgid ""
  1961. "Cannot remove directory \"%s\"\n"
  1962. "%s"
  1963. msgstr ""
  1964. "Non é posíbel eliminar o directorio «%s»\n"
  1965. "%s"
  1966. #, c-format
  1967. msgid ""
  1968. "Cannot overwrite directory \"%s\"\n"
  1969. "%s"
  1970. msgstr ""
  1971. "Non é posíbel sobrescribir o directorio «%s»\n"
  1972. "%s"
  1973. #, c-format
  1974. msgid ""
  1975. "Cannot overwrite file \"%s\"\n"
  1976. "%s"
  1977. msgstr ""
  1978. "Non é posíbel sobrescribir o ficheiro «%s»\n"
  1979. "%s"
  1980. #, c-format
  1981. msgid ""
  1982. "Cannot move directory \"%s\" to \"%s\"\n"
  1983. "%s"
  1984. msgstr ""
  1985. "Non é posíbel mover o directorio «%s» a «%s»\n"
  1986. "%s"
  1987. msgid "Cannot operate on \"..\"!"
  1988. msgstr "Non é posíbel operar sobre «..»!"
  1989. #, c-format
  1990. msgid ""
  1991. "Cannot stat source file \"%s\"\n"
  1992. "%s"
  1993. msgstr ""
  1994. "Non é posíbel identificar o ficheiro orixe «%s»\n"
  1995. "%s"
  1996. #, c-format
  1997. msgid ""
  1998. "Cannot create special file \"%s\"\n"
  1999. "%s"
  2000. msgstr ""
  2001. "Non é posíbel crear o ficheiro especial «%s»\n"
  2002. "%s"
  2003. #, c-format
  2004. msgid ""
  2005. "Cannot chown target file \"%s\"\n"
  2006. "%s"
  2007. msgstr ""
  2008. "Non é posíbel cambiar o propietario do ficheiro destino: «%s»\n"
  2009. "%s"
  2010. #, c-format
  2011. msgid ""
  2012. "Cannot chmod target file \"%s\"\n"
  2013. "%s"
  2014. msgstr ""
  2015. "Non é posíbel cambiar os permisos do ficheiro destino «%s»\n"
  2016. "%s"
  2017. #, c-format
  2018. msgid ""
  2019. "Cannot open source file \"%s\"\n"
  2020. "%s"
  2021. msgstr ""
  2022. "Non é posíbel abrir o ficheiro orixe «%s»\n"
  2023. "%s"
  2024. msgid "Reget failed, about to overwrite file"
  2025. msgstr "Fallou o reintento, vaise a sobrescribir o ficheiro"
  2026. #, c-format
  2027. msgid ""
  2028. "Cannot fstat source file \"%s\"\n"
  2029. "%s"
  2030. msgstr ""
  2031. "Non é posíbel identificar o ficheiro orixe «%s»\n"
  2032. "%s"
  2033. #, c-format
  2034. msgid ""
  2035. "Cannot create target file \"%s\"\n"
  2036. "%s"
  2037. msgstr ""
  2038. "Non é posíbel crear o ficheiro destino «%s»\n"
  2039. "%s"
  2040. #, c-format
  2041. msgid ""
  2042. "Cannot fstat target file \"%s\"\n"
  2043. "%s"
  2044. msgstr ""
  2045. "Non é posíbel identificar o ficheiro destino «%s»\n"
  2046. "%s"
  2047. #, c-format
  2048. msgid ""
  2049. "Cannot preallocate space for target file \"%s\"\n"
  2050. "%s"
  2051. msgstr ""
  2052. "Non é posíbel reservar espazo para o ficheiro destino «%s»\n"
  2053. "%s"
  2054. #, c-format
  2055. msgid ""
  2056. "Cannot read source file \"%s\"\n"
  2057. "%s"
  2058. msgstr ""
  2059. "Non é posíbel ler o ficheiro orixe «%s»\n"
  2060. "%s"
  2061. #, c-format
  2062. msgid ""
  2063. "Cannot write target file \"%s\"\n"
  2064. "%s"
  2065. msgstr ""
  2066. "Non é posíbel escribir o ficheiro destino «%s»\n"
  2067. "%s"
  2068. msgid "(stalled)"
  2069. msgstr "(atoado)"
  2070. #, c-format
  2071. msgid ""
  2072. "Cannot close source file \"%s\"\n"
  2073. "%s"
  2074. msgstr ""
  2075. "Non é posíbel pechar o ficheiro orixe «%s»\n"
  2076. "%s"
  2077. #, c-format
  2078. msgid ""
  2079. "Cannot close target file \"%s\"\n"
  2080. "%s"
  2081. msgstr ""
  2082. "Non é posíbel pechar o ficheiro destino «%s»\n"
  2083. "%s"
  2084. msgid "Incomplete file was retrieved. Keep it?"
  2085. msgstr "O ficheiro esta incompleto. Desexa conservalo?"
  2086. msgid "&Keep"
  2087. msgstr "&Manter"
  2088. #, c-format
  2089. msgid ""
  2090. "Cannot stat source directory \"%s\"\n"
  2091. "%s"
  2092. msgstr ""
  2093. "Non é posíbel identificar o directorio de orixe «%s»\n"
  2094. "%s"
  2095. #, c-format
  2096. msgid ""
  2097. "Source \"%s\" is not a directory\n"
  2098. "%s"
  2099. msgstr ""
  2100. "A orixe «%s» non é un directorio\n"
  2101. "%s"
  2102. #, c-format
  2103. msgid ""
  2104. "Cannot copy cyclic symbolic link\n"
  2105. "\"%s\""
  2106. msgstr ""
  2107. "Non é posíbel copiar unha ligazón simbólica cíclica\n"
  2108. "«%s»"
  2109. #, c-format
  2110. msgid ""
  2111. "Destination \"%s\" must be a directory\n"
  2112. "%s"
  2113. msgstr ""
  2114. "O destino «%s» debe ser un directorio\n"
  2115. "%s"
  2116. #, c-format
  2117. msgid ""
  2118. "Cannot create target directory \"%s\"\n"
  2119. "%s"
  2120. msgstr ""
  2121. "Non é posíbel crear o directorio destino «%s»\n"
  2122. "%s"
  2123. #, c-format
  2124. msgid ""
  2125. "Cannot chown target directory \"%s\"\n"
  2126. "%s"
  2127. msgstr ""
  2128. "Non é posíbel cambiar os permisos do directorio destino «%s»\n"
  2129. "%s"
  2130. #, c-format
  2131. msgid "Directories: %zu, total size: %s"
  2132. msgstr "Directorios: %zu, tamaño total: %s"
  2133. msgid "Sorry, I could not put the job in background"
  2134. msgstr "Síntoo, non se puido pór a tarefa en 2º plano"
  2135. msgid "S&uspend"
  2136. msgstr "s&Uspender"
  2137. msgid "Con&tinue"
  2138. msgstr "Con&Tinuar"
  2139. #, c-format
  2140. msgid "%d:%02d.%02d"
  2141. msgstr "%d:%02d.%02d"
  2142. #, c-format
  2143. msgid "ETA %s"
  2144. msgstr "Tempo restante %s"
  2145. #, c-format
  2146. msgid "%.2f MB/s"
  2147. msgstr "%.2f MB/s"
  2148. #, c-format
  2149. msgid "%.2f KB/s"
  2150. msgstr "%.2f KB/s"
  2151. #, c-format
  2152. msgid "%ld B/s"
  2153. msgstr "%ld B/s"
  2154. msgid "New :"
  2155. msgstr "Novo :"
  2156. msgid "Existing:"
  2157. msgstr "Existente:"
  2158. msgid "Overwrite this file?"
  2159. msgstr "Sobrescribir este ficheiro?"
  2160. msgid "A&ppend"
  2161. msgstr "&Engadir"
  2162. msgid "&Reget"
  2163. msgstr "&Reintentar"
  2164. msgid "Overwrite all files?"
  2165. msgstr "Sobrescribir todos os ficheiros?"
  2166. msgid "Don't overwrite with &zero length file"
  2167. msgstr "Non sobrescribir un ficheiro de tamaño &Cero"
  2168. msgid "&Older"
  2169. msgstr "Antig&O"
  2170. msgid "S&maller"
  2171. msgstr "Peq&Ueno"
  2172. msgid "&Size differs"
  2173. msgstr "&Tamaño diferente"
  2174. msgid "File exists"
  2175. msgstr "O ficheiro xa existe"
  2176. msgid "Background process: File exists"
  2177. msgstr "Proceso en 2º plano: O ficheiro xa existe"
  2178. #, c-format
  2179. msgid "Files processed: %zu/%zu"
  2180. msgstr "Ficheiros procesados: %zu/%zu"
  2181. #, c-format
  2182. msgid "Files processed: %zu"
  2183. msgstr "Ficheiros procesados: %zu"
  2184. #, c-format
  2185. msgid "Time: %s %s"
  2186. msgstr "Tempo: %s %s"
  2187. #, c-format
  2188. msgid "Time: %s %s (%s)"
  2189. msgstr "Tempo: %s %s (%s)"
  2190. #, c-format
  2191. msgid "Time: %s"
  2192. msgstr "Tempo: %s"
  2193. #, c-format
  2194. msgid "Time: %s (%s)"
  2195. msgstr "Tempo: %s (%s)"
  2196. #, c-format
  2197. msgid " Total: %s "
  2198. msgstr " Total: %s "
  2199. #, c-format
  2200. msgid " Total: %s/%s "
  2201. msgstr " Total: %s/%s "
  2202. msgid "Source"
  2203. msgstr "Orixe"
  2204. msgid "Target"
  2205. msgstr "Destino"
  2206. msgid "Deleting"
  2207. msgstr "Eliminando"
  2208. msgid "&Using shell patterns"
  2209. msgstr "&Usando modelos de consola"
  2210. msgid "to:"
  2211. msgstr "a:"
  2212. msgid "Follow &links"
  2213. msgstr "Seguir &Ligazóns"
  2214. msgid "Preserve &attributes"
  2215. msgstr "Conservar &Atributos"
  2216. msgid "Di&ve into subdir if exists"
  2217. msgstr "Entrar en sub&Directorio se existe"
  2218. msgid "&Stable symlinks"
  2219. msgstr "Ligazóns simbólicas e&Stábeis"
  2220. msgid "&Background"
  2221. msgstr "En 2º &Plano"
  2222. #, c-format
  2223. msgid "Invalid source pattern '%s'"
  2224. msgstr "Patrón orixinal incorrecto «%s»"
  2225. msgid "File listin&g"
  2226. msgstr "Lis&Tado de ficheiros"
  2227. msgid "&Quick view"
  2228. msgstr "Vista &Rápida"
  2229. msgid "&Info"
  2230. msgstr "&Información"
  2231. msgid "&Tree"
  2232. msgstr "Ár&Bore"
  2233. msgid "&Listing format..."
  2234. msgstr "Formato de &ista..."
  2235. msgid "&Sort order..."
  2236. msgstr "&Ordenar..."
  2237. msgid "&Filter..."
  2238. msgstr "&Filtro..."
  2239. msgid "&Encoding..."
  2240. msgstr "&Codificando..."
  2241. msgid "FT&P link..."
  2242. msgstr "Conexión por FT&P..."
  2243. msgid "S&hell link..."
  2244. msgstr "Conexión por &Terminal..."
  2245. msgid "S&FTP link..."
  2246. msgstr "Ligazón S&FTP..."
  2247. msgid "SM&B link..."
  2248. msgstr "Conexión por &SMB..."
  2249. msgid "Paneli&ze"
  2250. msgstr "&Poñer no panel"
  2251. msgid "&Rescan"
  2252. msgstr "Actuali&Zar"
  2253. msgid "&View"
  2254. msgstr "&Vista"
  2255. msgid "Vie&w file..."
  2256. msgstr "ve&R ficheiro..."
  2257. msgid "&Filtered view"
  2258. msgstr "Vista &Filtrada"
  2259. msgid "&Copy"
  2260. msgstr "&Copiar"
  2261. msgid "C&hmod"
  2262. msgstr "c&Hmod"
  2263. msgid "&Link"
  2264. msgstr "&Ligar"
  2265. msgid "&Symlink"
  2266. msgstr "Ligazóns &Simbólicas"
  2267. msgid "Relative symlin&k"
  2268. msgstr "Liga&Zón simbólica relativa"
  2269. msgid "Edit s&ymlink"
  2270. msgstr "Editar li&Gazón simbólica"
  2271. msgid "Ch&own"
  2272. msgstr "ch&Own"
  2273. msgid "&Advanced chown"
  2274. msgstr "c&Ambiar propietario e permisos"
  2275. msgid "Cha&ttr"
  2276. msgstr ""
  2277. msgid "&Rename/Move"
  2278. msgstr "&Renomear/Mover"
  2279. msgid "&Mkdir"
  2280. msgstr "Crear &Directorio"
  2281. msgid "&Quick cd"
  2282. msgstr "ca&Mbiar directorio"
  2283. msgid "Select &group"
  2284. msgstr "Seleccionar &Grupo"
  2285. msgid "U&nselect group"
  2286. msgstr "Desmarcar g&Rrupo"
  2287. msgid "&Invert selection"
  2288. msgstr "&Inverter a selección"
  2289. msgid "E&xit"
  2290. msgstr "&Saír"
  2291. msgid "&User menu"
  2292. msgstr "Menú de &Usuario"
  2293. msgid "&Directory tree"
  2294. msgstr "Árbore de &Directorios"
  2295. msgid "&Find file"
  2296. msgstr "Buscar &Ficheiro"
  2297. msgid "S&wap panels"
  2298. msgstr "&Intercambiar paneis"
  2299. msgid "Switch &panels on/off"
  2300. msgstr "Activar/desactivar &Paneis"
  2301. msgid "&Compare directories"
  2302. msgstr "&Comparar directorios"
  2303. msgid "C&ompare files"
  2304. msgstr "c&Omparar ficheiros"
  2305. msgid "E&xternal panelize"
  2306. msgstr "Paneis e&Xternos"
  2307. msgid "Show directory s&izes"
  2308. msgstr "Mostrar &Tamaño dos directorios"
  2309. msgid "Command &history"
  2310. msgstr "&Historial de ordes"
  2311. msgid "Viewed/edited files hi&story"
  2312. msgstr ""
  2313. msgid "Di&rectory hotlist"
  2314. msgstr "di&Rectorio de favoritos"
  2315. msgid "&Active VFS list"
  2316. msgstr "Lista activa de ficheiros &Virtuais (VFS)"
  2317. msgid "&Background jobs"
  2318. msgstr "&Procesos en 2º plano"
  2319. msgid "Screen lis&t"
  2320. msgstr "&Lista de pantallas"
  2321. msgid "&Undelete files (ext2fs only)"
  2322. msgstr "rec&Uperar ficheiros (só ext2fs)"
  2323. msgid "&Listing format edit"
  2324. msgstr "Edición do formato de &Lista"
  2325. msgid "Edit &extension file"
  2326. msgstr "&Editar o ficheiro de extensións"
  2327. msgid "Edit &menu file"
  2328. msgstr "Editar ficheiro de &Menú"
  2329. msgid "Edit hi&ghlighting group file"
  2330. msgstr "Editar resaltado de &Grupos de ficheiros"
  2331. msgid "&Configuration..."
  2332. msgstr "&Configuración..."
  2333. msgid "&Layout..."
  2334. msgstr "&Presentación..."
  2335. msgid "&Panel options..."
  2336. msgstr "Opcións dos &Paneis..."
  2337. msgid "C&onfirmation..."
  2338. msgstr "c&Onfirmación..."
  2339. msgid "&Appearance..."
  2340. msgstr "&Aparencia..."
  2341. msgid "&Display bits..."
  2342. msgstr "&Mostrar bits..."
  2343. msgid "&Virtual FS..."
  2344. msgstr "Sistema de ficheiros &Virtual (VFS)..."
  2345. msgid "Panels:"
  2346. msgstr "Paneis:"
  2347. #, c-format
  2348. msgid "You have %zu opened screen. Quit anyway?"
  2349. msgid_plural "You have %zu opened screens. Quit anyway?"
  2350. msgstr[0] "Ten %zu pantalla aberta. Saír aínda así?"
  2351. msgstr[1] "Ten %zu pantallas abertas. Saír aínda así?"
  2352. msgid "The Midnight Commander"
  2353. msgstr "O Midnight Commander"
  2354. msgid "Do you really want to quit the Midnight Commander?"
  2355. msgstr "Confirma que quere saír do Midnight Commander?"
  2356. msgid "&Above"
  2357. msgstr "&Arriba"
  2358. msgid "&Left"
  2359. msgstr "&Esquerda"
  2360. msgid "&Below"
  2361. msgstr "a&Baixo"
  2362. msgid "&Right"
  2363. msgstr "&Dereita"
  2364. msgid "ButtonBar|Menu"
  2365. msgstr "ButtonBar|Menú"
  2366. msgid "ButtonBar|View"
  2367. msgstr "ButtonBar|Ver"
  2368. msgid "ButtonBar|RenMov"
  2369. msgstr "ButtonBar|Renomear/Mover"
  2370. msgid "ButtonBar|Mkdir"
  2371. msgstr "ButtonBar|Crear directorio"
  2372. msgid "&Chdir"
  2373. msgstr "&Cambiar directorio"
  2374. msgid "&Again"
  2375. msgstr "&Outra vez"
  2376. msgid "Pane&lize"
  2377. msgstr "&Levar a panel"
  2378. msgid "&View - F3"
  2379. msgstr "&Ver - F3"
  2380. msgid "&Edit - F4"
  2381. msgstr "&Editar - F4"
  2382. #, c-format
  2383. msgid "Found: %lu"
  2384. msgstr "Atopouse: %lu"
  2385. msgid "Malformed regular expression"
  2386. msgstr "A expresión regular é incorrecta"
  2387. msgid "File name:"
  2388. msgstr "Nome do ficheiro:"
  2389. msgid "&Find recursively"
  2390. msgstr "&Busca recursiva"
  2391. #, fuzzy
  2392. msgid "Follow s&ymlinks"
  2393. msgstr "Seguir &Ligazóns"
  2394. msgid "S&kip hidden"
  2395. msgstr "i&Gnorar agochados"
  2396. msgid "Content:"
  2397. msgstr "Contido:"
  2398. msgid "Sea&rch for content"
  2399. msgstr "Buscar por co&Ntido"
  2400. msgid "Case sens&itive"
  2401. msgstr "Dis&Tinguir maiúsculas"
  2402. msgid "A&ll charsets"
  2403. msgstr "&Todos os xogos de caracteres"
  2404. msgid "Fir&st hit"
  2405. msgstr "&Primeira coincidencia"
  2406. msgid "Find File"
  2407. msgstr "Buscar ficheiro"
  2408. msgid "Start at:"
  2409. msgstr "Comezar en:"
  2410. msgid "Ena&ble ignore directories:"
  2411. msgstr "i&Gnorar directorios..."
  2412. #, c-format
  2413. msgid "Grepping in %s"
  2414. msgstr "Buscando en %s"
  2415. msgid "Finished"
  2416. msgstr "Rematado"
  2417. #, c-format
  2418. msgid "Finished (ignored %zu directory)"
  2419. msgid_plural "Finished (ignored %zu directories)"
  2420. msgstr[0] "Rematado (%zu directorio ignorado) "
  2421. msgstr[1] "Rematado (%zu directorios ignorados) "
  2422. #, c-format
  2423. msgid "Find File: \"%s\". Content: \"%s\""
  2424. msgstr "Buscar o ficheiro: «%s». Contendo: «%s»"
  2425. #, c-format
  2426. msgid "Find File: \"%s\""
  2427. msgstr "Buscar o ficheiro: «%s»"
  2428. msgid "Searching"
  2429. msgstr "Buscando"
  2430. msgid "Change &to"
  2431. msgstr "&Cambiar a"
  2432. msgid "&Free VFSs now"
  2433. msgstr "Liberar os V&FS agora"
  2434. msgid "&Refresh"
  2435. msgstr "Actuali&Zar"
  2436. msgid "&Add current"
  2437. msgstr "e&Ngadir actual"
  2438. msgid "&Up"
  2439. msgstr "&Arriba"
  2440. msgid "New &group"
  2441. msgstr "Novo &Grupo"
  2442. msgid "New &entry"
  2443. msgstr "Nova &Entrada"
  2444. msgid "&Insert"
  2445. msgstr "&Inserir"
  2446. msgid "&Remove"
  2447. msgstr "&Quitar"
  2448. msgid "Subgroup - press ENTER to see list"
  2449. msgstr "Subgrupo - prema INTRO para ver a lista"
  2450. msgid "Active VFS directories"
  2451. msgstr "Directorios virtuais (VFS) activos"
  2452. msgid "Directory hotlist"
  2453. msgstr "Favoritos "
  2454. msgid "Top level group"
  2455. msgstr "Grupo principal"
  2456. msgid "Directory path"
  2457. msgstr "Ruta do directorio:"
  2458. #, c-format
  2459. msgid "Moving %s"
  2460. msgstr "Movendo %s"
  2461. msgid "Directory label"
  2462. msgstr "Etiqueta do directorio:"
  2463. msgid "&Append"
  2464. msgstr "Engadir ao &Final"
  2465. msgid "New hotlist entry"
  2466. msgstr "Nova entrada de favoritos"
  2467. msgid "Directory label:"
  2468. msgstr "Etiqueta do directorio:"
  2469. msgid "Directory path:"
  2470. msgstr "Ruta do directorio:"
  2471. msgid "New hotlist group"
  2472. msgstr "Novo grupo favoritos"
  2473. msgid "Name of new group:"
  2474. msgstr "Nome do novo grupo:"
  2475. #, c-format
  2476. msgid "Are you sure you want to remove entry \"%s\"?"
  2477. msgstr "Está seguro de que quere retirar a entrada «%s»?"
  2478. #, c-format
  2479. msgid ""
  2480. "Group \"%s\" is not empty.\n"
  2481. "Remove it?"
  2482. msgstr ""
  2483. "O grupo «%s» non está baleiro.\n"
  2484. "Quere eliminalo?"
  2485. msgid "Hotlist Load"
  2486. msgstr "Cargar favoritos"
  2487. #, c-format
  2488. msgid ""
  2489. "MC was unable to write %s file,\n"
  2490. "your old hotlist entries were not deleted"
  2491. msgstr ""
  2492. "MC non foi quen de escribir o ficheiro %s,\n"
  2493. "a lista de favoritos antiga non foi borrada"
  2494. #, c-format
  2495. msgid "Label for \"%s\":"
  2496. msgstr "Etiqueta para «%s»:"
  2497. msgid "Add to hotlist"
  2498. msgstr "Engadir a favoritos"
  2499. #, c-format
  2500. msgid "Midnight Commander %s"
  2501. msgstr "Midnight Commander %s"
  2502. #, c-format
  2503. msgid "File: %s"
  2504. msgstr "Ficheiro: %s"
  2505. msgid "No node information"
  2506. msgstr "Sen información sobre nodos"
  2507. msgid "Free nodes:"
  2508. msgstr "Nodos libres:"
  2509. msgid "No space information"
  2510. msgstr "Sen información do espazo"
  2511. #, c-format
  2512. msgid "Free space: %s/%s (%d%%)"
  2513. msgstr "Espazo libre: %s/%s (%d%%)"
  2514. #, c-format
  2515. msgid "Type: %s"
  2516. msgstr "Tipo: %s"
  2517. msgid "non-local vfs"
  2518. msgstr "VFS non-local"
  2519. #, c-format
  2520. msgid "Device: %s"
  2521. msgstr "Dispositivo: %s"
  2522. #, c-format
  2523. msgid "Filesystem: %s"
  2524. msgstr "Sistema de ficheiros: %s"
  2525. #, c-format
  2526. msgid "Accessed: %s"
  2527. msgstr "Accedido: %s"
  2528. #, c-format
  2529. msgid "Modified: %s"
  2530. msgstr "Modificado: %s"
  2531. #. TRANSLATORS: Time of last status change as in stat(2) man.
  2532. #, c-format
  2533. msgid "Changed: %s"
  2534. msgstr "Cambiado: %s"
  2535. #, c-format
  2536. msgid "Dev. type: major %lu, minor %lu"
  2537. msgstr "Tipo disp.: maior %lu, menor %lu"
  2538. #, c-format
  2539. msgid "Size: %s"
  2540. msgstr "Tamaño: %s"
  2541. #, c-format
  2542. msgid " (%lu block)"
  2543. msgid_plural " (%lu blocks)"
  2544. msgstr[0] " (%lu bloque)"
  2545. msgstr[1] " (%lu bloques)"
  2546. #, c-format
  2547. msgid "Owner: %s/%s"
  2548. msgstr "Propietario: %s/%s"
  2549. #, c-format
  2550. msgid "Links: %d"
  2551. msgstr "Ligazóns: %d"
  2552. msgid "Attributes: not supported"
  2553. msgstr ""
  2554. #, c-format
  2555. msgid "Attributes: %s"
  2556. msgstr ""
  2557. msgid "Attributes: unavailable"
  2558. msgstr ""
  2559. #, c-format
  2560. msgid "Mode: %s (%04o)"
  2561. msgstr "Modo: %s (%04o)"
  2562. #, c-format
  2563. msgid "Location: %Xh:%Xh"
  2564. msgstr "Localización: %Xh:%Xh"
  2565. msgid "&Equal split"
  2566. msgstr "si&Metrico"
  2567. msgid "&Menubar visible"
  2568. msgstr "Barra do &Menú visíbel"
  2569. msgid "Command &prompt"
  2570. msgstr "&Liña de ordes"
  2571. msgid "&Keybar visible"
  2572. msgstr "Mostrar &Barra de teclas"
  2573. msgid "H&intbar visible"
  2574. msgstr "&Suxestións visíbeis"
  2575. msgid "&XTerm window title"
  2576. msgstr "Titulo da xanela &Xterm"
  2577. msgid "&Show free space"
  2578. msgstr "&Amosar o espazo dispoñíbel"
  2579. msgid "Panel split"
  2580. msgstr "Disposición de paneis"
  2581. msgid "Console output"
  2582. msgstr "Saída de consola"
  2583. msgid "&Vertical"
  2584. msgstr "&Vertical"
  2585. msgid "&Horizontal"
  2586. msgstr "&Horizontal"
  2587. msgid "Output lines:"
  2588. msgstr "Liñas de saída"
  2589. msgid "Layout"
  2590. msgstr "Presentación"
  2591. msgid "Memory exhausted!"
  2592. msgstr "Memoria esgotada!"
  2593. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2594. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2595. msgid "sort|u"
  2596. msgstr "sort|s"
  2597. msgid "&Unsorted"
  2598. msgstr "&Sen ordenar"
  2599. #. TRANSLATORS: one single character to represent 'name' sort mode
  2600. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2601. msgid "sort|n"
  2602. msgstr "sort|n"
  2603. msgid "&Name"
  2604. msgstr "&Nome"
  2605. #. TRANSLATORS: one single character to represent 'version' sort mode
  2606. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2607. msgid "sort|v"
  2608. msgstr "sort|v"
  2609. msgid "&Version"
  2610. msgstr "&Versión"
  2611. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2612. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2613. msgid "sort|e"
  2614. msgstr "sort|e"
  2615. msgid "E&xtension"
  2616. msgstr "e&Xtensión"
  2617. #. TRANSLATORS: one single character to represent 'size' sort mode
  2618. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2619. msgid "sort|s"
  2620. msgstr "sort|t"
  2621. msgid "&Size"
  2622. msgstr "&Tamaño"
  2623. msgid "Block Size"
  2624. msgstr "Tamaño do bloque"
  2625. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2626. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2627. msgid "sort|m"
  2628. msgstr "sort|m"
  2629. msgid "&Modify time"
  2630. msgstr "Data de &Modificación"
  2631. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2632. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2633. msgid "sort|a"
  2634. msgstr "sort|a"
  2635. msgid "&Access time"
  2636. msgstr "Data de &Acceso"
  2637. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2638. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2639. msgid "sort|h"
  2640. msgstr "sort|c"
  2641. msgid "C&hange time"
  2642. msgstr "Data de &Cambio"
  2643. msgid "Perm"
  2644. msgstr "Perm"
  2645. msgid "Nl"
  2646. msgstr "Nl"
  2647. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2648. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2649. msgid "sort|i"
  2650. msgstr "sort|i"
  2651. msgid "&Inode"
  2652. msgstr "nodo-&I"
  2653. msgid "UID"
  2654. msgstr "UID"
  2655. msgid "GID"
  2656. msgstr "GID"
  2657. msgid "Owner"
  2658. msgstr "Propietario"
  2659. msgid "Group"
  2660. msgstr "Grupo"
  2661. msgid "[dev]"
  2662. msgstr "[disp]"
  2663. msgid "UP--DIR"
  2664. msgstr "DIR--ANT"
  2665. msgid "SYMLINK"
  2666. msgstr "LIGAZÓN"
  2667. msgid "SUB-DIR"
  2668. msgstr "SUB-DIR"
  2669. msgid "<readlink failed>"
  2670. msgstr "<fallou readlink>"
  2671. #, c-format
  2672. msgid "%s in %d file"
  2673. msgid_plural "%s in %d files"
  2674. msgstr[0] "%s en %d ficheiro"
  2675. msgstr[1] "%s en %d ficheiros"
  2676. msgid "Panelize"
  2677. msgstr "Poñer no panel"
  2678. msgid "Unknown tag on display format:"
  2679. msgstr "Etiqueta descoñecida no formato de pantalla:"
  2680. msgid "&Files only"
  2681. msgstr "Só &Ficheiros"
  2682. msgid "&Case sensitive"
  2683. msgstr "&Distinguir maiúsculas"
  2684. msgid "Select"
  2685. msgstr "Seleccionar"
  2686. msgid "Unselect"
  2687. msgstr "Desmarcar"
  2688. msgid "Do you really want to execute?"
  2689. msgstr "Confirma que quere executalo?"
  2690. msgid "Cannot read directory contents"
  2691. msgstr "Non é posíbel ler o contido do directorio"
  2692. msgid "User supplied format looks invalid, reverting to default."
  2693. msgstr "O formato semella non ser correcto. Recuperando o predeterminado."
  2694. msgid "&Add new"
  2695. msgstr "&Engadir novo"
  2696. msgid "External panelize"
  2697. msgstr "Paneis externos"
  2698. msgid "Other command"
  2699. msgstr "Outra orde"
  2700. msgid "Command"
  2701. msgstr "Orde"
  2702. msgid "Add to external panelize"
  2703. msgstr "Engadir a panel externo"
  2704. msgid "Enter command label:"
  2705. msgstr "Introduza a etiqueta da orde:"
  2706. #, fuzzy, c-format
  2707. msgid ""
  2708. "External panelize:\n"
  2709. "%s"
  2710. msgstr "Paneis externos"
  2711. #, fuzzy, c-format
  2712. msgid ""
  2713. "External panelize:\n"
  2714. "failed to read data from child stdout:\n"
  2715. "%s"
  2716. msgstr ""
  2717. "Produciuse un erro ao ler os datos da saída estándar filla:\n"
  2718. "%s"
  2719. msgid "Cannot run external panelize in a non-local directory"
  2720. msgstr "Non é posíbel executar a panelización externa nun directorio non local"
  2721. msgid "Modified git files"
  2722. msgstr "Ficheiros git modificados"
  2723. msgid "Find rejects after patching"
  2724. msgstr "Buscar ficheiros rexeitados logo de aplicar parches"
  2725. msgid "Find *.orig after patching"
  2726. msgstr "Buscar ficheiros orixinais logo de aplicar parches"
  2727. msgid "Find SUID and SGID programs"
  2728. msgstr "Buscar programas con SUID e SGID"
  2729. #, c-format
  2730. msgid ""
  2731. "Cannot open the %s file for writing:\n"
  2732. "%s\n"
  2733. msgstr ""
  2734. "Non é posíbel abrir o ficheiro «%s» para escritura:\n"
  2735. "%s\n"
  2736. #, c-format
  2737. msgid "Copy \"%s\" directory to:"
  2738. msgstr "Copiar directorio «%s» a:"
  2739. #, c-format
  2740. msgid "Move \"%s\" directory to:"
  2741. msgstr "Mover o directorio «%s» a:"
  2742. #, c-format
  2743. msgid ""
  2744. "Cannot stat the destination\n"
  2745. "%s"
  2746. msgstr ""
  2747. "Non é posíbel determinar o destino\n"
  2748. "%s"
  2749. #, c-format
  2750. msgid "Delete %s?"
  2751. msgstr "Eliminar %s?"
  2752. msgid "ButtonBar|Static"
  2753. msgstr "ButtonBar|Estático"
  2754. msgid "ButtonBar|Dynamc"
  2755. msgstr "ButtonBar|Dinámico"
  2756. msgid "ButtonBar|Rescan"
  2757. msgstr "ButtonBar|Actualizar"
  2758. msgid "ButtonBar|Forget"
  2759. msgstr "ButtonBar|Esquecer"
  2760. msgid "ButtonBar|Rmdir"
  2761. msgstr "ButtonBar|EliminarDirectorio"
  2762. #, c-format
  2763. msgid ""
  2764. "Cannot write to the %s file:\n"
  2765. "%s\n"
  2766. msgstr ""
  2767. "Non é posíbel escribir no ficheiro %s:\n"
  2768. "%s\n"
  2769. msgid "Help file format error\n"
  2770. msgstr "O ficheiro de axuda ten un erro de formato\n"
  2771. msgid "Internal bug: Double start of link area"
  2772. msgstr "Erro interno: Dobre inicio da área de ligazón"
  2773. #, c-format
  2774. msgid "Cannot find node %s in help file"
  2775. msgstr "Non é posíbel atopar o nodo %s no ficheiro de axuda"
  2776. msgid "Help"
  2777. msgstr "Axuda"
  2778. msgid "ButtonBar|Index"
  2779. msgstr "ButtonBar|Contido"
  2780. msgid "ButtonBar|Prev"
  2781. msgstr "ButtonBar|Anterior"
  2782. msgid "Learn keys"
  2783. msgstr "Redefinir teclas"
  2784. msgid "Teach me a key"
  2785. msgstr "Asignar unha tecla"
  2786. #, c-format
  2787. msgid ""
  2788. "Please press the %s\n"
  2789. "and then wait until this message disappears.\n"
  2790. "\n"
  2791. "Then, press it again to see if OK appears\n"
  2792. "next to its button.\n"
  2793. "\n"
  2794. "If you want to escape, press a single Escape key\n"
  2795. "and wait as well."
  2796. msgstr ""
  2797. "Por favor, prema a tecla %s\n"
  2798. "e agarde ata que esta mensaxe desapareza.\n"
  2799. "\n"
  2800. "Logo, prema a tecla de novo e vexa se a mensaxe de «Conforme» aparece\n"
  2801. "a beira do seu botón \n"
  2802. "\n"
  2803. "Se quere cancelar, prema unha vez a tecla «Escape»\n"
  2804. "e agarde."
  2805. msgid "Cannot accept this key"
  2806. msgstr "Non se pode aceptar esta tecla"
  2807. #, c-format
  2808. msgid "You have entered \"%s\""
  2809. msgstr "Vostede escribiu «%s»"
  2810. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2811. msgid "OK"
  2812. msgstr "Aceptar"
  2813. msgid ""
  2814. "It seems that all your keys already\n"
  2815. "work fine. That's great."
  2816. msgstr ""
  2817. "Parece ser que todas as súas teclas xa\n"
  2818. "funcionan correctamente. Perfecto!"
  2819. msgid "&Discard"
  2820. msgstr "&Desbotar"
  2821. msgid ""
  2822. "Great! You have a complete terminal database!\n"
  2823. "All your keys work well."
  2824. msgstr ""
  2825. "Perfecto! As súas táboas de terminal son correctas!\n"
  2826. "Todas as teclas funcionan axeitadamente."
  2827. msgid ""
  2828. "Press all the keys mentioned here. After you have done it, check\n"
  2829. "which keys are not marked with OK. Press space on the missing\n"
  2830. "key, or click with the mouse to define it. Move around with Tab."
  2831. msgstr ""
  2832. "Prema todas as teclas mencionadas aquí. Una vez feito, comprobe\n"
  2833. "que as teclas non están marcados con «Aceptar». Prema espazo na\n"
  2834. "tecla que falte ou prema co rato para definila. Móvase coa tecla Tab."
  2835. #, c-format
  2836. msgid ""
  2837. "Failed to run:\n"
  2838. "%s\n"
  2839. msgstr ""
  2840. "Non foi posíbel executar:\n"
  2841. "%s\n"
  2842. msgid "Home directory path is not absolute"
  2843. msgstr "A ruta do directorio de inicio non é absoluta"
  2844. msgid ""
  2845. "GNU Midnight Commander\n"
  2846. "is already running on this terminal.\n"
  2847. "Subshell support will be disabled."
  2848. msgstr ""
  2849. #, c-format
  2850. msgid ""
  2851. "\n"
  2852. "Failed while close:\n"
  2853. "%s\n"
  2854. msgstr ""
  2855. "\n"
  2856. "Non foi posíbel pechar:\n"
  2857. "%s\n"
  2858. msgid "Choose codepage"
  2859. msgstr "Seleccionar xogo de caracteres"
  2860. msgid "- < No translation >"
  2861. msgstr "- < Sen tradución >"
  2862. msgid "%b %e %Y"
  2863. msgstr "%e %b %Y"
  2864. msgid "%b %e %H:%M"
  2865. msgstr "%e %b %H:%M"
  2866. #, c-format
  2867. msgid ""
  2868. "Cannot save file %s:\n"
  2869. "%s"
  2870. msgstr ""
  2871. "Non é posíbel gardar o ficheiro %s:\n"
  2872. "%s"
  2873. #, c-format
  2874. msgid "Cannot open named pipe %s\n"
  2875. msgstr "Non é posíbel abrir a canalización nomeada %s\n"
  2876. msgid "The shell is still active. Quit anyway?"
  2877. msgstr "O terminal aínda está activo. Saír de todos xeitos?"
  2878. #, c-format
  2879. msgid "Warning: Cannot change to %s.\n"
  2880. msgstr "Coidado: Non é posíbel cambiar a %s.\n"
  2881. msgid "With builtin Editor and Aspell support"
  2882. msgstr ""
  2883. msgid "With builtin Editor"
  2884. msgstr ""
  2885. msgid "With optional subshell support"
  2886. msgstr ""
  2887. msgid "With subshell support as default"
  2888. msgstr ""
  2889. msgid "With support for background operations"
  2890. msgstr ""
  2891. msgid "With mouse support on xterm and Linux console"
  2892. msgstr ""
  2893. msgid "With mouse support on xterm"
  2894. msgstr ""
  2895. msgid "With support for X11 events"
  2896. msgstr ""
  2897. msgid "With internationalization support"
  2898. msgstr ""
  2899. msgid "With multiple codepages support"
  2900. msgstr ""
  2901. msgid "With ext2fs attributes support"
  2902. msgstr ""
  2903. #, c-format
  2904. msgid "Built with GLib %d.%d.%d\n"
  2905. msgstr "Construido con GLib %d.%d.%d\n"
  2906. #, c-format
  2907. msgid "Built with S-Lang %s with terminfo database\n"
  2908. msgstr ""
  2909. #, c-format
  2910. msgid "Built with ncurses %s\n"
  2911. msgstr ""
  2912. msgid "Built with ncurses (unknown version)"
  2913. msgstr ""
  2914. #, c-format
  2915. msgid "Built with ncursesw %s\n"
  2916. msgstr ""
  2917. msgid "Built with ncursesw (unknown version)"
  2918. msgstr ""
  2919. msgid "Virtual File Systems:"
  2920. msgstr "(VFS) Sistema de ficheiros virtual:"
  2921. msgid "Data types:"
  2922. msgstr "Tipos de datos:"
  2923. msgid "Home directory:"
  2924. msgstr "Directorio de inicio:"
  2925. msgid "Profile root directory:"
  2926. msgstr "Directorio do perfil raíz:"
  2927. msgid "System data"
  2928. msgstr "Datos do sistema"
  2929. msgid "Config directory:"
  2930. msgstr "Directorio de configuración:"
  2931. msgid "Data directory:"
  2932. msgstr "Directorio de datos:"
  2933. msgid "File extension handlers:"
  2934. msgstr "Manexadores de extensións de ficheiro:"
  2935. msgid "VFS plugins and scripts:"
  2936. msgstr "Engadidos e scripts VFS"
  2937. msgid "User data"
  2938. msgstr "Datos do usuario"
  2939. msgid "Cache directory:"
  2940. msgstr "Directorio de caché:"
  2941. msgid "Debug"
  2942. msgstr "Depuración"
  2943. msgid "ERROR:"
  2944. msgstr "ERRO:"
  2945. msgid "True:"
  2946. msgstr "Verdadeiro:"
  2947. msgid "False:"
  2948. msgstr "Falso:"
  2949. msgid "Error calling program"
  2950. msgstr "Produciuse un erro ao chamar ao programa"
  2951. msgid "Warning -- ignoring file"
  2952. msgstr "Aviso -- ignorando o ficheiro"
  2953. #, c-format
  2954. msgid ""
  2955. "File %s is not owned by root or you or is world writable.\n"
  2956. "Using it may compromise your security"
  2957. msgstr ""
  2958. "O ficheiro «%s» non pertence a Vd. nin a root, nin ten permiso\n"
  2959. "global de escritura. Usalo podería comprometer a súa seguranza."
  2960. msgid "Format error on file Extensions File"
  2961. msgstr "Atopouse un erro de formato no ficheiro de extensións"
  2962. #, c-format
  2963. msgid "The %%var macro has no default"
  2964. msgstr "A macro %%var non ten valor predeterminado"
  2965. #, c-format
  2966. msgid "The %%var macro has no variable"
  2967. msgstr "A macro %%var non contén variábeis"
  2968. #, c-format
  2969. msgid "No suitable entries found in %s"
  2970. msgstr "Non se atopan entradas apropiadas en %s"
  2971. msgid "User menu"
  2972. msgstr "Menú de usuario"
  2973. #, c-format
  2974. msgid ""
  2975. "Cannot open cpio archive\n"
  2976. "%s"
  2977. msgstr ""
  2978. "Non é posíbel abrir o arquivo cpio\n"
  2979. "%s"
  2980. #, c-format
  2981. msgid ""
  2982. "Premature end of cpio archive\n"
  2983. "%s"
  2984. msgstr ""
  2985. "Fin prematuro do arquivo cpio\n"
  2986. "%s"
  2987. #, c-format
  2988. msgid ""
  2989. "Inconsistent hardlinks of\n"
  2990. "%s\n"
  2991. "in cpio archive\n"
  2992. "%s"
  2993. msgstr ""
  2994. "Ligazóns inconsistentes para\n"
  2995. "%s\n"
  2996. "no arquivo cpio\n"
  2997. "%s"
  2998. #, c-format
  2999. msgid "%s contains duplicate entries! Skipping!"
  3000. msgstr "%s conten entradas duplicadas! Ignorando!"
  3001. #, c-format
  3002. msgid ""
  3003. "Corrupted cpio header encountered in\n"
  3004. "%s"
  3005. msgstr ""
  3006. "Cabeceira cpio danada atopada en\n"
  3007. "%s"
  3008. #, c-format
  3009. msgid ""
  3010. "Unexpected end of file\n"
  3011. "%s"
  3012. msgstr ""
  3013. "Fin de ficheiro inesperado\n"
  3014. "%s"
  3015. #, fuzzy, c-format
  3016. msgid ""
  3017. "Cannot open %s archive\n"
  3018. "%s:\n"
  3019. "%s"
  3020. msgstr ""
  3021. "Non é posíbel abrir o arquivo %s\n"
  3022. "%s"
  3023. #, fuzzy, c-format
  3024. msgid ""
  3025. "EXTFS virtual file system:\n"
  3026. "%s"
  3027. msgstr "(VFS) Sistema de ficheiros virtual:"
  3028. #, c-format
  3029. msgid "Warning: cannot open %s directory\n"
  3030. msgstr "Aviso: non é posíbel abrir o directorio %s\n"
  3031. #, c-format
  3032. msgid "fish: Disconnecting from %s"
  3033. msgstr "fish: desconectando de %s"
  3034. msgid "fish: Waiting for initial line..."
  3035. msgstr "fish: esperando liña de inicio..."
  3036. msgid "Sorry, we cannot do password authenticated connections for now."
  3037. msgstr "Síntoo, as conexións con contrasinal aínda non son posíbeis."
  3038. #, c-format
  3039. msgid "fish: Password is required for %s"
  3040. msgstr "fish: precisase contrasinal para %s"
  3041. msgid "fish: Sending password..."
  3042. msgstr "fish: enviando contrasinal de usuario..."
  3043. msgid "fish: Sending initial line..."
  3044. msgstr "fish: enviando liña de inicio..."
  3045. msgid "fish: Handshaking version..."
  3046. msgstr "fish: negociando versión..."
  3047. msgid "fish: Getting host info..."
  3048. msgstr "fish: obtendo información do servidor..."
  3049. #, c-format
  3050. msgid "fish: Reading directory %s..."
  3051. msgstr "fish: lendo o directorio %s..."
  3052. #, c-format
  3053. msgid "%s: done."
  3054. msgstr "%s: feito."
  3055. #, c-format
  3056. msgid "%s: failure"
  3057. msgstr "%s: fallo"
  3058. #, c-format
  3059. msgid "fish: store %s: sending command..."
  3060. msgstr "fish: gardar %s: enviando orde..."
  3061. msgid "fish: Local read failed, sending zeros"
  3062. msgstr "fish: fallo local de lectura, enviando ceros"
  3063. msgid "fish: storing file"
  3064. msgstr "fish: gardando ficheiro"
  3065. msgid "Aborting transfer..."
  3066. msgstr "Interrompendo transferencia..."
  3067. msgid "Error reported after abort."
  3068. msgstr "Informouse dun erro despois de interromper."
  3069. msgid "Aborted transfer would be successful."
  3070. msgstr "Transferencia interrompida satisfactoriamente."
  3071. #, c-format
  3072. msgid "ftpfs: Disconnecting from %s"
  3073. msgstr "ftpfs: desconectando de %s"
  3074. #, c-format
  3075. msgid "FTP: Password required for %s"
  3076. msgstr "FTP: é preciso contrasinal para %s"
  3077. msgid "ftpfs: sending login name"
  3078. msgstr "ftpfs: enviando nome de usuario"
  3079. msgid "ftpfs: sending user password"
  3080. msgstr "ftpfs: enviando contrasinal de usuario"
  3081. #, c-format
  3082. msgid "FTP: Account required for user %s"
  3083. msgstr "FTP: requírese conta para o usuario %s"
  3084. msgid "Account:"
  3085. msgstr "Conta:"
  3086. msgid "ftpfs: sending user account"
  3087. msgstr "ftpfs: enviando conta de usuario"
  3088. msgid "ftpfs: logged in"
  3089. msgstr "ftpfs: autorizados"
  3090. #, c-format
  3091. msgid "ftpfs: Login incorrect for user %s "
  3092. msgstr "ftpfs: denegada autorización ao usuario %s "
  3093. msgid "ftpfs: Invalid host name."
  3094. msgstr "ftpfs: nome de máquina incorrecto."
  3095. #, c-format
  3096. msgid "ftpfs: %s"
  3097. msgstr "ftpfs: %s"
  3098. #, c-format
  3099. msgid "ftpfs: making connection to %s"
  3100. msgstr "ftpfs: estabelecendo conexión con %s"
  3101. msgid "ftpfs: connection interrupted by user"
  3102. msgstr "ftpfs: conexión interrompida polo usuario"
  3103. #, c-format
  3104. msgid "ftpfs: connection to server failed: %s"
  3105. msgstr "ftpfs: fracasou a conexión ao servidor: %s"
  3106. #, c-format
  3107. msgid "Waiting to retry... %d (Control-G to cancel)"
  3108. msgstr "Agardando antes de volver tentar... %d (Ctrl-G para cancelar)"
  3109. msgid "ftpfs: invalid address family"
  3110. msgstr "ftpfs: familia de enderezos incorrecta"
  3111. #, c-format
  3112. msgid "ftpfs: could not create socket: %s"
  3113. msgstr "ftpfs: non é posíbel crear socket: %s"
  3114. msgid "ftpfs: could not setup passive mode"
  3115. msgstr "ftpfs: non é posíbel aplicar o «modo pasivo»"
  3116. msgid "ftpfs: aborting transfer."
  3117. msgstr "ftpfs: interrompendo a transferencia."
  3118. #, c-format
  3119. msgid "ftpfs: abort error: %s"
  3120. msgstr "ftpfs: produciuse un erro ao interromper: %s"
  3121. msgid "ftpfs: abort failed"
  3122. msgstr "ftpfs: fracasou a interrupción"
  3123. msgid "ftpfs: CWD failed."
  3124. msgstr "ftpfs: produciuse un fallo ao executar CWD"
  3125. msgid "ftpfs: couldn't resolve symlink"
  3126. msgstr "ftpfs: non é posíbel realizar a ligazón simbólica"
  3127. msgid "Resolving symlink..."
  3128. msgstr "Realizando a ligazón simbólica..."
  3129. #, c-format
  3130. msgid "ftpfs: Reading FTP directory %s... %s%s"
  3131. msgstr "ftpfs: lendo vía FTP o directorio %s... %s%s"
  3132. msgid "(strict rfc959)"
  3133. msgstr "(rfc959 estrito)"
  3134. msgid "(chdir first)"
  3135. msgstr "(primeiro chdir)"
  3136. msgid "ftpfs: failed; nowhere to fallback to"
  3137. msgstr "ftpfs: produciuse un fallo; non hai onde repregarse"
  3138. msgid "ftpfs: storing file"
  3139. msgstr "ftpfs: gardando ficheiro"
  3140. msgid ""
  3141. "~/.netrc file has incorrect mode\n"
  3142. "Remove password or correct mode"
  3143. msgstr ""
  3144. "Os permisos de ~/.netrc non son os apropiados.\n"
  3145. "Elimine o contrasinal ou cambie os permisos."
  3146. #, fuzzy, c-format
  3147. msgid ""
  3148. "SFS virtual file system:\n"
  3149. "%s"
  3150. msgstr "(VFS) Sistema de ficheiros virtual:"
  3151. #, c-format
  3152. msgid "%s: Warning: file %s not found\n"
  3153. msgstr "%s: Aviso: non é posíbel atopar o ficheiro %s\n"
  3154. #, c-format
  3155. msgid ""
  3156. "Warning: Invalid line in %s:\n"
  3157. "%s\n"
  3158. msgstr ""
  3159. "Atención: liña incorrecta en %s:\n"
  3160. "%s\n"
  3161. #, c-format
  3162. msgid ""
  3163. "Warning: Invalid flag %c in %s:\n"
  3164. "%s\n"
  3165. msgstr ""
  3166. "Atención: marca %c incorrecta en %s:\n"
  3167. "%s\n"
  3168. #, c-format
  3169. msgid "sftp: an error occurred while reading %s: %s"
  3170. msgstr "sftp: produciuse un erro ao ler %s: %s"
  3171. msgid "sftp: Unable to get current user name."
  3172. msgstr "sftp: Non é posíbel obter o nome do usuario actual."
  3173. msgid "sftp: Invalid host name."
  3174. msgstr "sftp: nome de máquina incorrecto."
  3175. #, c-format
  3176. msgid "sftp: %s"
  3177. msgstr "sftp: %s"
  3178. #, c-format
  3179. msgid "sftp: making connection to %s"
  3180. msgstr "sftp: estabelecendo conexión con %s"
  3181. msgid "sftp: connection interrupted by user"
  3182. msgstr "sftp: conexión interrompida polo usuario"
  3183. #, c-format
  3184. msgid "sftp: connection to server failed: %s"
  3185. msgstr "sftp: fracasou a conexión ao servidor: %s"
  3186. #, c-format
  3187. msgid "sftp: Enter passphrase for %s "
  3188. msgstr "sftp: introduza a frase de paso para %s "
  3189. msgid "sftp: Passphrase is empty."
  3190. msgstr "sftp: a frase de paso está baleira"
  3191. #, c-format
  3192. msgid "sftp: Enter password for %s "
  3193. msgstr "sftp: introduza o contrasinal para %s "
  3194. msgid "sftp: Password is empty."
  3195. msgstr "sftp: o contrasinal está baleiro."
  3196. msgid "sftp: Failure establishing SSH session"
  3197. msgstr "sftp: produciuse un fallo ao estabelecer a sesión SSH"
  3198. msgid "sftp: No file handler data present for reading file"
  3199. msgstr "sftp: Sen datos del descritor do ficheiro para lelo."
  3200. #, c-format
  3201. msgid "sftp: socket error: %s"
  3202. msgstr "sftp: produciuse un erro de conectadoir: %s"
  3203. #, c-format
  3204. msgid "sftp: (Ctrl-G break) Listing... %s"
  3205. msgstr "sftp: (Ctrl-G interrompe) Listado... %s"
  3206. msgid "sftp: Listing done."
  3207. msgstr "sftp: Feito o listado."
  3208. #, c-format
  3209. msgid "reconnect to %s failed"
  3210. msgstr "Produciuse un fallo na reconexión con %s"
  3211. msgid "Authentication failed"
  3212. msgstr "Produciuse un fallo de autenticación"
  3213. #, c-format
  3214. msgid "Error %s creating directory %s"
  3215. msgstr "Produciuse un erro %s creando o directorio %s"
  3216. #, c-format
  3217. msgid "Error %s removing directory %s"
  3218. msgstr "Produciuse un erro %s eliminando o directorio %s"
  3219. #, c-format
  3220. msgid "%s opening remote file %s"
  3221. msgstr "%s abrindo ficheiro remoto %s"
  3222. #, c-format
  3223. msgid "%s removing remote file %s"
  3224. msgstr "%s eliminando ficheiro remoto %s"
  3225. #, c-format
  3226. msgid "%s renaming files\n"
  3227. msgstr "%s renomeando ficheiros\n"
  3228. #, c-format
  3229. msgid ""
  3230. "Cannot open tar archive\n"
  3231. "%s"
  3232. msgstr ""
  3233. "Non é posíbel abrir arquivos de tipo tar\n"
  3234. "%s"
  3235. msgid "Inconsistent tar archive"
  3236. msgstr "Arquivo de tipo tar inconsistente"
  3237. msgid "Unexpected EOF on archive file"
  3238. msgstr "Fin de ficheiro (EOF) inesperado"
  3239. #, c-format
  3240. msgid ""
  3241. "%s\n"
  3242. "doesn't look like a tar archive."
  3243. msgstr ""
  3244. "%s\n"
  3245. "non parece un arquivo de tipo tar."
  3246. msgid "undelfs: error"
  3247. msgstr "undelfs: erro"
  3248. msgid "not enough memory"
  3249. msgstr "non hai memoria abondo"
  3250. msgid "while allocating block buffer"
  3251. msgstr "ao reservar búfer de bloque"
  3252. #, c-format
  3253. msgid "open_inode_scan: %d"
  3254. msgstr "open_inode_scan: %d"
  3255. #, c-format
  3256. msgid "while starting inode scan %d"
  3257. msgstr "ao iniciar rastrexo de nodo-i %d"
  3258. #, c-format
  3259. msgid "undelfs: loading deleted files information %d inodes"
  3260. msgstr "undelfs: cargando información de ficheiros eliminados %d nodos-i"
  3261. #, c-format
  3262. msgid "while calling ext2_block_iterate %d"
  3263. msgstr "ao chamar a ext2_block_iterate %d"
  3264. msgid "no more memory while reallocating array"
  3265. msgstr "esgotouse toda a memoria mentres se recolocaba a matriz"
  3266. #, c-format
  3267. msgid "while doing inode scan %d"
  3268. msgstr "mentres se executaba o rastrexo de nodos-i %d"
  3269. #, c-format
  3270. msgid "Cannot open file %s"
  3271. msgstr "Non é posíbel abrir o ficheiro %s"
  3272. msgid "undelfs: reading inode bitmap..."
  3273. msgstr "undelfs: lendo mapa de nodos-i..."
  3274. #, c-format
  3275. msgid ""
  3276. "Cannot load inode bitmap from:\n"
  3277. "%s"
  3278. msgstr ""
  3279. "Non é posíbel cargar o mapa de nodo-i de: \n"
  3280. "%s"
  3281. msgid "undelfs: reading block bitmap..."
  3282. msgstr "undelfs: lendo mapa de bloques..."
  3283. #, c-format
  3284. msgid ""
  3285. "Cannot load block bitmap from:\n"
  3286. "%s"
  3287. msgstr ""
  3288. "Non é posíbel cargar mapa de bloques de: \n"
  3289. "%s"
  3290. msgid "vfs_info is not fs!"
  3291. msgstr "vfs_info non é fs!"
  3292. msgid "You have to chdir to extract files first"
  3293. msgstr "Ten que ir ao directorio antes de extraer ficheiros"
  3294. msgid "while iterating over blocks"
  3295. msgstr "ao repetir entre bloques"
  3296. #, c-format
  3297. msgid "Cannot open file \"%s\""
  3298. msgstr "Non é posíbel abrir o ficheiro «%s»"
  3299. msgid "Ext2lib error"
  3300. msgstr "Produciuse un erro de ext2lib"
  3301. msgid "Invalid value"
  3302. msgstr "Valor incorrecto"
  3303. msgid "File was modified. Save with exit?"
  3304. msgstr "O ficheiro foi modificado. Desexa gardalo ao saír?"
  3305. msgid "&Cancel quit"
  3306. msgstr "&Cancelar saída"
  3307. msgid ""
  3308. "Midnight Commander is being shut down.\n"
  3309. "Save modified file?"
  3310. msgstr ""
  3311. "Saíndo de Midnight Commander.\n"
  3312. "Gardar o ficheiro modificado?"
  3313. msgid "&Line number"
  3314. msgstr "Número de &Liña"
  3315. msgid "Pe&rcents"
  3316. msgstr "Pe&Rcentiles"
  3317. msgid "&Decimal offset"
  3318. msgstr "Desprazamento &Decimal"
  3319. msgid "He&xadecimal offset"
  3320. msgstr "Desprazamento he&Xadecimal"
  3321. msgid "Goto"
  3322. msgstr "Ir a"
  3323. msgid "ButtonBar|Ascii"
  3324. msgstr "ButtonBar|ASCII"
  3325. msgid "ButtonBar|HxSrch"
  3326. msgstr "ButtonBar|BuscaHexa"
  3327. msgid "ButtonBar|UnWrap"
  3328. msgstr "ButtonBar|Despregar"
  3329. msgid "ButtonBar|Wrap"
  3330. msgstr "ButtonBar|Pregar"
  3331. msgid "ButtonBar|Hex"
  3332. msgstr "ButtonBar|Hexa"
  3333. msgid "ButtonBar|Goto"
  3334. msgstr "ButtonBar|Ir a"
  3335. msgid "ButtonBar|Raw"
  3336. msgstr "ButtonBar|Bruto"
  3337. msgid "ButtonBar|Parse"
  3338. msgstr "ButtonBar|Analizar"
  3339. msgid "ButtonBar|Unform"
  3340. msgstr "ButtonBar|SenFormato"
  3341. msgid "ButtonBar|Format"
  3342. msgstr "ButtonBar|Formato"
  3343. #, c-format
  3344. msgid ""
  3345. "Failed to read data from child stdout:\n"
  3346. "%s"
  3347. msgstr ""
  3348. "Produciuse un erro ao ler os datos da saída estándar filla:\n"
  3349. "%s"
  3350. #, c-format
  3351. msgid ""
  3352. "Error while closing the file:\n"
  3353. "%s\n"
  3354. "Data may have been written or not"
  3355. msgstr ""
  3356. "Produciuse un erro ao pechar o ficheiro:\n"
  3357. "%s\n"
  3358. "É probábel que os datos non se escribiran"
  3359. #, c-format
  3360. msgid ""
  3361. "Cannot save file:\n"
  3362. "%s"
  3363. msgstr ""
  3364. "Non é posíbel gardar o ficheiro:\n"
  3365. "%s"
  3366. msgid "View: "
  3367. msgstr "Vista: "
  3368. #, c-format
  3369. msgid ""
  3370. "Cannot open \"%s\"\n"
  3371. "%s"
  3372. msgstr ""
  3373. "Non é posíbel abrir «%s»\n"
  3374. "%s"
  3375. msgid "Cannot view: not a regular file"
  3376. msgstr "Non é posíbel ver: non é un ficheiro regular"
  3377. #, c-format
  3378. msgid ""
  3379. "Cannot open \"%s\" in parse mode\n"
  3380. "%s"
  3381. msgstr ""
  3382. "Non é posíbel abrir «%s» en modo de análise\n"
  3383. "%s"
  3384. msgid "Search done"
  3385. msgstr "Busca rematada"
  3386. msgid "Continue from beginning?"
  3387. msgstr "Continuar desde o principio?"
  3388. msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
  3389. msgstr "Non é posíbel obter unha copia local de /ftp://some.host/editme.txt"
  3390. #, c-format
  3391. #~ msgid "An error occurred while migrating user settings: %s"
  3392. #~ msgstr "Produciuse un erro ao migrar a configuración do usuario: %s"
  3393. #, c-format
  3394. #~ msgid ""
  3395. #~ "Your old settings were migrated from %s\n"
  3396. #~ "to Freedesktop recommended dirs.\n"
  3397. #~ "To get more info, please visit\n"
  3398. #~ "http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  3399. #~ msgstr ""
  3400. #~ "A configuración antiga foi trasladada de %s\n"
  3401. #~ "cara os directorios recomendados por Freedesktop.\n"
  3402. #~ "Para obter máis detalles consulte\n"
  3403. #~ "http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  3404. #, c-format
  3405. #~ msgid ""
  3406. #~ "Your old settings were migrated from %s\n"
  3407. #~ "to %s\n"
  3408. #~ msgstr ""
  3409. #~ "A configuración previa foi trasladada de %s\n"
  3410. #~ "a %s\n"
  3411. #~ msgid "Dup failed"
  3412. #~ msgstr "Fallou na duplicación"
  3413. #~ msgid "Error dup'ing old error pipe"
  3414. #~ msgstr "Produciuse un erro duplicando antigo erro de canalización"
  3415. #~ msgid "Cannot invoke command."
  3416. #~ msgstr "Non é posíbel invocar a orde."
  3417. #~ msgid "Pipe close failed"
  3418. #~ msgstr "Produciuse un fallo ao pechar a canalización"
  3419. #~ msgid "Inconsistent extfs archive"
  3420. #~ msgstr "Arquivo extfs inconsistente"