es.po 71 KB

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