es.po 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the PACKAGE package.
  4. #
  5. # Translators:
  6. # David Martin <david.martin@telefonica.net>, 2011.
  7. # David Martín <david.martin@telefonica.net>, 2011, 2012.
  8. # David Martín <dmartina@excite.com>, 2011.
  9. # Ismael Olea <olea@hispafuentes.com>, 2000.
  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/report\n"
  15. "POT-Creation-Date: 2012-07-12 22:14+0400\n"
  16. "PO-Revision-Date: 2012-07-13 08:36+0000\n"
  17. "Last-Translator: David Martin <david.martin@telefonica.net>\n"
  18. "Language-Team: Spanish (Castilian) (http://www.transifex.com/projects/p/mc/language/es/)\n"
  19. "MIME-Version: 1.0\n"
  20. "Content-Type: text/plain; charset=UTF-8\n"
  21. "Content-Transfer-Encoding: 8bit\n"
  22. "Language: es\n"
  23. "Plural-Forms: nplurals=2; plural=(n != 1)\n"
  24. msgid "Warning: cannot load codepages list"
  25. msgstr "Atención: imposible cargar lista de codificaciones"
  26. msgid "7-bit ASCII"
  27. msgstr "ASCII (7 bit)"
  28. #, c-format
  29. msgid "Cannot translate from %s to %s"
  30. msgstr "Imposible convertir de %s a %s"
  31. msgid "Event system already initialized"
  32. msgstr "La gestión de eventos ya estaba inicializada"
  33. msgid "Failed to initialize event system"
  34. msgstr "Fallo al inicializar la gestión de eventos"
  35. msgid "Event system not initialized"
  36. msgstr "La gestión de eventos no está inicializada"
  37. msgid "Check input data! Some of parameters are NULL!"
  38. msgstr "¡Verifique los datos de entrada! ¡Hay parámetros nulos!"
  39. #, c-format
  40. msgid "Unable to create group '%s' for events!"
  41. msgstr "Imposible crear el grupo de eventos «%s»"
  42. #, c-format
  43. msgid "Unable to create event '%s'!"
  44. msgstr "¡Imposible crear el evento «%s»!"
  45. #, c-format
  46. msgid ""
  47. "File \"%s\" is already being edited.\n"
  48. "User: %s\n"
  49. "Process ID: %d"
  50. msgstr "El archivo «%s» está ya siendo editado.\nUsuario: %s\nId. Proceso: %d"
  51. msgid "File locked"
  52. msgstr "Archivo bloqueado"
  53. msgid "&Grab lock"
  54. msgstr "tomar &Bloqueo"
  55. msgid "&Ignore lock"
  56. msgstr "&Ignorar bloqueo"
  57. #, c-format
  58. msgid "Cannot create %s directory"
  59. msgstr "Imposible crear directorio %s"
  60. msgid "FATAL: not a directory:"
  61. msgstr "¡FATAL! No es directorio:"
  62. #, c-format
  63. msgid "An error occured while migrating user settings: %s"
  64. msgstr "Error en la migración de la configuración personal: %s"
  65. #, c-format
  66. msgid ""
  67. "Your old settings were migrated from %s\n"
  68. "to Freedesktop recommended dirs.\n"
  69. "To get more info, please visit\n"
  70. "http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  71. msgstr "La configuración previa ha sido trasladada de %s\na los directorios recomendados por Freedesktop.\nPara más detalles consulte\nhttp://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  72. #, c-format
  73. msgid ""
  74. "Your old settings were migrated from %s\n"
  75. "to %s\n"
  76. msgstr "La configuración previa ha sido trasladada de %s\na %s\n"
  77. msgid "Search string not found"
  78. msgstr "La cadena buscada no ha sido encontrada"
  79. msgid "Not implemented yet"
  80. msgstr "No implementado todavía"
  81. msgid "Num of replace tokens not equal to num of found tokens"
  82. msgstr "Número de elementos de reemplazo no coincide"
  83. #, c-format
  84. msgid "Invalid token number %d"
  85. msgstr "El elemento número %d no es válido"
  86. msgid "Regular expression error"
  87. msgstr "Error en expresión regular"
  88. msgid "No&rmal"
  89. msgstr ""
  90. msgid "Re&gular expression"
  91. msgstr "e&Xpresión regular"
  92. msgid "He&xadecimal"
  93. msgstr "he&Xadecimal"
  94. msgid "Wil&dcard search"
  95. msgstr "caracteres como&Dín"
  96. #, c-format
  97. msgid ""
  98. "Unable to load '%s' skin.\n"
  99. "Default skin has been loaded"
  100. msgstr "Imposible cargar skin «%s».\nSe ha cargado skin por defecto."
  101. #, c-format
  102. msgid ""
  103. "Unable to parse '%s' skin.\n"
  104. "Default skin has been loaded"
  105. msgstr "Imposible procesar skin «%s».\nSe ha cargado skin por defecto."
  106. #, c-format
  107. msgid ""
  108. "Unable to use '%s' skin with 256 colors support\n"
  109. "on non-256 colors terminal.\n"
  110. "Default skin has been loaded"
  111. msgstr "Imposible usar skin «%s» con soporte de 256 colores\nen terminales sin esta característica.\nSe ha cargado skin por defecto."
  112. msgid "Function key 1"
  113. msgstr "Tecla F1"
  114. msgid "Function key 2"
  115. msgstr "Tecla F2"
  116. msgid "Function key 3"
  117. msgstr "Tecla F3"
  118. msgid "Function key 4"
  119. msgstr "Tecla F4"
  120. msgid "Function key 5"
  121. msgstr "Tecla F5"
  122. msgid "Function key 6"
  123. msgstr "Tecla F6"
  124. msgid "Function key 7"
  125. msgstr "Tecla F7"
  126. msgid "Function key 8"
  127. msgstr "Tecla F8"
  128. msgid "Function key 9"
  129. msgstr "Tecla F9"
  130. msgid "Function key 10"
  131. msgstr "Tecla F10"
  132. msgid "Function key 11"
  133. msgstr "Tecla F11"
  134. msgid "Function key 12"
  135. msgstr "Tecla F12"
  136. msgid "Function key 13"
  137. msgstr "Tecla F13"
  138. msgid "Function key 14"
  139. msgstr "Tecla F14"
  140. msgid "Function key 15"
  141. msgstr "Tecla F15"
  142. msgid "Function key 16"
  143. msgstr "Tecla F16"
  144. msgid "Function key 17"
  145. msgstr "Tecla F17"
  146. msgid "Function key 18"
  147. msgstr "Tecla F18"
  148. msgid "Function key 19"
  149. msgstr "Tecla F19"
  150. msgid "Function key 20"
  151. msgstr "Tecla F20"
  152. msgid "Backspace key"
  153. msgstr "Tecla Borrar"
  154. msgid "End key"
  155. msgstr "Tecla Fin"
  156. msgid "Up arrow key"
  157. msgstr "Flecha arriba"
  158. msgid "Down arrow key"
  159. msgstr "Flecha abajo"
  160. msgid "Left arrow key"
  161. msgstr "Flecha izquierda"
  162. msgid "Right arrow key"
  163. msgstr "Flecha derecha"
  164. msgid "Home key"
  165. msgstr "Tecla Inicio"
  166. msgid "Page Down key"
  167. msgstr "Avanzar Página"
  168. msgid "Page Up key"
  169. msgstr "Retrasar Página"
  170. msgid "Insert key"
  171. msgstr "Tecla Insertar"
  172. msgid "Delete key"
  173. msgstr "Tecla Eliminar"
  174. msgid "Completion/M-tab"
  175. msgstr "Completar/Alt-Tab"
  176. msgid "Back Tabulation S-tab"
  177. msgstr "Tab atrás/Mayús-Tab"
  178. msgid "+ on keypad"
  179. msgstr "+ en el pad"
  180. msgid "- on keypad"
  181. msgstr "- en el pad"
  182. msgid "Slash on keypad"
  183. msgstr "Diagonal, pad"
  184. msgid "* on keypad"
  185. msgstr "* en el pad"
  186. msgid "Escape key"
  187. msgstr "Tecla Escape"
  188. msgid "Left arrow keypad"
  189. msgstr "Flecha izquierda, pad"
  190. msgid "Right arrow keypad"
  191. msgstr "Flecha derecha, pad"
  192. msgid "Up arrow keypad"
  193. msgstr "Flecha arriba, pad"
  194. msgid "Down arrow keypad"
  195. msgstr "Flecha abajo, pad"
  196. msgid "Home on keypad"
  197. msgstr "Inicio, pad"
  198. msgid "End on keypad"
  199. msgstr "Fin, pad"
  200. msgid "Page Down keypad"
  201. msgstr "Página abajo, pad"
  202. msgid "Page Up keypad"
  203. msgstr "Página arriba, pad"
  204. msgid "Insert on keypad"
  205. msgstr "Ins, pad"
  206. msgid "Delete on keypad"
  207. msgstr "Eliminar, pad"
  208. msgid "Enter on keypad"
  209. msgstr "Intro, pad"
  210. msgid "Function key 21"
  211. msgstr "Tecla F21"
  212. msgid "Function key 22"
  213. msgstr "Tecla F22"
  214. msgid "Function key 23"
  215. msgstr "Tecla F23"
  216. msgid "Function key 24"
  217. msgstr "Tecla F24"
  218. msgid "A1 key"
  219. msgstr "Tecla A1"
  220. msgid "C1 key"
  221. msgstr "Tecla C1"
  222. msgid "Plus"
  223. msgstr "Suma"
  224. msgid "Minus"
  225. msgstr "Resta"
  226. msgid "Asterisk"
  227. msgstr "Asterisco"
  228. msgid "Dot"
  229. msgstr "Punto"
  230. msgid "Less than"
  231. msgstr "Menor que"
  232. msgid "Great than"
  233. msgstr "Mayor que"
  234. msgid "Equal"
  235. msgstr "Igual"
  236. msgid "Comma"
  237. msgstr "Coma"
  238. msgid "Apostrophe"
  239. msgstr "Apóstrofo"
  240. msgid "Colon"
  241. msgstr "Dos puntos"
  242. msgid "Exclamation mark"
  243. msgstr "Exclamación"
  244. msgid "Question mark"
  245. msgstr "Interrogación"
  246. msgid "Ampersand"
  247. msgstr "Ampersand"
  248. msgid "Dollar sign"
  249. msgstr "Dólar"
  250. msgid "Quotation mark"
  251. msgstr "Comillas"
  252. msgid "Percent sign"
  253. msgstr "Porcentaje"
  254. msgid "Caret"
  255. msgstr "Ángulo"
  256. msgid "Tilda"
  257. msgstr "Tilde"
  258. msgid "Prime"
  259. msgstr "Prima"
  260. msgid "Underline"
  261. msgstr "Subrayado"
  262. msgid "Understrike"
  263. msgstr "Guión bajo"
  264. msgid "Pipe"
  265. msgstr "Tubería"
  266. msgid "Left parenthesis"
  267. msgstr "Paréntesis izquierdo"
  268. msgid "Right parenthesis"
  269. msgstr "Paréntesis derecho"
  270. msgid "Left bracket"
  271. msgstr "Corchete izquierdo"
  272. msgid "Right bracket"
  273. msgstr "Corchete derecho"
  274. msgid "Left brace"
  275. msgstr "Llave izquierda"
  276. msgid "Right brace"
  277. msgstr "Llave derecha"
  278. msgid "Enter"
  279. msgstr "Intro"
  280. msgid "Tab key"
  281. msgstr "Tab"
  282. msgid "Space key"
  283. msgstr "Espacio"
  284. msgid "Slash key"
  285. msgstr "Barra diagonal"
  286. msgid "Backslash key"
  287. msgstr "Contrabarra"
  288. msgid "Number sign #"
  289. msgstr "Sostenido"
  290. #. TRANSLATORS: Please translate as in "at sign" (@).
  291. msgid "At sign"
  292. msgstr "Arroba"
  293. msgid "Ctrl"
  294. msgstr "Ctrl"
  295. msgid "Alt"
  296. msgstr "Alt"
  297. msgid "Shift"
  298. msgstr "Mayús"
  299. msgid "The TERM environment variable is unset!\n"
  300. msgstr "¡La variable de entorno TERM está sin definir!\n"
  301. #, c-format
  302. msgid ""
  303. "Screen size %dx%d is not supported.\n"
  304. "Check the TERM environment variable.\n"
  305. msgstr "El tamaño de ventana %dx%d no está soportado.\nVerifique el valor de la variable de entorno TERM.\n"
  306. msgid "Warning"
  307. msgstr "¡ Atención !"
  308. msgid "Pipe failed"
  309. msgstr "Fallo en la tubería"
  310. msgid "Dup failed"
  311. msgstr "Dup falló"
  312. msgid "Error dup'ing old error pipe"
  313. msgstr "Error duplicando tubería de error"
  314. #, c-format
  315. msgid "Directory cache expired for %s"
  316. msgstr "El cache para %s ha expirado"
  317. msgid "bytes transferred"
  318. msgstr "bytes transferidos"
  319. msgid "Starting linear transfer..."
  320. msgstr "Iniciando transferencia en línea..."
  321. msgid "Getting file"
  322. msgstr "Trayendo archivo"
  323. msgid "Changes to file lost"
  324. msgstr "Los cambios del archivo se han perdido"
  325. #, c-format
  326. msgid "%s is not a directory\n"
  327. msgstr "%s no es un directorio\n"
  328. #, c-format
  329. msgid "Directory %s is not owned by you\n"
  330. msgstr "El directorio %s es de propiedad ajena\n"
  331. #, c-format
  332. msgid "Cannot set correct permissions for directory %s\n"
  333. msgstr "Imposible dar permisos adecuados al directorio %s\n"
  334. #, c-format
  335. msgid "Cannot create temporary directory %s: %s\n"
  336. msgstr "Imposible crear directorio temporal %s: %s\n"
  337. #, c-format
  338. msgid "Temporary files will be created in %s\n"
  339. msgstr "Los archivos temporales se ubicarán en %s\n"
  340. #, c-format
  341. msgid "Temporary files will not be created\n"
  342. msgstr "No se crearán archivos temporales\n"
  343. #, c-format
  344. msgid "Press any key to continue..."
  345. msgstr "Presione cualquier tecla para continuar..."
  346. msgid "Cannot parse:"
  347. msgstr "Imposible analizar:"
  348. msgid "More parsing errors will be ignored."
  349. msgstr "El resto de errores de análisis serán ignorados."
  350. msgid "Internal error:"
  351. msgstr "Error interno:"
  352. msgid "Password:"
  353. msgstr "Contraseña:"
  354. msgid "Screens"
  355. msgstr "Pantallas"
  356. msgid "History"
  357. msgstr "Historia"
  358. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  359. msgid "DialogTitle|History cleanup"
  360. msgstr "Borrar historia"
  361. msgid "Do you want clean this history?"
  362. msgstr "¿Desea borrar esta historia?"
  363. msgid "&Yes"
  364. msgstr "&Sí"
  365. msgid "&No"
  366. msgstr "&No"
  367. msgid "Background process:"
  368. msgstr "Procesos en 2º plano"
  369. msgid "&Cancel"
  370. msgstr "&Cancelar"
  371. msgid "&OK"
  372. msgstr "&Aceptar"
  373. msgid "Error"
  374. msgstr "Error"
  375. msgid "Displays the current version"
  376. msgstr "Mostrar el número de versión"
  377. msgid "Print data directory"
  378. msgstr "Mostrar directorio de datos"
  379. msgid "Print extended info about used data directories"
  380. msgstr "Mostrar información adicional sobre directorios usados"
  381. msgid "Print configure options"
  382. msgstr "Mostrar opciones de configuración"
  383. msgid "Print last working directory to specified file"
  384. msgstr "Guardar el nombre del directorio en un archivo"
  385. msgid "Enables subshell support (default)"
  386. msgstr "Activar uso de subshell (por defecto)"
  387. msgid "Disables subshell support"
  388. msgstr "Desactivar el uso de subshell"
  389. msgid "Log ftp dialog to specified file"
  390. msgstr "Registrar diálogos ftp en un archivo"
  391. msgid "Set debug level"
  392. msgstr "Fijar el nivel de depuración"
  393. msgid "Launches the file viewer on a file"
  394. msgstr "Abrir un archivo con el visor"
  395. msgid "Edit files"
  396. msgstr ""
  397. msgid "Forces xterm features"
  398. msgstr "Utilizar las posibilidades de xterm"
  399. msgid "Disable X11 support"
  400. msgstr "Desactivar el soporte de X11"
  401. msgid "Tries to use an old highlight mouse tracking"
  402. msgstr "Usar rastro de ratón con el antiguo resaltado"
  403. msgid "Disable mouse support in text version"
  404. msgstr "Desactivar ratón en la versión texto"
  405. msgid "Tries to use termcap instead of terminfo"
  406. msgstr "Intentar utilizar termcap en vez de terminfo"
  407. msgid "To run on slow terminals"
  408. msgstr "Para ejecutar en terminales lentos"
  409. msgid "Use stickchars to draw"
  410. msgstr "Usar caracteres simples para recuadros"
  411. msgid "Resets soft keys on HP terminals"
  412. msgstr "Restablecer teclas en terminales HP"
  413. msgid "Load definitions of key bindings from specified file"
  414. msgstr "Cargar asociaciones de teclas desde el archivo indicado"
  415. msgid "Don't load definitions of key bindings from file, use defaults"
  416. msgstr "No cargar asociaciones de teclas, emplear las predeterminadas"
  417. msgid "Requests to run in black and white"
  418. msgstr "Solicitar ejecución en blanco y negro"
  419. msgid "Request to run in color mode"
  420. msgstr "Solicitar la ejecución en color"
  421. msgid "Specifies a color configuration"
  422. msgstr "Indicar una configuración de colores"
  423. msgid "Show mc with specified skin"
  424. msgstr "Mostrar mc con la careta (skin) indicada"
  425. #. TRANSLATORS: don't translate keywords
  426. msgid ""
  427. "--colors KEYWORD={FORE},{BACK},{ATTR}:KEYWORD2=...\n"
  428. "\n"
  429. "{FORE}, {BACK} and {ATTR} can be omitted, and the default will be used\n"
  430. "\n"
  431. " Keywords:\n"
  432. " Global: errors, disabled, reverse, gauge, header\n"
  433. " input, inputmark, inputunchanged, commandlinemark\n"
  434. " bbarhotkey, bbarbutton, statusbar\n"
  435. " File display: normal, selected, marked, markselect\n"
  436. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  437. " errdhotfocus\n"
  438. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  439. " Popup menus: pmenunormal, pmenusel, pmenutitle\n"
  440. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  441. " editlinestate, editbg, editframe, editframeactive\n"
  442. " editframedrag\n"
  443. " Viewer: viewbold, viewunderline, viewselected\n"
  444. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  445. msgstr ""
  446. #. TRANSLATORS: don't translate color names and attributes
  447. msgid ""
  448. "Standard Colors:\n"
  449. " black, gray, red, brightred, green, brightgreen, brown,\n"
  450. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  451. " brightcyan, lightgray and white\n"
  452. "\n"
  453. "Extended colors, when 256 colors are available:\n"
  454. " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
  455. "\n"
  456. "Attributes:\n"
  457. " bold, underline, reverse, blink; append more with '+'\n"
  458. msgstr "Colores estándar:\n black, gray, red, brightred, green, brightgreen, brown,\n yellow, blue, brightblue, magenta, brightmagenta, cyan,\n brightcyan, lightgray and white\n\nColores extendidos, cuando estén disponibles 256 colores:\n color16 a color255, o rgb000 a rgb555 y gray0 a gray23\n\nAtributos:\n bold, underline, reverse, blink; añadir más empleando '+'\n"
  459. msgid "Color options"
  460. msgstr "Opciones de color"
  461. msgid "+number"
  462. msgstr "+número"
  463. msgid "[this_dir] [other_panel_dir]"
  464. msgstr "[DIRECTORIO] [SEGUNDO_DIRECTORIO]"
  465. msgid "Set initial line number for the internal editor"
  466. msgstr "Línea de comienzo al abrir archivo con editor interno"
  467. msgid ""
  468. "\n"
  469. "Please send any bug reports (including the output of `mc -V')\n"
  470. "as tickets at www.midnight-commander.org\n"
  471. msgstr "\nSi detecta algún fallo puede comunicarlo en www.midnight-commander.org\nincluyendo la descripción obtenida con `mc -V'.\n"
  472. #, c-format
  473. msgid "GNU Midnight Commander %s\n"
  474. msgstr "GNU Midnight Commander %s\n"
  475. msgid "Main options"
  476. msgstr "Opciones principales"
  477. msgid "Terminal options"
  478. msgstr "Opciones de terminal"
  479. msgid "Arguments parse error!"
  480. msgstr "¡Error al analizar los argumentos!"
  481. msgid "No arguments given to the viewer."
  482. msgstr "No se han pasado argumentos al visor."
  483. msgid "Two files are required to evoke the diffviewer."
  484. msgstr "Se necesitan dos archivos para comparar."
  485. msgid "Background process error"
  486. msgstr "Error en un proceso en 2º plano"
  487. msgid "Unknown error in child"
  488. msgstr "Error desconocido en el proceso hijo"
  489. msgid "Child died unexpectedly"
  490. msgstr "El proceso hijo feneció inesperadamente"
  491. msgid "Background protocol error"
  492. msgstr "Error de protocolo en proceso en 2º plano"
  493. msgid "Reading failed"
  494. msgstr "Error en la lectura"
  495. msgid ""
  496. "Background process sent us a request for more arguments\n"
  497. "than we can handle."
  498. msgstr "El proceso en 2º plano nos envió una petición de más argumentos\nque los que estamos preparados para manejar."
  499. msgid "&Dismiss"
  500. msgstr "&Ignorar"
  501. msgid "&All charsets"
  502. msgstr "cualquier co&Dificación"
  503. msgid "&Whole words"
  504. msgstr "&Palabras completas"
  505. msgid "&Backwards"
  506. msgstr "&Hacia atrás"
  507. msgid "Cas&e sensitive"
  508. msgstr "distinguir &May/min"
  509. msgid "Enter search string:"
  510. msgstr "Teclee el texto a buscar:"
  511. msgid "Search"
  512. msgstr "Buscar"
  513. msgid "Search is disabled"
  514. msgstr "Busquedas deshabilitadas"
  515. #, c-format
  516. msgid ""
  517. "Cannot create temporary diff file\n"
  518. "%s"
  519. msgstr "Imposible crear archivo temporal de diferencias\n%s"
  520. #, c-format
  521. msgid ""
  522. "Cannot create backup file\n"
  523. "%s%s\n"
  524. "%s"
  525. msgstr "Imposible crear archivo de copia\n%s%s\n%s"
  526. #, c-format
  527. msgid ""
  528. "Cannot create temporary merge file\n"
  529. "%s"
  530. msgstr "Imposible crear archivo temporal de mezcla\n%s"
  531. msgid "&Fastest (Assume large files)"
  532. msgstr "&Rápido (archivos grandes)"
  533. msgid "&Minimal (Find a smaller set of change)"
  534. msgstr "mí&Nimo (buscar mínimo de cambios)"
  535. msgid "Strip &trailing carriage return"
  536. msgstr "descartar salto de línea &Final"
  537. msgid "Ignore all &whitespace"
  538. msgstr "ignorar es&Paciado"
  539. msgid "Ignore &space change"
  540. msgstr "ignorar cambios en e&Spacios"
  541. msgid "Ignore tab &expansion"
  542. msgstr "ignorar &Tabulaciones"
  543. msgid "&Ignore case"
  544. msgstr "ignorar may/mi&N"
  545. msgid "Diff extra options"
  546. msgstr "Otras opciones"
  547. msgid "Diff algorithm"
  548. msgstr "Algoritmo de comparación"
  549. msgid "Diff Options"
  550. msgstr "Opciones"
  551. msgid "Edit"
  552. msgstr "Edición"
  553. msgid "Edit is disabled"
  554. msgstr "Ediciones deshabilitadas"
  555. msgid "Goto line (left)"
  556. msgstr "Ir a la línea (izquierda)"
  557. msgid "Goto line (right)"
  558. msgstr "Ir a la línea (derecha)"
  559. msgid "Enter line:"
  560. msgstr "Línea:"
  561. msgid "ButtonBar|Help"
  562. msgstr "Ayuda"
  563. msgid "ButtonBar|Save"
  564. msgstr "Guarda"
  565. msgid "ButtonBar|Edit"
  566. msgstr "Editar"
  567. msgid "ButtonBar|Merge"
  568. msgstr "Mezclar"
  569. msgid "ButtonBar|Search"
  570. msgstr "Buscar"
  571. msgid "ButtonBar|Options"
  572. msgstr "Opciones"
  573. msgid "ButtonBar|Quit"
  574. msgstr "Salir"
  575. msgid "Quit"
  576. msgstr "Salir"
  577. msgid "File was modified. Save with exit?"
  578. msgstr "El archivo fue modificado. ¿Desea guardarlo al salir?"
  579. msgid ""
  580. "Midnight Commander is being shut down.\n"
  581. "Save modified file?"
  582. msgstr "Saliendo de Midnight Commander.\n¿Desea guardar el archivo modificado?"
  583. msgid "Diff:"
  584. msgstr "Diff:"
  585. #, c-format
  586. msgid "\"%s\" is a directory"
  587. msgstr ""
  588. #, c-format
  589. msgid ""
  590. "Cannot stat \"%s\"\n"
  591. "%s"
  592. msgstr "Imposible identificar «%s»\n%s"
  593. msgid "Diff viewer: invalid mode"
  594. msgstr ""
  595. msgid "Two files are needed to compare"
  596. msgstr "Para comparar se necesita\nun archivo en cada panel"
  597. msgid "Choose syntax highlighting"
  598. msgstr "Sintaxis coloreada"
  599. msgid "< Auto >"
  600. msgstr "< Auto >"
  601. msgid "< Reload Current Syntax >"
  602. msgstr "< Releer sintaxis >"
  603. #, c-format
  604. msgid "Cannot open %s for reading"
  605. msgstr "Imposible abrir %s para lectura"
  606. #, c-format
  607. msgid "Error reading %s"
  608. msgstr "Error al leer %s"
  609. #, c-format
  610. msgid "Cannot get size/permissions for %s"
  611. msgstr "Imposible obtener tamaño/permisos para %s"
  612. #, c-format
  613. msgid "\"%s\" is not a regular file"
  614. msgstr "«%s» no es un archivo ordinario"
  615. #, c-format
  616. msgid "File \"%s\" is too large"
  617. msgstr "El archivo «%s» es demasiado grande"
  618. #, c-format
  619. msgid "Error reading from pipe: %s"
  620. msgstr "Error al leer en tubería: %s"
  621. #, c-format
  622. msgid "Cannot open pipe for reading: %s"
  623. msgstr "Imposible abrir tubería para lectura: %s"
  624. msgid "File has hard-links. Detach before saving?"
  625. msgstr "Hay otros enlaces al archivo. ¿Desea separarlo al guardar?"
  626. msgid "The file has been modified in the meantime. Save anyway?"
  627. msgstr "El archivo ha estado siendo modificado por otros. ¿Desea guardar?"
  628. #, c-format
  629. msgid "Error writing to pipe: %s"
  630. msgstr "Error al escribir en tubería: %s"
  631. #, c-format
  632. msgid "Cannot open pipe for writing: %s"
  633. msgstr "Imposible abrir tubería para escritura: %s"
  634. #, c-format
  635. msgid "Cannot open file for writing: %s"
  636. msgstr "Imposible abrir archivo para escritura: %s"
  637. msgid "The file you are saving is not finished with a newline"
  638. msgstr "El archivo a guardar no acaba con salto de línea"
  639. msgid "C&ontinue"
  640. msgstr "c&Ontinuar"
  641. msgid "&Do not change"
  642. msgstr "&Sin cambios"
  643. msgid "&Unix format (LF)"
  644. msgstr "formato &UNIX (LF)"
  645. msgid "&Windows/DOS format (CR LF)"
  646. msgstr "formato &Windows/DOS (CR LF)"
  647. msgid "&Macintosh format (CR)"
  648. msgstr "formato &Macintosh (CR)"
  649. msgid "Change line breaks to:"
  650. msgstr "Cambiar saltos de línea por:"
  651. msgid "Enter file name:"
  652. msgstr "Teclee el nombre del archivo:"
  653. msgid "Save As"
  654. msgstr "Guardar como"
  655. msgid "Block is large, you may not be able to undo this action"
  656. msgstr "El bloque es enorme, quizás no se pueda deshacer esta acción."
  657. msgid "&Quick save"
  658. msgstr "guardar &Rápido"
  659. msgid "&Safe save"
  660. msgstr "guardar &Seguro"
  661. msgid "&Do backups with following extension:"
  662. msgstr "conservar copias con e&Xtensión:"
  663. msgid "Check &POSIX new line"
  664. msgstr "verificar salto de línea &POSIX"
  665. msgid "Edit Save Mode"
  666. msgstr "Modo de guardar"
  667. msgid "Save as"
  668. msgstr "Guardar como"
  669. msgid "Cannot save: destination is not a regular file"
  670. msgstr ""
  671. msgid "A file already exists with this name"
  672. msgstr "Ya existe un archivo con ese nombre."
  673. msgid "&Overwrite"
  674. msgstr "s&Obrescribir"
  675. msgid "Cannot save file"
  676. msgstr "Imposible guardar el archivo."
  677. msgid "Delete macro"
  678. msgstr "Eliminar macro"
  679. msgid "Press macro hotkey:"
  680. msgstr "Pulse la tecla de la macro:"
  681. msgid "Macro not deleted"
  682. msgstr "Macro no eliminada"
  683. msgid "Save macro"
  684. msgstr "Guardar macro"
  685. msgid "Press the macro's new hotkey:"
  686. msgstr "Presione la nueva tecla para la macro:"
  687. msgid "Repeat last commands"
  688. msgstr "Repetir órdenes anteriores"
  689. msgid "Repeat times:"
  690. msgstr "Número de repeticiones:"
  691. #, c-format
  692. msgid "Confirm save file: \"%s\""
  693. msgstr "Guardar el archivo: «%s»"
  694. msgid "Save file"
  695. msgstr "Guardar archivo"
  696. msgid "&Save"
  697. msgstr "&Guardar"
  698. msgid "Load"
  699. msgstr "Cargar"
  700. msgid "Syntax file edit"
  701. msgstr "Editar archivo de sintaxis"
  702. msgid "Which syntax file you want to edit?"
  703. msgstr "¿Qué archivo de sintaxis desea editar?"
  704. msgid "&User"
  705. msgstr "&Usuario"
  706. msgid "&System wide"
  707. msgstr ""
  708. msgid "Menu edit"
  709. msgstr "Editar archivo de menú"
  710. msgid "Which menu file do you want to edit?"
  711. msgstr "¿Qué archivo de menú desea editar?"
  712. msgid "&Local"
  713. msgstr "&Local"
  714. msgid "Replace"
  715. msgstr "Reemplazar"
  716. #, c-format
  717. msgid "%ld replacements made"
  718. msgstr "%ld reemplazos hechos."
  719. msgid "[NoName]"
  720. msgstr ""
  721. #, c-format
  722. msgid ""
  723. "File %s was modified.\n"
  724. "Save before close?"
  725. msgstr ""
  726. msgid "Close file"
  727. msgstr ""
  728. #, c-format
  729. msgid ""
  730. "Midnight Commander is being shut down.\n"
  731. "Save modified file %s?"
  732. msgstr ""
  733. msgid "This function is not implemented"
  734. msgstr "Esa función no está implementada."
  735. msgid "Copy to clipboard"
  736. msgstr "Copiar al portapapeles"
  737. msgid "Unable to save to file"
  738. msgstr "No pude guardar el archivo."
  739. msgid "Cut to clipboard"
  740. msgstr "Cortar al portapapeles"
  741. msgid "Goto line"
  742. msgstr "Ir a la línea"
  743. msgid "Save block"
  744. msgstr "Guardar bloque"
  745. msgid "Insert file"
  746. msgstr "Insertar archivo"
  747. msgid "Cannot insert file"
  748. msgstr "Imposible insertar el archivo"
  749. msgid "Sort block"
  750. msgstr "Ordenar bloque de texto"
  751. msgid "You must first highlight a block of text"
  752. msgstr "Es necesario tener un bloque seleccionado"
  753. msgid "Run sort"
  754. msgstr "Ordenar bloque de texto"
  755. msgid "Enter sort options (see manpage) separated by whitespace:"
  756. msgstr "Opciones para «sort» (ver manual), separadas por espacios:"
  757. msgid "Sort"
  758. msgstr "Ordenar"
  759. msgid "Cannot execute sort command"
  760. msgstr "Imposible ejecutar «sort»"
  761. #, c-format
  762. msgid "Sort returned non-zero: %s"
  763. msgstr "«sort» devolvió un error: %s"
  764. msgid "Paste output of external command"
  765. msgstr "Pegar desde otro programa"
  766. msgid "Enter shell command(s):"
  767. msgstr "Orden a ejecutar:"
  768. msgid "External command"
  769. msgstr "Programa externo"
  770. msgid "Cannot execute command"
  771. msgstr "Imposible ejecutar la orden"
  772. msgid "Copies to"
  773. msgstr "Cursar Copias a"
  774. msgid "Subject"
  775. msgstr "Tema"
  776. msgid "To"
  777. msgstr "Para"
  778. msgid "mail -s <subject> -c <cc> <to>"
  779. msgstr "mail -s <tema> -c <cc> <para>"
  780. msgid "Mail"
  781. msgstr "Correo"
  782. msgid "Insert literal"
  783. msgstr "Insertar literalmente"
  784. msgid "Press any key:"
  785. msgstr "Presione cualquier tecla:"
  786. msgid ""
  787. "Current text was modified without a file save.\n"
  788. "Continue discards these changes"
  789. msgstr "El texto actual ha sido modificado y no ha sido guardado\nContinuar descartará estos cambios."
  790. msgid "In se&lection"
  791. msgstr "sólo en se&Lección"
  792. msgid "Enter replacement string:"
  793. msgstr "Teclee el cambio a realizar:"
  794. msgid "&Find all"
  795. msgstr "buscar &Todos"
  796. msgid "Cancel"
  797. msgstr "Cancelar"
  798. msgid ""
  799. "Current text was modified without a file save.\n"
  800. "Continue discards these changes."
  801. msgstr "El texto actual ha sido modificado y no ha sido guardado \nContinuar descartará estos cambios."
  802. msgid "&Skip"
  803. msgstr "&Saltar"
  804. msgid "A&ll"
  805. msgstr "&Todos"
  806. msgid "&Replace"
  807. msgstr "&Reemplazar"
  808. msgid "Replace with:"
  809. msgstr "Reemplazar con:"
  810. msgid "Confirm replace"
  811. msgstr "Confirmar cambios"
  812. msgid "&Open file..."
  813. msgstr "abrir archiv&O..."
  814. msgid "&New"
  815. msgstr "&Nuevo"
  816. msgid "&Close"
  817. msgstr ""
  818. msgid "Save &as..."
  819. msgstr "guar&Dar como..."
  820. msgid "&Insert file..."
  821. msgstr "&Insertar archivo..."
  822. msgid "Cop&y to file..."
  823. msgstr "co&Piar a un archivo..."
  824. msgid "&User menu..."
  825. msgstr "menú de &Usuario"
  826. msgid "A&bout..."
  827. msgstr "&Acerca de..."
  828. msgid "&Quit"
  829. msgstr "&Salir"
  830. msgid "&Undo"
  831. msgstr "&Deshacer"
  832. msgid "&Redo"
  833. msgstr "&Rehacer"
  834. msgid "&Toggle ins/overw"
  835. msgstr "activar &Inserción"
  836. msgid "To&ggle mark"
  837. msgstr "i&Nicio/fin de marca"
  838. msgid "&Mark columns"
  839. msgstr "marcar c&Olumnas"
  840. msgid "Mark &all"
  841. msgstr "marcar &Todo"
  842. msgid "Unmar&k"
  843. msgstr "desma&Rcar"
  844. msgid "Cop&y"
  845. msgstr "&Copiar"
  846. msgid "Mo&ve"
  847. msgstr "&Mover"
  848. msgid "&Delete"
  849. msgstr "&Borrar"
  850. msgid "Co&py to clipfile"
  851. msgstr "copiar a un &Archivo"
  852. msgid "&Cut to clipfile"
  853. msgstr "cortar a un arc&Hivo"
  854. msgid "Pa&ste from clipfile"
  855. msgstr "pegar de un archi&Vo"
  856. msgid "&Beginning"
  857. msgstr "&Principio del archivo"
  858. msgid "&End"
  859. msgstr "&Fin del archivo"
  860. msgid "&Search..."
  861. msgstr "&Buscar..."
  862. msgid "Search &again"
  863. msgstr "buscar &Siguiente"
  864. msgid "&Replace..."
  865. msgstr "&Reemplazar..."
  866. msgid "&Toggle bookmark"
  867. msgstr "poner/quitar m&Arca"
  868. msgid "&Next bookmark"
  869. msgstr "&Ir a marca siguiente"
  870. msgid "&Prev bookmark"
  871. msgstr "&Volver a marca anterior"
  872. msgid "&Flush bookmarks"
  873. msgstr "borrar &Todas las marcas"
  874. msgid "&Go to line..."
  875. msgstr "&Ir a la línea..."
  876. msgid "&Toggle line state"
  877. msgstr "&Numeración de líneas"
  878. msgid "Go to matching &bracket"
  879. msgstr "buscar pare&Ja del operador"
  880. msgid "Toggle s&yntax highlighting"
  881. msgstr "poner/quitar sinta&Xis"
  882. msgid "&Find declaration"
  883. msgstr "buscar &Declaración"
  884. msgid "Back from &declaration"
  885. msgstr "&Volver desde declaración"
  886. msgid "For&ward to declaration"
  887. msgstr "ava&Nzar a declaración"
  888. msgid "Encod&ing..."
  889. msgstr "&Código carácter..."
  890. msgid "&Refresh screen"
  891. msgstr "&Refrescar la pantalla"
  892. msgid "&Start/Stop record macro"
  893. msgstr "iniciar/parar grabación &Macro"
  894. msgid "Delete macr&o..."
  895. msgstr "&Eliminar macro..."
  896. msgid "Record/Repeat &actions"
  897. msgstr "grabar/repetir &Acciones"
  898. msgid "S&pell check"
  899. msgstr ""
  900. msgid "C&heck word"
  901. msgstr ""
  902. msgid "Change spelling &language"
  903. msgstr ""
  904. msgid "&Mail..."
  905. msgstr "&Correo..."
  906. msgid "Insert &literal..."
  907. msgstr "insertar &Literalmente..."
  908. msgid "Insert &date/time"
  909. msgstr "insertar &Fecha y hora"
  910. msgid "&Format paragraph"
  911. msgstr "dar formato al &Párrafo"
  912. msgid "&Sort..."
  913. msgstr "&Ordenar bloque de texto..."
  914. msgid "&Paste output of..."
  915. msgstr "peg&Ar desde otro programa..."
  916. msgid "&External formatter"
  917. msgstr "dar formato e&Xterno"
  918. msgid "&Move"
  919. msgstr "&Mover"
  920. msgid "&Resize"
  921. msgstr ""
  922. msgid "&Toggle fullscreen"
  923. msgstr ""
  924. msgid "&Next"
  925. msgstr ""
  926. msgid "&Previous"
  927. msgstr ""
  928. msgid "&List..."
  929. msgstr ""
  930. msgid "&General..."
  931. msgstr "&General..."
  932. msgid "Save &mode..."
  933. msgstr "&Modo de guardar..."
  934. msgid "Learn &keys..."
  935. msgstr "redefinir &Teclas..."
  936. msgid "Syntax &highlighting..."
  937. msgstr "sinta&Xis coloreada..."
  938. msgid "S&yntax file"
  939. msgstr "editar archivo de &Sintaxis"
  940. msgid "&Menu file"
  941. msgstr "editar archivo de me&Nú..."
  942. msgid "&Save setup"
  943. msgstr "&Guardar configuración"
  944. msgid "&File"
  945. msgstr "&Archivo"
  946. msgid "&Edit"
  947. msgstr "&Edición"
  948. msgid "&Search"
  949. msgstr "&Buscar"
  950. msgid "&Command"
  951. msgstr "&Utilidades"
  952. msgid "For&mat"
  953. msgstr "for&Mato"
  954. msgid "&Window"
  955. msgstr ""
  956. msgid "&Options"
  957. msgstr "&Opciones"
  958. msgid "None"
  959. msgstr "Ninguno"
  960. msgid "Dynamic paragraphing"
  961. msgstr "Párrafos dinámicos"
  962. msgid "Type writer wrap"
  963. msgstr "Máquina de escribir"
  964. msgid "Word wrap line length:"
  965. msgstr "Ancho del párrafo auto: "
  966. msgid "&Group undo"
  967. msgstr "deshacer en &Grupo"
  968. msgid "Cursor beyond end of line"
  969. msgstr "cursor pasa fin de &Línea"
  970. msgid "Pers&istent selection"
  971. msgstr "selecció&N persistente"
  972. msgid "Synta&x highlighting"
  973. msgstr "sinta&Xis coloreada"
  974. msgid "Visible tabs"
  975. msgstr "&Tabulaciones visibles"
  976. msgid "Visible trailing spaces"
  977. msgstr "&Espacios finales visibles"
  978. msgid "Save file &position"
  979. msgstr "recordar &Posiciones"
  980. msgid "Confir&m before saving"
  981. msgstr "confir&Mar al guardar"
  982. msgid "&Return does autoindent"
  983. msgstr "autoindenta&R"
  984. msgid "Tab spacing:"
  985. msgstr "Tamaño de tabulaciones: "
  986. msgid "Fill tabs with &spaces"
  987. msgstr "tabulaciones x e&Spacios"
  988. msgid "&Backspace through tabs"
  989. msgstr "&Borrar en tabulaciones"
  990. msgid "&Fake half tabs"
  991. msgstr "&Fingir medias tabulaciones"
  992. msgid "Wrap mode"
  993. msgstr "Autoajuste de párrafo"
  994. msgid "Editor options"
  995. msgstr "Opciones del editor"
  996. msgid "About"
  997. msgstr "Acerca de..."
  998. msgid ""
  999. "Copyright (C) 1996-2012 the Free Software Foundation\n"
  1000. "\n"
  1001. " A user friendly text editor\n"
  1002. " written for the Midnight Commander"
  1003. msgstr ""
  1004. msgid "Open files"
  1005. msgstr ""
  1006. msgid "NoName"
  1007. msgstr ""
  1008. msgid "Edit: "
  1009. msgstr "Edición:"
  1010. msgid "ButtonBar|Mark"
  1011. msgstr "Marcar"
  1012. msgid "ButtonBar|Replac"
  1013. msgstr "Reempl"
  1014. msgid "ButtonBar|Copy"
  1015. msgstr "Copiar"
  1016. msgid "ButtonBar|Move"
  1017. msgstr "Mover"
  1018. msgid "ButtonBar|Delete"
  1019. msgstr "Borrar"
  1020. msgid "ButtonBar|PullDn"
  1021. msgstr "Menú"
  1022. msgid "Load syntax file"
  1023. msgstr "Cargar archivo de sintaxis"
  1024. #, c-format
  1025. msgid ""
  1026. "Cannot open file %s\n"
  1027. "%s"
  1028. msgstr "Imposible abrir el archivo %s\n%s"
  1029. #, c-format
  1030. msgid "Error in file %s on line %d"
  1031. msgstr "Error en el archivo %s (línea %d)"
  1032. msgid ""
  1033. "The Commander can't change to the directory that\n"
  1034. "the subshell claims you are in. Perhaps you have\n"
  1035. "deleted your working directory, or given yourself\n"
  1036. "extra access permissions with the \"su\" command?"
  1037. msgstr "Midnight Commander no puede cambiar al directorio\nque el subshell dice que es el directorio actual.\n¿Acaso borró usted el directorio o se dio otros\npermisos con el comando «su»?"
  1038. msgid "The shell is already running a command"
  1039. msgstr "El shell ya está ejecutando un comando"
  1040. #, c-format
  1041. msgid "Type `exit' to return to the Midnight Commander"
  1042. msgstr "Teclee «exit» para regresar a Midnight Commander"
  1043. #, c-format
  1044. msgid "Cannot fetch a local copy of %s"
  1045. msgstr "Imposible obtener una copia local de «%s»"
  1046. msgid "&Set"
  1047. msgstr "a&Plicar"
  1048. msgid "S&kip"
  1049. msgstr "&Ignorar"
  1050. msgid "Set &all"
  1051. msgstr "&Todos"
  1052. msgid "owner"
  1053. msgstr "dueño"
  1054. msgid "group"
  1055. msgstr "grupo"
  1056. msgid "other"
  1057. msgstr "otros"
  1058. msgid "On"
  1059. msgstr "En"
  1060. msgid "Flag"
  1061. msgstr "Visu"
  1062. msgid "Mode"
  1063. msgstr "Modo"
  1064. #, c-format
  1065. msgid "%6d of %d"
  1066. msgstr "%6d de %d"
  1067. msgid "Chown advanced command"
  1068. msgstr "Cambiar dueño y permisos"
  1069. #, c-format
  1070. msgid ""
  1071. "Cannot chmod \"%s\"\n"
  1072. "%s"
  1073. msgstr "Imposible cambiar los permisos de «%s»\n%s"
  1074. #, c-format
  1075. msgid ""
  1076. "Cannot chown \"%s\"\n"
  1077. "%s"
  1078. msgstr "Imposible cambiar el dueño de «%s»\n%s"
  1079. msgid "&Stop"
  1080. msgstr "&Detener"
  1081. msgid "&Resume"
  1082. msgstr "c&Ontinuar"
  1083. msgid "&Kill"
  1084. msgstr "&Matar"
  1085. msgid "&Full file list"
  1086. msgstr "listado &Completo"
  1087. msgid "&Brief file list"
  1088. msgstr "listado &Breve"
  1089. msgid "&Long file list"
  1090. msgstr "listado &Largo"
  1091. msgid "&User defined:"
  1092. msgstr "&Definido por el usuario:"
  1093. msgid "Listing mode"
  1094. msgstr "Listado"
  1095. msgid "User &mini status"
  1096. msgstr "&Mini-estado"
  1097. msgid "Other 8 bit"
  1098. msgstr "Otro (8 bit)"
  1099. msgid "Display bits"
  1100. msgstr "Juego de caracteres"
  1101. msgid "Input / display codepage:"
  1102. msgstr "Juego de caracteres entrada/pantalla:"
  1103. msgid "F&ull 8 bits input"
  1104. msgstr "Aceptar entrada de 8 bits"
  1105. msgid "&Select"
  1106. msgstr "&Seleccionar"
  1107. msgid "Running"
  1108. msgstr "Corriendo"
  1109. msgid "Stopped"
  1110. msgstr "Detenido"
  1111. msgid "&Reverse"
  1112. msgstr "inve&Rtir"
  1113. msgid "Case sensi&tive"
  1114. msgstr "distinguir &May/min"
  1115. msgid "Executable &first"
  1116. msgstr "&Ejecutables primero"
  1117. msgid "Sort order"
  1118. msgstr "Ordenar"
  1119. msgid "Confirmation"
  1120. msgstr "Confirmación"
  1121. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context
  1122. #. prefix
  1123. #. 2
  1124. msgid "Confirmation|&History cleanup"
  1125. msgstr "borrar &Historia"
  1126. msgid "Confirmation|Di&rectory hotlist delete"
  1127. msgstr "borrar &Favoritos"
  1128. msgid "Confirmation|E&xit"
  1129. msgstr "sali&R"
  1130. msgid "Confirmation|&Execute"
  1131. msgstr "e&Jecutar"
  1132. msgid "Confirmation|O&verwrite"
  1133. msgstr "s&Obrescribir"
  1134. msgid "Confirmation|&Delete"
  1135. msgstr "&Borrar"
  1136. msgid "UTF-8 output"
  1137. msgstr "salida UTF-8"
  1138. msgid "Full 8 bits output"
  1139. msgstr "mostrar &8 bits"
  1140. msgid "ISO 8859-1"
  1141. msgstr "&ISO 8859-1"
  1142. msgid "7 bits"
  1143. msgstr "&7 bits"
  1144. msgid "Directory tree"
  1145. msgstr "Árbol de directorios"
  1146. msgid "Use passive mode over pro&xy"
  1147. msgstr "usar modo pasivo sobre prox&Y"
  1148. msgid "Use &passive mode"
  1149. msgstr "usar modo &Pasivo"
  1150. msgid "&Use ~/.netrc"
  1151. msgstr "&Usar ~/.netrc"
  1152. msgid "&Always use ftp proxy"
  1153. msgstr "usar siempre pro&Xy"
  1154. msgid "sec"
  1155. msgstr "s."
  1156. msgid "ftpfs directory cache timeout:"
  1157. msgstr "Descartar el caché de ftpfs tras:"
  1158. msgid "ftp anonymous password:"
  1159. msgstr "Contraseña FTP anónimo:"
  1160. msgid "Timeout for freeing VFSs:"
  1161. msgstr "Descartar los VFS tras:"
  1162. msgid "Virtual File System Setting"
  1163. msgstr "Sistema de archivos virtual (VFS)"
  1164. msgid "cd"
  1165. msgstr "cd"
  1166. msgid "Quick cd"
  1167. msgstr "Cambiar directorio"
  1168. msgid "Symbolic link filename:"
  1169. msgstr "Nombre del nuevo enlace simbólico:"
  1170. msgid "Existing filename (filename symlink will point to):"
  1171. msgstr "Apuntando a:"
  1172. msgid "Symbolic link"
  1173. msgstr "Crear enlace simbólico"
  1174. msgid "Background Jobs"
  1175. msgstr "Procesos en 2º plano"
  1176. msgid "Domain:"
  1177. msgstr "Dominio:"
  1178. msgid "Username:"
  1179. msgstr "Usuario:"
  1180. #, c-format
  1181. msgid "Password for \\\\%s\\%s"
  1182. msgstr "Contraseña para \\\\%s\\%s"
  1183. msgid "execute/search by others"
  1184. msgstr "ejecutar/buscar por otros"
  1185. msgid "write by others"
  1186. msgstr "escritura por otros"
  1187. msgid "read by others"
  1188. msgstr "lectura por otros"
  1189. msgid "execute/search by group"
  1190. msgstr "ejecutar/buscar por grupo"
  1191. msgid "write by group"
  1192. msgstr "escritura por grupo"
  1193. msgid "read by group"
  1194. msgstr "lectura por grupo"
  1195. msgid "execute/search by owner"
  1196. msgstr "ejecutar/buscar por dueño"
  1197. msgid "write by owner"
  1198. msgstr "escritura por dueño"
  1199. msgid "read by owner"
  1200. msgstr "lectura por dueño"
  1201. msgid "sticky bit"
  1202. msgstr "sticky bit"
  1203. msgid "set group ID on execution"
  1204. msgstr "ejecutar con ID del grupo"
  1205. msgid "set user ID on execution"
  1206. msgstr "ejecutar con ID del dueño"
  1207. msgid "Name:"
  1208. msgstr "Nombre:"
  1209. msgid "Permissions (octal):"
  1210. msgstr "Permisos:"
  1211. msgid "Owner name:"
  1212. msgstr "Dueño:"
  1213. msgid "Group name:"
  1214. msgstr "Grupo:"
  1215. msgid "C&lear marked"
  1216. msgstr "* a &Quitar"
  1217. msgid "S&et marked"
  1218. msgstr "* a &Poner"
  1219. msgid "&Marked all"
  1220. msgstr "* t&Odos"
  1221. msgid "Chmod command"
  1222. msgstr "Comando Chmod"
  1223. msgid "File"
  1224. msgstr "Archivo"
  1225. msgid "Permission"
  1226. msgstr "Permisos"
  1227. msgid "Set &users"
  1228. msgstr "pon d&Ueños"
  1229. msgid "Set &groups"
  1230. msgstr "pon &Grupos"
  1231. msgid "Name"
  1232. msgstr "Nombre"
  1233. msgid "Owner name"
  1234. msgstr "Dueño"
  1235. msgid "Group name"
  1236. msgstr "Grupo"
  1237. msgid "Size"
  1238. msgstr "Tamaño"
  1239. msgid "Chown command"
  1240. msgstr "Cambiar dueño"
  1241. msgid "<Unknown user>"
  1242. msgstr "<desconocido>"
  1243. msgid "<Unknown group>"
  1244. msgstr "<desconocido>"
  1245. msgid "User name"
  1246. msgstr "Dueño"
  1247. msgid "Enter machine name (F1 for details):"
  1248. msgstr "Teclee el nombre de la máquina (F1 para más detalles):"
  1249. msgid "Files tagged, want to cd?"
  1250. msgstr "Hay archivos marcados. ¿Quiere cambiar de directorio?"
  1251. msgid "Cannot change directory"
  1252. msgstr "Imposible cambiar de directorio"
  1253. msgid "Filter"
  1254. msgstr "Filtro"
  1255. msgid "Set expression for filtering filenames"
  1256. msgstr "Teclee la expresión para filtrar nombres de archivo"
  1257. msgid "&Using shell patterns"
  1258. msgstr "&Usando patrones shell"
  1259. msgid "&Case sensitive"
  1260. msgstr "distinguir &May/min"
  1261. msgid "&Files only"
  1262. msgstr "sólo &Archivos"
  1263. #, c-format
  1264. msgid "Link %s to:"
  1265. msgstr "Crear enlace a %s como:"
  1266. msgid "Link"
  1267. msgstr "Crear enlace"
  1268. #, c-format
  1269. msgid "link: %s"
  1270. msgstr "enlace: %s"
  1271. #, c-format
  1272. msgid "symlink: %s"
  1273. msgstr "enlace simbólico: %s"
  1274. #, c-format
  1275. msgid "Cannot chdir to \"%s\""
  1276. msgstr "Imposible cambiar al directorio «%s»"
  1277. msgid "View file"
  1278. msgstr "Ver archivo"
  1279. msgid "Filename:"
  1280. msgstr "Nombre de archivo:"
  1281. msgid "Filtered view"
  1282. msgstr "e&Jecutar y ver..."
  1283. msgid "Filter command and arguments:"
  1284. msgstr "Orden a ejecutar y argumentos:"
  1285. msgid "Create a new Directory"
  1286. msgstr "Crear directorio"
  1287. msgid "Enter directory name:"
  1288. msgstr "Teclee el nombre del directorio:"
  1289. msgid "Select"
  1290. msgstr "Seleccionar grupo"
  1291. msgid "Unselect"
  1292. msgstr "De-seleccionar grupo"
  1293. msgid "Extension file edit"
  1294. msgstr "Editar extensiones"
  1295. msgid "Which extension file you want to edit?"
  1296. msgstr "¿Qué archivo de extensiones desea editar?"
  1297. msgid "&System Wide"
  1298. msgstr "&Sistema"
  1299. msgid "Highlighting groups file edit"
  1300. msgstr "Editar colores de grupo"
  1301. msgid "Which highlighting file you want to edit?"
  1302. msgstr "¿Qué archivo de colores de grupo desea editar?"
  1303. msgid "Compare directories"
  1304. msgstr "Comparar directorios"
  1305. msgid "Select compare method:"
  1306. msgstr "Seleccione el método de comparación:"
  1307. msgid "&Quick"
  1308. msgstr "&Rápido"
  1309. msgid "&Size only"
  1310. msgstr "sólo &Tamaño"
  1311. msgid "&Thorough"
  1312. msgstr "&Completo"
  1313. msgid ""
  1314. "Both panels should be in the listing mode\n"
  1315. "to use this command"
  1316. msgstr "Ambos paneles deben estar en\nmodo listado para usar esta función"
  1317. msgid ""
  1318. "Not an xterm or Linux console;\n"
  1319. "the panels cannot be toggled."
  1320. msgstr "No se está usando ni xterm ni la consola Linux.\nLos paneles no pueden ser ocultados."
  1321. #, c-format
  1322. msgid "Symlink `%s' points to:"
  1323. msgstr "El enlace simbólico «%s» apunta a:"
  1324. msgid "Edit symlink"
  1325. msgstr "Editar enlace simbólico"
  1326. #, c-format
  1327. msgid "edit symlink, unable to remove %s: %s"
  1328. msgstr "edite enlace simbólico, imposible borrar %s: %s"
  1329. #, c-format
  1330. msgid "edit symlink: %s"
  1331. msgstr "editar enlace simbólico: %s"
  1332. #, c-format
  1333. msgid "`%s' is not a symbolic link"
  1334. msgstr "«%s» no es un enlace simbólico"
  1335. msgid "FTP to machine"
  1336. msgstr "Conexión por FTP"
  1337. msgid "SFTP to machine"
  1338. msgstr ""
  1339. msgid "Shell link to machine"
  1340. msgstr "Conexión por SSH"
  1341. msgid "SMB link to machine"
  1342. msgstr "Conexión por SMB"
  1343. msgid "Undelete files on an ext2 file system"
  1344. msgstr "Recuperar archivos de un sistema de archivos ext2"
  1345. msgid ""
  1346. "Enter device (without /dev/) to undelete\n"
  1347. "files on: (F1 for details)"
  1348. msgstr "Introduzca el dispositivo (sin /dev/) donde quiere\nrecuperar archivos: (F1 para más detalles)"
  1349. msgid "Setup"
  1350. msgstr "Configuración"
  1351. #, c-format
  1352. msgid "Setup saved to %s"
  1353. msgstr "Configuración guardada en %s"
  1354. #, c-format
  1355. msgid "Unable to save setup to %s"
  1356. msgstr "No se pudo guardar la configuración en %s"
  1357. msgid "Cannot execute commands on non-local filesystems"
  1358. msgstr "Imposible ejecutar comandos desde directorios no locales"
  1359. #, c-format
  1360. msgid ""
  1361. "Cannot chdir to \"%s\"\n"
  1362. "%s"
  1363. msgstr "Imposible cambiar al directorio «%s»\n%s"
  1364. msgid "Cannot read directory contents"
  1365. msgstr "Imposible leer directorio"
  1366. msgid "Parameter"
  1367. msgstr "Parámetro"
  1368. #, c-format
  1369. msgid ""
  1370. "Cannot create temporary command file\n"
  1371. "%s"
  1372. msgstr "Imposible crear el archivo temporal para comandos\n%s"
  1373. #, c-format
  1374. msgid " %s%s file error"
  1375. msgstr " error en el archivo %s%s "
  1376. #, c-format
  1377. msgid ""
  1378. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1379. "the installation failed. Please fetch a fresh copy from the Midnight "
  1380. "Commander package."
  1381. msgstr "El archivo %smc.ext ha cambiado con la versión 3.0.\nParece que la instalación falló. Por favor, trate\nde conseguir una copia intacta con el paquete del\nMidnight Commander."
  1382. #, c-format
  1383. msgid "%s file error"
  1384. msgstr "error en el archivo %s"
  1385. #, c-format
  1386. msgid ""
  1387. "The format of the %s file has changed with version 3.0. You may either want "
  1388. "to copy it from %smc.ext or use that file as an example of how to write it."
  1389. msgstr "El formato del archivo %s ha cambiado con la versión 3.0. Puede hacer una copia de %smc.ext o bien emplearlo como modelo."
  1390. msgid "DialogTitle|Copy"
  1391. msgstr "Copiar"
  1392. msgid "DialogTitle|Move"
  1393. msgstr "Mover"
  1394. msgid "DialogTitle|Delete"
  1395. msgstr "Borrar"
  1396. msgid "FileOperation|Copy"
  1397. msgstr "Copiar"
  1398. msgid "FileOperation|Move"
  1399. msgstr "Mover"
  1400. msgid "FileOperation|Delete"
  1401. msgstr "Borrar"
  1402. #, no-c-format
  1403. msgid "%o %f \"%s\"%m"
  1404. msgstr "%o %f «%s»%m"
  1405. #, no-c-format
  1406. msgid "%o %d %f%m"
  1407. msgstr "%o %d %f%m"
  1408. msgid "file"
  1409. msgstr "archivo"
  1410. msgid "files"
  1411. msgstr "archivos"
  1412. msgid "directory"
  1413. msgstr "directorio"
  1414. msgid "directories"
  1415. msgstr "directorios"
  1416. msgid "files/directories"
  1417. msgstr "archivos/directorios"
  1418. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  1419. msgid " with source mask:"
  1420. msgstr " aplicando la máscara:"
  1421. msgid "to:"
  1422. msgstr "a:"
  1423. #, c-format
  1424. msgid "%s?"
  1425. msgstr "¿%s?"
  1426. msgid "Cannot make the hardlink"
  1427. msgstr "Imposible crear el enlace"
  1428. #, c-format
  1429. msgid ""
  1430. "Cannot read source link \"%s\"\n"
  1431. "%s"
  1432. msgstr "Imposible leer el enlace original «%s»\n%s"
  1433. msgid ""
  1434. "Cannot make stable symlinks acrossnon-local filesystems:\n"
  1435. "\n"
  1436. "Option Stable Symlinks will be disabled"
  1437. msgstr "Imposible crear enlaces simbólicos estables si los archivos\nestán en distintos sistemas de archivos:\n\nLa opción de enlaces simbólicos estables será desactivada"
  1438. #, c-format
  1439. msgid ""
  1440. "Cannot create target symlink \"%s\"\n"
  1441. "%s"
  1442. msgstr "Imposible crear el enlace simbólico destino «%s»\n%s"
  1443. msgid "&Abort"
  1444. msgstr "&Abortar"
  1445. msgid "Ski&p all"
  1446. msgstr "saltar &Todos"
  1447. msgid "&Retry"
  1448. msgstr "&Reintentar"
  1449. msgid ""
  1450. "\n"
  1451. "Directory not empty.\n"
  1452. "Delete it recursively?"
  1453. msgstr "\nEl directorio no está vacío.\n¿Desea borrarlo recursivamente?"
  1454. msgid ""
  1455. "\n"
  1456. "Background process: Directory not empty.\n"
  1457. "Delete it recursively?"
  1458. msgstr "\nProceso en 2º plano: El directorio no está vacío.\n¿Desea borrarlo recursivamente?"
  1459. msgid "Delete:"
  1460. msgstr "Borrar:"
  1461. msgid "Non&e"
  1462. msgstr "nin&Guno"
  1463. #, c-format
  1464. msgid ""
  1465. "Cannot stat file \"%s\"\n"
  1466. "%s"
  1467. msgstr "Imposible identificar el archivo «%s»\n%s"
  1468. #, c-format
  1469. msgid ""
  1470. "\"%s\"\n"
  1471. "and\n"
  1472. "\"%s\"\n"
  1473. "are the same file"
  1474. msgstr "«%s»\ny\n«%s»\nson el mismo archivo"
  1475. #, c-format
  1476. msgid "Cannot overwrite directory \"%s\""
  1477. msgstr "Imposible sobrescribir el directorio «%s»"
  1478. #, c-format
  1479. msgid ""
  1480. "Cannot move file \"%s\" to \"%s\"\n"
  1481. "%s"
  1482. msgstr "Imposible mover el archivo «%s» a «%s»\n%s"
  1483. #, c-format
  1484. msgid ""
  1485. "Cannot remove file \"%s\"\n"
  1486. "%s"
  1487. msgstr "Imposible borrar el archivo «%s»\n%s"
  1488. #, c-format
  1489. msgid ""
  1490. "Cannot delete file \"%s\"\n"
  1491. "%s"
  1492. msgstr "Imposible borrar el archivo «%s»\n%s"
  1493. #, c-format
  1494. msgid ""
  1495. "Cannot remove directory \"%s\"\n"
  1496. "%s"
  1497. msgstr "Imposible eliminar el directorio «%s»\n%s"
  1498. #, c-format
  1499. msgid ""
  1500. "Cannot overwrite directory \"%s\"\n"
  1501. "%s"
  1502. msgstr "Imposible sobrescribir el directorio «%s»\n%s"
  1503. #, c-format
  1504. msgid ""
  1505. "Cannot stat source file \"%s\"\n"
  1506. "%s"
  1507. msgstr "Imposible identificar el archivo origen «%s»\n%s"
  1508. #, c-format
  1509. msgid ""
  1510. "Cannot create special file \"%s\"\n"
  1511. "%s"
  1512. msgstr "Imposible crear el archivo especial «%s»\n%s"
  1513. #, c-format
  1514. msgid ""
  1515. "Cannot chown target file \"%s\"\n"
  1516. "%s"
  1517. msgstr "Imposible cambiar el dueño del archivo destino «%s»\n%s"
  1518. #, c-format
  1519. msgid ""
  1520. "Cannot chmod target file \"%s\"\n"
  1521. "%s"
  1522. msgstr "Imposible cambiar los permisos del archivo destino «%s»\n%s"
  1523. #, c-format
  1524. msgid ""
  1525. "Cannot open source file \"%s\"\n"
  1526. "%s"
  1527. msgstr "Imposible abrir el archivo fuente «%s»\n%s"
  1528. msgid "Reget failed, about to overwrite file"
  1529. msgstr "Falló el reintento, se va a sobrescribir el archivo"
  1530. #, c-format
  1531. msgid ""
  1532. "Cannot fstat source file \"%s\"\n"
  1533. "%s"
  1534. msgstr "Imposible identificar el archivo origen «%s»\n%s"
  1535. #, c-format
  1536. msgid ""
  1537. "Cannot create target file \"%s\"\n"
  1538. "%s"
  1539. msgstr "Imposible crear el archivo destino «%s»\n%s"
  1540. #, c-format
  1541. msgid ""
  1542. "Cannot fstat target file \"%s\"\n"
  1543. "%s"
  1544. msgstr "Imposible identificar el archivo destino «%s»\n%s"
  1545. #, c-format
  1546. msgid ""
  1547. "Cannot preallocate space for target file \"%s\"\n"
  1548. "%s"
  1549. msgstr "Imposible reservar espacio para el archivo destino «%s»\n%s"
  1550. #, c-format
  1551. msgid ""
  1552. "Cannot read source file\"%s\"\n"
  1553. "%s"
  1554. msgstr "Imposible leer el archivo origen «%s»\n%s"
  1555. #, c-format
  1556. msgid ""
  1557. "Cannot write target file \"%s\"\n"
  1558. "%s"
  1559. msgstr "Imposible escribir el archivo destino «%s»\n%s"
  1560. msgid "(stalled)"
  1561. msgstr "(bloqueado)"
  1562. #, c-format
  1563. msgid ""
  1564. "Cannot close source file \"%s\"\n"
  1565. "%s"
  1566. msgstr "Imposible cerrar el archivo origen «%s»\n%s"
  1567. #, c-format
  1568. msgid ""
  1569. "Cannot close target file \"%s\"\n"
  1570. "%s"
  1571. msgstr "Imposible cerrar el archivo destino «%s»\n%s"
  1572. msgid "Incomplete file was retrieved. Keep it?"
  1573. msgstr "El archivo está incompleto. ¿Desea conservarlo?"
  1574. msgid "&Keep"
  1575. msgstr "&Mantener"
  1576. #, c-format
  1577. msgid ""
  1578. "Cannot stat source directory \"%s\"\n"
  1579. "%s"
  1580. msgstr "Imposible identificar el directorio de origen «%s»\n%s"
  1581. #, c-format
  1582. msgid ""
  1583. "Source \"%s\" is not a directory\n"
  1584. "%s"
  1585. msgstr "El directorio fuente «%s» no es un directorio\n%s"
  1586. #, c-format
  1587. msgid ""
  1588. "Cannot copy cyclic symbolic link\n"
  1589. "\"%s\""
  1590. msgstr "Imposible copiar un enlace simbólico cíclico\n«%s»"
  1591. #, c-format
  1592. msgid ""
  1593. "Destination \"%s\" must be a directory\n"
  1594. "%s"
  1595. msgstr "El destino «%s» debe ser un directorio\n%s"
  1596. #, c-format
  1597. msgid ""
  1598. "Cannot create target directory \"%s\"\n"
  1599. "%s"
  1600. msgstr "Imposible crear el directorio destino «%s»\n%s"
  1601. #, c-format
  1602. msgid ""
  1603. "Cannot chown target directory \"%s\"\n"
  1604. "%s"
  1605. msgstr "Imposible cambiar el dueño del directorio destino «%s»\n%s"
  1606. #, c-format
  1607. msgid ""
  1608. "\"%s\"\n"
  1609. "and\n"
  1610. "\"%s\"\n"
  1611. "are the same directory"
  1612. msgstr "«%s»\ny\n«%s»\nson el mismo directorio"
  1613. #, c-format
  1614. msgid ""
  1615. "Cannot overwrite file \"%s\"\n"
  1616. "%s"
  1617. msgstr "Imposible sobrescribir el archivo «%s»\n%s"
  1618. #, c-format
  1619. msgid ""
  1620. "Cannot move directory \"%s\" to \"%s\"\n"
  1621. "%s"
  1622. msgstr "Imposible mover el directorio «%s» a «%s»\n%s"
  1623. msgid "Directory scanning"
  1624. msgstr "Analizando directorio"
  1625. msgid "Cannot operate on \"..\"!"
  1626. msgstr "¡Imposible operar sobre «..»!"
  1627. msgid "Sorry, I could not put the job in background"
  1628. msgstr "Lo siento, no se pudo poner la tarea en 2º plano"
  1629. #, c-format
  1630. msgid "%d:%02d.%02d"
  1631. msgstr "%d:%02d.%02d"
  1632. #, c-format
  1633. msgid "ETA %s"
  1634. msgstr "ETA %s"
  1635. #, c-format
  1636. msgid "%.2f MB/s"
  1637. msgstr "%.2f MB/s"
  1638. #, c-format
  1639. msgid "%.2f KB/s"
  1640. msgstr "%.2f KB/s"
  1641. #, c-format
  1642. msgid "%ld B/s"
  1643. msgstr "%ld B/s"
  1644. msgid "Target file already exists!"
  1645. msgstr "¡El archivo destino ya existe!"
  1646. #, c-format
  1647. msgid "Source date: %s, size %llu"
  1648. msgstr "Archivo origen: fecha %s, tamaño %llu"
  1649. #, c-format
  1650. msgid "Target date: %s, size %llu"
  1651. msgstr "Archivo destino: fecha %s, tamaño %llu"
  1652. msgid "If &size differs"
  1653. msgstr "si el ta&Maño difiere"
  1654. msgid "&Update"
  1655. msgstr "actuali&Zar"
  1656. msgid "Overwrite all targets?"
  1657. msgstr "¿Sobrescribir todos los archivos?"
  1658. msgid "&Reget"
  1659. msgstr "&Reintentar"
  1660. msgid "A&ppend"
  1661. msgstr "aña&Dir"
  1662. msgid "Overwrite this target?"
  1663. msgstr "¿Sobrescribir este archivo?"
  1664. msgid "File exists"
  1665. msgstr "El archivo ya existe"
  1666. msgid "Background process: File exists"
  1667. msgstr "Proceso en 2º plano: El archivo ya existe"
  1668. #, c-format
  1669. msgid "Files processed: %zu/%zu"
  1670. msgstr "Archivos procesados: %zu/%zu"
  1671. #, c-format
  1672. msgid "Files processed: %zu"
  1673. msgstr "Archivos procesados: %zu"
  1674. #, c-format
  1675. msgid "Time: %s %s"
  1676. msgstr "Tiempo: %s %s"
  1677. #, c-format
  1678. msgid "Time: %s %s (%s)"
  1679. msgstr "Tiempo: %s %s (%s)"
  1680. #, c-format
  1681. msgid "Time: %s"
  1682. msgstr "Tiempo: %s"
  1683. #, c-format
  1684. msgid "Time: %s (%s)"
  1685. msgstr "Tiempo: %s (%s)"
  1686. #, c-format
  1687. msgid " Total: %s "
  1688. msgstr " Total: %s "
  1689. #, c-format
  1690. msgid " Total: %s/%s "
  1691. msgstr "Total: %s/%s"
  1692. msgid "Source"
  1693. msgstr "Origen"
  1694. msgid "Target"
  1695. msgstr "Destino"
  1696. msgid "Deleting"
  1697. msgstr "Borrando"
  1698. msgid "&Background"
  1699. msgstr "en 2º plan&O"
  1700. msgid "&Stable Symlinks"
  1701. msgstr "enlaces simbólicos &Estables"
  1702. msgid "Di&ve into subdir if exists"
  1703. msgstr "entrar en sub&Directorios"
  1704. msgid "Preserve &attributes"
  1705. msgstr "&Preservar atributos"
  1706. msgid "Follow &links"
  1707. msgstr "seguir en&Laces"
  1708. #, c-format
  1709. msgid "Invalid source pattern `%s'"
  1710. msgstr "Patrón fuente incorrecto «%s»"
  1711. msgid "&Suspend"
  1712. msgstr "&Detener"
  1713. msgid "Con&tinue"
  1714. msgstr "con&Tinuar"
  1715. msgid "&Chdir"
  1716. msgstr "&Ir a"
  1717. msgid "&Again"
  1718. msgstr "&Buscar otro"
  1719. msgid "Pane&lize"
  1720. msgstr "&Llevar a panel"
  1721. msgid "&View - F3"
  1722. msgstr "&Ver - F3"
  1723. msgid "&Edit - F4"
  1724. msgstr "&Editar - F4"
  1725. #, c-format
  1726. msgid "Found: %ld"
  1727. msgstr "Encontrado: %ld"
  1728. msgid "Malformed regular expression"
  1729. msgstr "La expresión regular es errónea"
  1730. msgid "&Find recursively"
  1731. msgstr "buscar &Recursivamente"
  1732. msgid "S&kip hidden"
  1733. msgstr "saltar &Ocultos"
  1734. msgid "Sea&rch for content"
  1735. msgstr "buscar co&Ntenido"
  1736. msgid "Case sens&itive"
  1737. msgstr "distinguir &May/min"
  1738. msgid "Fir&st hit"
  1739. msgstr "pr&Imera coincidencia"
  1740. msgid "A&ll charsets"
  1741. msgstr "cualquier codi&Ficación"
  1742. msgid "&Tree"
  1743. msgstr "ár&Bol"
  1744. msgid "Find File"
  1745. msgstr " Buscar archivos "
  1746. msgid "Content:"
  1747. msgstr "Contenido:"
  1748. msgid "File name:"
  1749. msgstr "Archivos:"
  1750. msgid "Ena&ble ignore directories:"
  1751. msgstr "i&Gnorar directorios..."
  1752. msgid "Start at:"
  1753. msgstr "Comenzar en:"
  1754. #, c-format
  1755. msgid "Grepping in %s"
  1756. msgstr "Buscando en %s"
  1757. msgid "Finished"
  1758. msgstr "Terminado"
  1759. #, c-format
  1760. msgid "Finished (ignored %zd directory)"
  1761. msgid_plural "Finished (ignored %zd directories)"
  1762. msgstr[0] "Terminado (%zd directorio ignorado)"
  1763. msgstr[1] "Terminado (%zd directorios ignorados)"
  1764. #, c-format
  1765. msgid "Searching %s"
  1766. msgstr "Buscando %s"
  1767. msgid "Searching"
  1768. msgstr "Buscando"
  1769. msgid "&Remove"
  1770. msgstr "&Quitar"
  1771. msgid "&Append"
  1772. msgstr "&Añadir al final"
  1773. msgid "&Insert"
  1774. msgstr "&Insertar"
  1775. msgid "New &entry"
  1776. msgstr "&Nuevo"
  1777. msgid "New &group"
  1778. msgstr "nuevo &Grupo"
  1779. msgid "&Up"
  1780. msgstr "arri&Ba"
  1781. msgid "&Add current"
  1782. msgstr "aña&Dir actual"
  1783. msgid "&Refresh"
  1784. msgstr "actualiza&R"
  1785. msgid "Fr&ee VFSs now"
  1786. msgstr "&Liberar VFS ahora"
  1787. msgid "Change &to"
  1788. msgstr "camb&Iar a"
  1789. msgid "Subgroup - press ENTER to see list"
  1790. msgstr "Subgrupo - presione ENTER para ver la lista"
  1791. msgid "Active VFS directories"
  1792. msgstr "Directorios virtuales (VFS) activos"
  1793. msgid "Directory hotlist"
  1794. msgstr "Favoritos"
  1795. msgid "Directory path"
  1796. msgstr "Ruta:"
  1797. msgid "Directory label"
  1798. msgstr "Etiqueta:"
  1799. #, c-format
  1800. msgid "Moving %s"
  1801. msgstr "Moviendo %s"
  1802. msgid "New hotlist entry"
  1803. msgstr "Nuevo"
  1804. msgid "Directory label:"
  1805. msgstr "Etiqueta del directorio:"
  1806. msgid "Directory path:"
  1807. msgstr "Ruta:"
  1808. msgid "New hotlist group"
  1809. msgstr "Nuevo grupo"
  1810. msgid "Name of new group:"
  1811. msgstr "Nombre del nuevo grupo:"
  1812. #, c-format
  1813. msgid "Are you sure you want to remove entry \"%s\"?"
  1814. msgstr "¿Desea realmente eliminar la entrada «%s»?"
  1815. #, c-format
  1816. msgid ""
  1817. "Group \"%s\" is not empty.\n"
  1818. "Remove it?"
  1819. msgstr "El grupo «%s» no está vacío.\n¿Desea eliminarlo?"
  1820. msgid "Top level group"
  1821. msgstr "Grupo principal"
  1822. msgid "Hotlist Load"
  1823. msgstr "Cargar favoritos"
  1824. #, c-format
  1825. msgid ""
  1826. "MC was unable to write %s file,\n"
  1827. "your old hotlist entries were not deleted"
  1828. msgstr "No se pudo escribir %s,\nla lista de favoritos antigua no fue borrada"
  1829. #, c-format
  1830. msgid "Label for \"%s\":"
  1831. msgstr "Etiqueta para «%s»:"
  1832. msgid "Add to hotlist"
  1833. msgstr "Añadir actual"
  1834. msgid "Information"
  1835. msgstr "Información"
  1836. #, c-format
  1837. msgid "Midnight Commander %s"
  1838. msgstr "Midnight Commander %s"
  1839. #, c-format
  1840. msgid "File: %s"
  1841. msgstr "Archivo: %s"
  1842. msgid "No node information"
  1843. msgstr "Sin información sobre inodos"
  1844. msgid "Free nodes:"
  1845. msgstr "Inodos libres:"
  1846. msgid "No space information"
  1847. msgstr "Espacio libre desconocido"
  1848. #, c-format
  1849. msgid "Free space: %s/%s (%d%%)"
  1850. msgstr "Espacio libre: %s/%s (%d%%)"
  1851. #, c-format
  1852. msgid "Type: %s"
  1853. msgstr " Tipo: %s"
  1854. msgid "non-local vfs"
  1855. msgstr "VFS no-local"
  1856. #, c-format
  1857. msgid "Device: %s"
  1858. msgstr " Origen: %s"
  1859. #, c-format
  1860. msgid "Filesystem: %s"
  1861. msgstr "Sistema en %s"
  1862. #, c-format
  1863. msgid "Accessed: %s"
  1864. msgstr "Accedido: %s"
  1865. #, c-format
  1866. msgid "Modified: %s"
  1867. msgstr "Modificado: %s"
  1868. #. TRANSLATORS: Time of last status change as in stat(2) man.
  1869. #, c-format
  1870. msgid "Changed: %s"
  1871. msgstr "Cambiado: %s"
  1872. #, c-format
  1873. msgid "Dev. type: major %lu, minor %lu"
  1874. msgstr "Dispositivo major: %lu, minor: %lu"
  1875. #, c-format
  1876. msgid "Size: %s"
  1877. msgstr "Tamaño: %s"
  1878. #, c-format
  1879. msgid " (%ld block)"
  1880. msgid_plural " (%ld blocks)"
  1881. msgstr[0] " (%ld bloque)"
  1882. msgstr[1] " (%ld bloques)"
  1883. #, c-format
  1884. msgid "Owner: %s/%s"
  1885. msgstr "Dueño: %s/%s"
  1886. #, c-format
  1887. msgid "Links: %d"
  1888. msgstr "Nº enlaces: %d"
  1889. #, c-format
  1890. msgid "Mode: %s (%04o)"
  1891. msgstr "Modo: %s (%04o)"
  1892. #, c-format
  1893. msgid "Location: %Xh:%Xh"
  1894. msgstr "Ubicado: %Xh:%Xh"
  1895. msgid "Show free sp&ace"
  1896. msgstr "mostrar &Espacio libre"
  1897. msgid "&XTerm window title"
  1898. msgstr "titular las ventanas &Xterm"
  1899. msgid "H&intbar visible"
  1900. msgstr "&Sugerencias visibles"
  1901. msgid "&Keybar visible"
  1902. msgstr "&Barra de teclas visible"
  1903. msgid "Command &prompt"
  1904. msgstr "&Línea de comandos"
  1905. msgid "Menu&bar visible"
  1906. msgstr "barra de &Menú visible"
  1907. msgid "&Equal split"
  1908. msgstr "simét&Rico"
  1909. msgid "Panel split"
  1910. msgstr "Disposición de paneles"
  1911. msgid "Console output"
  1912. msgstr "Línea de comandos"
  1913. msgid "Other options"
  1914. msgstr "Otras opciones"
  1915. msgid "&Vertical"
  1916. msgstr "&Vertical"
  1917. msgid "&Horizontal"
  1918. msgstr "&Horizontal"
  1919. msgid "Output lines:"
  1920. msgstr "líneas de salida:"
  1921. msgid "Layout"
  1922. msgstr "Presentación"
  1923. msgid "File listin&g"
  1924. msgstr "&Listado"
  1925. msgid "&Quick view"
  1926. msgstr "&Vista rápida"
  1927. msgid "&Info"
  1928. msgstr "&Información"
  1929. msgid "&Listing mode..."
  1930. msgstr "&Modo de listado..."
  1931. msgid "&Sort order..."
  1932. msgstr "&Ordenar..."
  1933. msgid "&Filter..."
  1934. msgstr "&Filtro..."
  1935. msgid "&Encoding..."
  1936. msgstr "&Código carácter..."
  1937. msgid "FT&P link..."
  1938. msgstr "conexión por FT&P..."
  1939. msgid "S&hell link..."
  1940. msgstr "conexión por SS&H..."
  1941. msgid "S&FTP link..."
  1942. msgstr ""
  1943. msgid "SM&B link..."
  1944. msgstr "conexión por &SMB..."
  1945. msgid "Paneli&ze"
  1946. msgstr "búsquedas e&Xternas"
  1947. msgid "&Rescan"
  1948. msgstr "&Actualizar"
  1949. msgid "&View"
  1950. msgstr "&Ver"
  1951. msgid "Vie&w file..."
  1952. msgstr "ver arc&Hivo..."
  1953. msgid "&Filtered view"
  1954. msgstr "e&Jecutar y ver..."
  1955. msgid "&Copy"
  1956. msgstr "&Copiar"
  1957. msgid "C&hmod"
  1958. msgstr "cambiar &Permisos..."
  1959. msgid "&Link"
  1960. msgstr "crear en&Lace..."
  1961. msgid "&Symlink"
  1962. msgstr " enlace &Simbólico..."
  1963. msgid "Relative symlin&k"
  1964. msgstr " enlace simbólico &Relativo..."
  1965. msgid "Edit s&ymlink"
  1966. msgstr "edi&Tar enlace simbólico"
  1967. msgid "Ch&own"
  1968. msgstr "cambiar dueñ&O..."
  1969. msgid "&Advanced chown"
  1970. msgstr "c&Ambiar dueño y permisos..."
  1971. msgid "&Rename/Move"
  1972. msgstr "&Renombrar/mover..."
  1973. msgid "&Mkdir"
  1974. msgstr "crear &Directorio..."
  1975. msgid "&Quick cd"
  1976. msgstr "ca&Mbiar directorio..."
  1977. msgid "Select &group"
  1978. msgstr "seleccionar &Grupo..."
  1979. msgid "U&nselect group"
  1980. msgstr "de-seleccionar gr&Upo..."
  1981. msgid "&Invert selection"
  1982. msgstr "&Invertir la selección"
  1983. msgid "E&xit"
  1984. msgstr "sali&R"
  1985. msgid "&User menu"
  1986. msgstr "me&Nú de usuario"
  1987. msgid "&Directory tree"
  1988. msgstr "árbol de di&Rectorios"
  1989. msgid "&Find file"
  1990. msgstr "&Buscar archivos..."
  1991. msgid "S&wap panels"
  1992. msgstr "&Intercambiar paneles"
  1993. msgid "Switch &panels on/off"
  1994. msgstr "&Activar/desactivar paneles"
  1995. msgid "&Compare directories"
  1996. msgstr "&Comparar directorios..."
  1997. msgid "C&ompare files"
  1998. msgstr "c&Omparar archivos"
  1999. msgid "E&xternal panelize"
  2000. msgstr "búsquedas e&Xternas..."
  2001. msgid "Show directory s&izes"
  2002. msgstr "mostrar &Tamaños de los directorios"
  2003. msgid "Command &history"
  2004. msgstr "&Historia de órdenes"
  2005. msgid "Di&rectory hotlist"
  2006. msgstr "&Favoritos..."
  2007. msgid "&Active VFS list"
  2008. msgstr "directorios virtuales (&VFS)..."
  2009. msgid "&Background jobs"
  2010. msgstr "&Procesos en 2º plano..."
  2011. msgid "Screen lis&t"
  2012. msgstr "&Lista de pantallas..."
  2013. msgid "&Undelete files (ext2fs only)"
  2014. msgstr "&Recuperar archivos (ext2fs)..."
  2015. msgid "&Listing format edit"
  2016. msgstr "edición del formato de &Listado"
  2017. msgid "Edit &extension file"
  2018. msgstr "&Editar extensiones..."
  2019. msgid "Edit &menu file"
  2020. msgstr "editar &Menú..."
  2021. msgid "Edit hi&ghlighting group file"
  2022. msgstr "editar &Grupos de resaltado"
  2023. msgid "&Configuration..."
  2024. msgstr "&Configuración..."
  2025. msgid "&Layout..."
  2026. msgstr "&Presentación..."
  2027. msgid "&Panel options..."
  2028. msgstr "pane&Les..."
  2029. msgid "C&onfirmation..."
  2030. msgstr "c&Onfirmación..."
  2031. msgid "&Display bits..."
  2032. msgstr "&Juego de caracteres..."
  2033. msgid "&Virtual FS..."
  2034. msgstr "sistema de archivos &Virtual (VFS)..."
  2035. msgid "Panels:"
  2036. msgstr "Paneles:"
  2037. #, c-format
  2038. msgid "You have %zd opened screen. Quit anyway?"
  2039. msgid_plural "You have %zd opened screens. Quit anyway?"
  2040. msgstr[0] "Hay %zd pantalla abierta. ¿Desea realmente salir?"
  2041. msgstr[1] "Hay %zd pantallas abiertas. ¿Desea realmente salir?"
  2042. msgid "The Midnight Commander"
  2043. msgstr "The Midnight Commander"
  2044. msgid "Do you really want to quit the Midnight Commander?"
  2045. msgstr "¿Desea realmente salir del Midnight Commander?"
  2046. msgid "&Above"
  2047. msgstr "a&Rriba"
  2048. msgid "&Left"
  2049. msgstr "&Izquierdo"
  2050. msgid "&Below"
  2051. msgstr "a&Bajo"
  2052. msgid "&Right"
  2053. msgstr "&Derecho"
  2054. msgid "ButtonBar|Menu"
  2055. msgstr "Menú"
  2056. msgid "ButtonBar|View"
  2057. msgstr "Ver"
  2058. msgid "ButtonBar|RenMov"
  2059. msgstr "RenMov"
  2060. msgid "ButtonBar|Mkdir"
  2061. msgstr "Mkdir"
  2062. msgid "Memory exhausted!"
  2063. msgstr "¡Memoria agotada!"
  2064. msgid "&Never"
  2065. msgstr "&Nunca"
  2066. msgid "On dum&b terminals"
  2067. msgstr "sólo en terminales &Tontas"
  2068. msgid "Alwa&ys"
  2069. msgstr "&Siempre"
  2070. msgid "A&uto save setup"
  2071. msgstr "auto-guarda con&Figuración"
  2072. msgid "Sa&fe delete"
  2073. msgstr "precauciones de &Borrado"
  2074. msgid "Cd follows lin&ks"
  2075. msgstr "cd sigue en&Laces"
  2076. msgid "Rotating d&ash"
  2077. msgstr "&Hélice de actividad"
  2078. msgid "Co&mplete: show all"
  2079. msgstr "completar: mostrar todos"
  2080. msgid "Shell &patterns"
  2081. msgstr "&Patrones del shell"
  2082. msgid "&Drop down menus"
  2083. msgstr "menús &Desplegables"
  2084. msgid "Auto m&enus"
  2085. msgstr "auto &Menús"
  2086. msgid "Use internal vie&w"
  2087. msgstr "usar &Visor interno"
  2088. msgid "Use internal edi&t"
  2089. msgstr "usar &Editor interno"
  2090. msgid "Pause after run"
  2091. msgstr "Pausa después de ejecutar"
  2092. msgid "Timeout:"
  2093. msgstr "Tiempo:"
  2094. msgid "S&ingle press"
  2095. msgstr "p&Ulsación única"
  2096. msgid "Esc key mode"
  2097. msgstr "Tecla de escape (Esc)"
  2098. msgid "Preallocate &space"
  2099. msgstr "&Reservar espacio"
  2100. msgid "Mkdi&r autoname"
  2101. msgstr "proponer nombre m&Kdir"
  2102. msgid "Classic pro&gressbar"
  2103. msgstr "barra de pr&Ogreso clásica"
  2104. msgid "Compute tota&ls"
  2105. msgstr "calcular totales"
  2106. msgid "&Verbose operation"
  2107. msgstr "operac&Ión detallada"
  2108. msgid "File operation options"
  2109. msgstr "Operaciones con archivos"
  2110. msgid "Configure options"
  2111. msgstr "Configuración"
  2112. msgid "Case &insensitive"
  2113. msgstr "ignorar may/mi&N"
  2114. msgid "Case s&ensitive"
  2115. msgstr "distinguir &May/min"
  2116. msgid "Use panel sort mo&de"
  2117. msgstr "usar orden del pane&L"
  2118. msgid "Quick search"
  2119. msgstr "Búsqueda rápida"
  2120. msgid "&Permissions"
  2121. msgstr "&Permisos"
  2122. msgid "File &types"
  2123. msgstr "&Tipos de archivos"
  2124. msgid "File highlight"
  2125. msgstr "Resaltar..."
  2126. msgid "&Mouse page scrolling"
  2127. msgstr "avance de página con &Ratón"
  2128. msgid "Pa&ge scrolling"
  2129. msgstr "avance de pá&Gina"
  2130. msgid "L&ynx-like motion"
  2131. msgstr "navegación al estilo Lyn&X"
  2132. msgid "Navigation"
  2133. msgstr "Navegación"
  2134. msgid "A&uto save panels setup"
  2135. msgstr "a&Uto-guarda configuración"
  2136. msgid "Simple s&wap"
  2137. msgstr "intercambio de paneles &Simple"
  2138. msgid "Re&verse files only"
  2139. msgstr "&Invertir sólo archivos"
  2140. msgid "Ma&rk moves down"
  2141. msgstr "marcar y a&Vanzar"
  2142. msgid "&Fast dir reload"
  2143. msgstr "recarga rápida de &Directorios"
  2144. msgid "Show &hidden files"
  2145. msgstr "mostrar archivos &Ocultos"
  2146. msgid "Show &backup files"
  2147. msgstr "mostrar &Archivos de respaldo"
  2148. msgid "Mi&x all files"
  2149. msgstr "me&Zclar archivos y directorios"
  2150. msgid "Use SI si&ze units"
  2151. msgstr "tama&Ños en unidades SI"
  2152. msgid "Show mi&ni-status"
  2153. msgstr "mostrar m&Ini-estado"
  2154. msgid "Panel options"
  2155. msgstr "Opciones de los paneles"
  2156. msgid ""
  2157. "Using the fast reload option may not reflect the exact\n"
  2158. "directory contents. In this case you'll need to do a\n"
  2159. "manual reload of the directory. See the man page for\n"
  2160. "the details."
  2161. msgstr "El uso del «cargado rápido» puede ocasionar que el contenido\ndel panel no siempre refleje el contenido del disco. En ese\ncaso use «C-r» para obligar al programa a actualizar los datos.\nLea la página de manual para mayor información."
  2162. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2163. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2164. msgid "sort|u"
  2165. msgstr "o"
  2166. msgid "&Unsorted"
  2167. msgstr "sin &Ordenar"
  2168. #. TRANSLATORS: one single character to represent 'name' sort mode
  2169. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2170. msgid "sort|n"
  2171. msgstr "n"
  2172. msgid "&Name"
  2173. msgstr "&Nombre"
  2174. #. TRANSLATORS: one single character to represent 'version' sort mode
  2175. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2176. msgid "sort|v"
  2177. msgstr "v"
  2178. msgid "&Version"
  2179. msgstr "&Versión"
  2180. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2181. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2182. msgid "sort|e"
  2183. msgstr "x"
  2184. msgid "&Extension"
  2185. msgstr "e&Xtensión"
  2186. #. TRANSLATORS: one single character to represent 'size' sort mode
  2187. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2188. msgid "sort|s"
  2189. msgstr "t"
  2190. msgid "&Size"
  2191. msgstr "&Tamaño"
  2192. msgid "Block Size"
  2193. msgstr "Tamaño bloque"
  2194. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2195. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2196. msgid "sort|m"
  2197. msgstr "m"
  2198. msgid "&Modify time"
  2199. msgstr "fecha &Modificación"
  2200. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2201. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2202. msgid "sort|a"
  2203. msgstr "a"
  2204. msgid "&Access time"
  2205. msgstr "fecha acce&So"
  2206. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2207. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2208. msgid "sort|h"
  2209. msgstr "c"
  2210. msgid "C&hange time"
  2211. msgstr "fecha cam&Bio"
  2212. msgid "Perm"
  2213. msgstr "Perm"
  2214. msgid "Nl"
  2215. msgstr "Ne"
  2216. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2217. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2218. msgid "sort|i"
  2219. msgstr "i"
  2220. msgid "&Inode"
  2221. msgstr "&Inodo"
  2222. msgid "UID"
  2223. msgstr "UID"
  2224. msgid "GID"
  2225. msgstr "GID"
  2226. msgid "Owner"
  2227. msgstr "Dueño"
  2228. msgid "Group"
  2229. msgstr "Grupo"
  2230. msgid "[dev]"
  2231. msgstr "[disp]"
  2232. msgid "UP--DIR"
  2233. msgstr "DIR-ANT"
  2234. msgid "SYMLINK"
  2235. msgstr "ENLACE"
  2236. msgid "SUB-DIR"
  2237. msgstr "SUB-DIR"
  2238. msgid "<readlink failed>"
  2239. msgstr "<readlink falló>"
  2240. #, c-format
  2241. msgid "%s byte"
  2242. msgid_plural "%s bytes"
  2243. msgstr[0] "%s byte"
  2244. msgstr[1] "%s bytes"
  2245. #, c-format
  2246. msgid "%s in %d file"
  2247. msgid_plural "%s in %d files"
  2248. msgstr[0] "%s en %d archivo"
  2249. msgstr[1] "%s en %d archivos"
  2250. msgid "Panelize"
  2251. msgstr "Búsquedas externas"
  2252. msgid "Unknown tag on display format:"
  2253. msgstr "Campo desconocido en el formato de pantalla:"
  2254. msgid "Do you really want to execute?"
  2255. msgstr "¿Realmente quiere ejecutar?"
  2256. msgid "User supplied format looks invalid, reverting to default."
  2257. msgstr "Formato no parece válido. Recuperando el predeterminado."
  2258. msgid "&Add new"
  2259. msgstr "&Añadir nuevo..."
  2260. msgid "External panelize"
  2261. msgstr "Búsquedas externas"
  2262. msgid "Command"
  2263. msgstr "Comando"
  2264. msgid "Other command"
  2265. msgstr "Otro comando"
  2266. msgid "Add to external panelize"
  2267. msgstr "Añadir nuevo"
  2268. msgid "Enter command label:"
  2269. msgstr "Etiqueta del comando:"
  2270. msgid "Cannot invoke command."
  2271. msgstr "Imposible invocar el comando."
  2272. msgid "Pipe close failed"
  2273. msgstr "Fallo al cerrar la tubería"
  2274. msgid "Cannot run external panelize in a non-local directory"
  2275. msgstr "Imposible ejecutar búsquedas externas en un directorio no local"
  2276. msgid "Modified git files"
  2277. msgstr "Archivos git modificados"
  2278. msgid "Find rejects after patching"
  2279. msgstr "Buscar archivos rechazados después de aplicar parches"
  2280. msgid "Find *.orig after patching"
  2281. msgstr "Buscar archivos originales después de aplicar parches"
  2282. msgid "Find SUID and SGID programs"
  2283. msgstr "Buscar programas con SUID y SGID"
  2284. #, c-format
  2285. msgid ""
  2286. "Cannot open the %s file for writing:\n"
  2287. "%s\n"
  2288. msgstr "Imposible abrir el archivo «%s» para escritura:\n%s\n"
  2289. #, c-format
  2290. msgid "Copy \"%s\" directory to:"
  2291. msgstr " Copiar directorio «%s» a: "
  2292. #, c-format
  2293. msgid "Move \"%s\" directory to:"
  2294. msgstr " Mover directorio «%s» a: "
  2295. #, c-format
  2296. msgid ""
  2297. "Cannot stat the destination\n"
  2298. "%s"
  2299. msgstr "Imposible identificar el destino\n%s"
  2300. #, c-format
  2301. msgid "Delete %s?"
  2302. msgstr "¿Borrar %s?"
  2303. msgid "ButtonBar|Static"
  2304. msgstr "Estát"
  2305. msgid "ButtonBar|Dynamc"
  2306. msgstr "Dinám"
  2307. msgid "ButtonBar|Rescan"
  2308. msgstr "Revisar"
  2309. msgid "ButtonBar|Forget"
  2310. msgstr "Olvidar"
  2311. msgid "ButtonBar|Rmdir"
  2312. msgstr "Borrar"
  2313. #, c-format
  2314. msgid ""
  2315. "Cannot write to the %s file:\n"
  2316. "%s\n"
  2317. msgstr "Imposible escribir al archivo %s:\n%s\n"
  2318. msgid "Debug"
  2319. msgstr "Depurar"
  2320. msgid "ERROR:"
  2321. msgstr "ERROR:"
  2322. msgid "True:"
  2323. msgstr "Verdadero:"
  2324. msgid "False:"
  2325. msgstr "Falso:"
  2326. msgid "Error calling program"
  2327. msgstr "Error al ejecutar el programa"
  2328. msgid "Warning -- ignoring file"
  2329. msgstr "Cuidado -- ignorando el archivo"
  2330. #, c-format
  2331. msgid ""
  2332. "File %s is not owned by root or you or is world writable.\n"
  2333. "Using it may compromise your security"
  2334. msgstr "El archivo «%s» no pertenece a Ud. ni a root, ni tiene permiso\nglobal de escritura. Usarlo podría comprometer su seguridad."
  2335. msgid "Format error on file Extensions File"
  2336. msgstr "Error de formato en el Archivo de Extensiones"
  2337. #, c-format
  2338. msgid "The %%var macro has no default"
  2339. msgstr "La macro %%var no tiene valor predeterminado"
  2340. #, c-format
  2341. msgid "The %%var macro has no variable"
  2342. msgstr "La macro %%var no contiene variables"
  2343. #, c-format
  2344. msgid ""
  2345. "Cannot open file%s\n"
  2346. "%s"
  2347. msgstr "Imposible abrir el archivo %s\n%s"
  2348. #, c-format
  2349. msgid "No suitable entries found in %s"
  2350. msgstr "No se encuentran entradas apropiadas en %s"
  2351. msgid "User menu"
  2352. msgstr "Menú de usuario"
  2353. msgid "Help file format error\n"
  2354. msgstr "Error en el formato del archivo de ayuda\n"
  2355. msgid "Internal bug: Double start of link area"
  2356. msgstr "Error interno: Doble inicio de enlace"
  2357. #, c-format
  2358. msgid "Cannot find node %s in help file"
  2359. msgstr "Imposible encontrar el nodo %s en el archivo de ayuda"
  2360. msgid "Help"
  2361. msgstr "Ayuda"
  2362. msgid "ButtonBar|Index"
  2363. msgstr "Índice"
  2364. msgid "ButtonBar|Prev"
  2365. msgstr "Volver"
  2366. msgid "Learn keys"
  2367. msgstr "Redefinir teclas"
  2368. msgid "Teach me a key"
  2369. msgstr "Enséñame una tecla"
  2370. #, c-format
  2371. msgid ""
  2372. "Please press the %s\n"
  2373. "and then wait until this message disappears.\n"
  2374. "\n"
  2375. "Then, press it again to see if OK appears\n"
  2376. "next to its button.\n"
  2377. "\n"
  2378. "If you want to escape, press a single Escape key\n"
  2379. "and wait as well."
  2380. msgstr "Por favor, presione la tecla %s\ny espere hasta que este mensaje desaparezca.\n\nLuego, presione la tecla de nuevo y vea si el mensaje de «OK» aparece\njunto a su botón \n\nSi quiere cancelar, presione una vez la tecla «Escape»\ny espere."
  2381. msgid "Cannot accept this key"
  2382. msgstr "Imposible aceptar esta tecla"
  2383. #, c-format
  2384. msgid "You have entered \"%s\""
  2385. msgstr "Usted tecleó «%s»"
  2386. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2387. msgid "OK"
  2388. msgstr "OK"
  2389. msgid ""
  2390. "It seems that all your keys already\n"
  2391. "work fine. That's great."
  2392. msgstr "Parece ser que todas sus teclas ya\nfuncionan correctamente. Fantástico."
  2393. msgid "&Discard"
  2394. msgstr "&Desechar"
  2395. msgid ""
  2396. "Great! You have a complete terminal database!\n"
  2397. "All your keys work well."
  2398. msgstr "¡Fantástico! ¡Sus tablas de terminal son correctas!\nTodas las teclas funcionan apropiadamente."
  2399. msgid "Press all the keys mentioned here. After you have done it, check"
  2400. msgstr "Presione todas las teclas y compruebe si alguna no responde. Para"
  2401. msgid "which keys are not marked with OK. Press space on the missing"
  2402. msgstr "redefinirla, pulse la barra espaciadora o haga clic con el ratón"
  2403. msgid "key, or click with the mouse to define it. Move around with Tab."
  2404. msgstr "en ella. Use el tabulador para moverse."
  2405. #, c-format
  2406. msgid ""
  2407. "Failed to run:\n"
  2408. "%s\n"
  2409. msgstr "Error al ejecutar:\n%s\n"
  2410. msgid "Home directory path is not absolute"
  2411. msgstr "La ruta del directorio de inicio no es ruta absoluta"
  2412. #, c-format
  2413. msgid ""
  2414. "\n"
  2415. "Failed while close:\n"
  2416. "%s\n"
  2417. msgstr "\nError al cerrar:\n%s\n"
  2418. msgid "Choose codepage"
  2419. msgstr "Codificación de caracteres"
  2420. msgid "- < No translation >"
  2421. msgstr "- < Sin traducción >"
  2422. msgid "%b %e %Y"
  2423. msgstr "%e %b %Y"
  2424. msgid "%b %e %H:%M"
  2425. msgstr "%e %b %H:%M"
  2426. #, c-format
  2427. msgid ""
  2428. "Cannot save file %s:\n"
  2429. "%s"
  2430. msgstr "Imposible guardar el archivo %s: \n%s"
  2431. msgid ""
  2432. "GNU Midnight Commander is already\n"
  2433. "running on this terminal.\n"
  2434. "Subshell support will be disabled."
  2435. msgstr "GNU Midnight Commander ya se está\nejecutando en este terminal.\nEl soporte de subshell quedará deshabilitado."
  2436. #, c-format
  2437. msgid "Cannot open named pipe %s\n"
  2438. msgstr "Imposible abrir la tubería con nombre %s\n"
  2439. msgid "The shell is still active. Quit anyway?"
  2440. msgstr "El shell todavía está activo. ¿Terminar de todas maneras?"
  2441. #, c-format
  2442. msgid "Warning: Cannot change to %s.\n"
  2443. msgstr "Cuidado: Imposible cambiar a %s.\n"
  2444. msgid "Using the S-Lang library with terminfo database\n"
  2445. msgstr "Utilizando la biblioteca S-Lang y terminales según terminfo\n"
  2446. msgid "Using the ncurses library\n"
  2447. msgstr "Utilizando la biblioteca ncurses\n"
  2448. msgid "Using the ncursesw library\n"
  2449. msgstr "Utilizando la biblioteca ncursesw\n"
  2450. msgid "With builtin Editor\n"
  2451. msgstr "Editor de texto propio incluido\n"
  2452. msgid "With optional subshell support\n"
  2453. msgstr "Soporte subshell optativo\n"
  2454. msgid "With subshell support as default\n"
  2455. msgstr "Soporte subshell activo por defecto\n"
  2456. msgid "With support for background operations\n"
  2457. msgstr "Soporte para operaciones en 2º plano\n"
  2458. msgid "With mouse support on xterm and Linux console\n"
  2459. msgstr "Soporte para ratón en xterm y consola Linux\n"
  2460. msgid "With mouse support on xterm\n"
  2461. msgstr "Soporte para ratón en xterm\n"
  2462. msgid "With support for X11 events\n"
  2463. msgstr "Soporte para eventos X11\n"
  2464. msgid "With internationalization support\n"
  2465. msgstr "Soporte para idioma local\n"
  2466. msgid "With multiple codepages support\n"
  2467. msgstr "Soporte para cambio de juegos de caracteres\n"
  2468. #, c-format
  2469. msgid "Built with GLib %d.%d.%d\n"
  2470. msgstr "Construido con GLib %d.%d.%d\n"
  2471. #, c-format
  2472. msgid "Virtual File Systems:"
  2473. msgstr "Sistemas de archivos virtuales:"
  2474. #, c-format
  2475. msgid "Data types:"
  2476. msgstr "Tipos de datos:"
  2477. msgid "Root directory:"
  2478. msgstr ""
  2479. msgid "System data"
  2480. msgstr "Datos de sistema"
  2481. msgid "Config directory:"
  2482. msgstr "Directorio de configuración:"
  2483. msgid "Data directory:"
  2484. msgstr "Directorio de datos:"
  2485. msgid "VFS plugins and scripts:"
  2486. msgstr "Complementos y guiones VFS"
  2487. msgid "User data"
  2488. msgstr "Datos de usuario"
  2489. msgid "Cache directory:"
  2490. msgstr "Directorio de caché:"
  2491. #, c-format
  2492. msgid ""
  2493. "Cannot open cpio archive\n"
  2494. "%s"
  2495. msgstr "Imposible abrir el archivo cpio\n%s"
  2496. #, c-format
  2497. msgid ""
  2498. "Premature end of cpio archive\n"
  2499. "%s"
  2500. msgstr "Fin prematuro del archivo cpio\n%s"
  2501. #, c-format
  2502. msgid ""
  2503. "Inconsistent hardlinks of\n"
  2504. "%s\n"
  2505. "in cpio archive\n"
  2506. "%s"
  2507. msgstr "Enlaces inconsistentes para\n%s\nen archivo cpio\n%s"
  2508. #, c-format
  2509. msgid "%s contains duplicate entries! Skipping!"
  2510. msgstr "¡%s contiene entradas duplicadas! ¡Ignorando!"
  2511. #, c-format
  2512. msgid ""
  2513. "Corrupted cpio header encountered in\n"
  2514. "%s"
  2515. msgstr "Cabecera cpio corrupta encontrada en\n%s"
  2516. #, c-format
  2517. msgid ""
  2518. "Unexpected end of file\n"
  2519. "%s"
  2520. msgstr "Fin de archivo inesperado\n%s"
  2521. #, c-format
  2522. msgid ""
  2523. "Cannot open %s archive\n"
  2524. "%s"
  2525. msgstr "Imposible abrir el archivo %s\n%s"
  2526. msgid "Inconsistent extfs archive"
  2527. msgstr "Archivo extfs inconsistente"
  2528. #, c-format
  2529. msgid "Warning: cannot open %s directory\n"
  2530. msgstr "Atención: imposible abrir el directorio %s\n"
  2531. #, c-format
  2532. msgid "fish: Disconnecting from %s"
  2533. msgstr "fish: Desconectando de %s"
  2534. msgid "fish: Waiting for initial line..."
  2535. msgstr "fish: Esperando línea de inicio..."
  2536. msgid "Sorry, we cannot do password authenticated connections for now."
  2537. msgstr "Lo siento, las conexiones con contraseña aún no son posibles."
  2538. #, c-format
  2539. msgid "fish: Password is required for %s"
  2540. msgstr "fish: Contraseña requerida para %s"
  2541. msgid "fish: Sending password..."
  2542. msgstr "fish: Enviando contraseña de usuario"
  2543. msgid "fish: Sending initial line..."
  2544. msgstr "fish: Enviando línea de inicio..."
  2545. msgid "fish: Handshaking version..."
  2546. msgstr "fish: Negociando versión..."
  2547. msgid "fish: Getting host info..."
  2548. msgstr "fish: Obteniendo información del servidor..."
  2549. #, c-format
  2550. msgid "fish: Reading directory %s..."
  2551. msgstr "fish: Leyendo el directorio %s..."
  2552. #, c-format
  2553. msgid "%s: done."
  2554. msgstr "%s: hecho."
  2555. #, c-format
  2556. msgid "%s: failure"
  2557. msgstr "%s: fallo"
  2558. #, c-format
  2559. msgid "fish: store %s: sending command..."
  2560. msgstr "fish: guardar %s: enviando comando..."
  2561. msgid "fish: Local read failed, sending zeros"
  2562. msgstr "fish: Fallo de lectura local, enviando ceros"
  2563. msgid "fish: storing zeros"
  2564. msgstr "fish: guardando ceros"
  2565. msgid "fish: storing file"
  2566. msgstr "ftpfs: guardando archivo"
  2567. msgid "Aborting transfer..."
  2568. msgstr "Abortando transferencia."
  2569. msgid "Error reported after abort."
  2570. msgstr "Error denunciado tras abortar."
  2571. msgid "Aborted transfer would be successful."
  2572. msgstr "Abortada transferencia con éxito."
  2573. #, c-format
  2574. msgid "ftpfs: Disconnecting from %s"
  2575. msgstr "ftpfs: Desconectando de %s"
  2576. #, c-format
  2577. msgid "FTP: Password required for %s"
  2578. msgstr "FTP: Contraseña requerida para %s"
  2579. msgid "ftpfs: sending login name"
  2580. msgstr "ftpfs: Enviando nombre de usuario"
  2581. msgid "ftpfs: sending user password"
  2582. msgstr "ftpfs: Enviando contraseña de usuario"
  2583. #, c-format
  2584. msgid "FTP: Account required for user %s"
  2585. msgstr "FTP: Cuenta requerida para usuario %s"
  2586. msgid "Account:"
  2587. msgstr "Cuenta:"
  2588. msgid "ftpfs: sending user account"
  2589. msgstr "ftpfs: Enviando cuenta de usuario"
  2590. msgid "ftpfs: logged in"
  2591. msgstr "ftpfs: Autorizados"
  2592. #, c-format
  2593. msgid "ftpfs: Login incorrect for user %s "
  2594. msgstr "ftpfs: denegada autorización al usuario %s"
  2595. msgid "ftpfs: Invalid host name."
  2596. msgstr "ftpfs: Nombre de máquina incorrecto"
  2597. #, c-format
  2598. msgid "ftpfs: %s"
  2599. msgstr "ftpfs: %s"
  2600. #, c-format
  2601. msgid "ftpfs: making connection to %s"
  2602. msgstr "ftpfs: Estableciendo conexión con %s"
  2603. msgid "ftpfs: connection interrupted by user"
  2604. msgstr "ftpfs: Conexión abortada por el usuario"
  2605. #, c-format
  2606. msgid "ftpfs: connection to server failed: %s"
  2607. msgstr "ftpfs: Conexión al servidor fracasó: %s"
  2608. #, c-format
  2609. msgid "Waiting to retry... %d (Control-G to cancel)"
  2610. msgstr "Esperando antes de insistir... %d (Ctrl-G para cancelar)"
  2611. msgid "ftpfs: invalid address family"
  2612. msgstr "ftpfs: Familia de direcciones incorrecta"
  2613. #, c-format
  2614. msgid "ftpfs: could not create socket: %s"
  2615. msgstr "ftpfs: Imposible crear socket: %s"
  2616. msgid "ftpfs: could not setup passive mode"
  2617. msgstr "ftpfs: Imposible aplicar el «modo pasivo»"
  2618. msgid "ftpfs: aborting transfer."
  2619. msgstr "ftpfs: Abortando transferencia."
  2620. #, c-format
  2621. msgid "ftpfs: abort error: %s"
  2622. msgstr "ftpfs: Error al abortar: %s"
  2623. msgid "ftpfs: abort failed"
  2624. msgstr "ftpfs: Aborto fracasado"
  2625. msgid "ftpfs: CWD failed."
  2626. msgstr "ftpfs: Fallo al ejecutar CWD"
  2627. msgid "ftpfs: couldn't resolve symlink"
  2628. msgstr "ftpfs: Imposible resolver el enlace simbólico"
  2629. msgid "Resolving symlink..."
  2630. msgstr "Resolviendo enlace simbólico..."
  2631. #, c-format
  2632. msgid "ftpfs: Reading FTP directory %s... %s%s"
  2633. msgstr "ftpfs: Leyendo vía FTP el directorio %s... %s%s"
  2634. msgid "(strict rfc959)"
  2635. msgstr "(rfc959)"
  2636. msgid "(chdir first)"
  2637. msgstr "(chdir)"
  2638. msgid "ftpfs: failed; nowhere to fallback to"
  2639. msgstr "ftpfs: Falló; no hay dónde replegarse"
  2640. msgid "ftpfs: storing file"
  2641. msgstr "ftpfs: guardando archivo"
  2642. msgid ""
  2643. "~/.netrc file has incorrect mode\n"
  2644. "Remove password or correct mode"
  2645. msgstr "Los permisos de ~/.netrc no son los apropiados.\nElimine la contraseña o cambie los permisos."
  2646. #, c-format
  2647. msgid "%s: Warning: file %s not found\n"
  2648. msgstr "%s: Atención: no se encuentra el archivo %s\n"
  2649. #, c-format
  2650. msgid ""
  2651. "Warning: Invalid line in %s:\n"
  2652. "%s\n"
  2653. msgstr "Atención: Línea no válida en %s:\n%s\n"
  2654. #, c-format
  2655. msgid ""
  2656. "Warning: Invalid flag %c in %s:\n"
  2657. "%s\n"
  2658. msgstr "Atención: Bandera %c no válida en %s:\n%s\n"
  2659. #, c-format
  2660. msgid "reconnect to %s failed"
  2661. msgstr "falló la reconexión con %s"
  2662. msgid "Authentication failed"
  2663. msgstr "Autenticación fallida"
  2664. #, c-format
  2665. msgid "Error %s creating directory %s"
  2666. msgstr "Error %s creando el directorio %s"
  2667. #, c-format
  2668. msgid "Error %s removing directory %s"
  2669. msgstr "Eror %s eliminando el directorio %s"
  2670. #, c-format
  2671. msgid "%s opening remote file %s"
  2672. msgstr "%s abriendo archivo remoto %s"
  2673. #, c-format
  2674. msgid "%s removing remote file %s"
  2675. msgstr "%s eliminando archivo remoto %s"
  2676. #, c-format
  2677. msgid "%s renaming files\n"
  2678. msgstr "%s renombrando archivos\n"
  2679. #, c-format
  2680. msgid ""
  2681. "Cannot open tar archive\n"
  2682. "%s"
  2683. msgstr "Imposible abrir archivo de tipo tar\n%s"
  2684. msgid "Inconsistent tar archive"
  2685. msgstr "Archivo de tipo tar inconsistente"
  2686. msgid "Unexpected EOF on archive file"
  2687. msgstr "Fin de archivo inesperado"
  2688. #, c-format
  2689. msgid ""
  2690. "%s\n"
  2691. "doesn't look like a tar archive."
  2692. msgstr "%s\nno parece un archivo de tipo tar."
  2693. msgid "undelfs: error"
  2694. msgstr "undelfs: error"
  2695. msgid "not enough memory"
  2696. msgstr "memoria insuficiente"
  2697. msgid "while allocating block buffer"
  2698. msgstr "al reservar buffer de bloque"
  2699. #, c-format
  2700. msgid "open_inode_scan: %d"
  2701. msgstr "open_inode_scan: %d"
  2702. #, c-format
  2703. msgid "while starting inode scan %d"
  2704. msgstr "al iniciar rastreo de inodos %d"
  2705. #, c-format
  2706. msgid "undelfs: loading deleted files information %d inodes"
  2707. msgstr "undelfs: cargando información de archivos eliminados %d inodos"
  2708. #, c-format
  2709. msgid "while calling ext2_block_iterate %d"
  2710. msgstr "al llamar a ext2_block_iterate %d"
  2711. msgid "no more memory while reallocating array"
  2712. msgstr "se agotó la memoria mientras se reubicaba la tabla"
  2713. #, c-format
  2714. msgid "while doing inode scan %d"
  2715. msgstr "mientras se hacía el rastreo de inodos %d"
  2716. #, c-format
  2717. msgid "Cannot open file %s"
  2718. msgstr "Imposible abrir el archivo %s"
  2719. msgid "undelfs: reading inode bitmap..."
  2720. msgstr "undelfs: leyendo mapa de inodos..."
  2721. #, c-format
  2722. msgid ""
  2723. "Cannot load inode bitmap from:\n"
  2724. "%s"
  2725. msgstr "Imposible cargar el inodo de:\n%s"
  2726. msgid "undelfs: reading block bitmap..."
  2727. msgstr "undelfs: leyendo mapa de bloques..."
  2728. #, c-format
  2729. msgid ""
  2730. "Cannot load block bitmap from:\n"
  2731. "%s"
  2732. msgstr "Imposible cargar bloques de:\n%s"
  2733. msgid "vfs_info is not fs!"
  2734. msgstr "¡vfs_info no es fs!"
  2735. msgid "You have to chdir to extract files first"
  2736. msgstr "Tiene que ir al directorio antes de extraer archivos"
  2737. msgid "while iterating over blocks"
  2738. msgstr "al iterar entre bloques"
  2739. #, c-format
  2740. msgid "Cannot open file \"%s\""
  2741. msgstr "Imposible abrir el archivo «%s»"
  2742. msgid "Ext2lib error"
  2743. msgstr "error Ext2lib"
  2744. msgid "Invalid value"
  2745. msgstr "Posición incorrecta"
  2746. msgid "Cannot spawn child process"
  2747. msgstr "Imposible ejecutar el proceso hijo"
  2748. msgid "Empty output from child filter"
  2749. msgstr "Salida del filtro vacía"
  2750. msgid "&Line number (decimal)"
  2751. msgstr "número de &Línea (decimal)"
  2752. msgid "Pe&rcents"
  2753. msgstr "po&Rcentaje del archivo"
  2754. msgid "&Decimal offset"
  2755. msgstr "desplazamiento (&Decimal)"
  2756. msgid "He&xadecimal offset"
  2757. msgstr "desplazamiento (he&Xadecimal)"
  2758. msgid "Goto"
  2759. msgstr "Ir a"
  2760. msgid "ButtonBar|Ascii"
  2761. msgstr "Ascii"
  2762. msgid "ButtonBar|HxSrch"
  2763. msgstr "BúsqHx"
  2764. msgid "ButtonBar|UnWrap"
  2765. msgstr "Desple"
  2766. msgid "ButtonBar|Wrap"
  2767. msgstr "Plegar"
  2768. msgid "ButtonBar|Hex"
  2769. msgstr "Hex"
  2770. msgid "ButtonBar|Goto"
  2771. msgstr "Ir a"
  2772. msgid "ButtonBar|Raw"
  2773. msgstr "Crudo"
  2774. msgid "ButtonBar|Parse"
  2775. msgstr "Proces"
  2776. msgid "ButtonBar|Unform"
  2777. msgstr "SinFor"
  2778. msgid "ButtonBar|Format"
  2779. msgstr "Format"
  2780. #, c-format
  2781. msgid ""
  2782. "Error while closing the file:\n"
  2783. "%s\n"
  2784. "Data may have been written or not"
  2785. msgstr "Error al cerrar el archivo:\n%s\nPuede que se hayan escrito los datos o no."
  2786. #, c-format
  2787. msgid ""
  2788. "Cannot save file:\n"
  2789. "%s"
  2790. msgstr "Imposible guardar el archivo:\n%s"
  2791. msgid "&Cancel quit"
  2792. msgstr "&Cancelar salida"
  2793. msgid "View: "
  2794. msgstr "Ver:"
  2795. #, c-format
  2796. msgid ""
  2797. "Cannot open \"%s\"\n"
  2798. "%s"
  2799. msgstr "Imposible abrir «%s»\n%s"
  2800. msgid "Cannot view: not a regular file"
  2801. msgstr "Imposible ver: no es un archivo ordinario"
  2802. msgid "Seeking to search result"
  2803. msgstr "Avanzando al resultado de búsqueda"
  2804. msgid "Search done"
  2805. msgstr "Búsqueda finalizada"
  2806. msgid "Continue from beginning?"
  2807. msgstr "¿Continuar desde el principio?"