ca.po 84 KB

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