it.po 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953
  1. # Italian 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-20 20:08+0900\n"
  11. "PO-Revision-Date: 2008-04-12 12:25+0000\n"
  12. "Last-Translator: fallingautumnlinks <fallingautumnlinks@alice.it>\n"
  13. "Language-Team: Italian <it@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-05-12 14:16+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. #: src/DownloadEngine.cc:826
  24. msgid "Emergency shutdown sequence commencing..."
  25. msgstr ""
  26. #: src/MultiUrlRequestInfo.cc:96
  27. msgid "aria2 will resume download if the transfer is restarted."
  28. msgstr ""
  29. "aria2 ripristinera` lo scaricamento se la trasmissione viene fatta ripartire."
  30. #: src/MultiUrlRequestInfo.cc:98
  31. msgid ""
  32. "If there are any errors, then see the log file. See '-l' option in help/man "
  33. "page for details."
  34. msgstr ""
  35. "Se si dovessero riscontrare degli errori, leggere il file di log. Vedi "
  36. "l'opzione '-l' nella pagina di help/man per i dettagli."
  37. #: src/RequestGroupMan.cc:389
  38. msgid "Download Results:"
  39. msgstr "Risultati del download:"
  40. #: src/RequestGroupMan.cc:430
  41. msgid "Status Legend:"
  42. msgstr ""
  43. #: src/OptionHandler.cc:38
  44. msgid " Default: "
  45. msgstr " Default: "
  46. #: src/OptionHandler.cc:39
  47. msgid " Tags: "
  48. msgstr ""
  49. #: src/OptionHandler.cc:40
  50. #, fuzzy
  51. msgid " Possible Values: "
  52. msgstr " Default: "
  53. #: src/OptionHandlerImpl.h:99
  54. msgid "must be either 'true' or 'false'."
  55. msgstr "deve assumere il valore 'true'(vero) oppure 'false'(falso)"
  56. #: src/OptionHandlerImpl.h:130 src/OptionHandlerImpl.h:177
  57. #, c-format
  58. msgid "must be between %s and %s."
  59. msgstr "deve essere tra %s e %s"
  60. #: src/OptionHandlerImpl.h:174
  61. #, c-format
  62. msgid "must be smaller than or equal to %s."
  63. msgstr "deve essere piu` piccolo o uguale a %s."
  64. #: src/OptionHandlerImpl.h:180
  65. #, c-format
  66. msgid "must be greater than or equal to %s."
  67. msgstr "deve essere piu` grande o uguale a %s."
  68. #: src/OptionHandlerImpl.h:183 src/OptionHandlerImpl.h:246
  69. msgid "must be a number."
  70. msgstr "deve essere un numero."
  71. #: src/OptionHandlerImpl.h:237
  72. #, c-format
  73. msgid "must be smaller than or equal to %.1f."
  74. msgstr "deve essere piu` piccolo o uguale a %.1f."
  75. #: src/OptionHandlerImpl.h:240
  76. #, c-format
  77. msgid "must be between %.1f and %.1f."
  78. msgstr "deve essere tra %.1f e %.1f."
  79. #: src/OptionHandlerImpl.h:243
  80. #, c-format
  81. msgid "must be greater than or equal to %.1f."
  82. msgstr "deve essere piu` grande o uguale a %.1f."
  83. #: src/OptionHandlerImpl.h:380
  84. msgid "must be one of the following:"
  85. msgstr "deve essere uno dei seguenti:"
  86. #: src/OptionHandlerImpl.h:427 src/OptionHandlerImpl.h:468
  87. msgid "unrecognized proxy format"
  88. msgstr "il formato del proxy non e` corretto"
  89. #: src/usage_text.h:37
  90. msgid ""
  91. " -d, --dir=DIR The directory to store the downloaded file."
  92. msgstr " -d, --dir=DIR LA directory dove salvare il file scaricato."
  93. #: src/usage_text.h:39
  94. msgid " -o, --out=FILE The file name of the downloaded file."
  95. msgstr " -o, --out=FILE Il nome del file scaricato."
  96. #: src/usage_text.h:41
  97. msgid ""
  98. " -l, --log=LOG The file name of the log file. If '-' is\n"
  99. " specified, log is written to stdout."
  100. msgstr ""
  101. " -l, --log=LOG Il nome del file di log. Se '-' e`\n"
  102. " specificato, il log e` scritto su stdout."
  103. #: src/usage_text.h:44
  104. msgid " -D, --daemon Run as daemon."
  105. msgstr " -D, --daemon Lancia come demone."
  106. #: src/usage_text.h:46
  107. msgid ""
  108. " -s, --split=N Download a file using N connections. If more\n"
  109. " than N URLs are given, first N URLs are used "
  110. "and\n"
  111. " remaining URLs are used for backup. If less "
  112. "than\n"
  113. " N URLs are given, those URLs are used more "
  114. "than\n"
  115. " once so that N connections total are made\n"
  116. " simultaneously. Please see -j option too.\n"
  117. " Please note that in Metalink download, this\n"
  118. " option has no effect and use -C option instead."
  119. msgstr ""
  120. #: src/usage_text.h:55
  121. msgid ""
  122. " --retry-wait=SEC Set the seconds to wait to retry after an "
  123. "error\n"
  124. " has occured."
  125. msgstr ""
  126. #: src/usage_text.h:58
  127. #, fuzzy
  128. msgid " -t, --timeout=SEC Set timeout in seconds."
  129. msgstr " -t, --timeout=SEC Setta il timeout in secondi. Valore di default: 60"
  130. #: src/usage_text.h:60
  131. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  132. msgstr ""
  133. #: src/usage_text.h:62
  134. #, fuzzy
  135. msgid ""
  136. " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  137. " See also --all-proxy option.\n"
  138. " This affects all URLs."
  139. msgstr ""
  140. " --ftp-type=TIPO Indica il tipo di trasferimento FTP. 'TIPO' puo` essere "
  141. "'binary'(binario)\n"
  142. " oppure 'ascii'.\n"
  143. " Default: binary"
  144. #: src/usage_text.h:66
  145. #, fuzzy
  146. msgid ""
  147. " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  148. " See also --all-proxy option.\n"
  149. " This affects all URLs."
  150. msgstr ""
  151. " --ftp-type=TIPO Indica il tipo di trasferimento FTP. 'TIPO' puo` essere "
  152. "'binary'(binario)\n"
  153. " oppure 'ascii'.\n"
  154. " Default: binary"
  155. #: src/usage_text.h:70
  156. #, fuzzy
  157. msgid ""
  158. " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  159. " See also --all-proxy option.\n"
  160. " This affects all URLs."
  161. msgstr ""
  162. " --ftp-type=TIPO Indica il tipo di trasferimento FTP. 'TIPO' puo` essere "
  163. "'binary'(binario)\n"
  164. " oppure 'ascii'.\n"
  165. " Default: binary"
  166. #: src/usage_text.h:74
  167. msgid ""
  168. " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  169. " You can override this setting and specify a\n"
  170. " proxy server for a particular protocol using\n"
  171. " --http-proxy, --https-proxy and --ftp-proxy\n"
  172. " options.\n"
  173. " This affects all URLs."
  174. msgstr ""
  175. #: src/usage_text.h:81
  176. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  177. msgstr ""
  178. #: src/usage_text.h:83
  179. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  180. msgstr ""
  181. #: src/usage_text.h:85
  182. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  183. msgstr ""
  184. #: src/usage_text.h:87
  185. msgid ""
  186. " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  187. "basic\n"
  188. " is the only supported scheme."
  189. msgstr ""
  190. #: src/usage_text.h:90
  191. msgid " --referer=REFERER Set Referer. This affects all URLs."
  192. msgstr ""
  193. " --referer=RIFERIMENTO Imposta il Riferimento. Questo e` utilizzato per ogni "
  194. "URL."
  195. #: src/usage_text.h:92
  196. #, fuzzy
  197. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  198. msgstr ""
  199. " --referer=RIFERIMENTO Imposta il Riferimento. Questo e` utilizzato per ogni "
  200. "URL."
  201. #: src/usage_text.h:94
  202. #, fuzzy
  203. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  204. msgstr ""
  205. " --referer=RIFERIMENTO Imposta il Riferimento. Questo e` utilizzato per ogni "
  206. "URL."
  207. #: src/usage_text.h:96
  208. msgid " --ftp-type=TYPE Set FTP transfer type."
  209. msgstr ""
  210. #: src/usage_text.h:98
  211. msgid ""
  212. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  213. "given,\n"
  214. " the active mode will be used."
  215. msgstr ""
  216. #: src/usage_text.h:101
  217. msgid ""
  218. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  219. "than\n"
  220. " or equal to this value(bytes per sec).\n"
  221. " 0 means aria2 does not have a lowest speed "
  222. "limit.\n"
  223. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  224. " This option does not affect BitTorrent "
  225. "downloads."
  226. msgstr ""
  227. #: src/usage_text.h:107
  228. msgid ""
  229. " --max-download-limit=SPEED Set max download speed in bytes per sec.\n"
  230. " 0 means unrestricted.\n"
  231. " You can append K or M(1K = 1024, 1M = 1024K)."
  232. msgstr ""
  233. #: src/usage_text.h:111
  234. msgid ""
  235. " --file-allocation=METHOD Specify file allocation method.\n"
  236. " 'none' doesn't pre-allocate file space. "
  237. "'prealloc'\n"
  238. " pre-allocates file space before download "
  239. "begins.\n"
  240. " This may take some time depending on the size "
  241. "of\n"
  242. " the file."
  243. msgstr ""
  244. #: src/usage_text.h:117
  245. msgid ""
  246. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  247. " size is smaller than SIZE.\n"
  248. " You can append K or M(1K = 1024, 1M = 1024K)."
  249. msgstr ""
  250. #: src/usage_text.h:121
  251. msgid ""
  252. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  253. "while\n"
  254. " allocating files.\n"
  255. " Turn off if you encounter any error"
  256. msgstr ""
  257. #: src/usage_text.h:125
  258. msgid ""
  259. " --allow-overwrite=true|false If false, aria2 doesn't download a file which\n"
  260. " already exists but the corresponding .aria2 "
  261. "file\n"
  262. " doesn't exist."
  263. msgstr ""
  264. #: src/usage_text.h:129
  265. msgid ""
  266. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  267. "download\n"
  268. " when a piece length is different from one in\n"
  269. " a control file. If true is given, you can "
  270. "proceed\n"
  271. " but some download progress will be lost."
  272. msgstr ""
  273. #: src/usage_text.h:134
  274. msgid ""
  275. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  276. "sequentially\n"
  277. " and download each URI in a separate session, "
  278. "like\n"
  279. " the usual command-line download utilities."
  280. msgstr ""
  281. #: src/usage_text.h:138
  282. msgid ""
  283. " --auto-file-renaming[=true|false] Rename file name if the same file "
  284. "already\n"
  285. " exists. This option works only in http(s)/ftp\n"
  286. " download.\n"
  287. " The new file name has a dot and a number"
  288. "(1..9999)\n"
  289. " appended."
  290. msgstr ""
  291. #: src/usage_text.h:144
  292. msgid ""
  293. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  294. " You can specify set of parts:\n"
  295. " http://{sv1,sv2,sv3}/foo.iso\n"
  296. " Also you can specify numeric sequences with "
  297. "step\n"
  298. " counter:\n"
  299. " http://host/image[000-100:2].img\n"
  300. " A step counter can be omitted.\n"
  301. " If all URIs do not point to the same file, "
  302. "such\n"
  303. " as the second example above, -Z option is\n"
  304. " required."
  305. msgstr ""
  306. #: src/usage_text.h:155
  307. msgid ""
  308. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  309. msgstr ""
  310. #: src/usage_text.h:157
  311. #, fuzzy
  312. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  313. msgstr ""
  314. " --enable-http-pipelining[=true|false] Abilita pipelining HTTP/1.1.\n"
  315. " Default: falso"
  316. #: src/usage_text.h:159
  317. msgid ""
  318. " -V, --check-integrity[=true|false] Check file integrity by validating "
  319. "piece\n"
  320. " hashes. This option has effect only in "
  321. "BitTorrent\n"
  322. " and Metalink downloads with chunk checksums.\n"
  323. " Use this option to re-download a damaged "
  324. "portion\n"
  325. " of a file."
  326. msgstr ""
  327. #: src/usage_text.h:165
  328. msgid ""
  329. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  330. "calculating\n"
  331. " checksum while downloading a file if chunk\n"
  332. " checksums are provided."
  333. msgstr ""
  334. #: src/usage_text.h:169
  335. msgid ""
  336. " -c, --continue Continue downloading a partially downloaded\n"
  337. " file. Use this option to resume a download\n"
  338. " started by a web browser or another program\n"
  339. " which downloads files sequentially from the\n"
  340. " beginning. Currently this option is only\n"
  341. " applicable to http(s)/ftp downloads."
  342. msgstr ""
  343. #: src/usage_text.h:176
  344. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  345. msgstr ""
  346. " -U, --user-agent=AGENTE_UTENTE Imposta l'agente per lo scaricamento via http"
  347. "(s)"
  348. #: src/usage_text.h:178
  349. msgid " -n, --no-netrc Disables netrc support."
  350. msgstr " -n, --no-netrc Disabilita il supporto per netrc."
  351. #: src/usage_text.h:180
  352. msgid ""
  353. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  354. " multiple URIs for a single entity: separate\n"
  355. " URIs on a single line using the TAB "
  356. "character.\n"
  357. " Reads input from stdin when '-' is specified.\n"
  358. " The additional out and dir options can be\n"
  359. " specified after each line of URIs. This "
  360. "optional\n"
  361. " line must start with white space(s). See "
  362. "INPUT\n"
  363. " FILE section of man page for details."
  364. msgstr ""
  365. #: src/usage_text.h:189
  366. msgid ""
  367. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  368. "for\n"
  369. " every static (HTTP/FTP) URL, torrent and "
  370. "metalink.\n"
  371. " See also -s and -C options."
  372. msgstr ""
  373. #: src/usage_text.h:193
  374. msgid ""
  375. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  376. "format\n"
  377. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  378. msgstr ""
  379. #: src/usage_text.h:196
  380. msgid ""
  381. " -S, --show-files Print file listing of .torrent or .metalink "
  382. "file\n"
  383. " and exit. More detailed information will be "
  384. "listed\n"
  385. " in case of torrent file."
  386. msgstr ""
  387. #: src/usage_text.h:200
  388. msgid ""
  389. " --select-file=INDEX... Set file to download by specifying its index.\n"
  390. " You can find the file index using the\n"
  391. " --show-files option. Multiple indexes can be\n"
  392. " specified by using ',', for example: \"3,6\".\n"
  393. " You can also use '-' to specify a range: \"1-5"
  394. "\".\n"
  395. " ',' and '-' can be used together.\n"
  396. " When used with the -M option, index may vary\n"
  397. " depending on the query(see --metalink-* "
  398. "options)."
  399. msgstr ""
  400. #: src/usage_text.h:209
  401. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  402. msgstr " -T, --torrent-file=FILE_TORRENT Il percorso per il file .torrent."
  403. #: src/usage_text.h:211
  404. msgid ""
  405. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  406. " whose suffix is .torrent or content type is\n"
  407. " application/x-bittorrent is downloaded, aria2\n"
  408. " parses it as a torrent file and downloads "
  409. "files\n"
  410. " mentioned in it.\n"
  411. " If mem is specified, a torrent file is not\n"
  412. " written to the disk, but is just kept in "
  413. "memory.\n"
  414. " If false is specified, the action mentioned "
  415. "above\n"
  416. " is not taken."
  417. msgstr ""
  418. #: src/usage_text.h:221
  419. msgid ""
  420. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  421. " mentioned in .torrent file."
  422. msgstr ""
  423. #: src/usage_text.h:224
  424. msgid ""
  425. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  426. " Multiple ports can be specified by using ',',\n"
  427. " for example: \"6881,6885\". You can also use "
  428. "'-'\n"
  429. " to specify a range: \"6881-6999\". ',' and '-' "
  430. "can\n"
  431. " be used together."
  432. msgstr ""
  433. #: src/usage_text.h:230
  434. msgid ""
  435. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  436. "sec.\n"
  437. " 0 means unrestricted.\n"
  438. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  439. " To limit the upload speed per torrent, use\n"
  440. " --max-upload-limit option. If non-zero value "
  441. "is\n"
  442. " specified, --max-upload-limit option is "
  443. "ignored."
  444. msgstr ""
  445. #: src/usage_text.h:237
  446. msgid ""
  447. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  448. " bytes/sec. 0 means unrestricted.\n"
  449. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  450. " To limit the overall upload speed, use\n"
  451. " --max-overall-upload-limit option."
  452. msgstr ""
  453. #: src/usage_text.h:243
  454. msgid ""
  455. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  456. " --seed-ratio option."
  457. msgstr ""
  458. #: src/usage_text.h:246
  459. msgid ""
  460. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  461. " until share ratio reaches RATIO.\n"
  462. " You are strongly encouraged to specify equals "
  463. "or\n"
  464. " more than 1.0 here. Specify 0.0 if you intend "
  465. "to\n"
  466. " do seeding regardless of share ratio.\n"
  467. " If --seed-time option is specified along with\n"
  468. " this option, seeding ends when at least one "
  469. "of\n"
  470. " the conditions is satisfied."
  471. msgstr ""
  472. #: src/usage_text.h:255
  473. msgid ""
  474. " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  475. "in\n"
  476. " BitTorrent is 20 byte length. If more than 20\n"
  477. " bytes are specified, only first 20\n"
  478. " bytes are used. If less than 20 bytes are\n"
  479. " specified, the random alphabet characters are\n"
  480. " added to make it's length 20 bytes."
  481. msgstr ""
  482. #: src/usage_text.h:262
  483. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  484. msgstr ""
  485. #: src/usage_text.h:264
  486. msgid " --enable-dht[=true|false] Enable DHT functionality."
  487. msgstr ""
  488. #: src/usage_text.h:266
  489. msgid ""
  490. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  491. " Multiple ports can be specified by using ',',\n"
  492. " for example: \"6881,6885\". You can also use "
  493. "'-'\n"
  494. " to specify a range: \"6881-6999\". ',' and '-' "
  495. "can\n"
  496. " be used together."
  497. msgstr ""
  498. #: src/usage_text.h:272
  499. msgid ""
  500. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  501. " network."
  502. msgstr ""
  503. #: src/usage_text.h:275
  504. msgid ""
  505. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  506. msgstr ""
  507. #: src/usage_text.h:277
  508. msgid ""
  509. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  510. " If several encryption methods are provided by "
  511. "a\n"
  512. " peer, aria2 chooses the lowest one which "
  513. "satisfies\n"
  514. " the given level."
  515. msgstr ""
  516. #: src/usage_text.h:282
  517. msgid ""
  518. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  519. " establish connection with legacy BitTorrent\n"
  520. " handshake. Thus aria2 always uses Obfuscation\n"
  521. " handshake."
  522. msgstr ""
  523. #: src/usage_text.h:287
  524. msgid ""
  525. " --bt-request-peer-speed-limit=SPEED In BitTorrent downloads, if the "
  526. "download\n"
  527. " speed is lower than SPEED, aria2 initiates "
  528. "and\n"
  529. " accepts connections ignoring max peer cap.\n"
  530. " You can append K or M(1K = 1024, 1M = 1024K)."
  531. msgstr ""
  532. #: src/usage_text.h:292
  533. msgid ""
  534. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  535. "each\n"
  536. " BitTorrent download."
  537. msgstr ""
  538. #: src/usage_text.h:295
  539. msgid ""
  540. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  541. " verifying piece hashes."
  542. msgstr ""
  543. #: src/usage_text.h:298
  544. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  545. msgstr " -M, --metalink-file=FILE_METALINK Il percorso per il file .metalink."
  546. #: src/usage_text.h:300
  547. msgid ""
  548. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  549. " simultaneously. Some Metalinks regulate the\n"
  550. " number of servers to connect. aria2 strictly\n"
  551. " respects them. This means that if Metalink "
  552. "defines\n"
  553. " the maxconnections attribute lower than\n"
  554. " NUM_SERVERS, then aria2 uses the value of\n"
  555. " maxconnections attribute instead of "
  556. "NUM_SERVERS.\n"
  557. " See also -s and -j options."
  558. msgstr ""
  559. #: src/usage_text.h:309
  560. msgid " --metalink-version=VERSION The version of the file to download."
  561. msgstr " --metalink-version=VERSIONE La versione del file da scaricare"
  562. #: src/usage_text.h:311
  563. msgid " --metalink-language=LANGUAGE The language of the file to download."
  564. msgstr " --metalink-language=LINGUa La lingua del file da scaricare."
  565. #: src/usage_text.h:313
  566. msgid ""
  567. " --metalink-os=OS The operating system of the file to download."
  568. msgstr " --metalink-os=SO Il sistema operativo del file da scaricare."
  569. #: src/usage_text.h:315
  570. msgid ""
  571. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  572. " A comma-delimited list of locations is\n"
  573. " acceptable."
  574. msgstr ""
  575. #: src/usage_text.h:319
  576. msgid ""
  577. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  578. "'none'\n"
  579. " if you don't have any preferred protocol."
  580. msgstr ""
  581. #: src/usage_text.h:322
  582. msgid ""
  583. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  584. " whose suffix is .metaink or content type of\n"
  585. " application/metalink+xml is downloaded, aria2\n"
  586. " parses it as a metalink file and downloads "
  587. "files\n"
  588. " mentioned in it.\n"
  589. " If mem is specified, a metalink file is not\n"
  590. " written to the disk, but is just kept in "
  591. "memory.\n"
  592. " If false is specified, the action mentioned "
  593. "above\n"
  594. " is not taken."
  595. msgstr ""
  596. #: src/usage_text.h:332
  597. msgid ""
  598. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  599. " protocols are available for a mirror in a "
  600. "metalink\n"
  601. " file, aria2 uses one of them.\n"
  602. " Use --metalink-preferred-protocol option to\n"
  603. " specify the preference of protocol."
  604. msgstr ""
  605. #: src/usage_text.h:338
  606. msgid " -v, --version Print the version number and exit."
  607. msgstr " -v, --version Stampa il numero di versione ed esce."
  608. #: src/usage_text.h:340
  609. msgid ""
  610. " -h, --help[=CATEGORY] Print usage and exit.\n"
  611. " The help messages are classified in several\n"
  612. " categories. For example, type \"--help=http\" "
  613. "for\n"
  614. " detailed explanation for the options related "
  615. "to\n"
  616. " http. If no matching category is found, "
  617. "search\n"
  618. " option name using a given word in middle "
  619. "match\n"
  620. " and print the result."
  621. msgstr ""
  622. #: src/usage_text.h:348
  623. msgid " --no-conf Disable loading aria2.conf file."
  624. msgstr ""
  625. #: src/usage_text.h:350
  626. msgid ""
  627. " --conf-path=PATH Change the configuration file path to PATH."
  628. msgstr ""
  629. #: src/usage_text.h:352
  630. msgid ""
  631. " --stop=SEC Stop application after SEC seconds has "
  632. "passed.\n"
  633. " If 0 is given, this feature is disabled."
  634. msgstr ""
  635. #: src/usage_text.h:355
  636. msgid ""
  637. " --header=HEADER Append HEADER to HTTP request header. You can "
  638. "use\n"
  639. " this option repeatedly to specify more than "
  640. "one\n"
  641. " header:\n"
  642. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  643. "9J1\"\n"
  644. " http://host/file"
  645. msgstr ""
  646. #: src/usage_text.h:361
  647. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  648. msgstr ""
  649. #: src/usage_text.h:363
  650. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  651. msgstr ""
  652. #: src/usage_text.h:365
  653. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  654. msgstr ""
  655. #: src/usage_text.h:367
  656. msgid ""
  657. " --summary-interval=SEC Set interval to output download progress "
  658. "summary.\n"
  659. " Setting 0 suppresses the output."
  660. msgstr ""
  661. #: src/usage_text.h:370
  662. msgid " --log-level=LEVEL Set log level to output."
  663. msgstr ""
  664. #: src/usage_text.h:372
  665. msgid ""
  666. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  667. "the\n"
  668. " remote HTTP/FTP server and if it is "
  669. "available,\n"
  670. " apply it to the local file."
  671. msgstr ""
  672. #: src/usage_text.h:376
  673. msgid ""
  674. " --connect-timeout=SEC Set the connect timeout in seconds to "
  675. "establish\n"
  676. " connection to HTTP/FTP/proxy server. After "
  677. "the\n"
  678. " connection is established, this option makes "
  679. "no\n"
  680. " effect and --timeout option is used instead."
  681. msgstr ""
  682. #: src/usage_text.h:381
  683. msgid ""
  684. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  685. "the\n"
  686. " remote HTTP/FTP servers NUM times without "
  687. "getting\n"
  688. " a single byte, then force the download to "
  689. "fail.\n"
  690. " Specify 0 to disable this option.\n"
  691. " This options is effective only when using\n"
  692. " HTTP/FTP servers."
  693. msgstr ""
  694. #: src/usage_text.h:388
  695. msgid ""
  696. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  697. " If 'inorder' is given, URI is tried in the "
  698. "order\n"
  699. " appeared in the URI list.\n"
  700. " If 'feedback' is given, aria2 uses download "
  701. "speed\n"
  702. " observed in the previous downloads and choose\n"
  703. " fastest server in the URI list. This also\n"
  704. " effectively skips dead mirrors. The observed\n"
  705. " download speed is a part of performance "
  706. "profile\n"
  707. " of servers mentioned in --server-stat-of and\n"
  708. " --server-stat-if options."
  709. msgstr ""
  710. #: src/usage_text.h:399
  711. msgid ""
  712. " --server-stat-of=FILE Specify the filename to which performance "
  713. "profile\n"
  714. " of the servers is saved. You can load saved "
  715. "data\n"
  716. " using --server-stat-if option."
  717. msgstr ""
  718. #: src/usage_text.h:403
  719. msgid ""
  720. " --server-stat-if=FILE Specify the filename to load performance "
  721. "profile\n"
  722. " of the servers. The loaded data will be used "
  723. "in\n"
  724. " some URI selector such as 'feedback'.\n"
  725. " See also --uri-selector option"
  726. msgstr ""
  727. #: src/usage_text.h:408
  728. msgid ""
  729. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  730. " performance profile of the servers since the "
  731. "last\n"
  732. " contact to them."
  733. msgstr ""
  734. #: src/usage_text.h:412
  735. msgid ""
  736. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  737. "seconds.\n"
  738. " If 0 is given, a control file is not saved "
  739. "during\n"
  740. " download. aria2 saves a control file when it "
  741. "stops\n"
  742. " regardless of the value."
  743. msgstr ""
  744. #: src/usage_text.h:417
  745. msgid ""
  746. " --certificate=FILE Use the client certificate in FILE.\n"
  747. " The certificate must be in PEM format.\n"
  748. " You may use --private-key option to specify "
  749. "the\n"
  750. " private key."
  751. msgstr ""
  752. #: src/usage_text.h:422
  753. msgid ""
  754. " --private-key=FILE Use the private key in FILE.\n"
  755. " The private key must be decrypted and in PEM\n"
  756. " format. See also --certificate option."
  757. msgstr ""
  758. #: src/usage_text.h:426
  759. msgid ""
  760. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  761. "verify\n"
  762. " the peers. The certificate file must be in "
  763. "PEM\n"
  764. " format and can contain multiple CA "
  765. "certificates.\n"
  766. " Use --check-certificate option to enable\n"
  767. " verification."
  768. msgstr ""
  769. #: src/usage_text.h:432
  770. msgid ""
  771. " --check-certificate[=true|false] Verify the peer using certificates "
  772. "specified\n"
  773. " in --ca-certificate option."
  774. msgstr ""
  775. #: src/usage_text.h:435
  776. msgid ""
  777. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  778. "where\n"
  779. " proxy should not be used."
  780. msgstr ""
  781. #: src/version_usage.cc:54
  782. msgid " version "
  783. msgstr " versione "
  784. #: src/version_usage.cc:71
  785. #, c-format
  786. msgid "Report bugs to %s"
  787. msgstr ""
  788. #: src/version_usage.cc:76
  789. #, c-format
  790. msgid "Usage: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  791. msgstr ""
  792. #: src/version_usage.cc:86
  793. #, c-format
  794. msgid "Printing options whose name includes '%s'."
  795. msgstr ""
  796. #: src/version_usage.cc:89 src/version_usage.cc:111
  797. msgid "Options:"
  798. msgstr "Opzioni:"
  799. #: src/version_usage.cc:94
  800. #, c-format
  801. msgid "No help category or option name matching with '%s'."
  802. msgstr ""
  803. #: src/version_usage.cc:100
  804. msgid "Printing all options."
  805. msgstr ""
  806. #: src/version_usage.cc:102
  807. #, c-format
  808. msgid "Printing options tagged with '%s'."
  809. msgstr ""
  810. #: src/version_usage.cc:106
  811. #, c-format
  812. msgid "See -h option to know other command-line options(%s)."
  813. msgstr ""
  814. #: src/version_usage.cc:121
  815. msgid ""
  816. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  817. " point to the same file or downloading will fail."
  818. msgstr ""
  819. " Puoi specificare molte URL. A meno che sia specificata l'opzione -Z, tutte "
  820. "le URL\n"
  821. " devono puntare allo stesso file, altrimenti lo scaricamento fallira`."
  822. #: src/version_usage.cc:123
  823. msgid ""
  824. " You can also specify arbitrary number of torrent files and metalink files\n"
  825. " stored in a local drive. Please note that they are always treated as a\n"
  826. " separate download."
  827. msgstr ""
  828. #: src/version_usage.cc:128
  829. msgid ""
  830. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  831. " download a file from both torrent swarm and http/ftp server at the same "
  832. "time,\n"
  833. " while the data from http/ftp are uploaded to the torrent swarm. Note that\n"
  834. " only single file torrent can be integrated with http/ftp."
  835. msgstr ""
  836. #: src/version_usage.cc:133
  837. msgid ""
  838. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  839. " contains \"&\" or any characters that have special meaning in shell."
  840. msgstr ""
  841. #: src/version_usage.cc:137
  842. msgid "Refer to man page for more information."
  843. msgstr "Fare riferimento alla pagina di manuale per ulteriori informazioni"
  844. #: src/message.h:40
  845. #, c-format
  846. msgid "CUID#%d - The download for one segment completed successfully."
  847. msgstr ""
  848. "CUID#%d - Lo scaricamento di un segmento e` stato completato con successo."
  849. #: src/message.h:41
  850. #, c-format
  851. msgid "CUID#%d - No segment available."
  852. msgstr "CUID#%d - Nessun segmento disponibile."
  853. #: src/message.h:42
  854. #, c-format
  855. msgid "CUID#%d - Connecting to %s:%d"
  856. msgstr "CUID#%d - Connessione a %s:%d"
  857. #: src/message.h:43
  858. #, c-format
  859. msgid ""
  860. "CUID#%d - The segment changed. We send the request again with new Range "
  861. "header."
  862. msgstr ""
  863. "CUID#%d - Il segmento e` cambiato. Richiediamo una nuova richiesta con "
  864. "l'intestazione con il nuovo intervallo."
  865. #: src/message.h:44
  866. #, c-format
  867. msgid "CUID#%d - Redirecting to %s"
  868. msgstr "CUID#%d - Redirezione a %s"
  869. #: src/message.h:45
  870. #, c-format
  871. msgid ""
  872. "CUID#%d - Requesting:\n"
  873. "%s"
  874. msgstr ""
  875. "CUID#%d - Richiedendo:\n"
  876. "%s"
  877. #: src/message.h:46
  878. #, c-format
  879. msgid ""
  880. "CUID#%d - Response received:\n"
  881. "%s"
  882. msgstr ""
  883. "CUID#%d - Ricevuta risposta:\n"
  884. "%s"
  885. #: src/message.h:47
  886. #, c-format
  887. msgid "CUID#%d - Download aborted. URI=%s"
  888. msgstr "CUID#%d - Scaricamento annullato. URI=%s"
  889. #: src/message.h:48
  890. #, c-format
  891. msgid "CUID#%d - Restarting the download. URI=%s"
  892. msgstr "Cuid#%d - Rilanciato scaricamento. URI=%s"
  893. #: src/message.h:49
  894. #, c-format
  895. msgid "CUID#%d - Download aborted."
  896. msgstr "CUID#%d - Download annullato."
  897. #: src/message.h:50
  898. #, c-format
  899. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  900. msgstr "CUID#%d - provato %d volte, ma senza successo. Scaricamento annullato."
  901. #: src/message.h:51
  902. #, c-format
  903. msgid "CUID#%d - Unregistering cuid from segmentManager."
  904. msgstr "CUID#%d - Deregistrazione cuid dal gestore dei segmenti."
  905. #: src/message.h:57
  906. #, c-format
  907. msgid "CUID#%d - we got new piece. index=%d"
  908. msgstr "CUID#%d - ottenuto un nuovo pezzo. indice=%d"
  909. #: src/message.h:58
  910. #, c-format
  911. msgid "CUID#%d - we got wrong piece. index=%d"
  912. msgstr "CUID#%d - abbiamo ottenuto un pezzo errato. index=%d"
  913. #: src/message.h:59
  914. #, c-format
  915. msgid "CUID#%d - Download not complete: %s"
  916. msgstr "CUID#%d - Scaricamento non completato: %s"
  917. #: src/message.h:60
  918. #, c-format
  919. msgid "#%d - Download has already completed: %s"
  920. msgstr "%#d - Lo scaricamento e` gia` stato completato: %s"
  921. #: src/message.h:61
  922. #, c-format
  923. msgid "CUID#%d - Good checksum: %s"
  924. msgstr "CUID#%d - Checksum corretto: %s"
  925. #: src/message.h:62
  926. #, c-format
  927. msgid "CUID#%d - Bad checksum: %s"
  928. msgstr "CUID#%d - Checksum errato: %s"
  929. #: src/message.h:63
  930. #, c-format
  931. msgid "CUID#%d - Resolving hostname %s"
  932. msgstr "CUID#%d - Risolvendo il nome %s"
  933. #: src/message.h:64
  934. #, c-format
  935. msgid "CUID#%d - Name resolution complete: %s -> %s"
  936. msgstr "CUID#%d - La risoluzione del nome e` stata completata: %s -> %s"
  937. #: src/message.h:65
  938. #, c-format
  939. msgid "CUID#%d - Name resolution for %s failed:%s"
  940. msgstr "CUID#%d - La risoluzione del nome %s e` fallita:%s"
  941. #: src/message.h:66
  942. #, c-format
  943. msgid "CUID#%d - DNS cache hit: %s -> %s"
  944. msgstr ""
  945. #: src/message.h:67
  946. #, c-format
  947. msgid "CUID#%d - Abort requested."
  948. msgstr "CUID#%d - Richiesto annullamento."
  949. #: src/message.h:68
  950. #, c-format
  951. msgid "CUID#%d - Connecting to the peer %s"
  952. msgstr "CUID#%d - Connessione al peer %s"
  953. #: src/message.h:69
  954. #, c-format
  955. msgid ""
  956. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  957. "blockIndex=%d"
  958. msgstr ""
  959. "CUID#%d - Pezzo ricevuto. indice=%d, inizio=%d, lunghezza=%d, offset=%llu, "
  960. "indiceDelBlocco=%d"
  961. #: src/message.h:70
  962. #, c-format
  963. msgid "CUID#%d - Piece bitfield %s"
  964. msgstr ""
  965. #: src/message.h:71
  966. #, c-format
  967. msgid ""
  968. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  969. "index=%d, begin=%d, length=%d"
  970. msgstr ""
  971. #: src/message.h:72
  972. #, c-format
  973. msgid ""
  974. "CUID#%d - Reject piece message in queue because cancel message received. "
  975. "index=%d, begin=%d, length=%d"
  976. msgstr ""
  977. "CUID#%d - Rifiutato pezzo di un messaggio in coda in quanto e` stato "
  978. "ricevuto un messaggio di cancellazione. indice=%d, inizio=%d, lunghezza=%d"
  979. #: src/message.h:73
  980. #, c-format
  981. msgid "CUID#%d - Exception caught while validating file integrity."
  982. msgstr ""
  983. "CUID#%d - E` stata lanciata un'eccezione durante la validazione "
  984. "dell'integrita` del file."
  985. #: src/message.h:74
  986. #, c-format
  987. msgid "CUID#%d - Interested in the peer"
  988. msgstr "CUID#%d - Interessato al peer"
  989. #: src/message.h:75
  990. #, c-format
  991. msgid "CUID#%d - Not interested in the peer"
  992. msgstr "CUID#%d - Non interessato al peer"
  993. #: src/message.h:76
  994. #, c-format
  995. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  996. msgstr ""
  997. "CUID#%d - Cancellazione richiesta per lo slot con indice=%d, indiceDelBlocco="
  998. "%d"
  999. #: src/message.h:77
  1000. #, c-format
  1001. msgid ""
  1002. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  1003. "got choked."
  1004. msgstr ""
  1005. #: src/message.h:78
  1006. #, c-format
  1007. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  1008. msgstr ""
  1009. "CUID#%d - Cancellazione richiesta per lo slot con indiceDelBlocco=%d per via "
  1010. "di un time out"
  1011. #: src/message.h:79
  1012. #, c-format
  1013. msgid ""
  1014. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  1015. "acquired."
  1016. msgstr ""
  1017. "CUID#%d - Cancellazione richiesta per lo slot con indiceDelBlocco=%d in "
  1018. "quanto il blocco e` stato ottenuto."
  1019. #: src/message.h:80
  1020. #, c-format
  1021. msgid "CUID#%d - Fast extension enabled."
  1022. msgstr "CUID#%d - Abilitata estensione veloce."
  1023. #: src/message.h:81
  1024. #, c-format
  1025. msgid "CUID#%d - Extended Messaging enabled."
  1026. msgstr ""
  1027. #: src/message.h:82
  1028. #, c-format
  1029. msgid "CUID#%d - Exception caught while allocating file space."
  1030. msgstr ""
  1031. "CUID#%d - Lanciata eccezione durante l'allocazione dello spazio per il file."
  1032. #: src/message.h:83
  1033. #, c-format
  1034. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1035. msgstr ""
  1036. "CUID#%d - E` stato trovato Content-Disposition. Uso %s come nome di file"
  1037. #: src/message.h:84
  1038. #, c-format
  1039. msgid "CUID#%d - Peer %s:%d banned."
  1040. msgstr "CUID#%d - Il peer %s:%d è stato bannato."
  1041. #: src/message.h:85
  1042. #, c-format
  1043. msgid "CUID#%d - Using port %d for accepting new connections"
  1044. msgstr "CUID#%d - Utilizzo porta %d per accettare nuove connessioni"
  1045. #: src/message.h:86
  1046. #, c-format
  1047. msgid "CUID#%d - An error occurred while binding port=%d"
  1048. msgstr ""
  1049. "CUID#%d - E` stato riscontrato un errore durante il binding alla porta=%d"
  1050. #: src/message.h:87
  1051. #, c-format
  1052. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1053. msgstr "CUID#%d - Connessione in entrata, aggiunta di un nuovo comando CUID#%d"
  1054. #: src/message.h:88
  1055. #, c-format
  1056. msgid "CUID#%d - Error in accepting connection"
  1057. msgstr ""
  1058. "CUID#%d - E` stato riscontrato un errore nell'accettazione della connessione"
  1059. #: src/message.h:89
  1060. #, c-format
  1061. msgid "CUID#%d - Error occurred while processing tracker response."
  1062. msgstr ""
  1063. "CUID#%d - E` stato riscontrato un errore durante la gestione della risposta "
  1064. "del tracker."
  1065. #: src/message.h:90
  1066. #, c-format
  1067. msgid "CUID#%d - Cannot create tracker request."
  1068. msgstr "CUID#%d - Non riesco a creare la richiesta per il tracker."
  1069. #: src/message.h:91
  1070. #, c-format
  1071. msgid "CUID#%d - Creating new tracker request command #%d"
  1072. msgstr ""
  1073. "CUID#%d - Creazione di un nuovo comando di richiesta per il tracker #%d"
  1074. #: src/message.h:92
  1075. #, c-format
  1076. msgid "CUID#%d - The peer is DHT-enabled."
  1077. msgstr "CUID#%d - Il peer ha attivato DHT."
  1078. #: src/message.h:94
  1079. #, c-format
  1080. msgid "Unrecognized URI or unsupported protocol: %s"
  1081. msgstr "URI non riconosciuta o protocollo non supportato: %s"
  1082. #: src/message.h:95
  1083. #, c-format
  1084. msgid "Tracker returned warning message: %s"
  1085. msgstr "Il tracker ha riportato un messaggio di attenzione:%s"
  1086. #: src/message.h:96
  1087. #, c-format
  1088. msgid "The segment file %s exists."
  1089. msgstr "Il file relativo al segmento %s esiste."
  1090. #: src/message.h:97
  1091. #, c-format
  1092. msgid "The segment file %s does not exist."
  1093. msgstr "Il file relativo al segmento %s non esiste."
  1094. #: src/message.h:98
  1095. #, c-format
  1096. msgid "Saving the segment file %s"
  1097. msgstr "Salvataggio del file relativo al segmento %s"
  1098. #: src/message.h:99
  1099. msgid "The segment file was saved successfully."
  1100. msgstr "Il file relativo al segmento e` stato salvato con successo."
  1101. #: src/message.h:100
  1102. #, c-format
  1103. msgid "Loading the segment file %s."
  1104. msgstr "Caricamento del file relativo al segmento %s."
  1105. #: src/message.h:101
  1106. msgid "The segment file was loaded successfully."
  1107. msgstr "Il file relativo al segmento e` stato caricato con successo."
  1108. #: src/message.h:102
  1109. msgid "No URI to download. Download aborted."
  1110. msgstr "Nessuna URI da scaricare.Scaricamento annullato."
  1111. #: src/message.h:103
  1112. #, c-format
  1113. msgid ""
  1114. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1115. "canceled in order to prevent your file from being truncated to 0. If you are "
  1116. "sure to download the file all over again, then delete it or add --allow-"
  1117. "overwrite=true option and restart aria2."
  1118. msgstr ""
  1119. "Il file %s esiste, ma un fiel di controllo (*.aria2) non esiste. Lo "
  1120. "scaricamento e` stato annullato per evitare che il tuo file venisse troncato "
  1121. "a 0. Se sei sicuro di riscaricare il file da capo, allora cancellalo o "
  1122. "aggiungi l'opzione --allow-overwrite=true e fai ripartire aria2."
  1123. #: src/message.h:104
  1124. #, c-format
  1125. msgid "Allocating file %s, %s bytes"
  1126. msgstr "Allocazione del file %s,%s bytes"
  1127. #: src/message.h:105
  1128. msgid "File not found"
  1129. msgstr "FIle non trovato"
  1130. #: src/message.h:106
  1131. msgid "Not a directory"
  1132. msgstr "Non è una directory"
  1133. #: src/message.h:107
  1134. #, c-format
  1135. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1136. msgstr ""
  1137. #: src/message.h:108
  1138. #, c-format
  1139. msgid "Writing file %s"
  1140. msgstr "Scrittura file %s"
  1141. #: src/message.h:109
  1142. msgid "No peer list received."
  1143. msgstr "Non e` stata ricevuta la lista dei peer."
  1144. #: src/message.h:110
  1145. #, c-format
  1146. msgid "Adding peer %s:%d"
  1147. msgstr "Aggiunta peer %s:%d"
  1148. #: src/message.h:111
  1149. #, c-format
  1150. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1151. msgstr ""
  1152. #: src/message.h:112
  1153. msgid "Download of selected files was complete."
  1154. msgstr "Scaricamento completato dei file selezionati."
  1155. #: src/message.h:113
  1156. msgid "The download was complete."
  1157. msgstr "Scaricamento completato"
  1158. #: src/message.h:114
  1159. #, c-format
  1160. msgid "Removed %d have entries."
  1161. msgstr ""
  1162. #: src/message.h:115
  1163. #, c-format
  1164. msgid "Validating file %s"
  1165. msgstr "Validazione del file %s"
  1166. #: src/message.h:116
  1167. #, c-format
  1168. msgid "%d seconds to allocate %s byte(s)"
  1169. msgstr "%d secondi per allocare %s byte(s)"
  1170. #: src/message.h:117
  1171. #, c-format
  1172. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1173. msgstr ""
  1174. #: src/message.h:118
  1175. #, c-format
  1176. msgid "Metalink: Queueing %s for download."
  1177. msgstr "Metalink: Accodando %s per lo scaricamento."
  1178. #: src/message.h:119
  1179. #, c-format
  1180. msgid "Download complete: %s"
  1181. msgstr "Scaricamento completato: %s"
  1182. #: src/message.h:120
  1183. msgid "Seeding is over."
  1184. msgstr "Seeding terminato."
  1185. #: src/message.h:121
  1186. #, c-format
  1187. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1188. msgstr ""
  1189. "CUID#%d cancella l'indice di segmento=%d. CUID#%d lo gestisce al suo posto."
  1190. #: src/message.h:122
  1191. msgid "No chunk to verify."
  1192. msgstr "Nessun pezzo da verificare."
  1193. #: src/message.h:123
  1194. #, c-format
  1195. msgid "Good chunk checksum. hash=%s"
  1196. msgstr "Passato il controllo degli errori. hash=%s"
  1197. #: src/message.h:124
  1198. #, c-format
  1199. msgid "Failed to load cookies from %s"
  1200. msgstr "Non e` stato possibile caricare i cookies da %s"
  1201. #: src/message.h:125
  1202. #, c-format
  1203. msgid ""
  1204. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1205. "support disabled."
  1206. msgstr ""
  1207. "il file .netrc %s non ha i permessi corretti. Dovrebbe essere 600. Il "
  1208. "supporto per il file .netrc e` stato disabilitato."
  1209. #: src/message.h:126
  1210. msgid "Logging started."
  1211. msgstr "Iniziato tracciamento delle operazioni."
  1212. #: src/message.h:127
  1213. msgid "Specify at least one URL."
  1214. msgstr "Specifica almeno una URL."
  1215. #: src/message.h:128
  1216. msgid "daemon failed."
  1217. msgstr "demone fallito."
  1218. #: src/message.h:129
  1219. #, c-format
  1220. msgid "Verification finished successfully. file=%s"
  1221. msgstr "La verifica e` stata completata con successo. file=%s"
  1222. #: src/message.h:130
  1223. #, c-format
  1224. msgid "Checksum error detected. file=%s"
  1225. msgstr "Trovato errore nel checksum. file=%s"
  1226. #: src/message.h:131
  1227. #, c-format
  1228. msgid "Incomplete range specified. %s"
  1229. msgstr "L'intervallo specificato e` incompleto. %s"
  1230. #: src/message.h:132
  1231. #, c-format
  1232. msgid "Failed to convert string into value: %s"
  1233. msgstr "Non e` stato possibile convertire la stringa in un valore: %s"
  1234. #: src/message.h:133
  1235. msgid "Resource not found"
  1236. msgstr "Risorsa non trovata"
  1237. #: src/message.h:134
  1238. #, c-format
  1239. msgid "File already exists. Renamed to %s."
  1240. msgstr "File gia` esistente. Rinominato in %s."
  1241. #: src/message.h:135
  1242. msgid "Cannot parse metalink XML file. XML may be malformed."
  1243. msgstr ""
  1244. "Impossibile parsificare il file XML metalink. Il formato XML potrebbe essere "
  1245. "errato."
  1246. #: src/message.h:136
  1247. #, c-format
  1248. msgid "Too small payload size for %s, size=%d."
  1249. msgstr ""
  1250. #: src/message.h:137
  1251. #, c-format
  1252. msgid ""
  1253. "Removed the defunct control file %s because the download file %s doesn't "
  1254. "exist."
  1255. msgstr ""
  1256. #: src/message.h:138
  1257. #, c-format
  1258. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1259. msgstr "Il tuo indice di condivisione è: %.1f, uploaded/downloaded=%sB/%sB"
  1260. #: src/message.h:139
  1261. #, c-format
  1262. msgid "Missing %s in torrent metainfo."
  1263. msgstr ""
  1264. #: src/message.h:140
  1265. msgid "Tracker returned null data."
  1266. msgstr "Il tracker ha risposto con un dato NULL ."
  1267. #: src/message.h:141
  1268. msgid "Windows socket library initialization failed"
  1269. msgstr ""
  1270. #: src/message.h:142
  1271. #, c-format
  1272. msgid "%d second(s) has passed. Stopping application."
  1273. msgstr "sono passati %d secondi. Applicazione terminata."
  1274. #: src/message.h:143
  1275. #, c-format
  1276. msgid ""
  1277. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1278. msgstr ""
  1279. #: src/message.h:145
  1280. #, c-format
  1281. msgid "Saving signature as %s failed. Maybe file already exists."
  1282. msgstr ""
  1283. #: src/message.h:148
  1284. #, fuzzy, c-format
  1285. msgid "Failed to open ServerStat file %s for read."
  1286. msgstr "Impossibile aprire il file %s, causa: %s"
  1287. #: src/message.h:149
  1288. #, fuzzy, c-format
  1289. msgid "ServerStat file %s loaded successfully."
  1290. msgstr "Il file relativo al segmento e` stato caricato con successo."
  1291. #: src/message.h:150
  1292. #, fuzzy, c-format
  1293. msgid "Failed to read ServerStat from %s."
  1294. msgstr "Fallita lettura dei dati dal disco."
  1295. #: src/message.h:153
  1296. #, fuzzy, c-format
  1297. msgid "Failed to open ServerStat file %s for write."
  1298. msgstr "Impossibile aprire il file %s, causa: %s"
  1299. #: src/message.h:154
  1300. #, fuzzy, c-format
  1301. msgid "ServerStat file %s saved successfully."
  1302. msgstr "Il file relativo al segmento e` stato salvato con successo."
  1303. #: src/message.h:155
  1304. #, fuzzy, c-format
  1305. msgid "Failed to write ServerStat to %s."
  1306. msgstr "Ricezione dati fallita, causa: %s"
  1307. #: src/message.h:158
  1308. #, fuzzy, c-format
  1309. msgid "Failed to establish connection, cause: %s"
  1310. msgstr "L'accettazione di una connessione da un peer e` fallita, causa: %s"
  1311. #: src/message.h:159
  1312. #, c-format
  1313. msgid "Network problem has occurred. cause:%s"
  1314. msgstr ""
  1315. #: src/message.h:161
  1316. #, fuzzy, c-format
  1317. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1318. msgstr "Lettura fallita dal file %s, causa: %s"
  1319. #: src/message.h:163
  1320. #, c-format
  1321. msgid "Certificate verification failed. Cause: %s"
  1322. msgstr ""
  1323. #: src/message.h:164
  1324. #, fuzzy
  1325. msgid "No certificate found."
  1326. msgstr "Nessuna intestazione trovata."
  1327. #: src/message.h:165
  1328. msgid "Hostname not match."
  1329. msgstr ""
  1330. #: src/message.h:166
  1331. msgid "No files to download."
  1332. msgstr ""
  1333. #: src/message.h:168
  1334. msgid ""
  1335. "You may encounter the certificate verification error with HTTPS server. See "
  1336. "--ca-certificate and --check-certificate option."
  1337. msgstr ""
  1338. #: src/message.h:170
  1339. #, fuzzy, c-format
  1340. msgid "Printing the contents of file '%s'..."
  1341. msgstr "Caricamento del file relativo al segmento %s."
  1342. #: src/message.h:171
  1343. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1344. msgstr ""
  1345. #: src/message.h:174
  1346. msgid "Timeout."
  1347. msgstr "Tempo scaduto."
  1348. #: src/message.h:175
  1349. msgid "Invalid chunk size."
  1350. msgstr "Dimensione del pezzo invalida."
  1351. #: src/message.h:176
  1352. #, c-format
  1353. msgid "Too large chunk. size=%d"
  1354. msgstr "Pezzo troppo grande. dimensione=%d"
  1355. #: src/message.h:177
  1356. msgid "Invalid header."
  1357. msgstr "Intestazione non corretta."
  1358. #: src/message.h:178
  1359. msgid "Invalid response."
  1360. msgstr "Risposta non corretta."
  1361. #: src/message.h:179
  1362. msgid "No header found."
  1363. msgstr "Nessuna intestazione trovata."
  1364. #: src/message.h:180
  1365. msgid "No status header."
  1366. msgstr "Nessuna intestazione relativa allo stato."
  1367. #: src/message.h:181
  1368. msgid "Proxy connection failed."
  1369. msgstr "La connessione al proxy e` fallita."
  1370. #: src/message.h:182
  1371. msgid "Connection failed."
  1372. msgstr "Connessione fallita."
  1373. #: src/message.h:183
  1374. #, c-format
  1375. msgid ""
  1376. "The requested filename and the previously registered one are not same. "
  1377. "Expected:%s Actual:%s"
  1378. msgstr ""
  1379. "Il nome di file richiesto e quello precedentemente registrato non sono lo "
  1380. "stesso. Atteso:%s Attuale:%s"
  1381. #: src/message.h:184
  1382. #, c-format
  1383. msgid "The response status is not successful. status=%d"
  1384. msgstr "Lo stato della risposta non e` positivo. stato=%d"
  1385. #: src/message.h:185
  1386. #, c-format
  1387. msgid "Too large file size. size=%s"
  1388. msgstr "File troppo grande. dimensione=%s"
  1389. #: src/message.h:186
  1390. #, c-format
  1391. msgid "Transfer encoding %s is not supported."
  1392. msgstr "La codifica del trasferimento %s non e` supportata."
  1393. #: src/message.h:187
  1394. #, c-format
  1395. msgid "SSL initialization failed: %s"
  1396. msgstr "Inizializzazione SSL fallita: %s"
  1397. #: src/message.h:188
  1398. msgid "SSL I/O error"
  1399. msgstr "Errore nell'I/O SSL"
  1400. #: src/message.h:189
  1401. msgid "SSL protocol error"
  1402. msgstr "Errore col protocollo SSL"
  1403. #: src/message.h:190
  1404. #, c-format
  1405. msgid "SSL unknown error %d"
  1406. msgstr "Errore sconosciuto in SSL %d"
  1407. #: src/message.h:191
  1408. #, c-format
  1409. msgid "SSL initialization failed: OpenSSL connect error %d"
  1410. msgstr "Inizializzazione SSL fallita: errore di connessione OpenSSL %d"
  1411. #: src/message.h:192
  1412. #, c-format
  1413. msgid "Size mismatch Expected:%s Actual:%s"
  1414. msgstr "Errore dovuto due dimensioni differenti: Atteso:%s Attuale:%s"
  1415. #: src/message.h:193
  1416. msgid "Authorization failed."
  1417. msgstr "Autenticazione fallita."
  1418. #: src/message.h:194
  1419. msgid "Got EOF from the server."
  1420. msgstr "Ricevuto EOF dal server."
  1421. #: src/message.h:195
  1422. msgid "Got EOF from peer."
  1423. msgstr "Ricevuto EOF dal peer."
  1424. #: src/message.h:196
  1425. msgid "Malformed meta info."
  1426. msgstr "Metainformazioni non correttamente codificate."
  1427. #: src/message.h:198
  1428. #, c-format
  1429. msgid "Failed to open the file %s, cause: %s"
  1430. msgstr "Impossibile aprire il file %s, causa: %s"
  1431. #: src/message.h:199
  1432. #, c-format
  1433. msgid "Failed to write into the file %s, cause: %s"
  1434. msgstr "Scrittura fallita sul file %s, causa: %s"
  1435. #: src/message.h:200
  1436. #, c-format
  1437. msgid "Failed to read from the file %s, cause: %s"
  1438. msgstr "Lettura fallita dal file %s, causa: %s"
  1439. #: src/message.h:201
  1440. msgid "Failed to read data from disk."
  1441. msgstr "Fallita lettura dei dati dal disco."
  1442. #: src/message.h:202
  1443. #, c-format
  1444. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1445. msgstr ""
  1446. "Il calcolo del digest SHA1 di una parte del file %s e` fallito, causa: %s"
  1447. #: src/message.h:203
  1448. #, c-format
  1449. msgid "Failed to seek the file %s, cause: %s"
  1450. msgstr "E` fallito lo spostamento all'interno del file %s, causa: %s"
  1451. #: src/message.h:204
  1452. #, c-format
  1453. msgid "The offset is out of range, offset=%s"
  1454. msgstr "Lo scostamento e` fuori intervallo, scostamento=%s"
  1455. #: src/message.h:205
  1456. #, c-format
  1457. msgid "%s is not a directory."
  1458. msgstr "%s non è una directory."
  1459. #: src/message.h:206
  1460. #, c-format
  1461. msgid "Failed to make the directory %s, cause: %s"
  1462. msgstr "La creazione della directory %s e` fallita, causa: %s"
  1463. #: src/message.h:207
  1464. #, c-format
  1465. msgid "Failed to open the segment file %s, cause: %s"
  1466. msgstr "Fallita l'apertura del file relativo al segmento %s, causa: %s"
  1467. #: src/message.h:208
  1468. #, c-format
  1469. msgid "Failed to write into the segment file %s, cause: %s"
  1470. msgstr "Fallita la scrittura sul file relativo al segmento %s, causa: %s"
  1471. #: src/message.h:209
  1472. #, c-format
  1473. msgid "Failed to read from the segment file %s, cause: %s"
  1474. msgstr "Fallita la lettura dal file relativo al segmento %s, causa: %s"
  1475. #: src/message.h:211
  1476. #, c-format
  1477. msgid "Failed to open a socket, cause: %s"
  1478. msgstr "Fallita l'apertura di un socket, causa: %s"
  1479. #: src/message.h:212
  1480. #, c-format
  1481. msgid "Failed to set a socket option, cause: %s"
  1482. msgstr "L'abilitazione di una opzione sul socket e` fallita, causa: %s"
  1483. #: src/message.h:213
  1484. #, c-format
  1485. msgid "Failed to set a socket as blocking, cause: %s"
  1486. msgstr "Il settaggio di un socket come bloccante e` fallita, causa: %s"
  1487. #: src/message.h:214
  1488. #, c-format
  1489. msgid "Failed to set a socket as non-blocking, cause: %s"
  1490. msgstr "Il settaggio di un socket come non-bloccante e` fallita, causa: %s"
  1491. #: src/message.h:215
  1492. #, c-format
  1493. msgid "Failed to bind a socket, cause: %s"
  1494. msgstr "Il binding di un socket e` fallito, causa: %s"
  1495. #: src/message.h:216
  1496. #, c-format
  1497. msgid "Failed to listen to a socket, cause: %s"
  1498. msgstr "Fallito l'ascolto su di un socket, causa: %s"
  1499. #: src/message.h:217
  1500. #, c-format
  1501. msgid "Failed to accept a peer connection, cause: %s"
  1502. msgstr "L'accettazione di una connessione da un peer e` fallita, causa: %s"
  1503. #: src/message.h:218
  1504. #, c-format
  1505. msgid "Failed to get the name of socket, cause: %s"
  1506. msgstr "L'ottenimento del nome del socket e` fallito, causa: %s"
  1507. #: src/message.h:219
  1508. #, c-format
  1509. msgid "Failed to get the name of connected peer, cause: %s"
  1510. msgstr "L'ottenimento del nome di un peer connesso e` fallito, causa: %s"
  1511. #: src/message.h:220
  1512. #, c-format
  1513. msgid "Failed to resolve the hostname %s, cause: %s"
  1514. msgstr "La risoluzione del nome %s e` fallita, causa :%s"
  1515. #: src/message.h:221
  1516. #, c-format
  1517. msgid "Failed to connect to the host %s, cause: %s"
  1518. msgstr "La connessione all'host %s e` fallita, causa: %s"
  1519. #: src/message.h:222
  1520. #, c-format
  1521. msgid "Failed to check whether the socket is writable, cause: %s"
  1522. msgstr "Non sono riuscito a verificare che il socket sia scrivibile, causa: %s"
  1523. #: src/message.h:223
  1524. #, c-format
  1525. msgid "Failed to check whether the socket is readable, cause: %s"
  1526. msgstr "Non sono riuscito a verificare che il socket sia leggibile, causa: %s"
  1527. #: src/message.h:224
  1528. #, c-format
  1529. msgid "Failed to send data, cause: %s"
  1530. msgstr "Invio dati fallito, causa: %s"
  1531. #: src/message.h:225
  1532. #, c-format
  1533. msgid "Failed to receive data, cause: %s"
  1534. msgstr "Ricezione dati fallita, causa: %s"
  1535. #: src/message.h:226
  1536. #, c-format
  1537. msgid "Failed to peek data, cause: %s"
  1538. msgstr ""
  1539. #: src/message.h:227
  1540. #, c-format
  1541. msgid "Unknown socket error %d (0x%x)"
  1542. msgstr "Errore sul socket sconosciuto %d (0x%x)"
  1543. #: src/message.h:228
  1544. #, c-format
  1545. msgid "File %s exists, but %s does not exist."
  1546. msgstr "Il file %s esiste, ma %s non esiste."
  1547. #: src/message.h:229
  1548. #, c-format
  1549. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1550. msgstr ""
  1551. "Errata dimensione del payload per %s, dimensione=%d. Avrebbe dovuto essere %d"
  1552. #: src/message.h:230
  1553. #, c-format
  1554. msgid "Invalid ID=%d for %s. It should be %d."
  1555. msgstr "ID=%d errato per %s. Dovrebbe essere %d."
  1556. #: src/message.h:231
  1557. #, c-format
  1558. msgid ""
  1559. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1560. "s, actualHash=%s"
  1561. msgstr ""
  1562. #: src/message.h:232
  1563. msgid "Download aborted."
  1564. msgstr "Scaricamento annullato."
  1565. #: src/message.h:233
  1566. #, c-format
  1567. msgid "File %s is being downloaded by other command."
  1568. msgstr "Il file %s viene scaricato gia` da un altro comando."
  1569. #: src/message.h:234
  1570. msgid "Insufficient checksums."
  1571. msgstr "Checksum insufficienti."
  1572. #: src/message.h:235
  1573. #, c-format
  1574. msgid "Tracker returned failure reason: %s"
  1575. msgstr "Il tracker ha ritornato una ragione per il fallimento: %s"
  1576. #: src/message.h:236
  1577. msgid "Flooding detected."
  1578. msgstr "Rilevato flooding."
  1579. #: src/message.h:237
  1580. #, c-format
  1581. msgid ""
  1582. "Drop connection because no request/piece messages were exchanged in a "
  1583. "certain period(%d seconds)."
  1584. msgstr ""
  1585. "La connessione e` stata annullata in quanto nessun messaggio di richiesta o "
  1586. "pezzo sono stati scambiati in un certo periodo di tempo(%d secondi)."
  1587. #: src/message.h:238
  1588. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1589. msgstr ""
  1590. "Il campo infoHash nel file torrent e` diverso da quello nel file .aria2."
  1591. #: src/message.h:239
  1592. #, c-format
  1593. msgid "No such file entry %s"
  1594. msgstr "Nessun file con il nome %s"
  1595. #: src/message.h:240
  1596. #, c-format
  1597. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1598. msgstr "Troppo lento: velocita` di scaricamento: %d <= %d(B/s), host:%s"
  1599. #: src/message.h:241
  1600. msgid "No HttpRequestEntry found."
  1601. msgstr "Non e` stata trovata la HttpRequestEntry."
  1602. #: src/message.h:242
  1603. #, c-format
  1604. msgid "Got %d status, but no location header provided."
  1605. msgstr ""
  1606. "Ho ricevuto lo stato %d, ma nessun header di locazione e` stato fornito."
  1607. #: src/message.h:243
  1608. #, c-format
  1609. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1610. msgstr ""
  1611. "Header con intervallo invalido. Richiesta: %s-%s/%s, Risposta: %s-%s/%s"
  1612. #: src/message.h:244
  1613. msgid "No file matched with your preference."
  1614. msgstr "Nessun file riconosciuto con le tue preferenze."
  1615. #: src/message.h:245
  1616. msgid "Exception caught"
  1617. msgstr "E` stata lanciata un'eccezione."
  1618. #: src/message.h:246
  1619. #, c-format
  1620. msgid "Max payload length exceeded or invalid. length = %u"
  1621. msgstr ""
  1622. #: src/message.h:247
  1623. #, c-format
  1624. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1625. msgstr ""
  1626. "La lunghezza del file e` invalida. Non posso continuare a scaricare %s: "
  1627. "locale %s, remoto %s"
  1628. #: src/BtSetup.cc:160
  1629. msgid "Errors occurred while binding port.\n"
  1630. msgstr "Ci sono stati degli errori durante il binding alla porta.\n"
  1631. #: src/Util.cc:724
  1632. msgid "Files:"
  1633. msgstr "File:"
  1634. #~ msgid " -p, --ftp-pasv Use passive mode in FTP."
  1635. #~ msgstr " -p, --ftp-pasv Utilizza la modalita` passiva di FTP."