ca.po 76 KB

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