it.po 57 KB

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