es.po 60 KB

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