it.po 54 KB

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