es.po 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298
  1. # Spanish translation for aria2
  2. # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007
  3. # This file is distributed under the same license as the aria2 package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2007.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: aria2\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2008-12-20 20:08+0900\n"
  11. "PO-Revision-Date: 2008-08-16 00:03+0900\n"
  12. "Last-Translator: Jordi Pujol <Unknown>\n"
  13. "Language-Team: LANGUAGE <LL@li.org>\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Launchpad-Export-Date: 2008-08-15 12:32+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. #: src/DownloadEngine.cc:820
  20. msgid ""
  21. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  22. msgstr ""
  23. "Empezando secuencia de paro.., Pulse Ctrl-C otra vez para efectuar un paro "
  24. "de emergencia."
  25. #: src/DownloadEngine.cc:826
  26. msgid "Emergency shutdown sequence commencing..."
  27. msgstr "Empezando secuencia de paro de emergencia..."
  28. #: src/MultiUrlRequestInfo.cc:96
  29. msgid "aria2 will resume download if the transfer is restarted."
  30. msgstr "aria2 continuará la descarga si se vuelve a arrancar la transferencia"
  31. #: src/MultiUrlRequestInfo.cc:98
  32. msgid ""
  33. "If there are any errors, then see the log file. See '-l' option in help/man "
  34. "page for details."
  35. msgstr ""
  36. "Si hay errores, entonces mire el fichero de anotaciones. para más "
  37. "información vea la opción '-l' en las páginas help/man."
  38. #: src/RequestGroupMan.cc:389
  39. msgid "Download Results:"
  40. msgstr "Resultados de la descarga:"
  41. #: src/RequestGroupMan.cc:430
  42. msgid "Status Legend:"
  43. msgstr ""
  44. #: src/OptionHandler.cc:38
  45. msgid " Default: "
  46. msgstr " Por defecto: "
  47. #: src/OptionHandler.cc:39
  48. msgid " Tags: "
  49. msgstr ""
  50. #: src/OptionHandler.cc:40
  51. #, fuzzy
  52. msgid " Possible Values: "
  53. msgstr " Por defecto: "
  54. #: src/OptionHandlerImpl.h:99
  55. msgid "must be either 'true' or 'false'."
  56. msgstr "ha de ser \"true\" o \"false\""
  57. #: src/OptionHandlerImpl.h:130 src/OptionHandlerImpl.h:177
  58. #, c-format
  59. msgid "must be between %s and %s."
  60. msgstr "ha de estar entre %s y %s"
  61. #: src/OptionHandlerImpl.h:174
  62. #, c-format
  63. msgid "must be smaller than or equal to %s."
  64. msgstr "ha de ser más pequeño o igual que %s"
  65. #: src/OptionHandlerImpl.h:180
  66. #, c-format
  67. msgid "must be greater than or equal to %s."
  68. msgstr "ha de ser mayor o igual que %s"
  69. #: src/OptionHandlerImpl.h:183 src/OptionHandlerImpl.h:246
  70. msgid "must be a number."
  71. msgstr "ha de ser un número."
  72. #: src/OptionHandlerImpl.h:237
  73. #, c-format
  74. msgid "must be smaller than or equal to %.1f."
  75. msgstr "ha de ser más pequeño o igual a %.1f."
  76. #: src/OptionHandlerImpl.h:240
  77. #, c-format
  78. msgid "must be between %.1f and %.1f."
  79. msgstr "ha de estar entre %.1f y %.1f."
  80. #: src/OptionHandlerImpl.h:243
  81. #, c-format
  82. msgid "must be greater than or equal to %.1f."
  83. msgstr "ha de ser mayor o igual que %.1f."
  84. #: src/OptionHandlerImpl.h:380
  85. msgid "must be one of the following:"
  86. msgstr "ha de ser uno de los siguientes:"
  87. #: src/OptionHandlerImpl.h:427 src/OptionHandlerImpl.h:468
  88. msgid "unrecognized proxy format"
  89. msgstr "formato proxy no reconocido"
  90. #: src/usage_text.h:37
  91. msgid ""
  92. " -d, --dir=DIR The directory to store the downloaded file."
  93. msgstr ""
  94. " -d, --dir=DIR Directorio donde grabara el archivo descargado."
  95. #: src/usage_text.h:39
  96. msgid " -o, --out=FILE The file name of the downloaded file."
  97. msgstr " -o, --out=FILE El nombre del fichero descargado."
  98. #: src/usage_text.h:41
  99. msgid ""
  100. " -l, --log=LOG The file name of the log file. If '-' is\n"
  101. " specified, log is written to stdout."
  102. msgstr ""
  103. " -l, --log=LOG El nombre del fichero de anotaciones.. Si se "
  104. "pone '-',\n"
  105. " las anotaciones se escriben en stdout."
  106. #: src/usage_text.h:44
  107. msgid " -D, --daemon Run as daemon."
  108. msgstr " -D, --daemon Ejecuta como demonio."
  109. #: src/usage_text.h:46
  110. #, fuzzy
  111. msgid ""
  112. " -s, --split=N Download a file using N connections. If more\n"
  113. " than N URLs are given, first N URLs are used "
  114. "and\n"
  115. " remaining URLs are used for backup. If less "
  116. "than\n"
  117. " N URLs are given, those URLs are used more "
  118. "than\n"
  119. " once so that N connections total are made\n"
  120. " simultaneously. Please see -j option too.\n"
  121. " Please note that in Metalink download, this\n"
  122. " option has no effect and use -C option instead."
  123. msgstr ""
  124. " --select-file=INDEX... Establece el fichero a descargar especificando "
  125. "su índice.\n"
  126. " Se puede encontrar el fichero índice usando la "
  127. "opción\n"
  128. " --show-files. Se pueden especificar varios\n"
  129. " índices usando ',', por ejemplo: \"3,6\".\n"
  130. " Se puede usar también '-' para especificar un "
  131. "rango: \"1-5\".\n"
  132. " ',' y '-' se pueden usar juntos.\n"
  133. " Cuando se usa con la opción -M, el ìndice "
  134. "puede variar\n"
  135. " dependiendo de la consulta(ver las opciones --"
  136. "metalink-*)."
  137. #: src/usage_text.h:55
  138. #, fuzzy
  139. msgid ""
  140. " --retry-wait=SEC Set the seconds to wait to retry after an "
  141. "error\n"
  142. " has occured."
  143. msgstr ""
  144. " --retry-wait=SEC Establece los segundos para esperar a "
  145. "reintentar \n"
  146. " después de un error. Ponga un valor entre 0 y "
  147. "60.\n"
  148. " Defecto: 5"
  149. #: src/usage_text.h:58
  150. #, fuzzy
  151. msgid " -t, --timeout=SEC Set timeout in seconds."
  152. msgstr ""
  153. " -t, --timeout=SEC Establece el tiempo de espera en segundos. "
  154. "Defecto: 60"
  155. #: src/usage_text.h:60
  156. #, fuzzy
  157. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  158. msgstr ""
  159. " -m, --max-tries=N Establece el número de intentos. 0 significa "
  160. "ilimitado.\n"
  161. " Defecto: 5"
  162. #: src/usage_text.h:62
  163. #, fuzzy
  164. msgid ""
  165. " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  166. " See also --all-proxy option.\n"
  167. " This affects all URLs."
  168. msgstr ""
  169. " --http-proxy-method=METHOD Establece el mètode a usar en las peticiones "
  170. "al proxy.\n"
  171. " METHOD es 'get' o 'tunnel'.\n"
  172. " Defecto: tunnel"
  173. #: src/usage_text.h:66
  174. #, fuzzy
  175. msgid ""
  176. " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  177. " See also --all-proxy option.\n"
  178. " This affects all URLs."
  179. msgstr ""
  180. " --http-proxy-method=METHOD Establece el mètode a usar en las peticiones "
  181. "al proxy.\n"
  182. " METHOD es 'get' o 'tunnel'.\n"
  183. " Defecto: tunnel"
  184. #: src/usage_text.h:70
  185. #, fuzzy
  186. msgid ""
  187. " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  188. " See also --all-proxy option.\n"
  189. " This affects all URLs."
  190. msgstr ""
  191. " --ftp-type=TYPE Establece el tipo de transferencia FTP. TYPE "
  192. "puede ser 'binary'\n"
  193. " o 'ascii'.\n"
  194. " Defecto: binary"
  195. #: src/usage_text.h:74
  196. #, fuzzy
  197. msgid ""
  198. " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  199. " You can override this setting and specify a\n"
  200. " proxy server for a particular protocol using\n"
  201. " --http-proxy, --https-proxy and --ftp-proxy\n"
  202. " options.\n"
  203. " This affects all URLs."
  204. msgstr ""
  205. " -c, --continue Continua descargando un fichero parcialmente "
  206. "descargado.\n"
  207. " Usen esta opción para seguir la descarga\n"
  208. " comenzada por un navegador Web o otro "
  209. "programa\n"
  210. " que descarga los ficheros secuencialmente "
  211. "desde el\n"
  212. " principio. esta opción solamente es\n"
  213. " aplicable a descargas http(s)/ftp."
  214. #: src/usage_text.h:81
  215. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  216. msgstr ""
  217. " --http-user=USER Establece el usuario HTTP. Esto afecta a todas "
  218. "las URLs."
  219. #: src/usage_text.h:83
  220. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  221. msgstr ""
  222. " --http-passwd=PASSWD Establece la palabra de paso HTTP. Esto afecta "
  223. "a todas las URLs."
  224. #: src/usage_text.h:85
  225. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  226. msgstr ""
  227. #: src/usage_text.h:87
  228. #, fuzzy
  229. msgid ""
  230. " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  231. "basic\n"
  232. " is the only supported scheme."
  233. msgstr ""
  234. " --http-auth-scheme=SCHEME Establece el esquema de autentificación "
  235. "HTTP. Actualmente, solamente\n"
  236. " se soporta el esquema básico.\n"
  237. " Defecto: basic"
  238. #: src/usage_text.h:90
  239. msgid " --referer=REFERER Set Referer. This affects all URLs."
  240. msgstr ""
  241. " --referer=REFERER Establece la referencia. Esto afecta a todas "
  242. "las URLs."
  243. #: src/usage_text.h:92
  244. #, fuzzy
  245. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  246. msgstr ""
  247. " --http-user=USER Establece el usuario HTTP. Esto afecta a todas "
  248. "las URLs."
  249. #: src/usage_text.h:94
  250. #, fuzzy
  251. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  252. msgstr ""
  253. " --http-passwd=PASSWD Establece la palabra de paso HTTP. Esto afecta "
  254. "a todas las URLs."
  255. #: src/usage_text.h:96
  256. msgid " --ftp-type=TYPE Set FTP transfer type."
  257. msgstr ""
  258. #: src/usage_text.h:98
  259. msgid ""
  260. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  261. "given,\n"
  262. " the active mode will be used."
  263. msgstr ""
  264. #: src/usage_text.h:101
  265. #, fuzzy
  266. msgid ""
  267. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  268. "than\n"
  269. " or equal to this value(bytes per sec).\n"
  270. " 0 means aria2 does not have a lowest speed "
  271. "limit.\n"
  272. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  273. " This option does not affect BitTorrent "
  274. "downloads."
  275. msgstr ""
  276. " --lowest-speed-limit=SPEED Cerrar la conexión si la velocidad de conexión "
  277. "es más pequeña\n"
  278. " o igual a este valor (bytes para seg).\n"
  279. " 0 quiere dir que aria2 no tiene límite en la "
  280. "velocidad baja.\n"
  281. " Se puede añadir K o M(1K = 1024, 1M = 1024K).\n"
  282. " esta opción no afecta a las descargas de "
  283. "BitTorrent.\n"
  284. " Defecto: 0"
  285. #: src/usage_text.h:107
  286. #, fuzzy
  287. msgid ""
  288. " --max-download-limit=SPEED Set max download speed in bytes per sec.\n"
  289. " 0 means unrestricted.\n"
  290. " You can append K or M(1K = 1024, 1M = 1024K)."
  291. msgstr ""
  292. " --max-download-limit=SPEED Establecer la máxima velocidad de conexión en "
  293. "bytes por seg.\n"
  294. " 0 significa no restringido.\n"
  295. " Se puede añadir K o M(1K = 1024, 1M = 1024K).\n"
  296. " Defecto: 0"
  297. #: src/usage_text.h:111
  298. #, fuzzy
  299. msgid ""
  300. " --file-allocation=METHOD Specify file allocation method.\n"
  301. " 'none' doesn't pre-allocate file space. "
  302. "'prealloc'\n"
  303. " pre-allocates file space before download "
  304. "begins.\n"
  305. " This may take some time depending on the size "
  306. "of\n"
  307. " the file."
  308. msgstr ""
  309. " --file-allocation=METHOD Es el método de reserva de ficheros. METHOD "
  310. "puede ser\n"
  311. " 'none' o 'prealloc'. 'none' no hace reserva de "
  312. "espacio\n"
  313. " para el fichero. 'prealloc' reserva espacio\n"
  314. " antes de que empiece la descarga. Esto puede "
  315. "llevar algún tiempo\n"
  316. " dependiendo de la medida del fichero.\n"
  317. " Defecto: prealloc"
  318. #: src/usage_text.h:117
  319. msgid ""
  320. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  321. " size is smaller than SIZE.\n"
  322. " You can append K or M(1K = 1024, 1M = 1024K)."
  323. msgstr ""
  324. " --no-file-allocation-limit=SIZE No se reserva espacio para archivos cuya\n"
  325. " medida es más pequeña que SIZE.\n"
  326. " Usted puede añadir K o M(1K = 1024, 1M = "
  327. "1024K)."
  328. #: src/usage_text.h:121
  329. msgid ""
  330. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  331. "while\n"
  332. " allocating files.\n"
  333. " Turn off if you encounter any error"
  334. msgstr ""
  335. " --enable-direct-io[=true|false] Acivar E/S directa, que minimiza el uso de "
  336. "CPU cuando\n"
  337. " se reserva espacio para los archivos.\n"
  338. " Desactivelo si encuentra algún error."
  339. #: src/usage_text.h:125
  340. #, fuzzy
  341. msgid ""
  342. " --allow-overwrite=true|false If false, aria2 doesn't download a file which\n"
  343. " already exists but the corresponding .aria2 "
  344. "file\n"
  345. " doesn't exist."
  346. msgstr ""
  347. " --allow-overwrite=true|false Si es false, aria2 no descarga un fichero que\n"
  348. " ya existe pero el fichero correspondiente ."
  349. "aria2\n"
  350. " no existe.\n"
  351. " Defecto: false"
  352. #: src/usage_text.h:129
  353. msgid ""
  354. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  355. "download\n"
  356. " when a piece length is different from one in\n"
  357. " a control file. If true is given, you can "
  358. "proceed\n"
  359. " but some download progress will be lost."
  360. msgstr ""
  361. #: src/usage_text.h:134
  362. #, fuzzy
  363. msgid ""
  364. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  365. "sequentially\n"
  366. " and download each URI in a separate session, "
  367. "like\n"
  368. " the usual command-line download utilities."
  369. msgstr ""
  370. " -Z, --force-sequential[=true|false] Coge URIs secuencialmente en la línea "
  371. "de órdenes\n"
  372. " y descarga cada URI en una sesión separada, "
  373. "como\n"
  374. " normalmente harian las utilidades de descarga "
  375. "de línea de órdenes.\n"
  376. " Defecto: false"
  377. #: src/usage_text.h:138
  378. #, fuzzy
  379. msgid ""
  380. " --auto-file-renaming[=true|false] Rename file name if the same file "
  381. "already\n"
  382. " exists. This option works only in http(s)/ftp\n"
  383. " download.\n"
  384. " The new file name has a dot and a number"
  385. "(1..9999)\n"
  386. " appended."
  387. msgstr ""
  388. " --auto-file-renaming[=true|false] Cambia el nombre del fichero si el mismo "
  389. "fichero\n"
  390. " ya existe. esta opción solamente va para "
  391. "descargas\n"
  392. " http/ftp\n"
  393. " Añadimos al nuevo nombre de fichero un punto y "
  394. "un número(1..9999).\n"
  395. " Defecto: true"
  396. #: src/usage_text.h:144
  397. #, fuzzy
  398. msgid ""
  399. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  400. " You can specify set of parts:\n"
  401. " http://{sv1,sv2,sv3}/foo.iso\n"
  402. " Also you can specify numeric sequences with "
  403. "step\n"
  404. " counter:\n"
  405. " http://host/image[000-100:2].img\n"
  406. " A step counter can be omitted.\n"
  407. " If all URIs do not point to the same file, "
  408. "such\n"
  409. " as the second example above, -Z option is\n"
  410. " required."
  411. msgstr ""
  412. " -P, --parameterized-uri[=true|false] Activa el soporte de URI "
  413. "parametrizada.\n"
  414. " Se pueden especificar conjuntos de partes:\n"
  415. " http://{sv1,sv2,sv3}/foo.iso\n"
  416. " También se pueden poner secuencias numéricas "
  417. "con\n"
  418. " contador de salto:\n"
  419. " http://host/image[000-100:2].img\n"
  420. " Se puede omitir el contador de salto.\n"
  421. " Si todas las URIs no apuntan al mismo fichero, "
  422. "tal\n"
  423. " como en el segundo ejemplo anterior, se "
  424. "necesita la opción -Z.\n"
  425. " Defecto: false"
  426. #: src/usage_text.h:155
  427. msgid ""
  428. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  429. msgstr ""
  430. " --enable-http-keep-alive[=true|false] Habilitar conexiones persistentes "
  431. "HTTP/1.1."
  432. #: src/usage_text.h:157
  433. #, fuzzy
  434. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  435. msgstr ""
  436. " --enable-http-keep-alive[=true|false] Habilitar conexiones persistentes "
  437. "HTTP/1.1."
  438. #: src/usage_text.h:159
  439. #, fuzzy
  440. msgid ""
  441. " -V, --check-integrity[=true|false] Check file integrity by validating "
  442. "piece\n"
  443. " hashes. This option has effect only in "
  444. "BitTorrent\n"
  445. " and Metalink downloads with chunk checksums.\n"
  446. " Use this option to re-download a damaged "
  447. "portion\n"
  448. " of a file."
  449. msgstr ""
  450. " --check-integrity=true|false Comprueba la integridad del fichero validando "
  451. "el hash de las piezas.\n"
  452. " esta opción solamente sirve en descargas "
  453. "BitTorrent\n"
  454. " y descargas Metalink con sumas de comprobación "
  455. "de trozos.\n"
  456. " Usen esta opción para volver a descargar una "
  457. "parte defectuosa\n"
  458. " de un fichero.\n"
  459. " Defecto: false"
  460. #: src/usage_text.h:165
  461. #, fuzzy
  462. msgid ""
  463. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  464. "calculating\n"
  465. " checksum while downloading a file if chunk\n"
  466. " checksums are provided."
  467. msgstr ""
  468. " --realtime-chunk-checksum=true|false Validar las sumas de comprobación de "
  469. "los trozos\n"
  470. " mientras descargamos un fichero en modo "
  471. "Metalink. esta opción\n"
  472. " solamente afecta a las descargas Metalink con "
  473. "sumas de comprobación de trozos.\n"
  474. " Defecto: true"
  475. #: src/usage_text.h:169
  476. msgid ""
  477. " -c, --continue Continue downloading a partially downloaded\n"
  478. " file. Use this option to resume a download\n"
  479. " started by a web browser or another program\n"
  480. " which downloads files sequentially from the\n"
  481. " beginning. Currently this option is only\n"
  482. " applicable to http(s)/ftp downloads."
  483. msgstr ""
  484. " -c, --continue Continua descargando un fichero parcialmente "
  485. "descargado.\n"
  486. " Usen esta opción para seguir la descarga\n"
  487. " comenzada por un navegador Web o otro "
  488. "programa\n"
  489. " que descarga los ficheros secuencialmente "
  490. "desde el\n"
  491. " principio. esta opción solamente es\n"
  492. " aplicable a descargas http(s)/ftp."
  493. #: src/usage_text.h:176
  494. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  495. msgstr ""
  496. " -U, --user-agent=USER_AGENT Establece el agente de usuario para descargas "
  497. "http."
  498. #: src/usage_text.h:178
  499. msgid " -n, --no-netrc Disables netrc support."
  500. msgstr " -n, --no-netrc Desactiva el soporte netrc."
  501. #: src/usage_text.h:180
  502. #, fuzzy
  503. msgid ""
  504. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  505. " multiple URIs for a single entity: separate\n"
  506. " URIs on a single line using the TAB "
  507. "character.\n"
  508. " Reads input from stdin when '-' is specified.\n"
  509. " The additional out and dir options can be\n"
  510. " specified after each line of URIs. This "
  511. "optional\n"
  512. " line must start with white space(s). See "
  513. "INPUT\n"
  514. " FILE section of man page for details."
  515. msgstr ""
  516. " -i , --input-file=FILE Descarga las URIs que encuentra en el fichero "
  517. "FILE. Se pueden especificar\n"
  518. " varias URIs para una única entidad: separen "
  519. "las\n"
  520. " URIs en una sola línea usando el carácter "
  521. "TAB.\n"
  522. " Lee la entrada desde stdin cuando se "
  523. "especifica '-'."
  524. #: src/usage_text.h:189
  525. #, fuzzy
  526. msgid ""
  527. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  528. "for\n"
  529. " every static (HTTP/FTP) URL, torrent and "
  530. "metalink.\n"
  531. " See also -s and -C options."
  532. msgstr ""
  533. " -j, --max-concurrent-downloads=N Establece el numero maximo de descargas "
  534. "paralelas para cada URL estatico (HTTP/FTP) , torrent y metalink."
  535. #: src/usage_text.h:193
  536. msgid ""
  537. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  538. "format\n"
  539. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  540. msgstr ""
  541. #: src/usage_text.h:196
  542. msgid ""
  543. " -S, --show-files Print file listing of .torrent or .metalink "
  544. "file\n"
  545. " and exit. More detailed information will be "
  546. "listed\n"
  547. " in case of torrent file."
  548. msgstr ""
  549. " -S, --show-files Escribe el listado de ficheros de un fichero ."
  550. "torrent o .metalink\n"
  551. " y sale. Se listará información más detallada\n"
  552. " en el caso de un fichero torrent."
  553. #: src/usage_text.h:200
  554. #, fuzzy
  555. msgid ""
  556. " --select-file=INDEX... Set file to download by specifying its index.\n"
  557. " You can find the file index using the\n"
  558. " --show-files option. Multiple indexes can be\n"
  559. " specified by using ',', for example: \"3,6\".\n"
  560. " You can also use '-' to specify a range: \"1-5"
  561. "\".\n"
  562. " ',' and '-' can be used together.\n"
  563. " When used with the -M option, index may vary\n"
  564. " depending on the query(see --metalink-* "
  565. "options)."
  566. msgstr ""
  567. " --select-file=INDEX... Establece el fichero a descargar especificando "
  568. "su índice.\n"
  569. " Se puede encontrar el fichero índice usando la "
  570. "opción\n"
  571. " --show-files. Se pueden especificar varios\n"
  572. " índices usando ',', por ejemplo: \"3,6\".\n"
  573. " Se puede usar también '-' para especificar un "
  574. "rango: \"1-5\".\n"
  575. " ',' y '-' se pueden usar juntos.\n"
  576. " Cuando se usa con la opción -M, el ìndice "
  577. "puede variar\n"
  578. " dependiendo de la consulta(ver las opciones --"
  579. "metalink-*)."
  580. #: src/usage_text.h:209
  581. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  582. msgstr " -T, --torrent-file=TORRENT_FILE El camino al fichero .torrent."
  583. #: src/usage_text.h:211
  584. msgid ""
  585. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  586. " whose suffix is .torrent or content type is\n"
  587. " application/x-bittorrent is downloaded, aria2\n"
  588. " parses it as a torrent file and downloads "
  589. "files\n"
  590. " mentioned in it.\n"
  591. " If mem is specified, a torrent file is not\n"
  592. " written to the disk, but is just kept in "
  593. "memory.\n"
  594. " If false is specified, the action mentioned "
  595. "above\n"
  596. " is not taken."
  597. msgstr ""
  598. #: src/usage_text.h:221
  599. #, fuzzy
  600. msgid ""
  601. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  602. " mentioned in .torrent file."
  603. msgstr ""
  604. " --direct-file-mapping=true|false Leer y escribir directamente a cada "
  605. "fichero\n"
  606. " especificado en el fichero .torrent.\n"
  607. " Defecto: true"
  608. #: src/usage_text.h:224
  609. msgid ""
  610. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  611. " Multiple ports can be specified by using ',',\n"
  612. " for example: \"6881,6885\". You can also use "
  613. "'-'\n"
  614. " to specify a range: \"6881-6999\". ',' and '-' "
  615. "can\n"
  616. " be used together."
  617. msgstr ""
  618. " --listen-port=PORT... Fija el puerto TCP para las dercargas bittorrent\n"
  619. "Multiples puertos pueden ser especificados separando por ','\n"
  620. "por ejemplo \"6881,6885\". Tambien puede usar '-'\n"
  621. "para especificar un rango de puertos: \"6881-6999\" ',' y '-' pueden \n"
  622. "ser usados juntos."
  623. #: src/usage_text.h:230
  624. msgid ""
  625. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  626. "sec.\n"
  627. " 0 means unrestricted.\n"
  628. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  629. " To limit the upload speed per torrent, use\n"
  630. " --max-upload-limit option. If non-zero value "
  631. "is\n"
  632. " specified, --max-upload-limit option is "
  633. "ignored."
  634. msgstr ""
  635. #: src/usage_text.h:237
  636. #, fuzzy
  637. msgid ""
  638. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  639. " bytes/sec. 0 means unrestricted.\n"
  640. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  641. " To limit the overall upload speed, use\n"
  642. " --max-overall-upload-limit option."
  643. msgstr ""
  644. " --max-upload-limit=SPEED Establece la velocidad máxima de subida en "
  645. "bytes por seg.\n"
  646. " 0 significa no restingido.\n"
  647. " Se puede añadir K o M(1K = 1024, 1M = 1024K).\n"
  648. " Defecto: 0"
  649. #: src/usage_text.h:243
  650. msgid ""
  651. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  652. " --seed-ratio option."
  653. msgstr ""
  654. " --seed-time=MINUTES Especifica el tiempo de sembrar en minuts. "
  655. "Mirar también\n"
  656. " la opción --seed-ratio."
  657. #: src/usage_text.h:246
  658. #, fuzzy
  659. msgid ""
  660. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  661. " until share ratio reaches RATIO.\n"
  662. " You are strongly encouraged to specify equals "
  663. "or\n"
  664. " more than 1.0 here. Specify 0.0 if you intend "
  665. "to\n"
  666. " do seeding regardless of share ratio.\n"
  667. " If --seed-time option is specified along with\n"
  668. " this option, seeding ends when at least one "
  669. "of\n"
  670. " the conditions is satisfied."
  671. msgstr ""
  672. " --select-file=INDEX... Establece el fichero a descargar especificando "
  673. "su índice.\n"
  674. " Se puede encontrar el fichero índice usando la "
  675. "opción\n"
  676. " --show-files. Se pueden especificar varios\n"
  677. " índices usando ',', por ejemplo: \"3,6\".\n"
  678. " Se puede usar también '-' para especificar un "
  679. "rango: \"1-5\".\n"
  680. " ',' y '-' se pueden usar juntos.\n"
  681. " Cuando se usa con la opción -M, el ìndice "
  682. "puede variar\n"
  683. " dependiendo de la consulta(ver las opciones --"
  684. "metalink-*)."
  685. #: src/usage_text.h:255
  686. msgid ""
  687. " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  688. "in\n"
  689. " BitTorrent is 20 byte length. If more than 20\n"
  690. " bytes are specified, only first 20\n"
  691. " bytes are used. If less than 20 bytes are\n"
  692. " specified, the random alphabet characters are\n"
  693. " added to make it's length 20 bytes."
  694. msgstr ""
  695. #: src/usage_text.h:262
  696. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  697. msgstr ""
  698. #: src/usage_text.h:264
  699. msgid " --enable-dht[=true|false] Enable DHT functionality."
  700. msgstr " --enable-dht[=true|false] Habilitar funcionanlidad DHT."
  701. #: src/usage_text.h:266
  702. msgid ""
  703. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  704. " Multiple ports can be specified by using ',',\n"
  705. " for example: \"6881,6885\". You can also use "
  706. "'-'\n"
  707. " to specify a range: \"6881-6999\". ',' and '-' "
  708. "can\n"
  709. " be used together."
  710. msgstr ""
  711. #: src/usage_text.h:272
  712. msgid ""
  713. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  714. " network."
  715. msgstr ""
  716. #: src/usage_text.h:275
  717. msgid ""
  718. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  719. msgstr ""
  720. #: src/usage_text.h:277
  721. msgid ""
  722. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  723. " If several encryption methods are provided by "
  724. "a\n"
  725. " peer, aria2 chooses the lowest one which "
  726. "satisfies\n"
  727. " the given level."
  728. msgstr ""
  729. #: src/usage_text.h:282
  730. msgid ""
  731. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  732. " establish connection with legacy BitTorrent\n"
  733. " handshake. Thus aria2 always uses Obfuscation\n"
  734. " handshake."
  735. msgstr ""
  736. #: src/usage_text.h:287
  737. msgid ""
  738. " --bt-request-peer-speed-limit=SPEED In BitTorrent downloads, if the "
  739. "download\n"
  740. " speed is lower than SPEED, aria2 initiates "
  741. "and\n"
  742. " accepts connections ignoring max peer cap.\n"
  743. " You can append K or M(1K = 1024, 1M = 1024K)."
  744. msgstr ""
  745. #: src/usage_text.h:292
  746. msgid ""
  747. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  748. "each\n"
  749. " BitTorrent download."
  750. msgstr ""
  751. " --bt-max-open-files=NUM Especifica el numero maximo de archivos a "
  752. "abrir en cada \n"
  753. "descarga Bittorrent."
  754. #: src/usage_text.h:295
  755. msgid ""
  756. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  757. " verifying piece hashes."
  758. msgstr ""
  759. #: src/usage_text.h:298
  760. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  761. msgstr " -M, --metalink-file=METALINK_FILE El camino al fichero .metalink."
  762. #: src/usage_text.h:300
  763. #, fuzzy
  764. msgid ""
  765. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  766. " simultaneously. Some Metalinks regulate the\n"
  767. " number of servers to connect. aria2 strictly\n"
  768. " respects them. This means that if Metalink "
  769. "defines\n"
  770. " the maxconnections attribute lower than\n"
  771. " NUM_SERVERS, then aria2 uses the value of\n"
  772. " maxconnections attribute instead of "
  773. "NUM_SERVERS.\n"
  774. " See also -s and -j options."
  775. msgstr ""
  776. " -i , --input-file=FILE Descarga las URIs que encuentra en el fichero "
  777. "FILE. Se pueden especificar\n"
  778. " varias URIs para una única entidad: separen "
  779. "las\n"
  780. " URIs en una sola línea usando el carácter "
  781. "TAB.\n"
  782. " Lee la entrada desde stdin cuando se "
  783. "especifica '-'."
  784. #: src/usage_text.h:309
  785. msgid " --metalink-version=VERSION The version of the file to download."
  786. msgstr " --metalink-version=VERSION La versión del fichero a descargar."
  787. #: src/usage_text.h:311
  788. msgid " --metalink-language=LANGUAGE The language of the file to download."
  789. msgstr " --metalink-language=LANGUAGE El idioma del fichero a descargar."
  790. #: src/usage_text.h:313
  791. msgid ""
  792. " --metalink-os=OS The operating system of the file to download."
  793. msgstr ""
  794. " --metalink-os=OS El Sistema Operativo del fichero a descargar."
  795. #: src/usage_text.h:315
  796. #, fuzzy
  797. msgid ""
  798. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  799. " A comma-delimited list of locations is\n"
  800. " acceptable."
  801. msgstr ""
  802. " --metalink-location=LOCATION[,...] La ubicación del servidor preferido.\n"
  803. " se acepta una lista de ubicaciones delimitada "
  804. "por comas."
  805. #: src/usage_text.h:319
  806. msgid ""
  807. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  808. "'none'\n"
  809. " if you don't have any preferred protocol."
  810. msgstr ""
  811. #: src/usage_text.h:322
  812. msgid ""
  813. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  814. " whose suffix is .metaink or content type of\n"
  815. " application/metalink+xml is downloaded, aria2\n"
  816. " parses it as a metalink file and downloads "
  817. "files\n"
  818. " mentioned in it.\n"
  819. " If mem is specified, a metalink file is not\n"
  820. " written to the disk, but is just kept in "
  821. "memory.\n"
  822. " If false is specified, the action mentioned "
  823. "above\n"
  824. " is not taken."
  825. msgstr ""
  826. #: src/usage_text.h:332
  827. msgid ""
  828. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  829. " protocols are available for a mirror in a "
  830. "metalink\n"
  831. " file, aria2 uses one of them.\n"
  832. " Use --metalink-preferred-protocol option to\n"
  833. " specify the preference of protocol."
  834. msgstr ""
  835. #: src/usage_text.h:338
  836. msgid " -v, --version Print the version number and exit."
  837. msgstr " -v, --version Escribir el número de versión y salir."
  838. #: src/usage_text.h:340
  839. msgid ""
  840. " -h, --help[=CATEGORY] Print usage and exit.\n"
  841. " The help messages are classified in several\n"
  842. " categories. For example, type \"--help=http\" "
  843. "for\n"
  844. " detailed explanation for the options related "
  845. "to\n"
  846. " http. If no matching category is found, "
  847. "search\n"
  848. " option name using a given word in middle "
  849. "match\n"
  850. " and print the result."
  851. msgstr ""
  852. #: src/usage_text.h:348
  853. msgid " --no-conf Disable loading aria2.conf file."
  854. msgstr ""
  855. #: src/usage_text.h:350
  856. msgid ""
  857. " --conf-path=PATH Change the configuration file path to PATH."
  858. msgstr ""
  859. #: src/usage_text.h:352
  860. msgid ""
  861. " --stop=SEC Stop application after SEC seconds has "
  862. "passed.\n"
  863. " If 0 is given, this feature is disabled."
  864. msgstr ""
  865. #: src/usage_text.h:355
  866. msgid ""
  867. " --header=HEADER Append HEADER to HTTP request header. You can "
  868. "use\n"
  869. " this option repeatedly to specify more than "
  870. "one\n"
  871. " header:\n"
  872. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  873. "9J1\"\n"
  874. " http://host/file"
  875. msgstr ""
  876. #: src/usage_text.h:361
  877. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  878. msgstr ""
  879. #: src/usage_text.h:363
  880. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  881. msgstr ""
  882. #: src/usage_text.h:365
  883. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  884. msgstr ""
  885. #: src/usage_text.h:367
  886. msgid ""
  887. " --summary-interval=SEC Set interval to output download progress "
  888. "summary.\n"
  889. " Setting 0 suppresses the output."
  890. msgstr ""
  891. #: src/usage_text.h:370
  892. msgid " --log-level=LEVEL Set log level to output."
  893. msgstr ""
  894. #: src/usage_text.h:372
  895. #, fuzzy
  896. msgid ""
  897. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  898. "the\n"
  899. " remote HTTP/FTP server and if it is "
  900. "available,\n"
  901. " apply it to the local file."
  902. msgstr ""
  903. " --direct-file-mapping=true|false Leer y escribir directamente a cada "
  904. "fichero\n"
  905. " especificado en el fichero .torrent.\n"
  906. " Defecto: true"
  907. #: src/usage_text.h:376
  908. msgid ""
  909. " --connect-timeout=SEC Set the connect timeout in seconds to "
  910. "establish\n"
  911. " connection to HTTP/FTP/proxy server. After "
  912. "the\n"
  913. " connection is established, this option makes "
  914. "no\n"
  915. " effect and --timeout option is used instead."
  916. msgstr ""
  917. #: src/usage_text.h:381
  918. #, fuzzy
  919. msgid ""
  920. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  921. "the\n"
  922. " remote HTTP/FTP servers NUM times without "
  923. "getting\n"
  924. " a single byte, then force the download to "
  925. "fail.\n"
  926. " Specify 0 to disable this option.\n"
  927. " This options is effective only when using\n"
  928. " HTTP/FTP servers."
  929. msgstr ""
  930. " --file-allocation=METHOD Es el método de reserva de ficheros. METHOD "
  931. "puede ser\n"
  932. " 'none' o 'prealloc'. 'none' no hace reserva de "
  933. "espacio\n"
  934. " para el fichero. 'prealloc' reserva espacio\n"
  935. " antes de que empiece la descarga. Esto puede "
  936. "llevar algún tiempo\n"
  937. " dependiendo de la medida del fichero.\n"
  938. " Defecto: prealloc"
  939. #: src/usage_text.h:388
  940. msgid ""
  941. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  942. " If 'inorder' is given, URI is tried in the "
  943. "order\n"
  944. " appeared in the URI list.\n"
  945. " If 'feedback' is given, aria2 uses download "
  946. "speed\n"
  947. " observed in the previous downloads and choose\n"
  948. " fastest server in the URI list. This also\n"
  949. " effectively skips dead mirrors. The observed\n"
  950. " download speed is a part of performance "
  951. "profile\n"
  952. " of servers mentioned in --server-stat-of and\n"
  953. " --server-stat-if options."
  954. msgstr ""
  955. #: src/usage_text.h:399
  956. #, fuzzy
  957. msgid ""
  958. " --server-stat-of=FILE Specify the filename to which performance "
  959. "profile\n"
  960. " of the servers is saved. You can load saved "
  961. "data\n"
  962. " using --server-stat-if option."
  963. msgstr ""
  964. " --retry-wait=SEC Establece los segundos para esperar a "
  965. "reintentar \n"
  966. " después de un error. Ponga un valor entre 0 y "
  967. "60.\n"
  968. " Defecto: 5"
  969. #: src/usage_text.h:403
  970. msgid ""
  971. " --server-stat-if=FILE Specify the filename to load performance "
  972. "profile\n"
  973. " of the servers. The loaded data will be used "
  974. "in\n"
  975. " some URI selector such as 'feedback'.\n"
  976. " See also --uri-selector option"
  977. msgstr ""
  978. #: src/usage_text.h:408
  979. #, fuzzy
  980. msgid ""
  981. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  982. " performance profile of the servers since the "
  983. "last\n"
  984. " contact to them."
  985. msgstr ""
  986. " --retry-wait=SEC Establece los segundos para esperar a "
  987. "reintentar \n"
  988. " después de un error. Ponga un valor entre 0 y "
  989. "60.\n"
  990. " Defecto: 5"
  991. #: src/usage_text.h:412
  992. msgid ""
  993. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  994. "seconds.\n"
  995. " If 0 is given, a control file is not saved "
  996. "during\n"
  997. " download. aria2 saves a control file when it "
  998. "stops\n"
  999. " regardless of the value."
  1000. msgstr ""
  1001. #: src/usage_text.h:417
  1002. msgid ""
  1003. " --certificate=FILE Use the client certificate in FILE.\n"
  1004. " The certificate must be in PEM format.\n"
  1005. " You may use --private-key option to specify "
  1006. "the\n"
  1007. " private key."
  1008. msgstr ""
  1009. #: src/usage_text.h:422
  1010. #, fuzzy
  1011. msgid ""
  1012. " --private-key=FILE Use the private key in FILE.\n"
  1013. " The private key must be decrypted and in PEM\n"
  1014. " format. See also --certificate option."
  1015. msgstr ""
  1016. " --retry-wait=SEC Establece los segundos para esperar a "
  1017. "reintentar \n"
  1018. " después de un error. Ponga un valor entre 0 y "
  1019. "60.\n"
  1020. " Defecto: 5"
  1021. #: src/usage_text.h:426
  1022. #, fuzzy
  1023. msgid ""
  1024. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  1025. "verify\n"
  1026. " the peers. The certificate file must be in "
  1027. "PEM\n"
  1028. " format and can contain multiple CA "
  1029. "certificates.\n"
  1030. " Use --check-certificate option to enable\n"
  1031. " verification."
  1032. msgstr ""
  1033. " --file-allocation=METHOD Es el método de reserva de ficheros. METHOD "
  1034. "puede ser\n"
  1035. " 'none' o 'prealloc'. 'none' no hace reserva de "
  1036. "espacio\n"
  1037. " para el fichero. 'prealloc' reserva espacio\n"
  1038. " antes de que empiece la descarga. Esto puede "
  1039. "llevar algún tiempo\n"
  1040. " dependiendo de la medida del fichero.\n"
  1041. " Defecto: prealloc"
  1042. #: src/usage_text.h:432
  1043. msgid ""
  1044. " --check-certificate[=true|false] Verify the peer using certificates "
  1045. "specified\n"
  1046. " in --ca-certificate option."
  1047. msgstr ""
  1048. #: src/usage_text.h:435
  1049. #, fuzzy
  1050. msgid ""
  1051. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  1052. "where\n"
  1053. " proxy should not be used."
  1054. msgstr ""
  1055. " --seed-time=MINUTES Especifica el tiempo de sembrar en minuts. "
  1056. "Mirar también\n"
  1057. " la opción --seed-ratio."
  1058. #: src/version_usage.cc:54
  1059. msgid " version "
  1060. msgstr " versión "
  1061. #: src/version_usage.cc:71
  1062. #, c-format
  1063. msgid "Report bugs to %s"
  1064. msgstr "Informar de errores a %s"
  1065. #: src/version_usage.cc:76
  1066. #, c-format
  1067. msgid "Usage: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  1068. msgstr ""
  1069. #: src/version_usage.cc:86
  1070. #, c-format
  1071. msgid "Printing options whose name includes '%s'."
  1072. msgstr ""
  1073. #: src/version_usage.cc:89 src/version_usage.cc:111
  1074. msgid "Options:"
  1075. msgstr "Opciones:"
  1076. #: src/version_usage.cc:94
  1077. #, c-format
  1078. msgid "No help category or option name matching with '%s'."
  1079. msgstr ""
  1080. #: src/version_usage.cc:100
  1081. msgid "Printing all options."
  1082. msgstr ""
  1083. #: src/version_usage.cc:102
  1084. #, c-format
  1085. msgid "Printing options tagged with '%s'."
  1086. msgstr ""
  1087. #: src/version_usage.cc:106
  1088. #, c-format
  1089. msgid "See -h option to know other command-line options(%s)."
  1090. msgstr ""
  1091. #: src/version_usage.cc:121
  1092. msgid ""
  1093. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  1094. " point to the same file or downloading will fail."
  1095. msgstr ""
  1096. " Se pueden poner varias URLs. A menos que se especifique la opción -Z, todas "
  1097. "las URLs han\n"
  1098. " de apuntar al mismo fichero o la descarga fallará."
  1099. #: src/version_usage.cc:123
  1100. msgid ""
  1101. " You can also specify arbitrary number of torrent files and metalink files\n"
  1102. " stored in a local drive. Please note that they are always treated as a\n"
  1103. " separate download."
  1104. msgstr ""
  1105. #: src/version_usage.cc:128
  1106. msgid ""
  1107. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  1108. " download a file from both torrent swarm and http/ftp server at the same "
  1109. "time,\n"
  1110. " while the data from http/ftp are uploaded to the torrent swarm. Note that\n"
  1111. " only single file torrent can be integrated with http/ftp."
  1112. msgstr ""
  1113. " Se puede poner tanto un fichero torrent con la opción -T y URLs. Así,\n"
  1114. " descargamos un fichero desde el enjambre Torrent y el servidor http/ftp al "
  1115. "mismo tiempo,\n"
  1116. " mientras las datos provinentes de http/ftp son subidos al enjambre torrent. "
  1117. "Observen que\n"
  1118. " solamente se puede integrar un único fichero con http/ftp."
  1119. #: src/version_usage.cc:133
  1120. msgid ""
  1121. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  1122. " contains \"&\" or any characters that have special meaning in shell."
  1123. msgstr ""
  1124. #: src/version_usage.cc:137
  1125. msgid "Refer to man page for more information."
  1126. msgstr "Para más información consulte la página man."
  1127. #: src/message.h:40
  1128. #, c-format
  1129. msgid "CUID#%d - The download for one segment completed successfully."
  1130. msgstr ""
  1131. "CUID#%d - Se ha completado satisfactoriamente la descarga de un segmento."
  1132. #: src/message.h:41
  1133. #, c-format
  1134. msgid "CUID#%d - No segment available."
  1135. msgstr "CUID#%d - No hay segmentos disponibles."
  1136. #: src/message.h:42
  1137. #, c-format
  1138. msgid "CUID#%d - Connecting to %s:%d"
  1139. msgstr "CUID#%d - Conectando a %s:%d"
  1140. #: src/message.h:43
  1141. #, c-format
  1142. msgid ""
  1143. "CUID#%d - The segment changed. We send the request again with new Range "
  1144. "header."
  1145. msgstr ""
  1146. "CUID#%d - El segmento ha cambiado. Enviaremos la petición otra vez con una "
  1147. "nueva cabecera de intervalo."
  1148. #: src/message.h:44
  1149. #, c-format
  1150. msgid "CUID#%d - Redirecting to %s"
  1151. msgstr "CUID#%d - Redirigiendo hacia %s"
  1152. #: src/message.h:45
  1153. #, c-format
  1154. msgid ""
  1155. "CUID#%d - Requesting:\n"
  1156. "%s"
  1157. msgstr ""
  1158. "CUID#%d - Pidiendo:\n"
  1159. "%s"
  1160. #: src/message.h:46
  1161. #, c-format
  1162. msgid ""
  1163. "CUID#%d - Response received:\n"
  1164. "%s"
  1165. msgstr ""
  1166. "CUID#%d - Respuesta recibida:\n"
  1167. "%s"
  1168. #: src/message.h:47
  1169. #, c-format
  1170. msgid "CUID#%d - Download aborted. URI=%s"
  1171. msgstr "CUID#%d - Descarga cancelada. URI=%s"
  1172. #: src/message.h:48
  1173. #, c-format
  1174. msgid "CUID#%d - Restarting the download. URI=%s"
  1175. msgstr "CUID#%d - Re-arrancando la descarga. URI=%s"
  1176. #: src/message.h:49
  1177. #, c-format
  1178. msgid "CUID#%d - Download aborted."
  1179. msgstr "CUID#%d - Descarga cancelada."
  1180. #: src/message.h:50
  1181. #, c-format
  1182. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  1183. msgstr "CUID#%d - Intentado %d veces, pero sin éxito. Descarga cancelada."
  1184. #: src/message.h:51
  1185. #, c-format
  1186. msgid "CUID#%d - Unregistering cuid from segmentManager."
  1187. msgstr "CUID#%d - Des-registrando cuid en el Gestor de segmentos."
  1188. #: src/message.h:57
  1189. #, c-format
  1190. msgid "CUID#%d - we got new piece. index=%d"
  1191. msgstr "CUID#%d - tenemos una nueva pieza. índice=%d"
  1192. #: src/message.h:58
  1193. #, c-format
  1194. msgid "CUID#%d - we got wrong piece. index=%d"
  1195. msgstr "CUID#%d - hemos cogido una pieza mala. índice=%d"
  1196. #: src/message.h:59
  1197. #, c-format
  1198. msgid "CUID#%d - Download not complete: %s"
  1199. msgstr "CUID#%d - Descarga incompleta: %s"
  1200. #: src/message.h:60
  1201. #, c-format
  1202. msgid "#%d - Download has already completed: %s"
  1203. msgstr "#%d - Ya se ha completado la descarga: %s"
  1204. #: src/message.h:61
  1205. #, c-format
  1206. msgid "CUID#%d - Good checksum: %s"
  1207. msgstr "CUID#%d - Suma de comprobación correcta: %s"
  1208. #: src/message.h:62
  1209. #, c-format
  1210. msgid "CUID#%d - Bad checksum: %s"
  1211. msgstr "CUID#%d - Suma de comprobación incorrecta: %s"
  1212. #: src/message.h:63
  1213. #, c-format
  1214. msgid "CUID#%d - Resolving hostname %s"
  1215. msgstr "CUID#%d - Resolviendo nombre del host %s"
  1216. #: src/message.h:64
  1217. #, c-format
  1218. msgid "CUID#%d - Name resolution complete: %s -> %s"
  1219. msgstr "CUID#%d - Resolución del nombre completada: %s -> %s"
  1220. #: src/message.h:65
  1221. #, c-format
  1222. msgid "CUID#%d - Name resolution for %s failed:%s"
  1223. msgstr "CUID#%d - La resolución del nombre para %s ha fallado:%s"
  1224. #: src/message.h:66
  1225. #, c-format
  1226. msgid "CUID#%d - DNS cache hit: %s -> %s"
  1227. msgstr "CUID#%d - Acertado el caché DNS: %s -> %s"
  1228. #: src/message.h:67
  1229. #, c-format
  1230. msgid "CUID#%d - Abort requested."
  1231. msgstr "CUID#%d - Cancelación requerida."
  1232. #: src/message.h:68
  1233. #, c-format
  1234. msgid "CUID#%d - Connecting to the peer %s"
  1235. msgstr "CUID#%d - Conectando al igual %s"
  1236. #: src/message.h:69
  1237. #, c-format
  1238. msgid ""
  1239. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  1240. "blockIndex=%d"
  1241. msgstr ""
  1242. "CUID#%d - pieza recibida. índice=%d, inicio=%d, longitud=%d, desviación=%"
  1243. "llu, Indice-bloque=%d"
  1244. #: src/message.h:70
  1245. #, c-format
  1246. msgid "CUID#%d - Piece bitfield %s"
  1247. msgstr "CUID#%d - Campo de bits de la pieza %s"
  1248. #: src/message.h:71
  1249. #, c-format
  1250. msgid ""
  1251. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  1252. "index=%d, begin=%d, length=%d"
  1253. msgstr ""
  1254. "CUID#%d - Mensaje de rechazo de la pieza en cola debido a que el igual ha "
  1255. "estado estrangulado. índice=%d, inicio=%d, longitud=%d"
  1256. #: src/message.h:72
  1257. #, c-format
  1258. msgid ""
  1259. "CUID#%d - Reject piece message in queue because cancel message received. "
  1260. "index=%d, begin=%d, length=%d"
  1261. msgstr ""
  1262. "CUID#%d - Mensaje de rechazo de la pieza en cola debido a que se ha recibido "
  1263. "un mensaje de cancelación. índice=%d, inicio=%d, longitud=%d"
  1264. #: src/message.h:73
  1265. #, c-format
  1266. msgid "CUID#%d - Exception caught while validating file integrity."
  1267. msgstr ""
  1268. "CUID#%d - Hemos encontrado una excepción mientras validábamos la integridad "
  1269. "del fichero."
  1270. #: src/message.h:74
  1271. #, c-format
  1272. msgid "CUID#%d - Interested in the peer"
  1273. msgstr "CUID#%d - Interesado en el igual"
  1274. #: src/message.h:75
  1275. #, c-format
  1276. msgid "CUID#%d - Not interested in the peer"
  1277. msgstr "CUID#%d - No interesado en el igual"
  1278. #: src/message.h:76
  1279. #, c-format
  1280. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  1281. msgstr "CUID#%d - Borrando petición en el eslot. índice=%d, índice-bloque=%d"
  1282. #: src/message.h:77
  1283. #, c-format
  1284. msgid ""
  1285. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  1286. "got choked."
  1287. msgstr ""
  1288. "CUID#%d - Borrando petición en el eslot. índice=%d, bloque-índice=%d debido "
  1289. "a que el localhost ha estado estrangulado."
  1290. #: src/message.h:78
  1291. #, c-format
  1292. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  1293. msgstr ""
  1294. "CUID#%d - Borrando petición en el eslot. bloque-índice=%d debido a tiempo "
  1295. "excedido"
  1296. #: src/message.h:79
  1297. #, c-format
  1298. msgid ""
  1299. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  1300. "acquired."
  1301. msgstr ""
  1302. "CUID#%d - Borrando petición en el eslot. bloque-índice=%d debido a que el "
  1303. "bloque ha sido recibido."
  1304. #: src/message.h:80
  1305. #, c-format
  1306. msgid "CUID#%d - Fast extension enabled."
  1307. msgstr "CUID#%d - Extensión ràpida activada."
  1308. #: src/message.h:81
  1309. #, c-format
  1310. msgid "CUID#%d - Extended Messaging enabled."
  1311. msgstr "CUID#%d - Mensajes extendidos activados."
  1312. #: src/message.h:82
  1313. #, c-format
  1314. msgid "CUID#%d - Exception caught while allocating file space."
  1315. msgstr ""
  1316. "CUID#%d - Hemos encontrado una excepción mientras reservábamos espacio para "
  1317. "el fichero."
  1318. #: src/message.h:83
  1319. #, c-format
  1320. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1321. msgstr ""
  1322. "CUID#%d - Hemos detectado Content-Disposition. Usaremos %s como nombre de "
  1323. "fichero"
  1324. #: src/message.h:84
  1325. #, c-format
  1326. msgid "CUID#%d - Peer %s:%d banned."
  1327. msgstr "CUID#%d - Igual %s:%d vetado."
  1328. #: src/message.h:85
  1329. #, c-format
  1330. msgid "CUID#%d - Using port %d for accepting new connections"
  1331. msgstr "CUID#%d - Usamos el puerto %d para aceptar nuevas conexiones"
  1332. #: src/message.h:86
  1333. #, c-format
  1334. msgid "CUID#%d - An error occurred while binding port=%d"
  1335. msgstr "CUID#%d - Ha ocurrido un error mientras tomábamos el puerto=%d"
  1336. #: src/message.h:87
  1337. #, c-format
  1338. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1339. msgstr "CUID#%d - Conexión entrante, añadiendo nueva orden CUID#%d"
  1340. #: src/message.h:88
  1341. #, c-format
  1342. msgid "CUID#%d - Error in accepting connection"
  1343. msgstr "CUID#%d - Error acceptando conexión"
  1344. #: src/message.h:89
  1345. #, c-format
  1346. msgid "CUID#%d - Error occurred while processing tracker response."
  1347. msgstr ""
  1348. "CUID#%d - Ha ocurrido un error mientras procesábamos la respuesta del "
  1349. "seguidor."
  1350. #: src/message.h:90
  1351. #, c-format
  1352. msgid "CUID#%d - Cannot create tracker request."
  1353. msgstr "CUID#%d - No se puede crear la petición en el seguidor."
  1354. #: src/message.h:91
  1355. #, c-format
  1356. msgid "CUID#%d - Creating new tracker request command #%d"
  1357. msgstr "CUID#%d - Creando una nueva orden de petición al seguidor #%d"
  1358. #: src/message.h:92
  1359. #, c-format
  1360. msgid "CUID#%d - The peer is DHT-enabled."
  1361. msgstr ""
  1362. #: src/message.h:94
  1363. #, c-format
  1364. msgid "Unrecognized URI or unsupported protocol: %s"
  1365. msgstr "URI no reconocida o protocolo no soportado: %s"
  1366. #: src/message.h:95
  1367. #, c-format
  1368. msgid "Tracker returned warning message: %s"
  1369. msgstr "El seguidor ha devuelto un mensaje de aviso: %s"
  1370. #: src/message.h:96
  1371. #, c-format
  1372. msgid "The segment file %s exists."
  1373. msgstr "El fichero de segmentos %s existe."
  1374. #: src/message.h:97
  1375. #, c-format
  1376. msgid "The segment file %s does not exist."
  1377. msgstr "El fichero de segmentos %s no existe."
  1378. #: src/message.h:98
  1379. #, c-format
  1380. msgid "Saving the segment file %s"
  1381. msgstr "Guardando el fichero de segmentos %s"
  1382. #: src/message.h:99
  1383. msgid "The segment file was saved successfully."
  1384. msgstr "El fichero de segmentos se ha guardado satisfactoriamente."
  1385. #: src/message.h:100
  1386. #, c-format
  1387. msgid "Loading the segment file %s."
  1388. msgstr "Cargando el fichero de segmentos %s."
  1389. #: src/message.h:101
  1390. msgid "The segment file was loaded successfully."
  1391. msgstr "Se ha cargado satisfactoriamente el fichero de segmentos."
  1392. #: src/message.h:102
  1393. msgid "No URI to download. Download aborted."
  1394. msgstr "No hay URI para descargar. descarga cancelada."
  1395. #: src/message.h:103
  1396. #, c-format
  1397. msgid ""
  1398. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1399. "canceled in order to prevent your file from being truncated to 0. If you are "
  1400. "sure to download the file all over again, then delete it or add --allow-"
  1401. "overwrite=true option and restart aria2."
  1402. msgstr ""
  1403. "El archivo %s existe, pero un archivo de control (*.aria2) no existe. La "
  1404. "descarga ha sido canceleda para prevenir que su archivo sea truncado a 0. Si "
  1405. "usted está seguro de que debe descargar el archivo de todas formas, entonces "
  1406. "bórrelo o añada la opción --allow-overwrite=true y reinicie aria2."
  1407. #: src/message.h:104
  1408. #, c-format
  1409. msgid "Allocating file %s, %s bytes"
  1410. msgstr "Reservando fichero %s, %s bytes"
  1411. #: src/message.h:105
  1412. msgid "File not found"
  1413. msgstr "No se ha encontrado el fichero"
  1414. #: src/message.h:106
  1415. msgid "Not a directory"
  1416. msgstr "No es un directorio"
  1417. #: src/message.h:107
  1418. #, c-format
  1419. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1420. msgstr ""
  1421. "No hay bastantes sumas de comprobación. Longitud suma comprobación=%d, "
  1422. "Número sumas comprobación=%d"
  1423. #: src/message.h:108
  1424. #, c-format
  1425. msgid "Writing file %s"
  1426. msgstr "Escribiendo fichero %s"
  1427. #: src/message.h:109
  1428. msgid "No peer list received."
  1429. msgstr "No hemos recibido la lista de iguales."
  1430. #: src/message.h:110
  1431. #, c-format
  1432. msgid "Adding peer %s:%d"
  1433. msgstr "Añadiendo igual %s:%d"
  1434. #: src/message.h:111
  1435. #, c-format
  1436. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1437. msgstr "Borrando pieza usada índice=%d, ratioLlenar(%%)=%d<=%d"
  1438. #: src/message.h:112
  1439. msgid "Download of selected files was complete."
  1440. msgstr "Se ha completado la descarga de los ficheros seleccionados."
  1441. #: src/message.h:113
  1442. msgid "The download was complete."
  1443. msgstr "Se ha completado la descarga."
  1444. #: src/message.h:114
  1445. #, c-format
  1446. msgid "Removed %d have entries."
  1447. msgstr "Borrado %d tiene entradas."
  1448. #: src/message.h:115
  1449. #, c-format
  1450. msgid "Validating file %s"
  1451. msgstr "Validando fichero %s"
  1452. #: src/message.h:116
  1453. #, c-format
  1454. msgid "%d seconds to allocate %s byte(s)"
  1455. msgstr "%d segundos para reservar %s byte(s)"
  1456. #: src/message.h:117
  1457. #, c-format
  1458. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1459. msgstr "Ejecutando Orden de Reservar Fichero para CUID#%d."
  1460. #: src/message.h:118
  1461. #, c-format
  1462. msgid "Metalink: Queueing %s for download."
  1463. msgstr "Metalink: Poniendo en cola %s para descarga."
  1464. #: src/message.h:119
  1465. #, c-format
  1466. msgid "Download complete: %s"
  1467. msgstr "Descarga completa: %s"
  1468. #: src/message.h:120
  1469. msgid "Seeding is over."
  1470. msgstr "Se ha acabado de sembrar."
  1471. #: src/message.h:121
  1472. #, c-format
  1473. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1474. msgstr "CUID#%d cancela el segmento índice=%d. El CUID#%d lo gestionará ahora."
  1475. #: src/message.h:122
  1476. msgid "No chunk to verify."
  1477. msgstr "No hay ningún trozo para verificar."
  1478. #: src/message.h:123
  1479. #, c-format
  1480. msgid "Good chunk checksum. hash=%s"
  1481. msgstr "Suma de comprobación del trozo correcta. hash=%s"
  1482. #: src/message.h:124
  1483. #, c-format
  1484. msgid "Failed to load cookies from %s"
  1485. msgstr "Fallo al cargar cookies desde %s"
  1486. #: src/message.h:125
  1487. #, c-format
  1488. msgid ""
  1489. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1490. "support disabled."
  1491. msgstr ""
  1492. "El fichero .netrc %s no tiene permisos correctos. Ha de ser 600. soporte "
  1493. "netrc desactivado."
  1494. #: src/message.h:126
  1495. msgid "Logging started."
  1496. msgstr "Anotación arrancada."
  1497. #: src/message.h:127
  1498. msgid "Specify at least one URL."
  1499. msgstr "Especifique al menos una URL."
  1500. #: src/message.h:128
  1501. msgid "daemon failed."
  1502. msgstr "Ha fallado el daemon."
  1503. #: src/message.h:129
  1504. #, c-format
  1505. msgid "Verification finished successfully. file=%s"
  1506. msgstr "La verificación ha acabado satisfactoriamente. fichero=%s"
  1507. #: src/message.h:130
  1508. #, c-format
  1509. msgid "Checksum error detected. file=%s"
  1510. msgstr "Se ha detectado un error en la suma de comprobación. fichero=%s"
  1511. #: src/message.h:131
  1512. #, c-format
  1513. msgid "Incomplete range specified. %s"
  1514. msgstr "Se ha especificado un intervalo incompleto. %s"
  1515. #: src/message.h:132
  1516. #, c-format
  1517. msgid "Failed to convert string into value: %s"
  1518. msgstr "No se pueden convertir los carácteres en un valor: %s"
  1519. #: src/message.h:133
  1520. msgid "Resource not found"
  1521. msgstr "Recurso no encontrado"
  1522. #: src/message.h:134
  1523. #, c-format
  1524. msgid "File already exists. Renamed to %s."
  1525. msgstr "El archivo ya exixte. Renombrado a %s."
  1526. #: src/message.h:135
  1527. msgid "Cannot parse metalink XML file. XML may be malformed."
  1528. msgstr ""
  1529. "No se puede interpretar el archivo metalink XML. puede ser XML erróneo."
  1530. #: src/message.h:136
  1531. #, fuzzy, c-format
  1532. msgid "Too small payload size for %s, size=%d."
  1533. msgstr "Tamaño de payload %s demasiado pequeño, tamaño=%d."
  1534. #: src/message.h:137
  1535. #, c-format
  1536. msgid ""
  1537. "Removed the defunct control file %s because the download file %s doesn't "
  1538. "exist."
  1539. msgstr ""
  1540. #: src/message.h:138
  1541. #, c-format
  1542. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1543. msgstr "Su cociente compartido fue %.1f, Subido/Descargado = %sB/%sB"
  1544. #: src/message.h:139
  1545. #, c-format
  1546. msgid "Missing %s in torrent metainfo."
  1547. msgstr "Falta %s en la metainfo del torrent"
  1548. #: src/message.h:140
  1549. msgid "Tracker returned null data."
  1550. msgstr "Tracker retorna datos nulos"
  1551. #: src/message.h:141
  1552. msgid "Windows socket library initialization failed"
  1553. msgstr "La libreria de Windows socket fallo en la inicializacion"
  1554. #: src/message.h:142
  1555. #, c-format
  1556. msgid "%d second(s) has passed. Stopping application."
  1557. msgstr "pasaron %d segundos. Deteniendo la aplicacion."
  1558. #: src/message.h:143
  1559. #, c-format
  1560. msgid ""
  1561. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1562. msgstr ""
  1563. #: src/message.h:145
  1564. #, c-format
  1565. msgid "Saving signature as %s failed. Maybe file already exists."
  1566. msgstr ""
  1567. #: src/message.h:148
  1568. #, fuzzy, c-format
  1569. msgid "Failed to open ServerStat file %s for read."
  1570. msgstr "Fallo al abrir el fichero %s, causa: %s"
  1571. #: src/message.h:149
  1572. #, fuzzy, c-format
  1573. msgid "ServerStat file %s loaded successfully."
  1574. msgstr "Se ha cargado satisfactoriamente el fichero de segmentos."
  1575. #: src/message.h:150
  1576. #, fuzzy, c-format
  1577. msgid "Failed to read ServerStat from %s."
  1578. msgstr "Fallo al leer datos del disco."
  1579. #: src/message.h:153
  1580. #, fuzzy, c-format
  1581. msgid "Failed to open ServerStat file %s for write."
  1582. msgstr "Fallo al abrir el fichero %s, causa: %s"
  1583. #: src/message.h:154
  1584. #, fuzzy, c-format
  1585. msgid "ServerStat file %s saved successfully."
  1586. msgstr "El fichero de segmentos se ha guardado satisfactoriamente."
  1587. #: src/message.h:155
  1588. #, fuzzy, c-format
  1589. msgid "Failed to write ServerStat to %s."
  1590. msgstr "Fallo al recibir datos, causa: %s"
  1591. #: src/message.h:158
  1592. #, fuzzy, c-format
  1593. msgid "Failed to establish connection, cause: %s"
  1594. msgstr "Fallo al aceptar una conexión de igual, causa: %s"
  1595. #: src/message.h:159
  1596. #, c-format
  1597. msgid "Network problem has occurred. cause:%s"
  1598. msgstr ""
  1599. #: src/message.h:161
  1600. #, fuzzy, c-format
  1601. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1602. msgstr "Fallo al leer del fichero %s, causa: %s"
  1603. #: src/message.h:163
  1604. #, c-format
  1605. msgid "Certificate verification failed. Cause: %s"
  1606. msgstr ""
  1607. #: src/message.h:164
  1608. #, fuzzy
  1609. msgid "No certificate found."
  1610. msgstr "No se ha encontrado la cabecera."
  1611. #: src/message.h:165
  1612. msgid "Hostname not match."
  1613. msgstr ""
  1614. #: src/message.h:166
  1615. msgid "No files to download."
  1616. msgstr ""
  1617. #: src/message.h:168
  1618. msgid ""
  1619. "You may encounter the certificate verification error with HTTPS server. See "
  1620. "--ca-certificate and --check-certificate option."
  1621. msgstr ""
  1622. #: src/message.h:170
  1623. #, fuzzy, c-format
  1624. msgid "Printing the contents of file '%s'..."
  1625. msgstr "Cargando el fichero de segmentos %s."
  1626. #: src/message.h:171
  1627. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1628. msgstr ""
  1629. #: src/message.h:174
  1630. msgid "Timeout."
  1631. msgstr "Ha expirado el tiempo de espera."
  1632. #: src/message.h:175
  1633. msgid "Invalid chunk size."
  1634. msgstr "Tamaño del trozo invalido"
  1635. #: src/message.h:176
  1636. #, c-format
  1637. msgid "Too large chunk. size=%d"
  1638. msgstr "Medida del trozo demasiado larga. Medida=%d"
  1639. #: src/message.h:177
  1640. msgid "Invalid header."
  1641. msgstr "Cabecera incorrecta."
  1642. #: src/message.h:178
  1643. msgid "Invalid response."
  1644. msgstr "Respuesta incorrecta."
  1645. #: src/message.h:179
  1646. msgid "No header found."
  1647. msgstr "No se ha encontrado la cabecera."
  1648. #: src/message.h:180
  1649. msgid "No status header."
  1650. msgstr "No hay cabecera de estado."
  1651. #: src/message.h:181
  1652. msgid "Proxy connection failed."
  1653. msgstr "Ha fallado la conexión con el proxy."
  1654. #: src/message.h:182
  1655. msgid "Connection failed."
  1656. msgstr "Ha fallado la conexión."
  1657. #: src/message.h:183
  1658. #, c-format
  1659. msgid ""
  1660. "The requested filename and the previously registered one are not same. "
  1661. "Expected:%s Actual:%s"
  1662. msgstr ""
  1663. "El nombre del fichero pedido y el anotado previamente no son el mismo. "
  1664. "Esperábamos:%s Actual:%s"
  1665. #: src/message.h:184
  1666. #, c-format
  1667. msgid "The response status is not successful. status=%d"
  1668. msgstr "El estado de la respuesta no es satisfactorio. estado=%d"
  1669. #: src/message.h:185
  1670. #, c-format
  1671. msgid "Too large file size. size=%s"
  1672. msgstr "Medida del fichero demasiado larga. medida=%s"
  1673. #: src/message.h:186
  1674. #, c-format
  1675. msgid "Transfer encoding %s is not supported."
  1676. msgstr "No està soportada la codificación %s de la transferencia."
  1677. #: src/message.h:187
  1678. #, c-format
  1679. msgid "SSL initialization failed: %s"
  1680. msgstr "Ha fallado la inicialización SSL: %s"
  1681. #: src/message.h:188
  1682. msgid "SSL I/O error"
  1683. msgstr "Error de E/S SSL"
  1684. #: src/message.h:189
  1685. msgid "SSL protocol error"
  1686. msgstr "Error de protocolo SSL"
  1687. #: src/message.h:190
  1688. #, c-format
  1689. msgid "SSL unknown error %d"
  1690. msgstr "Error SSL desconocido %d"
  1691. #: src/message.h:191
  1692. #, c-format
  1693. msgid "SSL initialization failed: OpenSSL connect error %d"
  1694. msgstr "Ha fallado la inicialización SSL: error de conexión OpenSSL %d"
  1695. #: src/message.h:192
  1696. #, c-format
  1697. msgid "Size mismatch Expected:%s Actual:%s"
  1698. msgstr "Medida incorrecta, Esperada:%s Actual:%s"
  1699. #: src/message.h:193
  1700. msgid "Authorization failed."
  1701. msgstr "Ha fallado la autorización."
  1702. #: src/message.h:194
  1703. msgid "Got EOF from the server."
  1704. msgstr "Recibido EOF desde el servidor."
  1705. #: src/message.h:195
  1706. msgid "Got EOF from peer."
  1707. msgstr "Recibido EOF desde el igual."
  1708. #: src/message.h:196
  1709. msgid "Malformed meta info."
  1710. msgstr "meta info mal formada."
  1711. #: src/message.h:198
  1712. #, c-format
  1713. msgid "Failed to open the file %s, cause: %s"
  1714. msgstr "Fallo al abrir el fichero %s, causa: %s"
  1715. #: src/message.h:199
  1716. #, c-format
  1717. msgid "Failed to write into the file %s, cause: %s"
  1718. msgstr "Fallo al escribir en el fichero %s, causa: %s"
  1719. #: src/message.h:200
  1720. #, c-format
  1721. msgid "Failed to read from the file %s, cause: %s"
  1722. msgstr "Fallo al leer del fichero %s, causa: %s"
  1723. #: src/message.h:201
  1724. msgid "Failed to read data from disk."
  1725. msgstr "Fallo al leer datos del disco."
  1726. #: src/message.h:202
  1727. #, c-format
  1728. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1729. msgstr ""
  1730. "Fallo al calcular resumen SHA1 de o de una parte del fichero %s, causa: %s"
  1731. #: src/message.h:203
  1732. #, c-format
  1733. msgid "Failed to seek the file %s, cause: %s"
  1734. msgstr "Fallo al buscar en el fichero %s, causa: %s"
  1735. #: src/message.h:204
  1736. #, c-format
  1737. msgid "The offset is out of range, offset=%s"
  1738. msgstr "La desviación está fuera de límites, desviación=%s"
  1739. #: src/message.h:205
  1740. #, c-format
  1741. msgid "%s is not a directory."
  1742. msgstr "%s no es un directorio."
  1743. #: src/message.h:206
  1744. #, c-format
  1745. msgid "Failed to make the directory %s, cause: %s"
  1746. msgstr "Fallo al crear el directorio %s, causa: %s"
  1747. #: src/message.h:207
  1748. #, c-format
  1749. msgid "Failed to open the segment file %s, cause: %s"
  1750. msgstr "Fallo al abrir el fichero de segmentos %s, causa: %s"
  1751. #: src/message.h:208
  1752. #, c-format
  1753. msgid "Failed to write into the segment file %s, cause: %s"
  1754. msgstr "Fallo al escribir en el fichero de segmentos %s, causa: %s"
  1755. #: src/message.h:209
  1756. #, c-format
  1757. msgid "Failed to read from the segment file %s, cause: %s"
  1758. msgstr "Fallo al leer del fichero de segmentos %s, causa: %s"
  1759. #: src/message.h:211
  1760. #, c-format
  1761. msgid "Failed to open a socket, cause: %s"
  1762. msgstr "Fallo al abrir un zócalo, causa: %s"
  1763. #: src/message.h:212
  1764. #, c-format
  1765. msgid "Failed to set a socket option, cause: %s"
  1766. msgstr "Fallo al poner una opción del zócalo, causa: %s"
  1767. #: src/message.h:213
  1768. #, c-format
  1769. msgid "Failed to set a socket as blocking, cause: %s"
  1770. msgstr "Fallo al poner un zócalo como bloqueante, causa: %s"
  1771. #: src/message.h:214
  1772. #, c-format
  1773. msgid "Failed to set a socket as non-blocking, cause: %s"
  1774. msgstr "Fallo al poner un zócalo como no-bloqueante, causa: %s"
  1775. #: src/message.h:215
  1776. #, c-format
  1777. msgid "Failed to bind a socket, cause: %s"
  1778. msgstr "Fallo al conectar un zócalo, causa: %s"
  1779. #: src/message.h:216
  1780. #, c-format
  1781. msgid "Failed to listen to a socket, cause: %s"
  1782. msgstr "Fallo escuchando un zócalo, causa: %s"
  1783. #: src/message.h:217
  1784. #, c-format
  1785. msgid "Failed to accept a peer connection, cause: %s"
  1786. msgstr "Fallo al aceptar una conexión de igual, causa: %s"
  1787. #: src/message.h:218
  1788. #, c-format
  1789. msgid "Failed to get the name of socket, cause: %s"
  1790. msgstr "Fallo al coger el nombre del zócalo, causa: %s"
  1791. #: src/message.h:219
  1792. #, c-format
  1793. msgid "Failed to get the name of connected peer, cause: %s"
  1794. msgstr "Fallo al coger el nombre de un igual conectado, causa: %s"
  1795. #: src/message.h:220
  1796. #, c-format
  1797. msgid "Failed to resolve the hostname %s, cause: %s"
  1798. msgstr "Fallo al resolver el nombre de host %s,causa: %s"
  1799. #: src/message.h:221
  1800. #, c-format
  1801. msgid "Failed to connect to the host %s, cause: %s"
  1802. msgstr "Fallo al conectar al host %s, causa: %s"
  1803. #: src/message.h:222
  1804. #, c-format
  1805. msgid "Failed to check whether the socket is writable, cause: %s"
  1806. msgstr "Fallo al comprobar si se puede escribir en un zócalo, causa: %s"
  1807. #: src/message.h:223
  1808. #, c-format
  1809. msgid "Failed to check whether the socket is readable, cause: %s"
  1810. msgstr "Fallo al comprovar si se puede leer un zócalo, causa: %s"
  1811. #: src/message.h:224
  1812. #, c-format
  1813. msgid "Failed to send data, cause: %s"
  1814. msgstr "Fallo al enviar datos, causa: %s"
  1815. #: src/message.h:225
  1816. #, c-format
  1817. msgid "Failed to receive data, cause: %s"
  1818. msgstr "Fallo al recibir datos, causa: %s"
  1819. #: src/message.h:226
  1820. #, c-format
  1821. msgid "Failed to peek data, cause: %s"
  1822. msgstr "Fallo al revisar datos, causa: %s"
  1823. #: src/message.h:227
  1824. #, c-format
  1825. msgid "Unknown socket error %d (0x%x)"
  1826. msgstr "Error desconocido de zócalo %d (0x%x)"
  1827. #: src/message.h:228
  1828. #, c-format
  1829. msgid "File %s exists, but %s does not exist."
  1830. msgstr "fichero %s existe, pero %s no existe."
  1831. #: src/message.h:229
  1832. #, c-format
  1833. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1834. msgstr ""
  1835. "La Medida de carga útil (payload) es incorrecta para %s, medida=%d. Ha de "
  1836. "ser %d."
  1837. #: src/message.h:230
  1838. #, c-format
  1839. msgid "Invalid ID=%d for %s. It should be %d."
  1840. msgstr "Incorrecto ID=%d para %s. Ha de ser %d."
  1841. #: src/message.h:231
  1842. #, c-format
  1843. msgid ""
  1844. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1845. "s, actualHash=%s"
  1846. msgstr ""
  1847. "Ha fallado la validación de la suma de comprobación del trozo. "
  1848. "índiceSumacomprobación=%d, desviación=%s, HashEsperado=%s, HashActual=%s"
  1849. #: src/message.h:232
  1850. msgid "Download aborted."
  1851. msgstr "Descarga abortada."
  1852. #: src/message.h:233
  1853. #, c-format
  1854. msgid "File %s is being downloaded by other command."
  1855. msgstr "El fichero %s està siendo descargado por otra orden."
  1856. #: src/message.h:234
  1857. msgid "Insufficient checksums."
  1858. msgstr "No hay bastantes sumas de comprobación."
  1859. #: src/message.h:235
  1860. #, c-format
  1861. msgid "Tracker returned failure reason: %s"
  1862. msgstr "El Seguidor ha devuelto fallo. razón: %s"
  1863. #: src/message.h:236
  1864. msgid "Flooding detected."
  1865. msgstr "Detectado sobrepasamiento."
  1866. #: src/message.h:237
  1867. #, c-format
  1868. msgid ""
  1869. "Drop connection because no request/piece messages were exchanged in a "
  1870. "certain period(%d seconds)."
  1871. msgstr ""
  1872. "Liberamos la conexión debido a que no hemos intercambiado mensajes de "
  1873. "peticiones o piezas en el periodo establecido (%d seg.)."
  1874. #: src/message.h:238
  1875. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1876. msgstr ""
  1877. "El infoHash en el fichero torrent no concuerda con el del fichero .aria2."
  1878. #: src/message.h:239
  1879. #, c-format
  1880. msgid "No such file entry %s"
  1881. msgstr "No hay esta entrada en el fichero %s"
  1882. #: src/message.h:240
  1883. #, c-format
  1884. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1885. msgstr "Velocidad de descarga demasiado lenta: %d <= %d(B/s), host:%s"
  1886. #: src/message.h:241
  1887. msgid "No HttpRequestEntry found."
  1888. msgstr "No hemos encontrado HttpRequestEntry."
  1889. #: src/message.h:242
  1890. #, c-format
  1891. msgid "Got %d status, but no location header provided."
  1892. msgstr "Hemos recibido estado %d, pero no nos da la cabecera de ubicación."
  1893. #: src/message.h:243
  1894. #, c-format
  1895. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1896. msgstr "Cabecera de rango incorrecta. Petición: %s-%s/%s, Respuesta: %s-%s/%s"
  1897. #: src/message.h:244
  1898. msgid "No file matched with your preference."
  1899. msgstr "No hay ningún fichero que concuerde con vuestra preferencia."
  1900. #: src/message.h:245
  1901. msgid "Exception caught"
  1902. msgstr "Excepcion capturada"
  1903. #: src/message.h:246
  1904. #, c-format
  1905. msgid "Max payload length exceeded or invalid. length = %u"
  1906. msgstr "Longitud de carga ulti excedida o es invalida, longitud = %u"
  1907. #: src/message.h:247
  1908. #, c-format
  1909. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1910. msgstr ""
  1911. "Longitud de fichero incorrecta. No se puede continuar la descarga %s: local %"
  1912. "s, remoto %s"
  1913. #: src/BtSetup.cc:160
  1914. msgid "Errors occurred while binding port.\n"
  1915. msgstr "Han ocurrido errores mientras cogíamos el puerto.\n"
  1916. #: src/Util.cc:724
  1917. msgid "Files:"
  1918. msgstr "Ficheros:"
  1919. #~ msgid ""
  1920. #~ " --http-proxy=HOST:PORT Use HTTP proxy server. This affects all "
  1921. #~ "URLs."
  1922. #~ msgstr ""
  1923. #~ " --http-proxy=HOST:PORT Usar un servidor proxy HTTP. Esto afecta a "
  1924. #~ "todas las URLs."
  1925. #~ msgid ""
  1926. #~ " --http-proxy-user=USER Set HTTP proxy user. This affects all URLs."
  1927. #~ msgstr ""
  1928. #~ " --http-proxy-user=USER Establece el usuario del proxy HTTP. Esto "
  1929. #~ "afecta a todas las URLs."
  1930. #~ msgid ""
  1931. #~ " --http-proxy-passwd=PASSWD Set HTTP proxy password. This affects all "
  1932. #~ "URLs."
  1933. #~ msgstr ""
  1934. #~ " --http-proxy-passwd=PASSWD Establece la palabra de paso del proxy "
  1935. #~ "HTTP. Esto afecta a todas las URLs."
  1936. #~ msgid " -p, --ftp-pasv Use passive mode in FTP."
  1937. #~ msgstr " -p, --ftp-pasv Usar modo pasivo en FTP."
  1938. #~ msgid ""
  1939. #~ " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  1940. #~ " simultaneously."
  1941. #~ msgstr ""
  1942. #~ " -C, --metalink-servers=NUM_SERVERS El numero de servidores a conectar\n"
  1943. #~ " simultaneamente."
  1944. #~ msgid ""
  1945. #~ " --ftp-user=USER Set FTP user. This affects all URLs.\n"
  1946. #~ " Default: anonymous"
  1947. #~ msgstr ""
  1948. #~ " --ftp-user=USER Establece el usuario FTP. Esto afecta a "
  1949. #~ "todas las URLs."
  1950. #~ msgid ""
  1951. #~ " --ftp-passwd=PASSWD Set FTP password. This affects all URLs.\n"
  1952. #~ " Default: ARIA2USER@"
  1953. #~ msgstr ""
  1954. #~ " --ftp-passwd=PASSWD Establece la palabra de paso FTP. Esto "
  1955. #~ "afecta a todas las URLs.\n"
  1956. #~ " Default: ARIA2USER@"
  1957. #~ msgid ""
  1958. #~ " --ftp-via-http-proxy=METHOD Use HTTP proxy in FTP. METHOD is either "
  1959. #~ "'get' or\n"
  1960. #~ " 'tunnel'.\n"
  1961. #~ " Default: tunnel"
  1962. #~ msgstr ""
  1963. #~ " --ftp-via-http-proxy=METHOD Usar el proxy HTTP para FTP. METHOD puede "
  1964. #~ "ser 'get' o\n"
  1965. #~ " 'tunnel'.\n"
  1966. #~ " Defecto: tunnel"
  1967. #~ msgid ""
  1968. #~ " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining.\n"
  1969. #~ " Default: false"
  1970. #~ msgstr ""
  1971. #~ " --enable-http-pipelining[=true|false] Activa la canalización HTTP/1.1.\n"
  1972. #~ " Defecto: false"