ca.po 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262
  1. # Catalan 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-12-05 20:51+0900\n"
  11. "PO-Revision-Date: 2009-11-02 23:14+0900\n"
  12. "Last-Translator: Jordi Pujol <Unknown>\n"
  13. "Language-Team: Catalan <ca@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-11-01 09:48+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. "Està començant la seqüència d'aturada... Premi Ctrl-C un altre cop per fer "
  24. "una aturada d'emergència."
  25. #: src/DownloadEngine.cc:218
  26. msgid "Emergency shutdown sequence commencing..."
  27. msgstr "Començant la seqüència d'aturada d'emergència."
  28. #: src/MultiUrlRequestInfo.cc:97
  29. msgid "aria2 will resume download if the transfer is restarted."
  30. msgstr "aria2 continuarà la descàrrega si es torna a arrancar la transferència"
  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. "Si hi han errors, llavors miri el fitxer d'anotacions. Per més informació "
  37. "vegi l'opció '-l' en les pàgines help/man."
  38. #: src/RequestGroupMan.cc:543
  39. msgid "Download Results:"
  40. msgstr "Resultats de la descàrrega:"
  41. #: src/RequestGroupMan.cc:587
  42. msgid "Status Legend:"
  43. msgstr "llegenda d'estat:"
  44. #: src/OptionHandler.cc:38
  45. msgid " Default: "
  46. msgstr " Per defecte: "
  47. #: src/OptionHandler.cc:39
  48. msgid " Tags: "
  49. msgstr " Etiquetes: "
  50. #: src/OptionHandler.cc:40
  51. msgid " Possible Values: "
  52. msgstr ""
  53. " Valors vàlids: \n"
  54. "representa un espai. Entri un espai en la posició equivalent en la "
  55. "traducció. "
  56. #: src/OptionHandlerImpl.h:134
  57. msgid "must be either 'true' or 'false'."
  58. msgstr "ha de ser \"true\" o \"false\""
  59. #: src/OptionHandlerImpl.h:168 src/OptionHandlerImpl.h:217
  60. #, c-format
  61. msgid "must be between %s and %s."
  62. msgstr "ha de estar entre %s i %s"
  63. #: src/OptionHandlerImpl.h:214
  64. #, c-format
  65. msgid "must be smaller than or equal to %s."
  66. msgstr "ha de ser més petit o igual que %s"
  67. #: src/OptionHandlerImpl.h:220
  68. #, c-format
  69. msgid "must be greater than or equal to %s."
  70. msgstr "ha de ser més gran o igual que %s"
  71. #: src/OptionHandlerImpl.h:223 src/OptionHandlerImpl.h:301
  72. msgid "must be a number."
  73. msgstr "ha de ser un número."
  74. #: src/OptionHandlerImpl.h:292
  75. #, c-format
  76. msgid "must be smaller than or equal to %.1f."
  77. msgstr "ha de ser més petit o igual a %.1f."
  78. #: src/OptionHandlerImpl.h:295
  79. #, c-format
  80. msgid "must be between %.1f and %.1f."
  81. msgstr "ha de estar entre %.1f i %.1f."
  82. #: src/OptionHandlerImpl.h:298
  83. #, c-format
  84. msgid "must be greater than or equal to %.1f."
  85. msgstr "ha de ser més gran o igual que %.1f."
  86. #: src/OptionHandlerImpl.h:476
  87. msgid "must be one of the following:"
  88. msgstr "ha de ser un dels següents:"
  89. #: src/OptionHandlerImpl.h:525 src/OptionHandlerImpl.h:568
  90. msgid "unrecognized proxy format"
  91. msgstr "format proxy no reconegut"
  92. #: src/usage_text.h:37
  93. msgid ""
  94. " -d, --dir=DIR The directory to store the downloaded file."
  95. msgstr ""
  96. " -d, --dir=DIR El directori on emmagatzemar el fitxer "
  97. "descarregat."
  98. #: src/usage_text.h:39
  99. msgid " -o, --out=FILE The file name of the downloaded file."
  100. msgstr " -o, --out=FILE El nom del fitxer descarregat."
  101. #: src/usage_text.h:41
  102. msgid ""
  103. " -l, --log=LOG The file name of the log file. If '-' is\n"
  104. " specified, log is written to stdout."
  105. msgstr ""
  106. " -l, --log=LOG El nom del fitxer d'anotacions.. Si es posa "
  107. "'-',\n"
  108. " les anotacions s'escriuen a stdout."
  109. #: src/usage_text.h:44
  110. msgid ""
  111. " -D, --daemon Run as daemon. The current working directory "
  112. "will\n"
  113. " be changed to \"/\" and standard input, "
  114. "standard\n"
  115. " output and standard error will be redirected "
  116. "to\n"
  117. " \"/dev/null\"."
  118. msgstr ""
  119. #: src/usage_text.h:49
  120. msgid ""
  121. " -s, --split=N Download a file using N connections. If more\n"
  122. " than N URLs are given, first N URLs are used "
  123. "and\n"
  124. " remaining URLs are used for backup. If less "
  125. "than\n"
  126. " N URLs are given, those URLs are used more "
  127. "than\n"
  128. " once so that N connections total are made\n"
  129. " simultaneously. Please see -j option too.\n"
  130. " Please note that in Metalink download, this\n"
  131. " option has no effect and use -C option instead."
  132. msgstr ""
  133. #: src/usage_text.h:58
  134. msgid ""
  135. " --retry-wait=SEC Set the seconds to wait to retry after an "
  136. "error\n"
  137. " has occured."
  138. msgstr ""
  139. #: src/usage_text.h:61
  140. msgid " -t, --timeout=SEC Set timeout in seconds."
  141. msgstr ""
  142. #: src/usage_text.h:63
  143. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  144. msgstr ""
  145. #: src/usage_text.h:65
  146. msgid ""
  147. " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  148. " See also --all-proxy option.\n"
  149. " This affects all URLs."
  150. msgstr ""
  151. #: src/usage_text.h:69
  152. msgid ""
  153. " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  154. " See also --all-proxy option.\n"
  155. " This affects all URLs."
  156. msgstr ""
  157. #: src/usage_text.h:73
  158. msgid ""
  159. " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  160. " See also --all-proxy option.\n"
  161. " This affects all URLs."
  162. msgstr ""
  163. #: src/usage_text.h:77
  164. msgid ""
  165. " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  166. " You can override this setting and specify a\n"
  167. " proxy server for a particular protocol using\n"
  168. " --http-proxy, --https-proxy and --ftp-proxy\n"
  169. " options.\n"
  170. " This affects all URLs."
  171. msgstr ""
  172. #: src/usage_text.h:84
  173. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  174. msgstr ""
  175. " --http-user=USER Estableix l'usuari HTTP. Això afecta a totes "
  176. "les URLs."
  177. #: src/usage_text.h:86
  178. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  179. msgstr ""
  180. " --http-passwd=PASSWD Estableix el mot de pas HTTP. Això afecta a "
  181. "totes les URLs."
  182. #: src/usage_text.h:88
  183. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  184. msgstr ""
  185. #: src/usage_text.h:90
  186. msgid " --referer=REFERER Set Referer. This affects all URLs."
  187. msgstr ""
  188. " --referer=REFERER Estableix la referència. Això afecta a "
  189. "totes les URLs."
  190. #: src/usage_text.h:92
  191. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  192. msgstr ""
  193. #: src/usage_text.h:94
  194. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  195. msgstr ""
  196. #: src/usage_text.h:96
  197. msgid " --ftp-type=TYPE Set FTP transfer type."
  198. msgstr ""
  199. #: src/usage_text.h:98
  200. msgid ""
  201. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  202. "given,\n"
  203. " the active mode will be used."
  204. msgstr ""
  205. #: src/usage_text.h:101
  206. msgid ""
  207. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  208. "than\n"
  209. " or equal to this value(bytes per sec).\n"
  210. " 0 means aria2 does not have a lowest speed "
  211. "limit.\n"
  212. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  213. " This option does not affect BitTorrent "
  214. "downloads."
  215. msgstr ""
  216. #: src/usage_text.h:107
  217. msgid ""
  218. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  219. "sec.\n"
  220. " 0 means unrestricted.\n"
  221. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  222. " To limit the download speed per download, use\n"
  223. " --max-download-limit option."
  224. msgstr ""
  225. #: src/usage_text.h:113
  226. msgid ""
  227. " --max-download-limit=SPEED Set max download speed per each download in\n"
  228. " bytes/sec. 0 means unrestricted.\n"
  229. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  230. " To limit the overall download speed, use\n"
  231. " --max-overall-download-limit option."
  232. msgstr ""
  233. #: src/usage_text.h:119
  234. msgid ""
  235. " --file-allocation=METHOD Specify file allocation method.\n"
  236. " 'none' doesn't pre-allocate file space. "
  237. "'prealloc'\n"
  238. " pre-allocates file space before download "
  239. "begins.\n"
  240. " This may take some time depending on the size "
  241. "of\n"
  242. " the file.\n"
  243. " If you are using newer file systems such as "
  244. "ext4\n"
  245. " (with extents support), btrfs or xfs, 'falloc' "
  246. "is\n"
  247. " your best choice. It allocates large(few GiB)\n"
  248. " files almost instantly. Don't use 'falloc' "
  249. "with\n"
  250. " legacy file systems such as ext3 because it "
  251. "takes\n"
  252. " almost same time as 'prealloc' and it blocks "
  253. "aria2\n"
  254. " entirely until allocation finishes. 'falloc' "
  255. "may\n"
  256. " not be available if your system doesn't have\n"
  257. " posix_fallocate() function."
  258. msgstr ""
  259. #: src/usage_text.h:134
  260. msgid ""
  261. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  262. " size is smaller than SIZE.\n"
  263. " You can append K or M(1K = 1024, 1M = 1024K)."
  264. msgstr ""
  265. " --no-file-allocation-limit=SIZE No es reserva espai per fitxers amb\n"
  266. " mida més petita que SIZE.\n"
  267. " Vostè pot afegir K o M(1K = 1024, 1M "
  268. "= 1024K)."
  269. #: src/usage_text.h:138
  270. msgid ""
  271. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  272. "while\n"
  273. " allocating files.\n"
  274. " Turn off if you encounter any error"
  275. msgstr ""
  276. " --enable-direct-io[=true|false] Activa E/S directe, minimitza l'ùs de CPU "
  277. "quan\n"
  278. " es reserva espai per fitxers.\n"
  279. " Desactiveu-lo si trobeu algún error"
  280. #: src/usage_text.h:142
  281. msgid ""
  282. " --allow-overwrite=true|false If false is given, and a file already exists "
  283. "but\n"
  284. " the corresponding control file (filename."
  285. "aria2)\n"
  286. " doesn't exist, then aria2 will not re-"
  287. "download\n"
  288. " the file. See also --auto-file-renaming option."
  289. msgstr ""
  290. #: src/usage_text.h:147
  291. msgid ""
  292. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  293. "download\n"
  294. " when a piece length is different from one in\n"
  295. " a control file. If true is given, you can "
  296. "proceed\n"
  297. " but some download progress will be lost."
  298. msgstr ""
  299. #: src/usage_text.h:152
  300. msgid ""
  301. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  302. "sequentially\n"
  303. " and download each URI in a separate session, "
  304. "like\n"
  305. " the usual command-line download utilities."
  306. msgstr ""
  307. #: src/usage_text.h:156
  308. msgid ""
  309. " --auto-file-renaming[=true|false] Rename file name if the same file "
  310. "already\n"
  311. " exists. This option works only in http(s)/ftp\n"
  312. " download.\n"
  313. " The new file name has a dot and a number"
  314. "(1..9999)\n"
  315. " appended."
  316. msgstr ""
  317. #: src/usage_text.h:162
  318. msgid ""
  319. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  320. " You can specify set of parts:\n"
  321. " http://{sv1,sv2,sv3}/foo.iso\n"
  322. " Also you can specify numeric sequences with "
  323. "step\n"
  324. " counter:\n"
  325. " http://host/image[000-100:2].img\n"
  326. " A step counter can be omitted.\n"
  327. " If all URIs do not point to the same file, "
  328. "such\n"
  329. " as the second example above, -Z option is\n"
  330. " required."
  331. msgstr ""
  332. #: src/usage_text.h:173
  333. msgid ""
  334. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  335. msgstr ""
  336. " --enable-http-keep-alive[=true|false] Activa la connexió persistent "
  337. "HTTP/1.1."
  338. #: src/usage_text.h:175
  339. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  340. msgstr ""
  341. #: src/usage_text.h:177
  342. msgid ""
  343. " -V, --check-integrity[=true|false] Check file integrity by validating "
  344. "piece\n"
  345. " hashes. This option has effect only in "
  346. "BitTorrent\n"
  347. " and Metalink downloads with chunk checksums.\n"
  348. " Use this option to re-download a damaged "
  349. "portion\n"
  350. " of a file. See also --bt-hash-check-seed "
  351. "option."
  352. msgstr ""
  353. #: src/usage_text.h:183
  354. msgid ""
  355. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  356. " --check-integrity option and file is "
  357. "complete,\n"
  358. " continue to seed file. If you want to check "
  359. "file\n"
  360. " and download it only when it is damaged or\n"
  361. " incomplete, set this option to false.\n"
  362. " This option has effect only on BitTorrent\n"
  363. " download."
  364. msgstr ""
  365. #: src/usage_text.h:191
  366. msgid ""
  367. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  368. "calculating\n"
  369. " checksum while downloading a file if chunk\n"
  370. " checksums are provided."
  371. msgstr ""
  372. #: src/usage_text.h:195
  373. msgid ""
  374. " -c, --continue Continue downloading a partially downloaded\n"
  375. " file. Use this option to resume a download\n"
  376. " started by a web browser or another program\n"
  377. " which downloads files sequentially from the\n"
  378. " beginning. Currently this option is only\n"
  379. " applicable to http(s)/ftp downloads."
  380. msgstr ""
  381. " -c, --continue Continua descarregant un fitxer parcialment "
  382. "descarregat.\n"
  383. " Feu servir aquesta opció per seguir la "
  384. "descàrrega\n"
  385. " començada per un navegador Web o un altre "
  386. "programa\n"
  387. " que descarrega els fitxers seqüèncialment des "
  388. "del\n"
  389. " principi. Aquesta opció només és\n"
  390. " aplicable a descàrregues http(s)/ftp."
  391. #: src/usage_text.h:202
  392. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  393. msgstr ""
  394. " -U, --user-agent=USER_AGENT Estableix l'agent d'usuari per descàrregues "
  395. "http."
  396. #: src/usage_text.h:204
  397. msgid " -n, --no-netrc Disables netrc support."
  398. msgstr " -n, --no-netrc Desactiva el suport netrc."
  399. #: src/usage_text.h:206
  400. msgid ""
  401. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  402. " multiple URIs for a single entity: separate\n"
  403. " URIs on a single line using the TAB "
  404. "character.\n"
  405. " Reads input from stdin when '-' is specified.\n"
  406. " The additional out and dir options can be\n"
  407. " specified after each line of URIs. This "
  408. "optional\n"
  409. " line must start with white space(s). See "
  410. "INPUT\n"
  411. " FILE section of man page for details."
  412. msgstr ""
  413. #: src/usage_text.h:215
  414. msgid ""
  415. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  416. "for\n"
  417. " every static (HTTP/FTP) URL, torrent and "
  418. "metalink.\n"
  419. " See also -s and -C options."
  420. msgstr ""
  421. #: src/usage_text.h:219
  422. msgid ""
  423. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  424. "format\n"
  425. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  426. msgstr ""
  427. #: src/usage_text.h:222
  428. msgid ""
  429. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  430. "x)/\n"
  431. " Netscape format. If FILE already exists, it "
  432. "is\n"
  433. " overwritten. Session Cookies are also saved "
  434. "and\n"
  435. " their expiry values are treated as 0."
  436. msgstr ""
  437. #: src/usage_text.h:227
  438. msgid ""
  439. " -S, --show-files Print file listing of .torrent or .metalink "
  440. "file\n"
  441. " and exit. More detailed information will be "
  442. "listed\n"
  443. " in case of torrent file."
  444. msgstr ""
  445. " -S, --show-files Escriu el llistat de fitxers d'un fitxer ."
  446. "torrent o .metalink\n"
  447. " i surt. Es llistarà Informació més detallada\n"
  448. " en el cas d'un fitxer torrent."
  449. #: src/usage_text.h:231
  450. msgid ""
  451. " --select-file=INDEX... Set file to download by specifying its index.\n"
  452. " You can find the file index using the\n"
  453. " --show-files option. Multiple indexes can be\n"
  454. " specified by using ',', for example: \"3,6\".\n"
  455. " You can also use '-' to specify a range: \"1-5"
  456. "\".\n"
  457. " ',' and '-' can be used together.\n"
  458. " When used with the -M option, index may vary\n"
  459. " depending on the query(see --metalink-* "
  460. "options)."
  461. msgstr ""
  462. #: src/usage_text.h:240
  463. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  464. msgstr " -T, --torrent-file=TORRENT_FILE El camí al fitxer .torrent."
  465. #: src/usage_text.h:242
  466. msgid ""
  467. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  468. " whose suffix is .torrent or content type is\n"
  469. " application/x-bittorrent is downloaded, aria2\n"
  470. " parses it as a torrent file and downloads "
  471. "files\n"
  472. " mentioned in it.\n"
  473. " If mem is specified, a torrent file is not\n"
  474. " written to the disk, but is just kept in "
  475. "memory.\n"
  476. " If false is specified, the action mentioned "
  477. "above\n"
  478. " is not taken."
  479. msgstr ""
  480. #: src/usage_text.h:252
  481. msgid ""
  482. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  483. " mentioned in .torrent file."
  484. msgstr ""
  485. #: src/usage_text.h:255
  486. msgid ""
  487. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  488. " Multiple ports can be specified by using ',',\n"
  489. " for example: \"6881,6885\". You can also use "
  490. "'-'\n"
  491. " to specify a range: \"6881-6999\". ',' and '-' "
  492. "can\n"
  493. " be used together."
  494. msgstr ""
  495. #: src/usage_text.h:261
  496. msgid ""
  497. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  498. "sec.\n"
  499. " 0 means unrestricted.\n"
  500. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  501. " To limit the upload speed per torrent, use\n"
  502. " --max-upload-limit option."
  503. msgstr ""
  504. #: src/usage_text.h:267
  505. msgid ""
  506. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  507. " bytes/sec. 0 means unrestricted.\n"
  508. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  509. " To limit the overall upload speed, use\n"
  510. " --max-overall-upload-limit option."
  511. msgstr ""
  512. #: src/usage_text.h:273
  513. msgid ""
  514. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  515. " --seed-ratio option."
  516. msgstr ""
  517. " --seed-time=MINUTES Especifica el temps de sembrar en minuts. "
  518. "Mirar també\n"
  519. " la opció --seed-ratio."
  520. #: src/usage_text.h:276
  521. msgid ""
  522. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  523. " until share ratio reaches RATIO.\n"
  524. " You are strongly encouraged to specify equals "
  525. "or\n"
  526. " more than 1.0 here. Specify 0.0 if you intend "
  527. "to\n"
  528. " do seeding regardless of share ratio.\n"
  529. " If --seed-time option is specified along with\n"
  530. " this option, seeding ends when at least one "
  531. "of\n"
  532. " the conditions is satisfied."
  533. msgstr ""
  534. #: src/usage_text.h:285
  535. msgid ""
  536. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  537. "in\n"
  538. " BitTorrent is 20 byte length. If more than 20\n"
  539. " bytes are specified, only first 20 bytes are\n"
  540. " used. If less than 20 bytes are specified, "
  541. "random\n"
  542. " byte data are added to make its length 20 "
  543. "bytes."
  544. msgstr ""
  545. #: src/usage_text.h:291
  546. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  547. msgstr ""
  548. " --enable-peer-exchange[=true|false] Activa la extensió d'intercanvi entre "
  549. "iguals."
  550. #: src/usage_text.h:293
  551. msgid " --enable-dht[=true|false] Enable DHT functionality."
  552. msgstr " --enable-dht[=true|false] Activa la funcionalitat DHT."
  553. #: src/usage_text.h:295
  554. msgid ""
  555. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  556. " Multiple ports can be specified by using ',',\n"
  557. " for example: \"6881,6885\". You can also use "
  558. "'-'\n"
  559. " to specify a range: \"6881-6999\". ',' and '-' "
  560. "can\n"
  561. " be used together."
  562. msgstr ""
  563. #: src/usage_text.h:301
  564. msgid ""
  565. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  566. " network."
  567. msgstr ""
  568. " --dht-entry-point=HOST:PORT Estableix host i port com el punt d'entrada a \n"
  569. " una xarxa DHT."
  570. #: src/usage_text.h:304
  571. msgid ""
  572. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  573. msgstr ""
  574. #: src/usage_text.h:306
  575. msgid ""
  576. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  577. " If several encryption methods are provided by "
  578. "a\n"
  579. " peer, aria2 chooses the lowest one which "
  580. "satisfies\n"
  581. " the given level."
  582. msgstr ""
  583. #: src/usage_text.h:311
  584. msgid ""
  585. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  586. " establish connection with legacy BitTorrent\n"
  587. " handshake. Thus aria2 always uses Obfuscation\n"
  588. " handshake."
  589. msgstr ""
  590. #: src/usage_text.h:316
  591. msgid ""
  592. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  593. " torrent is lower than SPEED, aria2 "
  594. "temporarily\n"
  595. " increases the number of peers to try for more\n"
  596. " download speed. Configuring this option with "
  597. "your\n"
  598. " preferred download speed can increase your\n"
  599. " download speed in some cases.\n"
  600. " You can append K or M(1K = 1024, 1M = 1024K)."
  601. msgstr ""
  602. #: src/usage_text.h:324
  603. msgid ""
  604. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  605. "each\n"
  606. " BitTorrent download."
  607. msgstr ""
  608. " --bt-max-open-files=NUM Especifica el nombre màxim de fitxers a obrir en "
  609. "cada\n"
  610. " descàrrega BitTorrent."
  611. #: src/usage_text.h:327
  612. msgid ""
  613. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  614. " verifying piece hashes."
  615. msgstr ""
  616. #: src/usage_text.h:330
  617. msgid ""
  618. " --bt-max-peers=NUM Specify the maximum number of peers per "
  619. "torrent.\n"
  620. " 0 means unlimited.\n"
  621. " See also --bt-request-peer-speed-limit option."
  622. msgstr ""
  623. #: src/usage_text.h:334
  624. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  625. msgstr " -M, --metalink-file=METALINK_FILE El camí al fitxer .metalink."
  626. #: src/usage_text.h:336
  627. msgid ""
  628. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  629. " simultaneously. Some Metalinks regulate the\n"
  630. " number of servers to connect. aria2 strictly\n"
  631. " respects them. This means that if Metalink "
  632. "defines\n"
  633. " the maxconnections attribute lower than\n"
  634. " NUM_SERVERS, then aria2 uses the value of\n"
  635. " maxconnections attribute instead of "
  636. "NUM_SERVERS.\n"
  637. " See also -s and -j options."
  638. msgstr ""
  639. #: src/usage_text.h:345
  640. msgid " --metalink-version=VERSION The version of the file to download."
  641. msgstr " --metalink-version=VERSION La versió del fitxer a descarregar."
  642. #: src/usage_text.h:347
  643. msgid " --metalink-language=LANGUAGE The language of the file to download."
  644. msgstr " --metalink-language=LANGUAGE L'idioma del fitxer a descarregar."
  645. #: src/usage_text.h:349
  646. msgid ""
  647. " --metalink-os=OS The operating system of the file to download."
  648. msgstr ""
  649. " --metalink-os=OS El Sistema Operatiu del fitxer a descarregar."
  650. #: src/usage_text.h:351
  651. msgid ""
  652. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  653. " A comma-delimited list of locations is\n"
  654. " acceptable."
  655. msgstr ""
  656. #: src/usage_text.h:355
  657. msgid ""
  658. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  659. "'none'\n"
  660. " if you don't have any preferred protocol."
  661. msgstr ""
  662. #: src/usage_text.h:358
  663. msgid ""
  664. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  665. " whose suffix is .metalink or content type of\n"
  666. " application/metalink+xml is downloaded, aria2\n"
  667. " parses it as a metalink file and downloads "
  668. "files\n"
  669. " mentioned in it.\n"
  670. " If mem is specified, a metalink file is not\n"
  671. " written to the disk, but is just kept in "
  672. "memory.\n"
  673. " If false is specified, the action mentioned "
  674. "above\n"
  675. " is not taken."
  676. msgstr ""
  677. #: src/usage_text.h:368
  678. msgid ""
  679. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  680. " protocols are available for a mirror in a "
  681. "metalink\n"
  682. " file, aria2 uses one of them.\n"
  683. " Use --metalink-preferred-protocol option to\n"
  684. " specify the preference of protocol."
  685. msgstr ""
  686. #: src/usage_text.h:374
  687. msgid " -v, --version Print the version number and exit."
  688. msgstr " -v, --version Escriure el número de versió i sortir."
  689. #: src/usage_text.h:376
  690. msgid ""
  691. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  692. " The help messages are classified with tags. A "
  693. "tag\n"
  694. " starts with \"#\". For example, type \"--"
  695. "help=#http\"\n"
  696. " to get the usage for the options tagged with\n"
  697. " \"#http\". If non-tag word is given, print the "
  698. "usage\n"
  699. " for the options whose name includes that word."
  700. msgstr ""
  701. #: src/usage_text.h:383
  702. msgid " --no-conf Disable loading aria2.conf file."
  703. msgstr " --no-conf Desactiva la càrrega del fitxer de configuració aria2.conf."
  704. #: src/usage_text.h:385
  705. msgid ""
  706. " --conf-path=PATH Change the configuration file path to PATH."
  707. msgstr " --conf-path=PATH Canvia el camí al fitxer de configuració a PATH."
  708. #: src/usage_text.h:387
  709. msgid ""
  710. " --stop=SEC Stop application after SEC seconds has "
  711. "passed.\n"
  712. " If 0 is given, this feature is disabled."
  713. msgstr ""
  714. " --stop=SEC Aturar l'aplicació quan hagin passat SEC segons.\n"
  715. " Si el "
  716. "valor és 0, aquesta funcionalitat es desactiva."
  717. #: src/usage_text.h:390
  718. msgid ""
  719. " --header=HEADER Append HEADER to HTTP request header. You can "
  720. "use\n"
  721. " this option repeatedly to specify more than "
  722. "one\n"
  723. " header:\n"
  724. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  725. "9J1\"\n"
  726. " http://host/file"
  727. msgstr ""
  728. #: src/usage_text.h:396
  729. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  730. msgstr ""
  731. #: src/usage_text.h:398
  732. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  733. msgstr " --async-dns[=true|false] Activa DNS asíncrona."
  734. #: src/usage_text.h:400
  735. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  736. msgstr " -ftp-reuse-connection[=true|false] Refusa connexió FTP."
  737. #: src/usage_text.h:402
  738. msgid ""
  739. " --summary-interval=SEC Set interval to output download progress "
  740. "summary.\n"
  741. " Setting 0 suppresses the output."
  742. msgstr ""
  743. " --summary-interval=SEC Estableix l'interval de resumir el progres de "
  744. "descàrrega.\n"
  745. " Posant 0 no fa el resum."
  746. #: src/usage_text.h:405
  747. msgid " --log-level=LEVEL Set log level to output."
  748. msgstr " --log-level=LEVEL Estableix el nivell d'anotació."
  749. #: src/usage_text.h:407
  750. msgid ""
  751. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  752. "the\n"
  753. " remote HTTP/FTP server and if it is "
  754. "available,\n"
  755. " apply it to the local file."
  756. msgstr ""
  757. #: src/usage_text.h:411
  758. msgid ""
  759. " --connect-timeout=SEC Set the connect timeout in seconds to "
  760. "establish\n"
  761. " connection to HTTP/FTP/proxy server. After "
  762. "the\n"
  763. " connection is established, this option makes "
  764. "no\n"
  765. " effect and --timeout option is used instead."
  766. msgstr ""
  767. #: src/usage_text.h:416
  768. msgid ""
  769. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  770. "the\n"
  771. " remote HTTP/FTP servers NUM times without "
  772. "getting\n"
  773. " a single byte, then force the download to "
  774. "fail.\n"
  775. " Specify 0 to disable this option.\n"
  776. " This options is effective only when using\n"
  777. " HTTP/FTP servers."
  778. msgstr ""
  779. #: src/usage_text.h:423
  780. msgid ""
  781. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  782. " If 'inorder' is given, URI is tried in the "
  783. "order\n"
  784. " appeared in the URI list.\n"
  785. " If 'feedback' is given, aria2 uses download "
  786. "speed\n"
  787. " observed in the previous downloads and choose\n"
  788. " fastest server in the URI list. This also\n"
  789. " effectively skips dead mirrors. The observed\n"
  790. " download speed is a part of performance "
  791. "profile\n"
  792. " of servers mentioned in --server-stat-of and\n"
  793. " --server-stat-if options.\n"
  794. " If 'adaptive' is given, selects one of the "
  795. "best\n"
  796. " mirrors for the first and reserved "
  797. "connections.\n"
  798. " For supplementary ones, it returns mirrors "
  799. "which\n"
  800. " has not been tested yet, and if each of them "
  801. "has\n"
  802. " already been tested, returns mirrors which has "
  803. "to\n"
  804. " be tested again. Otherwise, it doesn't select\n"
  805. " anymore mirrors. Like 'feedback', it uses a\n"
  806. " performance profile of servers."
  807. msgstr ""
  808. #: src/usage_text.h:442
  809. msgid ""
  810. " --server-stat-of=FILE Specify the filename to which performance "
  811. "profile\n"
  812. " of the servers is saved. You can load saved "
  813. "data\n"
  814. " using --server-stat-if option."
  815. msgstr ""
  816. #: src/usage_text.h:446
  817. msgid ""
  818. " --server-stat-if=FILE Specify the filename to load performance "
  819. "profile\n"
  820. " of the servers. The loaded data will be used "
  821. "in\n"
  822. " some URI selector such as 'feedback'.\n"
  823. " See also --uri-selector option"
  824. msgstr ""
  825. #: src/usage_text.h:451
  826. msgid ""
  827. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  828. " performance profile of the servers since the "
  829. "last\n"
  830. " contact to them."
  831. msgstr ""
  832. #: src/usage_text.h:455
  833. msgid ""
  834. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  835. "seconds.\n"
  836. " If 0 is given, a control file is not saved "
  837. "during\n"
  838. " download. aria2 saves a control file when it "
  839. "stops\n"
  840. " regardless of the value."
  841. msgstr ""
  842. #: src/usage_text.h:460
  843. msgid ""
  844. " --certificate=FILE Use the client certificate in FILE.\n"
  845. " The certificate must be in PEM format.\n"
  846. " You may use --private-key option to specify "
  847. "the\n"
  848. " private key."
  849. msgstr ""
  850. #: src/usage_text.h:465
  851. msgid ""
  852. " --private-key=FILE Use the private key in FILE.\n"
  853. " The private key must be decrypted and in PEM\n"
  854. " format. See also --certificate option."
  855. msgstr ""
  856. #: src/usage_text.h:469
  857. msgid ""
  858. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  859. "verify\n"
  860. " the peers. The certificate file must be in "
  861. "PEM\n"
  862. " format and can contain multiple CA "
  863. "certificates.\n"
  864. " Use --check-certificate option to enable\n"
  865. " verification."
  866. msgstr ""
  867. #: src/usage_text.h:475
  868. msgid ""
  869. " --check-certificate[=true|false] Verify the peer using certificates "
  870. "specified\n"
  871. " in --ca-certificate option."
  872. msgstr ""
  873. #: src/usage_text.h:478
  874. msgid ""
  875. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  876. "where\n"
  877. " proxy should not be used."
  878. msgstr ""
  879. #: src/usage_text.h:481
  880. msgid ""
  881. " --use-head[=true|false] Use HEAD method for the first request to the "
  882. "HTTP\n"
  883. " server."
  884. msgstr ""
  885. #: src/usage_text.h:484
  886. msgid " --event-poll=POLL Specify the method for polling events."
  887. msgstr ""
  888. #: src/usage_text.h:486
  889. msgid ""
  890. " --xml-rpc-listen-port=PORT Specify a port number for XML-RPC server to "
  891. "listen\n"
  892. " to."
  893. msgstr ""
  894. #: src/usage_text.h:489
  895. msgid ""
  896. " --enable-xml-rpc[=true|false] Enable XML-RPC server.\n"
  897. " It is strongly recommended to set username "
  898. "and\n"
  899. " password using --xml-rpc-user and --xml-rpc-"
  900. "passwd\n"
  901. " option. See also --xml-rpc-listen-port option."
  902. msgstr ""
  903. #: src/usage_text.h:494
  904. msgid ""
  905. " --xml-rpc-max-request-size=SIZE Set max size of XML-RPC request. If aria2\n"
  906. " detects the request is more than SIZE bytes, "
  907. "it\n"
  908. " drops connection."
  909. msgstr ""
  910. #: src/usage_text.h:498
  911. msgid " --xml-rpc-user=USER Set XML-RPC user."
  912. msgstr ""
  913. #: src/usage_text.h:500
  914. msgid " --xml-rpc-passwd=PASSWD Set XML-RPC password."
  915. msgstr ""
  916. #: src/usage_text.h:502
  917. msgid ""
  918. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  919. "a\n"
  920. " BitTorrent tracker. Although this function is\n"
  921. " named 'external', it can accept any kind of "
  922. "IP\n"
  923. " addresses."
  924. msgstr ""
  925. #: src/usage_text.h:507
  926. msgid ""
  927. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  928. "it\n"
  929. " is requested by the server. If false is set, "
  930. "then\n"
  931. " authorization header is always sent to the "
  932. "server.\n"
  933. " There is an exception: if username and "
  934. "password\n"
  935. " are embedded in URI, authorization header is\n"
  936. " always sent to the server regardless of this\n"
  937. " option."
  938. msgstr ""
  939. #: src/usage_text.h:515
  940. msgid ""
  941. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  942. "can\n"
  943. " find the file index using the --show-files "
  944. "option.\n"
  945. " PATH is a relative path to the path specified "
  946. "in\n"
  947. " --dir option. You can use this option "
  948. "multiple\n"
  949. " times."
  950. msgstr ""
  951. #: src/usage_text.h:521
  952. msgid ""
  953. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  954. "the\n"
  955. " remote file is available and doesn't download\n"
  956. " data. This option has effect on HTTP/FTP "
  957. "download.\n"
  958. " BitTorrent downloads are canceled if true is\n"
  959. " specified."
  960. msgstr ""
  961. #: src/usage_text.h:527
  962. msgid ""
  963. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  964. " requests. This completely overrides interval "
  965. "value\n"
  966. " and aria2 just uses this value and ignores "
  967. "the\n"
  968. " min interval and interval value in the "
  969. "response of\n"
  970. " tracker. If 0 is set, aria2 determines "
  971. "interval\n"
  972. " based on the response of tracker and the "
  973. "download\n"
  974. " progress."
  975. msgstr ""
  976. #: src/usage_text.h:535
  977. msgid ""
  978. " --on-download-complete=COMMAND Set the command to be executed when "
  979. "download\n"
  980. " completes.\n"
  981. " See --on-download-start option for the\n"
  982. " requirement of COMMAND.\n"
  983. " See also --on-download-stop option."
  984. msgstr ""
  985. #: src/usage_text.h:541
  986. msgid ""
  987. " --on-download-start=COMMAND Set the command to be executed when download\n"
  988. " starts up. COMMAND must take just one argument "
  989. "and\n"
  990. " GID is passed to COMMAND as a first argument."
  991. msgstr ""
  992. #: src/usage_text.h:545
  993. msgid ""
  994. " --on-download-error=COMMAND Set the command to be executed when download\n"
  995. " aborts due to error.\n"
  996. " See --on-download-start option for the\n"
  997. " requirement of COMMAND.\n"
  998. " See also --on-download-stop option."
  999. msgstr ""
  1000. #: src/usage_text.h:551
  1001. msgid ""
  1002. " --on-download-stop=COMMAND Set the command to be executed when download\n"
  1003. " stops. You can override the command to be "
  1004. "executed\n"
  1005. " for particular download result using\n"
  1006. " --on-download-complete and --on-download-"
  1007. "error. If\n"
  1008. " they are specified, command specified in this\n"
  1009. " option is not executed.\n"
  1010. " See --on-download-start option for the\n"
  1011. " requirement of COMMAND."
  1012. msgstr ""
  1013. #: src/usage_text.h:560
  1014. msgid ""
  1015. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1016. "0 in\n"
  1017. " consecutive SEC seconds. If 0 is given, this\n"
  1018. " feature is disabled."
  1019. msgstr ""
  1020. #: src/usage_text.h:564
  1021. msgid ""
  1022. " --xml-rpc-listen-all[=true|false] Listen incoming XML-RPC requests on all\n"
  1023. " network interfaces. If false is given, listen "
  1024. "only\n"
  1025. " on local loopback interface."
  1026. msgstr ""
  1027. #: src/usage_text.h:568
  1028. msgid ""
  1029. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1030. "last\n"
  1031. " pieces of each file first. This is useful for\n"
  1032. " previewing files. The argument can contain 2\n"
  1033. " keywords:head and tail. To include both "
  1034. "keywords,\n"
  1035. " they must be separated by comma. These "
  1036. "keywords\n"
  1037. " can take one parameter, SIZE. For example, if\n"
  1038. " head=SIZE is specified, pieces in the range "
  1039. "of\n"
  1040. " first SIZE bytes of each file get higher "
  1041. "priority.\n"
  1042. " tail=SIZE means the range of last SIZE bytes "
  1043. "of\n"
  1044. " each file. SIZE can include K or M(1K = 1024, "
  1045. "1M =\n"
  1046. " 1024K)."
  1047. msgstr ""
  1048. #: src/usage_text.h:580
  1049. msgid ""
  1050. " --interface=INTERFACE Bind sockets to given interface. You can "
  1051. "specify\n"
  1052. " interface name, IP address and hostname."
  1053. msgstr ""
  1054. #: src/usage_text.h:583
  1055. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1056. msgstr ""
  1057. #: src/version_usage.cc:57
  1058. msgid " version "
  1059. msgstr " versió "
  1060. #: src/version_usage.cc:80
  1061. #, c-format
  1062. msgid "Report bugs to %s"
  1063. msgstr "Informar d'errors a %s"
  1064. #: src/version_usage.cc:85
  1065. msgid "Usage: aria2c [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  1066. msgstr ""
  1067. #: src/version_usage.cc:92
  1068. msgid "Printing all options."
  1069. msgstr "Imprimint totes les opcions."
  1070. #: src/version_usage.cc:94
  1071. #, c-format
  1072. msgid "Printing options tagged with '%s'."
  1073. msgstr "Imprimint les opcions etiquetades amb '%s'."
  1074. #: src/version_usage.cc:98
  1075. #, c-format
  1076. msgid "See -h option to know other command-line options(%s)."
  1077. msgstr ""
  1078. "Consulti la opció -h per trobar altres opcions (%s) de la línia d'ordres."
  1079. #: src/version_usage.cc:103 src/version_usage.cc:115
  1080. msgid "Options:"
  1081. msgstr "Opcions:"
  1082. #: src/version_usage.cc:112
  1083. #, c-format
  1084. msgid "Printing options whose name includes '%s'."
  1085. msgstr ""
  1086. #: src/version_usage.cc:120
  1087. #, c-format
  1088. msgid "No option matching with '%s'."
  1089. msgstr ""
  1090. #: src/version_usage.cc:128
  1091. msgid ""
  1092. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  1093. " point to the same file or downloading will fail."
  1094. msgstr ""
  1095. " Es poden posar vàries URLs. A menys que s'especifiqui la opció -Z, totes "
  1096. "les URLs han\n"
  1097. " d'apuntar al mateix fitxer o la descàrrega fallarà."
  1098. #: src/version_usage.cc:130
  1099. msgid ""
  1100. " You can also specify arbitrary number of torrent files and metalink files\n"
  1101. " stored in a local drive. Please note that they are always treated as a\n"
  1102. " separate download."
  1103. msgstr ""
  1104. " Vostè també pot especificar varis fitxers torrent i fitxers metalink\n"
  1105. " emmagatzemats en un disc local. Si us plau, tingui en compte que sempre\n"
  1106. " son tractats com descàrregues separades."
  1107. #: src/version_usage.cc:135
  1108. msgid ""
  1109. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  1110. " download a file from both torrent swarm and http/ftp server at the same "
  1111. "time,\n"
  1112. " while the data from http/ftp are uploaded to the torrent swarm. For single "
  1113. "file\n"
  1114. " torrents, URL can be a complete URL pointing to the resource or if URL "
  1115. "ends\n"
  1116. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1117. "and\n"
  1118. " 'path' in torrent are added to form a URL for each file."
  1119. msgstr ""
  1120. #: src/version_usage.cc:142
  1121. msgid ""
  1122. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  1123. " contains \"&\" or any characters that have special meaning in shell."
  1124. msgstr ""
  1125. " Asseguri's de que la URL és entre simples (') o dobles(\") cometes Si\n"
  1126. "conté \"&\" o altres caràcters que tenen un significat especial en el shell."
  1127. #: src/version_usage.cc:146
  1128. msgid "Refer to man page for more information."
  1129. msgstr "Per més informació consulti la pàgina man."
  1130. #: src/message.h:40
  1131. #, c-format
  1132. msgid "CUID#%d - The download for one segment completed successfully."
  1133. msgstr ""
  1134. "CUID#%d - La descàrrega per un segment s'ha completat satisfactòriament."
  1135. #: src/message.h:41
  1136. #, c-format
  1137. msgid "CUID#%d - No segment available."
  1138. msgstr "CUID#%d - No hi ha cap segment disponible."
  1139. #: src/message.h:42
  1140. #, c-format
  1141. msgid "CUID#%d - Connecting to %s:%d"
  1142. msgstr "CUID#%d - Connectant a %s:%d"
  1143. #: src/message.h:43
  1144. #, c-format
  1145. msgid ""
  1146. "CUID#%d - The segment changed. We send the request again with new Range "
  1147. "header."
  1148. msgstr ""
  1149. "CUID#%d - El segment ha canviat. Enviarem la petició una altre vegada amb "
  1150. "una capçalera de Rang nova."
  1151. #: src/message.h:44
  1152. #, c-format
  1153. msgid "CUID#%d - Redirecting to %s"
  1154. msgstr "CUID#%d - Redirigint cap a %s"
  1155. #: src/message.h:45
  1156. #, c-format
  1157. msgid ""
  1158. "CUID#%d - Requesting:\n"
  1159. "%s"
  1160. msgstr ""
  1161. "CUID#%d - Demanant:\n"
  1162. "%s"
  1163. #: src/message.h:46
  1164. #, c-format
  1165. msgid ""
  1166. "CUID#%d - Response received:\n"
  1167. "%s"
  1168. msgstr ""
  1169. "CUID#%d - Resposta rebuda:\n"
  1170. "%s"
  1171. #: src/message.h:47
  1172. #, c-format
  1173. msgid "CUID#%d - Download aborted. URI=%s"
  1174. msgstr "CUID#%d - Descàrrega cancel·lada. URI=%s"
  1175. #: src/message.h:48
  1176. #, c-format
  1177. msgid "CUID#%d - Restarting the download. URI=%s"
  1178. msgstr "CUID#%d - Re-arrencant la descàrrega. URI=%s"
  1179. #: src/message.h:49
  1180. #, c-format
  1181. msgid "CUID#%d - Download aborted."
  1182. msgstr "CUID#%d - Descàrrega cancel·lada."
  1183. #: src/message.h:50
  1184. #, c-format
  1185. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  1186. msgstr ""
  1187. "CUID#%d - Intentat %d vegades, però sense èxit. Descàrrega cancel·lada."
  1188. #: src/message.h:56
  1189. #, c-format
  1190. msgid "CUID#%d - we got new piece. index=%d"
  1191. msgstr "CUID#%d - tenim una nova peça. índex=%d"
  1192. #: src/message.h:57
  1193. #, c-format
  1194. msgid "CUID#%d - we got wrong piece. index=%d"
  1195. msgstr "CUID#%d - hem agafat una peça dolenta. índex=%d"
  1196. #: src/message.h:58
  1197. #, c-format
  1198. msgid "CUID#%d - Download not complete: %s"
  1199. msgstr "CUID#%d - Descàrrega incompleta: %s"
  1200. #: src/message.h:59
  1201. #, c-format
  1202. msgid "#%d - Download has already completed: %s"
  1203. msgstr "#%d - Ja s'ha completat la descàrrega: %s"
  1204. #: src/message.h:60
  1205. #, c-format
  1206. msgid "CUID#%d - Good checksum: %s"
  1207. msgstr "CUID#%d - Suma de comprovació correcta: %s"
  1208. #: src/message.h:61
  1209. #, c-format
  1210. msgid "CUID#%d - Bad checksum: %s"
  1211. msgstr "CUID#%d - Suma de comprovació incorrecta: %s"
  1212. #: src/message.h:62
  1213. #, c-format
  1214. msgid "CUID#%d - Resolving hostname %s"
  1215. msgstr "CUID#%d - Resolent nom 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ó del nom completa: %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ó del nom per %s ha fallat:%s"
  1224. #: src/message.h:65
  1225. #, c-format
  1226. msgid "CUID#%d - DNS cache hit: %s -> %s"
  1227. msgstr "CUID#%d - Encertat el cau DNS: %s -> %s"
  1228. #: src/message.h:66
  1229. #, c-format
  1230. msgid "CUID#%d - Abort requested."
  1231. msgstr "CUID#%d - Cancel·lació demanada."
  1232. #: src/message.h:67
  1233. #, c-format
  1234. msgid "CUID#%d - Connecting to the peer %s"
  1235. msgstr "CUID#%d - Connectant a l'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 - Peça rebuda. índex=%d, començament=%d, longitud=%d, desviació=%"
  1243. "llu, bloc-índex=%d"
  1244. #: src/message.h:69
  1245. #, c-format
  1246. msgid "CUID#%d - Piece bitfield %s"
  1247. msgstr "CUID#%d - Camp de bits de la peça %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 - Missatge de rebuig de peça en cua degut a que l'igual ha estat "
  1255. "estrangulat. índex=%d, començament=%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 - Missatge de rebuig de peça en cua degut a que s'ha rebut un "
  1263. "missatge de cancel·lació. índex=%d, començament=%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 - Hem trobat una excepció mentre validàvem l'integritat del fitxer."
  1269. #: src/message.h:73
  1270. #, c-format
  1271. msgid "CUID#%d - Interested in the peer"
  1272. msgstr "CUID#%d - Interessat en l'igual"
  1273. #: src/message.h:74
  1274. #, c-format
  1275. msgid "CUID#%d - Not interested in the peer"
  1276. msgstr "CUID#%d - No interessat en l'igual"
  1277. #: src/message.h:75
  1278. #, c-format
  1279. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  1280. msgstr "CUID#%d - Esborrant petició en l'eslot. índex=%d, bloc-índex=%d"
  1281. #: src/message.h:76
  1282. #, c-format
  1283. msgid ""
  1284. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  1285. "got choked."
  1286. msgstr ""
  1287. "CUID#%d - Esborrant petició en l'eslot. índex=%d, bloc-índex=%d degut a que "
  1288. "el localhost ha estat estrangulat."
  1289. #: src/message.h:77
  1290. #, c-format
  1291. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  1292. msgstr ""
  1293. "CUID#%d - Esborrant petició en l'eslot. bloc-índex=%d degut a temps excedit"
  1294. #: src/message.h:78
  1295. #, c-format
  1296. msgid ""
  1297. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  1298. "acquired."
  1299. msgstr ""
  1300. "CUID#%d - Esborrant petició en l'eslot. bloc-índex=%d degut a que el bloc ha "
  1301. "estat rebut."
  1302. #: src/message.h:79
  1303. #, c-format
  1304. msgid "CUID#%d - Fast extension enabled."
  1305. msgstr "CUID#%d - Extensió ràpida activada."
  1306. #: src/message.h:80
  1307. #, c-format
  1308. msgid "CUID#%d - Extended Messaging enabled."
  1309. msgstr "CUID#%d - S'han activat els missatges ampliats."
  1310. #: src/message.h:81
  1311. #, c-format
  1312. msgid "CUID#%d - Exception caught while allocating file space."
  1313. msgstr ""
  1314. "CUID#%d - Hem trobat una excepció mentre reservàvem espai per el fitxer."
  1315. #: src/message.h:82
  1316. #, c-format
  1317. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1318. msgstr ""
  1319. "CUID#%d - Hem detectat Content-Disposition. Fem servir %s com nom de fitxer"
  1320. #: src/message.h:83
  1321. #, c-format
  1322. msgid "CUID#%d - Peer %s:%d banned."
  1323. msgstr "CUID#%d - Igual %s:%d vetat."
  1324. #: src/message.h:84
  1325. #, c-format
  1326. msgid "CUID#%d - Using port %d for accepting new connections"
  1327. msgstr "CUID#%d - Fent servir el port %d per acceptar noves connexions"
  1328. #: src/message.h:85
  1329. #, c-format
  1330. msgid "CUID#%d - An error occurred while binding port=%d"
  1331. msgstr "CUID#%d - Hi ha hagut en error mentre preníem el port=%d"
  1332. #: src/message.h:86
  1333. #, c-format
  1334. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1335. msgstr "CUID#%d - Connexió entrant, afegint nova ordre CUID#%d"
  1336. #: src/message.h:87
  1337. #, c-format
  1338. msgid "CUID#%d - Error in accepting connection"
  1339. msgstr "CUID#%d - Error acceptant connexió"
  1340. #: src/message.h:88
  1341. #, c-format
  1342. msgid "CUID#%d - Error occurred while processing tracker response."
  1343. msgstr ""
  1344. "CUID#%d - Hi ha hagut un error mentre processàvem la resposta del seguidor."
  1345. #: src/message.h:89
  1346. #, c-format
  1347. msgid "CUID#%d - Cannot create tracker request."
  1348. msgstr "CUID#%d - No es pot crear la petició en el seguidor."
  1349. #: src/message.h:90
  1350. #, c-format
  1351. msgid "CUID#%d - Creating new tracker request command #%d"
  1352. msgstr "CUID#%d - Creant una nova ordre de petició al seguidor #%d"
  1353. #: src/message.h:91
  1354. #, c-format
  1355. msgid "CUID#%d - The peer is DHT-enabled."
  1356. msgstr "CUID#%d - L'igual és DHT-actiu."
  1357. #: src/message.h:95
  1358. #, c-format
  1359. msgid "Unrecognized URI or unsupported protocol: %s"
  1360. msgstr "URI no reconeguda o protocol no suportat: %s"
  1361. #: src/message.h:96
  1362. #, c-format
  1363. msgid "Tracker returned warning message: %s"
  1364. msgstr "El seguidor ha tornat un missatge d'avís: %s"
  1365. #: src/message.h:97
  1366. #, c-format
  1367. msgid "The segment file %s exists."
  1368. msgstr "El fitxer de segments %s existeix."
  1369. #: src/message.h:98
  1370. #, c-format
  1371. msgid "The segment file %s does not exist."
  1372. msgstr "El fitxer de segments %s no existeix."
  1373. #: src/message.h:99
  1374. #, c-format
  1375. msgid "Saving the segment file %s"
  1376. msgstr "Guardant el fitxer de segments %s"
  1377. #: src/message.h:100
  1378. msgid "The segment file was saved successfully."
  1379. msgstr "El fitxer de segments s'ha guardat satisfactòriament."
  1380. #: src/message.h:101
  1381. #, c-format
  1382. msgid "Loading the segment file %s."
  1383. msgstr "Carregant el fitxer de segments %s."
  1384. #: src/message.h:102
  1385. msgid "The segment file was loaded successfully."
  1386. msgstr "S'ha carregat satisfactòriament el fitxer de segments."
  1387. #: src/message.h:103
  1388. msgid "No URI to download. Download aborted."
  1389. msgstr "No hi ha URI per descarregar. Descàrrega cancel·lada."
  1390. #: src/message.h:104
  1391. #, c-format
  1392. msgid ""
  1393. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1394. "canceled in order to prevent your file from being truncated to 0. If you are "
  1395. "sure to download the file all over again, then delete it or add --allow-"
  1396. "overwrite=true option and restart aria2."
  1397. msgstr ""
  1398. "El fitxer %s ja existeix, però no hi ha fitxer de control (*.aria2). La "
  1399. "descàrrega ha estat cancel.lada per prevenir que el fitxer sigui tallat a 0. "
  1400. "Si vostè està segur de descarregar el fitxer una altre vegada, llavors "
  1401. "esborri el fitxer o afegeixi la opció --allow-overwrite=true option i "
  1402. "reinicïi aria2."
  1403. #: src/message.h:105
  1404. #, c-format
  1405. msgid "Allocating file %s, %s bytes"
  1406. msgstr "Reservant fitxer %s, %s bytes"
  1407. #: src/message.h:106
  1408. msgid "File not found"
  1409. msgstr "No s'ha trobat el fitxer"
  1410. #: src/message.h:107
  1411. msgid "Not a directory"
  1412. msgstr "No és un directori"
  1413. #: src/message.h:108
  1414. #, c-format
  1415. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1416. msgstr ""
  1417. "No hi ha prou sumes de comprovació. Longitud suma comprovació=%d, Número "
  1418. "sumes comprovació=%d"
  1419. #: src/message.h:109
  1420. #, c-format
  1421. msgid "Writing file %s"
  1422. msgstr "Escrivint fitxer %s"
  1423. #: src/message.h:110
  1424. msgid "No peer list received."
  1425. msgstr "No hem rebut llista d'iguals."
  1426. #: src/message.h:111
  1427. #, c-format
  1428. msgid "Adding peer %s:%d"
  1429. msgstr "Afegint igual %s:%d"
  1430. #: src/message.h:112
  1431. #, c-format
  1432. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1433. msgstr "Esborrant peça gastada índex=%d, ratioOmplir(%%)=%d<=%d"
  1434. #: src/message.h:113
  1435. msgid "Download of selected files was complete."
  1436. msgstr "S'ha completat la descàrrega dels fitxers seleccionats."
  1437. #: src/message.h:114
  1438. msgid "The download was complete."
  1439. msgstr "S'ha completat la descàrrega."
  1440. #: src/message.h:115
  1441. #, c-format
  1442. msgid "Removed %d have entries."
  1443. msgstr "Esborrat %d té entrades."
  1444. #: src/message.h:116
  1445. #, c-format
  1446. msgid "Validating file %s"
  1447. msgstr "Validant fitxer %s"
  1448. #: src/message.h:117
  1449. #, c-format
  1450. msgid "%d seconds to allocate %s byte(s)"
  1451. msgstr "%d segons per reservar %s byte(s)"
  1452. #: src/message.h:118
  1453. #, c-format
  1454. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1455. msgstr "Executant Ordre de Reservar Fitxer per CUID#%d."
  1456. #: src/message.h:119
  1457. #, c-format
  1458. msgid "Metalink: Queueing %s for download."
  1459. msgstr "Metalink: Posant en cua %s per descàrrega."
  1460. #: src/message.h:120
  1461. #, c-format
  1462. msgid "Download complete: %s"
  1463. msgstr "Descàrrega completa: %s"
  1464. #: src/message.h:121
  1465. msgid "Seeding is over."
  1466. msgstr "S'ha acabat de sembrar."
  1467. #: src/message.h:122
  1468. #, c-format
  1469. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1470. msgstr ""
  1471. "CUID#%d cancel·la el segment índex=%d. En comptes el CUID#%d el gestiona."
  1472. #: src/message.h:123
  1473. msgid "No chunk to verify."
  1474. msgstr "No hi ha cap tros per verificar."
  1475. #: src/message.h:124
  1476. #, c-format
  1477. msgid "Good chunk checksum. hash=%s"
  1478. msgstr "Suma de comprovació del tros correcte. hash=%s"
  1479. #: src/message.h:125
  1480. #, c-format
  1481. msgid "Failed to load cookies from %s"
  1482. msgstr "Fallo al carregar cookies des de %s"
  1483. #: src/message.h:126
  1484. #, c-format
  1485. msgid ""
  1486. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1487. "support disabled."
  1488. msgstr ""
  1489. "El fitxer .netrc %s no té permisos correctes. Ha de ser 600. suport netrc "
  1490. "desactivat."
  1491. #: src/message.h:127
  1492. msgid "Logging started."
  1493. msgstr "Anotació arrancada."
  1494. #: src/message.h:128
  1495. msgid "Specify at least one URL."
  1496. msgstr "Especifiqueu al menys una URL."
  1497. #: src/message.h:129
  1498. msgid "daemon failed."
  1499. msgstr "Ha fallat el dimoni."
  1500. #: src/message.h:130
  1501. #, c-format
  1502. msgid "Verification finished successfully. file=%s"
  1503. msgstr "La verificació ha acabat satisfactòriament fitxer=%s"
  1504. #: src/message.h:131
  1505. #, c-format
  1506. msgid "Checksum error detected. file=%s"
  1507. msgstr "S'ha detectat un error en la suma de comprovació. fitxer=%s"
  1508. #: src/message.h:132
  1509. #, c-format
  1510. msgid "Incomplete range specified. %s"
  1511. msgstr "S'ha especificat un interval incomplet. %s"
  1512. #: src/message.h:133
  1513. #, c-format
  1514. msgid "Failed to convert string into value: %s"
  1515. msgstr "No es poden convertir els caràcters en un valor: %s"
  1516. #: src/message.h:134
  1517. msgid "Resource not found"
  1518. msgstr "Recurs no trobat"
  1519. #: src/message.h:135
  1520. #, c-format
  1521. msgid "File already exists. Renamed to %s."
  1522. msgstr "El fitxer ja existeix. Re-anomenat %s."
  1523. #: src/message.h:136
  1524. msgid "Cannot parse metalink XML file. XML may be malformed."
  1525. msgstr ""
  1526. "No es pot interpretat el fitxer XML metalink. El XML pot ser malconstruït."
  1527. #: src/message.h:137
  1528. #, c-format
  1529. msgid "Too small payload size for %s, size=%d."
  1530. msgstr ""
  1531. #: src/message.h:138
  1532. #, c-format
  1533. msgid ""
  1534. "Removed the defunct control file %s because the download file %s doesn't "
  1535. "exist."
  1536. msgstr ""
  1537. "Eliminat el fitxer antic de control %s perquè el fitxer de descàrrega %s no "
  1538. "existeix."
  1539. #: src/message.h:139
  1540. #, c-format
  1541. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1542. msgstr "El vostre rati de compartir era %.1f, pujat/baixat=%sB/%sB"
  1543. #: src/message.h:140
  1544. #, c-format
  1545. msgid "Missing %s in torrent metainfo."
  1546. msgstr "Falta %s en la metainfo del torrent."
  1547. #: src/message.h:141
  1548. msgid "Tracker returned null data."
  1549. msgstr "El Seguidor ha tornat dades nules."
  1550. #: src/message.h:142
  1551. msgid "Windows socket library initialization failed"
  1552. msgstr "Ha fallat la inicialització de la biblioteca de sòcals de Windows"
  1553. #: src/message.h:143
  1554. #, c-format
  1555. msgid "%d second(s) has passed. Stopping application."
  1556. msgstr "Han passat %d segon(s). Aturant l'aplicació."
  1557. #: src/message.h:144
  1558. #, c-format
  1559. msgid ""
  1560. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1561. msgstr ""
  1562. "Signatura guardada com %s. Si us plau tingui en compte que aria2 no verifica "
  1563. "les signatures."
  1564. #: src/message.h:146
  1565. #, c-format
  1566. msgid "Saving signature as %s failed. Maybe file already exists."
  1567. msgstr "Ha fallat guardar la signatura com %s. Potser el fitxer ja existeix."
  1568. #: src/message.h:149
  1569. #, c-format
  1570. msgid "Failed to open ServerStat file %s for read."
  1571. msgstr ""
  1572. #: src/message.h:150
  1573. #, c-format
  1574. msgid "ServerStat file %s loaded successfully."
  1575. msgstr ""
  1576. #: src/message.h:151
  1577. #, c-format
  1578. msgid "Failed to read ServerStat from %s."
  1579. msgstr ""
  1580. #: src/message.h:154
  1581. #, c-format
  1582. msgid "Failed to open ServerStat file %s for write."
  1583. msgstr ""
  1584. #: src/message.h:155
  1585. #, c-format
  1586. msgid "ServerStat file %s saved successfully."
  1587. msgstr ""
  1588. #: src/message.h:156
  1589. #, c-format
  1590. msgid "Failed to write ServerStat to %s."
  1591. msgstr ""
  1592. #: src/message.h:159
  1593. #, c-format
  1594. msgid "Failed to establish connection, cause: %s"
  1595. msgstr ""
  1596. #: src/message.h:160
  1597. #, c-format
  1598. msgid "Network problem has occurred. cause:%s"
  1599. msgstr ""
  1600. #: src/message.h:162
  1601. #, c-format
  1602. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1603. msgstr ""
  1604. #: src/message.h:164
  1605. #, c-format
  1606. msgid "Certificate verification failed. Cause: %s"
  1607. msgstr ""
  1608. #: src/message.h:165
  1609. msgid "No certificate found."
  1610. msgstr ""
  1611. #: src/message.h:166
  1612. msgid "Hostname not match."
  1613. msgstr ""
  1614. #: src/message.h:167
  1615. msgid "No files to download."
  1616. msgstr ""
  1617. #: src/message.h:169
  1618. msgid ""
  1619. "You may encounter the certificate verification error with HTTPS server. See "
  1620. "--ca-certificate and --check-certificate option."
  1621. msgstr ""
  1622. #: src/message.h:171
  1623. #, c-format
  1624. msgid "Printing the contents of file '%s'..."
  1625. msgstr ""
  1626. #: src/message.h:172
  1627. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1628. msgstr ""
  1629. #: src/message.h:177
  1630. #, c-format
  1631. msgid "Is '%s' a file?"
  1632. msgstr ""
  1633. #: src/message.h:178
  1634. #, fuzzy, c-format
  1635. msgid "Failed to find given interface %s, cause: %s"
  1636. msgstr "Fallo al obrir el fitxer %s, causa: %s"
  1637. #: src/message.h:181
  1638. msgid "Timeout."
  1639. msgstr "S'ha exhaurit el temps d'espera."
  1640. #: src/message.h:182
  1641. msgid "Invalid chunk size."
  1642. msgstr "Mida del tros incorrecte."
  1643. #: src/message.h:183
  1644. #, c-format
  1645. msgid "Too large chunk. size=%d"
  1646. msgstr "Mida del tros massa llarga. mida=%d"
  1647. #: src/message.h:184
  1648. msgid "Invalid header."
  1649. msgstr "Capçalera incorrecte."
  1650. #: src/message.h:185
  1651. msgid "Invalid response."
  1652. msgstr "Resposta incorrecte."
  1653. #: src/message.h:186
  1654. msgid "No header found."
  1655. msgstr "No s'ha trobat la capçalera."
  1656. #: src/message.h:187
  1657. msgid "No status header."
  1658. msgstr "No hi ha capçalera d'estat."
  1659. #: src/message.h:188
  1660. msgid "Proxy connection failed."
  1661. msgstr "Ha fallat la connexió amb el proxy."
  1662. #: src/message.h:189
  1663. msgid "Connection failed."
  1664. msgstr "Ha fallat la connexió."
  1665. #: src/message.h:190
  1666. #, c-format
  1667. msgid ""
  1668. "The requested filename and the previously registered one are not same. "
  1669. "Expected:%s Actual:%s"
  1670. msgstr ""
  1671. "El nom del fitxer demanat i l'anotat prèviament no son el mateix. Esperàvem:%"
  1672. "s Actual:%s"
  1673. #: src/message.h:191
  1674. #, c-format
  1675. msgid "The response status is not successful. status=%d"
  1676. msgstr "L'estat de la resposta no és satisfactori. estat=%d"
  1677. #: src/message.h:192
  1678. #, c-format
  1679. msgid "Too large file size. size=%s"
  1680. msgstr "Mida del fitxer massa llarga. mida=%s"
  1681. #: src/message.h:193
  1682. #, c-format
  1683. msgid "Transfer encoding %s is not supported."
  1684. msgstr "No està suportada la codificació %s de la transferència."
  1685. #: src/message.h:194
  1686. #, c-format
  1687. msgid "SSL initialization failed: %s"
  1688. msgstr "Ha fallat la inicialització SSL: %s"
  1689. #: src/message.h:195
  1690. msgid "SSL I/O error"
  1691. msgstr "Error d'E/S SSL"
  1692. #: src/message.h:196
  1693. msgid "SSL protocol error"
  1694. msgstr "Error de protocol SSL"
  1695. #: src/message.h:197
  1696. #, c-format
  1697. msgid "SSL unknown error %d"
  1698. msgstr "Error SSL desconegut %d"
  1699. #: src/message.h:198
  1700. #, c-format
  1701. msgid "SSL initialization failed: OpenSSL connect error %d"
  1702. msgstr "Ha fallat la inicialització SSL: error de connexió OpenSSL %d"
  1703. #: src/message.h:199
  1704. #, c-format
  1705. msgid "Size mismatch Expected:%s Actual:%s"
  1706. msgstr "Mida incorrecta. Esperada:%s Actual:%s"
  1707. #: src/message.h:200
  1708. msgid "Authorization failed."
  1709. msgstr "Ha fallat l'autorització."
  1710. #: src/message.h:201
  1711. msgid "Got EOF from the server."
  1712. msgstr "Rebut EOF des del servidor."
  1713. #: src/message.h:202
  1714. msgid "Got EOF from peer."
  1715. msgstr "Rebut EOF des de l'igual."
  1716. #: src/message.h:203
  1717. msgid "Malformed meta info."
  1718. msgstr "meta info mal formada."
  1719. #: src/message.h:205
  1720. #, c-format
  1721. msgid "Failed to open the file %s, cause: %s"
  1722. msgstr "Fallo al obrir el fitxer %s, causa: %s"
  1723. #: src/message.h:206
  1724. #, c-format
  1725. msgid "Failed to write into the file %s, cause: %s"
  1726. msgstr "Fallo al escriure en el fitxer %s, causa: %s"
  1727. #: src/message.h:207
  1728. #, c-format
  1729. msgid "Failed to read from the file %s, cause: %s"
  1730. msgstr "Fallo al llegir del fitxer %s, causa: %s"
  1731. #: src/message.h:208
  1732. msgid "Failed to read data from disk."
  1733. msgstr "Fallo al llegir dades del disc."
  1734. #: src/message.h:209
  1735. #, c-format
  1736. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1737. msgstr "Fallo al calcular resum SHA1 de o d'una part del fitxer %s, causa: %s"
  1738. #: src/message.h:210
  1739. #, c-format
  1740. msgid "Failed to seek the file %s, cause: %s"
  1741. msgstr "Fallo al buscar en el fitxer %s, causa: %s"
  1742. #: src/message.h:211
  1743. #, c-format
  1744. msgid "The offset is out of range, offset=%s"
  1745. msgstr "La desviació és fora de límits, desviació=%s"
  1746. #: src/message.h:212
  1747. #, c-format
  1748. msgid "%s is not a directory."
  1749. msgstr "%s no és un directori."
  1750. #: src/message.h:213
  1751. #, c-format
  1752. msgid "Failed to make the directory %s, cause: %s"
  1753. msgstr "Fallo al crear el directori %s, causa: %s"
  1754. #: src/message.h:214
  1755. #, c-format
  1756. msgid "Failed to open the segment file %s, cause: %s"
  1757. msgstr "Fallo al obrir el fitxer de segments %s, causa: %s"
  1758. #: src/message.h:215
  1759. #, c-format
  1760. msgid "Failed to write into the segment file %s, cause: %s"
  1761. msgstr "Fallo al escriure en el fitxer de segments %s, causa: %s"
  1762. #: src/message.h:216
  1763. #, c-format
  1764. msgid "Failed to read from the segment file %s, cause: %s"
  1765. msgstr "Fallo al llegir del fitxer de segments %s, causa: %s"
  1766. #: src/message.h:218
  1767. #, c-format
  1768. msgid "Failed to open a socket, cause: %s"
  1769. msgstr "Fallo al obrir un sòcol, causa: %s"
  1770. #: src/message.h:219
  1771. #, c-format
  1772. msgid "Failed to set a socket option, cause: %s"
  1773. msgstr "Fallo al posar una opció del sòcol, causa: %s"
  1774. #: src/message.h:220
  1775. #, c-format
  1776. msgid "Failed to set a socket as blocking, cause: %s"
  1777. msgstr "Fallo al posar un sòcol com bloquejant, causa: %s"
  1778. #: src/message.h:221
  1779. #, c-format
  1780. msgid "Failed to set a socket as non-blocking, cause: %s"
  1781. msgstr "Fallo al posar un sòcol com no-bloquejant, causa: %s"
  1782. #: src/message.h:222
  1783. #, c-format
  1784. msgid "Failed to bind a socket, cause: %s"
  1785. msgstr "Fallo al connectar un sòcol, causa: %s"
  1786. #: src/message.h:223
  1787. #, c-format
  1788. msgid "Failed to listen to a socket, cause: %s"
  1789. msgstr "Fallo escoltant un sòcol, causa: %s"
  1790. #: src/message.h:224
  1791. #, c-format
  1792. msgid "Failed to accept a peer connection, cause: %s"
  1793. msgstr "Fallo al acceptar una connexió d'igual, causa: %s"
  1794. #: src/message.h:225
  1795. #, c-format
  1796. msgid "Failed to get the name of socket, cause: %s"
  1797. msgstr "Fallo al agafar el nom del sòcol, causa: %s"
  1798. #: src/message.h:226
  1799. #, c-format
  1800. msgid "Failed to get the name of connected peer, cause: %s"
  1801. msgstr "Fallo al agafar el nom d'un igual connectat, causa: %s"
  1802. #: src/message.h:227
  1803. #, c-format
  1804. msgid "Failed to resolve the hostname %s, cause: %s"
  1805. msgstr "Fallo al resoldre el nom de host %s,causa: %s"
  1806. #: src/message.h:228
  1807. #, c-format
  1808. msgid "Failed to connect to the host %s, cause: %s"
  1809. msgstr "Fallo al connectar al host %s, causa: %s"
  1810. #: src/message.h:229
  1811. #, c-format
  1812. msgid "Failed to check whether the socket is writable, cause: %s"
  1813. msgstr "Fallo al comprovar si es pot escriure en un sòcol, causa: %s"
  1814. #: src/message.h:230
  1815. #, c-format
  1816. msgid "Failed to check whether the socket is readable, cause: %s"
  1817. msgstr "Fallo al comprovar si es pot llegir un sòcol, causa: %s"
  1818. #: src/message.h:231
  1819. #, c-format
  1820. msgid "Failed to send data, cause: %s"
  1821. msgstr "Fallo al enviar dades, causa: %s"
  1822. #: src/message.h:232
  1823. #, c-format
  1824. msgid "Failed to receive data, cause: %s"
  1825. msgstr "Fallo al rebre dades, causa: %s"
  1826. #: src/message.h:233
  1827. #, c-format
  1828. msgid "Failed to peek data, cause: %s"
  1829. msgstr "Fallo al agafar dades, causa: %s"
  1830. #: src/message.h:234
  1831. #, c-format
  1832. msgid "Unknown socket error %d (0x%x)"
  1833. msgstr "Error desconegut de sòcol %d (0x%x)"
  1834. #: src/message.h:235
  1835. #, c-format
  1836. msgid "File %s exists, but %s does not exist."
  1837. msgstr "Fitxer %s existeix, però %s no existeix."
  1838. #: src/message.h:236
  1839. #, c-format
  1840. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1841. msgstr ""
  1842. "La mida de càrrega útil (payload) és incorrecte per %s, mida=%d. Ha de ser %"
  1843. "d."
  1844. #: src/message.h:237
  1845. #, c-format
  1846. msgid "Invalid ID=%d for %s. It should be %d."
  1847. msgstr "Incorrecte ID=%d per %s. Ha de ser %d."
  1848. #: src/message.h:238
  1849. #, c-format
  1850. msgid ""
  1851. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1852. "s, actualHash=%s"
  1853. msgstr ""
  1854. "Ha fallat la validació de la suma de comprovació del tros. "
  1855. "índexSumaComprovació=%d, desviació=%s, HashEsperat=%s, HashActual=%s"
  1856. #: src/message.h:239
  1857. msgid "Download aborted."
  1858. msgstr "Descàrrega cancel·lada."
  1859. #: src/message.h:240
  1860. #, c-format
  1861. msgid "File %s is being downloaded by other command."
  1862. msgstr "El fitxer %s està sent descarregat per una altre ordre."
  1863. #: src/message.h:241
  1864. msgid "Insufficient checksums."
  1865. msgstr "No hi ha prou sumes de comprovació."
  1866. #: src/message.h:242
  1867. #, c-format
  1868. msgid "Tracker returned failure reason: %s"
  1869. msgstr "El Seguidor ha tornat fallida. Raó: %s"
  1870. #: src/message.h:243
  1871. msgid "Flooding detected."
  1872. msgstr "Detectat vessament."
  1873. #: src/message.h:244
  1874. #, c-format
  1875. msgid ""
  1876. "Drop connection because no request/piece messages were exchanged in a "
  1877. "certain period(%d seconds)."
  1878. msgstr ""
  1879. "Lliberem la connexió degut a que no hem intercanviat missatges de peticions "
  1880. "o peces en el període establert (%d segons)."
  1881. #: src/message.h:245
  1882. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1883. msgstr "L' infoHash en el fitxer torrent no concorda amb el del fitxer .aria2."
  1884. #: src/message.h:246
  1885. #, c-format
  1886. msgid "No such file entry %s"
  1887. msgstr "No hi ha aquesta entrada a l'arxiu %s"
  1888. #: src/message.h:247
  1889. #, c-format
  1890. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1891. msgstr "Velocitat de descàrrega massa lenta: %d <= %d(B/s), host:%s"
  1892. #: src/message.h:248
  1893. msgid "No HttpRequestEntry found."
  1894. msgstr "No hem trobat HttpRequestEntry."
  1895. #: src/message.h:249
  1896. #, c-format
  1897. msgid "Got %d status, but no location header provided."
  1898. msgstr "Hem rebut estat %d, però no ens dona la capçalera d'ubicació."
  1899. #: src/message.h:250
  1900. #, c-format
  1901. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1902. msgstr "Capçalera de rang incorrecte. Petició: %s-%s/%s, Resposta: %s-%s/%s"
  1903. #: src/message.h:251
  1904. msgid "No file matched with your preference."
  1905. msgstr "No hi ha cap fitxer que concordi amb la vostre preferència."
  1906. #: src/message.h:252
  1907. msgid "Exception caught"
  1908. msgstr "Hem trobat una excepció."
  1909. #: src/message.h:253
  1910. #, c-format
  1911. msgid "Max payload length exceeded or invalid. length = %u"
  1912. msgstr ""
  1913. #: src/message.h:254
  1914. #, c-format
  1915. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1916. msgstr ""
  1917. "Longitud de fitxer incorrecte. No es pot continuar la descàrrega %s: local %"
  1918. "s, remot %s"
  1919. #: src/BtSetup.cc:161
  1920. msgid "Errors occurred while binding port.\n"
  1921. msgstr "Han ocorregut errors mentre agafàvem el port.\n"