ca.po 89 KB

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