it.po 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874
  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: 2009-11-02 23:05+0900\n"
  11. "PO-Revision-Date: 2009-10-28 13:02+0000\n"
  12. "Last-Translator: Davide Bagarotti <Unknown>\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: 2009-11-01 09:48+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. "X-Poedit-Bookmarks: 81,324,-1,-1,-1,-1,-1,-1,-1,-1\n"
  20. #: src/DownloadEngine.cc:212
  21. msgid ""
  22. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  23. msgstr ""
  24. "Sequenza di arresto in corso... Premere un'altra volta Ctrl-C per l'arresto "
  25. "d'emergenza."
  26. #: src/DownloadEngine.cc:218
  27. msgid "Emergency shutdown sequence commencing..."
  28. msgstr "Sequenza di arresto di emergenza avviata..."
  29. #: src/MultiUrlRequestInfo.cc:97
  30. msgid "aria2 will resume download if the transfer is restarted."
  31. msgstr "aria2 continuerà a scaricare se il trasferimento verrà riavviato."
  32. #: src/MultiUrlRequestInfo.cc:99
  33. msgid ""
  34. "If there are any errors, then see the log file. See '-l' option in help/man "
  35. "page for details."
  36. msgstr ""
  37. "Se avvengono errori, controllare il file di log. Vedi l'opzione '-l' nella "
  38. "pagina di man/help per informazioni."
  39. #: src/RequestGroupMan.cc:542
  40. msgid "Download Results:"
  41. msgstr "Riepilogo scaricamenti:"
  42. #: src/RequestGroupMan.cc:586
  43. msgid "Status Legend:"
  44. msgstr "Legenda degli stati:"
  45. #: src/OptionHandler.cc:38
  46. msgid " Default: "
  47. msgstr " Predefinito: "
  48. #: src/OptionHandler.cc:39
  49. msgid " Tags: "
  50. msgstr " Etichette: "
  51. #: src/OptionHandler.cc:40
  52. msgid " Possible Values: "
  53. msgstr " Valori possibili: "
  54. #: src/OptionHandlerImpl.h:133
  55. msgid "must be either 'true' or 'false'."
  56. msgstr "deve essere 'true' (vero) o 'false' (falso)."
  57. #: src/OptionHandlerImpl.h:167 src/OptionHandlerImpl.h:216
  58. #, c-format
  59. msgid "must be between %s and %s."
  60. msgstr "deve essere compreso tra %s e %s."
  61. #: src/OptionHandlerImpl.h:213
  62. #, c-format
  63. msgid "must be smaller than or equal to %s."
  64. msgstr "deve essere minore o uguale a %s."
  65. #: src/OptionHandlerImpl.h:219
  66. #, c-format
  67. msgid "must be greater than or equal to %s."
  68. msgstr "deve essere maggiore o uguale a %s."
  69. #: src/OptionHandlerImpl.h:222 src/OptionHandlerImpl.h:300
  70. msgid "must be a number."
  71. msgstr "deve essere un numero."
  72. #: src/OptionHandlerImpl.h:291
  73. #, c-format
  74. msgid "must be smaller than or equal to %.1f."
  75. msgstr "deve essere minore o uguale a %.1f."
  76. #: src/OptionHandlerImpl.h:294
  77. #, c-format
  78. msgid "must be between %.1f and %.1f."
  79. msgstr "deve essere compreso tra %.1f e %.1f."
  80. #: src/OptionHandlerImpl.h:297
  81. #, c-format
  82. msgid "must be greater than or equal to %.1f."
  83. msgstr "deve essere maggiore o uguale a %.1f."
  84. #: src/OptionHandlerImpl.h:475
  85. msgid "must be one of the following:"
  86. msgstr "deve essere uno dei seguenti:"
  87. #: src/OptionHandlerImpl.h:524 src/OptionHandlerImpl.h:567
  88. msgid "unrecognized proxy format"
  89. msgstr "formato del proxy non riconosciuto"
  90. #: src/usage_text.h:37
  91. msgid ""
  92. " -d, --dir=DIR The directory to store the downloaded file."
  93. msgstr ""
  94. " -d, --dir=DIR Il percorso in cui salvare il file scaricato."
  95. #: src/usage_text.h:39
  96. msgid " -o, --out=FILE The file name of the downloaded file."
  97. msgstr " -o, --out=FILE Il nome del file da scaricare."
  98. #: src/usage_text.h:41
  99. msgid ""
  100. " -l, --log=LOG The file name of the log file. If '-' is\n"
  101. " specified, log is written to stdout."
  102. msgstr ""
  103. " -l, --log=LOG Il nome del file di log. Se si specifica '-'\n"
  104. " il log viene riportato sullo stdout."
  105. #: src/usage_text.h:44
  106. msgid ""
  107. " -D, --daemon Run as daemon. The current working directory "
  108. "will\n"
  109. " be changed to \"/\" and standard input, "
  110. "standard\n"
  111. " output and standard error will be redirected "
  112. "to\n"
  113. " \"/dev/null\"."
  114. msgstr ""
  115. " -D, --demone Eseguito come demone. la corrente directory di "
  116. "lavoro\n"
  117. " verrà cambiata con \"/\" ed input standard, "
  118. "standard\n"
  119. " output ed errori standard verranno "
  120. "reindirizzati a\n"
  121. " \"/dev/null\"."
  122. #: src/usage_text.h:49
  123. msgid ""
  124. " -s, --split=N Download a file using N connections. If more\n"
  125. " than N URLs are given, first N URLs are used "
  126. "and\n"
  127. " remaining URLs are used for backup. If less "
  128. "than\n"
  129. " N URLs are given, those URLs are used more "
  130. "than\n"
  131. " once so that N connections total are made\n"
  132. " simultaneously. Please see -j option too.\n"
  133. " Please note that in Metalink download, this\n"
  134. " option has no effect and use -C option instead."
  135. msgstr ""
  136. " -s, --split=N Scarica un file tramite N connessioni. Se "
  137. "vengono\n"
  138. " indicati più di N URL, vengono utilizzati i "
  139. "primi N URL e\n"
  140. " gli URL rimanenti servono come riserva. Se "
  141. "vengono\n"
  142. " dati meno di N URL, questi URL vengono "
  143. "utilizzati più\n"
  144. " di una volta in modo da far risultare in "
  145. "totale N connessioni \n"
  146. " simultanee. Vedi anche l'opzione -j.\n"
  147. " Porre attenzione che con scaricamenti di "
  148. "Metalink, \n"
  149. " questa opzione non ha effetto, si usi invece "
  150. "l'opzione -C."
  151. #: src/usage_text.h:58
  152. msgid ""
  153. " --retry-wait=SEC Set the seconds to wait to retry after an "
  154. "error\n"
  155. " has occured."
  156. msgstr ""
  157. " --retry-wait=SEC Configura il numero di secondi prima di un "
  158. "altro tentativo,\n"
  159. " in caso di errore."
  160. #: src/usage_text.h:61
  161. msgid " -t, --timeout=SEC Set timeout in seconds."
  162. msgstr ""
  163. " -t, --timeout=SEC Configura il numero di secondi prima del "
  164. "timeout."
  165. #: src/usage_text.h:63
  166. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  167. msgstr ""
  168. " -m, --max-tries=N Configura il numero di tentativi. 0 equivale a "
  169. "illimitati."
  170. #: src/usage_text.h:65
  171. msgid ""
  172. " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  173. " See also --all-proxy option.\n"
  174. " This affects all URLs."
  175. msgstr ""
  176. " --http-proxy=PROXY Usa questo server proxy per l'HTTP.\n"
  177. " Vedi anche l'opzione --all-proxy.\n"
  178. " Questo riguarda tutti gli URL."
  179. #: src/usage_text.h:69
  180. msgid ""
  181. " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  182. " See also --all-proxy option.\n"
  183. " This affects all URLs."
  184. msgstr ""
  185. " --https-proxy=PROXY Usa questo server proxy per l'HTTPS.\n"
  186. " Vedi anche l'opzione --all-proxy.\n"
  187. " Questo riguarda tutti gli URL."
  188. #: src/usage_text.h:73
  189. msgid ""
  190. " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  191. " See also --all-proxy option.\n"
  192. " This affects all URLs."
  193. msgstr ""
  194. " --ftp-proxy=PROXY Usa questo server proxy per l'FTP.\n"
  195. " Vedi anche l'opzione --all-proxy.\n"
  196. " Questo riguarda tutti gli URL."
  197. #: src/usage_text.h:77
  198. msgid ""
  199. " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  200. " You can override this setting and specify a\n"
  201. " proxy server for a particular protocol using\n"
  202. " --http-proxy, --https-proxy and --ftp-proxy\n"
  203. " options.\n"
  204. " This affects all URLs."
  205. msgstr ""
  206. " --all-proxy=PROXY Usa questo server proxy per ciascun "
  207. "protocollo.\n"
  208. " Si può negare questa impostazione\n"
  209. " indicando un diverso server proxy per ogni\n"
  210. " protocollo particolare con le opzioni\n"
  211. " --http-proxy, --https-proxy e --ftp-proxy.\n"
  212. " Questo riguarda tutti gli URL."
  213. #: src/usage_text.h:84
  214. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  215. msgstr ""
  216. " --http-user=USER Imposta un utente per l'HTTP. Questo riguarda "
  217. "tutti gli URL."
  218. #: src/usage_text.h:86
  219. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  220. msgstr ""
  221. " --http-passwd=PASSWD Configura la password per l'HTTP. Questo "
  222. "riguarda tutti gli URL."
  223. #: src/usage_text.h:88
  224. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  225. msgstr ""
  226. " --proxy-method=METHOD Configura il metodo usato per le richieste al "
  227. "proxy."
  228. #: src/usage_text.h:90
  229. msgid ""
  230. " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  231. "basic\n"
  232. " is the only supported scheme."
  233. msgstr ""
  234. " --http-auth-scheme=SCHEME Configura lo schema di autenticazione per "
  235. "l'HTTP. Al momento\n"
  236. " l'unico schema supportato è 'basic'."
  237. #: src/usage_text.h:93
  238. msgid " --referer=REFERER Set Referer. This affects all URLs."
  239. msgstr ""
  240. " --referer=RIFERIMENTO Imposta il Referer. Questo è utilizzato per "
  241. "ogni URL."
  242. #: src/usage_text.h:95
  243. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  244. msgstr ""
  245. " --ftp-user=UTENTE Configura l'utente per l'FTP. Questo riguarda "
  246. "tutti gli URL."
  247. #: src/usage_text.h:97
  248. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  249. msgstr ""
  250. " --ftp-passwd=PASSWD Configura la password per l'FTP. Questo "
  251. "riguarda tutti gli URL."
  252. #: src/usage_text.h:99
  253. msgid " --ftp-type=TYPE Set FTP transfer type."
  254. msgstr ""
  255. " --ftp-type=TIPO Configura il tipo di trasferimento per l'FTP."
  256. #: src/usage_text.h:101
  257. msgid ""
  258. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  259. "given,\n"
  260. " the active mode will be used."
  261. msgstr ""
  262. " -p, --ftp-pasv[=true|false] Usa la modalità passiva per l'FTP. Se si "
  263. "specifica false,\n"
  264. " viene usata la modalità attiva."
  265. #: src/usage_text.h:104
  266. msgid ""
  267. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  268. "than\n"
  269. " or equal to this value(bytes per sec).\n"
  270. " 0 means aria2 does not have a lowest speed "
  271. "limit.\n"
  272. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  273. " This option does not affect BitTorrent "
  274. "downloads."
  275. msgstr ""
  276. " --lowest-speed-limit=VELOCITA\n"
  277. " Interrompe la connessione se la velocità di "
  278. "scaricamento\n"
  279. " è minore o uguale a questo valore (byte al "
  280. "sec).\n"
  281. " 0 equivale a nessun limite inferiore di "
  282. "scaricamento per aria2.\n"
  283. " Puoi posporre una K o una M(1K = 1024 byte, 1M "
  284. "= 1024K).\n"
  285. " Questa opzione non riguarda gli scaricamenti "
  286. "con il BitTorrent."
  287. #: src/usage_text.h:110
  288. msgid ""
  289. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  290. "sec.\n"
  291. " 0 means unrestricted.\n"
  292. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  293. " To limit the download speed per download, use\n"
  294. " --max-download-limit option."
  295. msgstr ""
  296. " --max-overall--limit=VELOCITA\n"
  297. " Limita la velocità globale massima di "
  298. "scaricamento,\n"
  299. " espressa in byte/sec. 0 equivale ad "
  300. "illimitata.\n"
  301. " Puoi posporre una K o una M(1K = 1024 byte, 1M "
  302. "= 1024K).\n"
  303. " Per limitare la velocità massima di "
  304. "scaricamento per ciascun file,\n"
  305. " usa l'opzione --max-download-limit."
  306. #: src/usage_text.h:116
  307. msgid ""
  308. " --max-download-limit=SPEED Set max download speed per each download in\n"
  309. " bytes/sec. 0 means unrestricted.\n"
  310. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  311. " To limit the overall download speed, use\n"
  312. " --max-overall-download-limit option."
  313. msgstr ""
  314. " --max-download-limit=VELOCITA\n"
  315. " Limita la velocità massima di scaricamento\n"
  316. " per ciascun file, espressa in byte/sec. 0 "
  317. "equivale ad illimitata.\n"
  318. " Puoi posporre una K o una M(1K = 1024 byte, 1M "
  319. "= 1024K).\n"
  320. " Per limitare la velocità globale massima di "
  321. "scaricamento,\n"
  322. " usa l'opzione --max-overall-download-limit."
  323. #: src/usage_text.h:122
  324. msgid ""
  325. " --file-allocation=METHOD Specify file allocation method.\n"
  326. " 'none' doesn't pre-allocate file space. "
  327. "'prealloc'\n"
  328. " pre-allocates file space before download "
  329. "begins.\n"
  330. " This may take some time depending on the size "
  331. "of\n"
  332. " the file.\n"
  333. " If you are using newer file systems such as "
  334. "ext4\n"
  335. " (with extents support), btrfs or xfs, 'falloc' "
  336. "is\n"
  337. " your best choice. It allocates large(few GiB)\n"
  338. " files almost instantly. Don't use 'falloc' "
  339. "with\n"
  340. " legacy file systems such as ext3 because it "
  341. "takes\n"
  342. " almost same time as 'prealloc' and it blocks "
  343. "aria2\n"
  344. " entirely until allocation finishes. 'falloc' "
  345. "may\n"
  346. " not be available if your system doesn't have\n"
  347. " posix_fallocate() function."
  348. msgstr ""
  349. " --file-allocation=METODO Indica il metodo di allocazione dei file.\n"
  350. " 'none' non alloca preventivamente alcuno "
  351. "spazio.\n"
  352. " 'prealloc' prealloca lo spazio del file prima "
  353. "di scaricarlo.\n"
  354. " L'operazione potrebbe richiedere del tempo, a "
  355. "seconda\n"
  356. " della dimensione del file.\n"
  357. " Se si utilizzano filesystem di nuova "
  358. "generazione quali ext4\n"
  359. " (con supporto degli extent), btrfs oppure xfs, "
  360. "'falloc' è la\n"
  361. " scelta migliore. L'operazione di allocazione "
  362. "di file larghi\n"
  363. " (qualche GiB) è pressoché istantanea. Non "
  364. "utilizzare 'falloc'\n"
  365. " su filesystem di vecchia generazione come "
  366. "ext3,\n"
  367. " in quanto ci mette lo stesso tempo di "
  368. "'prealloc' ma blocca\n"
  369. " tutto il programma aria2 fino al termine "
  370. "dell'operazione.\n"
  371. " 'falloc' potrebbe non funzionare se il "
  372. "sistema\n"
  373. " non supporta la funzione posix_fallocate()."
  374. #: src/usage_text.h:137
  375. msgid ""
  376. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  377. " size is smaller than SIZE.\n"
  378. " You can append K or M(1K = 1024, 1M = 1024K)."
  379. msgstr ""
  380. " --no-file-allocation-limit=DIMENSIONE\n"
  381. " Viene ignorata l'allocazione dello spazio\n"
  382. " per file di dimensione minore di DIMENSIONE.\n"
  383. " Puoi posporre una K o una M(1K = 1024 byte, 1M "
  384. "= 1024K)."
  385. #: src/usage_text.h:141
  386. msgid ""
  387. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  388. "while\n"
  389. " allocating files.\n"
  390. " Turn off if you encounter any error"
  391. msgstr ""
  392. " --enable-direct-io[=true|false]\n"
  393. " Abilita l'I/O diretto, che alleggerisce il "
  394. "carico della cpu\n"
  395. " durante l'allocazione dei file.\n"
  396. " Disabilitare se si riscontrano errori"
  397. #: src/usage_text.h:145
  398. msgid ""
  399. " --allow-overwrite=true|false If false is given, and a file already exists "
  400. "but\n"
  401. " the corresponding control file (filename."
  402. "aria2)\n"
  403. " doesn't exist, then aria2 will not re-"
  404. "download\n"
  405. " the file. See also --auto-file-renaming option."
  406. msgstr ""
  407. " --allow-overwrite=true|false\n"
  408. " Se si indica false e il file esiste già ma\n"
  409. " non esiste il file di controllo relativo "
  410. "(nomedelfile.aria2),\n"
  411. " allora aria2 non lo scaricherà nuovamente.\n"
  412. " Vedere anche l'opzione --auto-file-renaming."
  413. #: src/usage_text.h:150
  414. msgid ""
  415. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  416. "download\n"
  417. " when a piece length is different from one in\n"
  418. " a control file. If true is given, you can "
  419. "proceed\n"
  420. " but some download progress will be lost."
  421. msgstr ""
  422. " --allow-piece-length-change=true|false\n"
  423. " Se impostato false, aria2 interrompe lo "
  424. "scaricamento\n"
  425. " quando la lunghezza di una parte è differente "
  426. "da quella nel\n"
  427. " file di controllo. Se impostato true, continua "
  428. "normalmente\n"
  429. " ma parte del progresso di scaricamento verrà "
  430. "persa."
  431. #: src/usage_text.h:155
  432. msgid ""
  433. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  434. "sequentially\n"
  435. " and download each URI in a separate session, "
  436. "like\n"
  437. " the usual command-line download utilities."
  438. msgstr ""
  439. " -Z, --force-sequential[=true|false]\n"
  440. " Elabora gli URI da linea di comando "
  441. "sequenzialmente\n"
  442. " e scarica ogni URI in una sessione differente, "
  443. "come\n"
  444. " programmi di scaricamento a linea di comando."
  445. #: src/usage_text.h:159
  446. msgid ""
  447. " --auto-file-renaming[=true|false] Rename file name if the same file "
  448. "already\n"
  449. " exists. This option works only in http(s)/ftp\n"
  450. " download.\n"
  451. " The new file name has a dot and a number"
  452. "(1..9999)\n"
  453. " appended."
  454. msgstr ""
  455. " --auto-file-renaming[=true|false]\n"
  456. " Rinomina il file se questo è già esistente\n"
  457. " Questa opzione funziona solo per gli "
  458. "scaricamenti con\n"
  459. " l'http(s)/ftp.\n"
  460. " Il nuovo nome conterrà un punto ed un numero"
  461. "(1..9999)\n"
  462. " alla fine del nome del file."
  463. #: src/usage_text.h:165
  464. msgid ""
  465. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  466. " You can specify set of parts:\n"
  467. " http://{sv1,sv2,sv3}/foo.iso\n"
  468. " Also you can specify numeric sequences with "
  469. "step\n"
  470. " counter:\n"
  471. " http://host/image[000-100:2].img\n"
  472. " A step counter can be omitted.\n"
  473. " If all URIs do not point to the same file, "
  474. "such\n"
  475. " as the second example above, -Z option is\n"
  476. " required."
  477. msgstr ""
  478. " -P, --parameterized-uri[=true|false]\n"
  479. " Abilita il supporto di URI parametrizzati.\n"
  480. " Puoi specificare gruppi di parti:\n"
  481. " http://{sv1,sv2,sv3}/foo.iso\n"
  482. " Oppure puoi specificare sequenze numeriche\n"
  483. " con impostazione degli incrementi:\n"
  484. " http://host/immagine[000-100:2].img\n"
  485. " Il numero di incremento è opzionale.\n"
  486. " Se qualcuno tra gli URI si riferisce a file "
  487. "differenti, come\n"
  488. " nel secondo esempio qui sopra, è obbligatoria\n"
  489. " l'opzione -Z."
  490. #: src/usage_text.h:176
  491. msgid ""
  492. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  493. msgstr ""
  494. " --enable-http-keep-alive[=true|false]\n"
  495. " Abilita connessione persistente su HTTP/1.1."
  496. #: src/usage_text.h:178
  497. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  498. msgstr ""
  499. " --enable-http-pipelining[=true|false]\n"
  500. " Abilita il pipelining su HTTP/1.1."
  501. #: src/usage_text.h:180
  502. msgid ""
  503. " -V, --check-integrity[=true|false] Check file integrity by validating "
  504. "piece\n"
  505. " hashes. This option has effect only in "
  506. "BitTorrent\n"
  507. " and Metalink downloads with chunk checksums.\n"
  508. " Use this option to re-download a damaged "
  509. "portion\n"
  510. " of a file. See also --bt-hash-check-seed "
  511. "option."
  512. msgstr ""
  513. " -V, --check-integrity[=true|false]\n"
  514. " Verifica l'integrità del file controllando\n"
  515. " gli hash dei pezzi. Questa opzione riguarda "
  516. "solo gli\n"
  517. " scaricamenti BitTorrent e Metalink forniti di "
  518. "chunk\n"
  519. " checksum. Usa questa opzione per ri-scaricare "
  520. "le porzioni\n"
  521. " di file corrotte. Vedi anche l'opzione --bt-"
  522. "hash-check-seed."
  523. #: src/usage_text.h:186
  524. msgid ""
  525. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  526. " --check-integrity option and file is "
  527. "complete,\n"
  528. " continue to seed file. If you want to check "
  529. "file\n"
  530. " and download it only when it is damaged or\n"
  531. " incomplete, set this option to false.\n"
  532. " This option has effect only on BitTorrent\n"
  533. " download."
  534. msgstr ""
  535. " --bt-hash-check-seed[=true|false]\n"
  536. " Se impostato true, dopo il controllo hash,\n"
  537. " con l'opzione --check-integrity e il file è "
  538. "completo,\n"
  539. " continua a ridistribuire (seed) il file. Se si "
  540. "vuole verificare il\n"
  541. " file e scaricarlo sol se corrotto o "
  542. "incompleto, impostare\n"
  543. " questa opzione come false.\n"
  544. " Questa opzione riguarda solo gli scaricamenti\n"
  545. " di BitTorrent."
  546. #: src/usage_text.h:194
  547. msgid ""
  548. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  549. "calculating\n"
  550. " checksum while downloading a file if chunk\n"
  551. " checksums are provided."
  552. msgstr ""
  553. " --realtime-chunk-checksum=true|false\n"
  554. " Verifica i segmenti di dati tramite\n"
  555. " il checksum mentre scarica se sono presenti i\n"
  556. " checksum di controllo."
  557. #: src/usage_text.h:198
  558. msgid ""
  559. " -c, --continue Continue downloading a partially downloaded\n"
  560. " file. Use this option to resume a download\n"
  561. " started by a web browser or another program\n"
  562. " which downloads files sequentially from the\n"
  563. " beginning. Currently this option is only\n"
  564. " applicable to http(s)/ftp downloads."
  565. msgstr ""
  566. " -c, --continue Continua lo scaricamento di un file parziale\n"
  567. " Usare questa opzione per ripristinare uno "
  568. "scaricamento\n"
  569. " iniziato da un browser web o da un altro "
  570. "programma\n"
  571. " che scarica i file in modo sequenziale e "
  572. "dall'inizio.\n"
  573. " Al momento questa opzione è applicabile solo\n"
  574. " agli scaricamenti su http(s)/ftp."
  575. #: src/usage_text.h:205
  576. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  577. msgstr ""
  578. " -U, --user-agent=USER_AGENT Imposta lo user-agent per lo scaricamento via "
  579. "http(s)"
  580. #: src/usage_text.h:207
  581. msgid " -n, --no-netrc Disables netrc support."
  582. msgstr " -n, --no-netrc Disabilita il supporto per netrc."
  583. #: src/usage_text.h:209
  584. msgid ""
  585. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  586. " multiple URIs for a single entity: separate\n"
  587. " URIs on a single line using the TAB "
  588. "character.\n"
  589. " Reads input from stdin when '-' is specified.\n"
  590. " The additional out and dir options can be\n"
  591. " specified after each line of URIs. This "
  592. "optional\n"
  593. " line must start with white space(s). See "
  594. "INPUT\n"
  595. " FILE section of man page for details."
  596. msgstr ""
  597. " -i, --input-file=FILE Scarica gli URI presenti nel FILE. Si possono\n"
  598. " specificare URI multipli per ogni file da "
  599. "scaricare:\n"
  600. " separa gli URI su una sola riga con il "
  601. "carattere TAB.\n"
  602. " Se impostato a '-' legge l'input dallo "
  603. "stdin.\n"
  604. " Le opzioni aggiuntive dir e out si possono "
  605. "aggiungere\n"
  606. " dopo ogni riga di URI. Questa riga opzionale\n"
  607. " deve iniziare con uno o più spazi. Vedi la "
  608. "sezione\n"
  609. " INPUT FILE della pagina del man per "
  610. "informazioni."
  611. #: src/usage_text.h:218
  612. msgid ""
  613. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  614. "for\n"
  615. " every static (HTTP/FTP) URL, torrent and "
  616. "metalink.\n"
  617. " See also -s and -C options."
  618. msgstr ""
  619. " -j, --max-concurrent-downloads=N\n"
  620. " Configura il numero massimo di scaricamenti\n"
  621. " paralleli tra tutti gli URL statici(HTTP/FTP), "
  622. "torrent e metalink.\n"
  623. " Vedere anche le opzioni -s e -C."
  624. #: src/usage_text.h:222
  625. msgid ""
  626. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  627. "format\n"
  628. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  629. msgstr ""
  630. " --load-cookies=FILE Carica i cookie dal FILE e usa il formato di "
  631. "Firefox3\n"
  632. " o il formato Mozilla/Firefox(1.x/2.x)/Netscape."
  633. #: src/usage_text.h:225
  634. msgid ""
  635. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  636. "x)/\n"
  637. " Netscape format. If FILE already exists, it "
  638. "is\n"
  639. " overwritten. Session Cookies are also saved "
  640. "and\n"
  641. " their expiry values are treated as 0."
  642. msgstr ""
  643. " --save-cookies=FILE Salva i cookie sul FILE nel formato\n"
  644. " di Mozilla/Firefox(1.x/2.x)/Netscape. Se il "
  645. "FILE\n"
  646. " esiste verrà sovrascritto. I cookies di "
  647. "sessione saranno\n"
  648. " salvati e il loro valore di scadenza verrà "
  649. "impostato a 0."
  650. #: src/usage_text.h:230
  651. msgid ""
  652. " -S, --show-files Print file listing of .torrent or .metalink "
  653. "file\n"
  654. " and exit. More detailed information will be "
  655. "listed\n"
  656. " in case of torrent file."
  657. msgstr ""
  658. " -S, --show-files Mostra la lista di file contenuti nel file."
  659. "torrent\n"
  660. " o .metalink e esce. Se il file è un torrent "
  661. "verranno\n"
  662. " elencate più informazioni."
  663. #: src/usage_text.h:234
  664. msgid ""
  665. " --select-file=INDEX... Set file to download by specifying its index.\n"
  666. " You can find the file index using the\n"
  667. " --show-files option. Multiple indexes can be\n"
  668. " specified by using ',', for example: \"3,6\".\n"
  669. " You can also use '-' to specify a range: \"1-5"
  670. "\".\n"
  671. " ',' and '-' can be used together.\n"
  672. " When used with the -M option, index may vary\n"
  673. " depending on the query(see --metalink-* "
  674. "options)."
  675. msgstr ""
  676. " --select-file=INDICE... Imposta il file da scaricare specificando il "
  677. "suo indice.\n"
  678. " Puoi scoprire il numero di indice del file con "
  679. "l'opzione\n"
  680. " --show-files. Possono essere indicati più "
  681. "indici\n"
  682. " usando la ',' per esempio: \"3,6\".\n"
  683. " Si può usare '-' per indicare un intervallo: "
  684. "\"1-5\".\n"
  685. " ',' e '-' possono essere usati "
  686. "congiuntamente.\n"
  687. " Quando si usa anche l'opzione -M, l'indice "
  688. "potrebbe variare\n"
  689. " a seconda della formula(vedi le opzioni --"
  690. "metalink-*)."
  691. #: src/usage_text.h:243
  692. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  693. msgstr ""
  694. " -T, --torrent-file=FILE_TORRENT\n"
  695. " Il percorso per il file .torrent."
  696. #: src/usage_text.h:245
  697. msgid ""
  698. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  699. " whose suffix is .torrent or content type is\n"
  700. " application/x-bittorrent is downloaded, aria2\n"
  701. " parses it as a torrent file and downloads "
  702. "files\n"
  703. " mentioned in it.\n"
  704. " If mem is specified, a torrent file is not\n"
  705. " written to the disk, but is just kept in "
  706. "memory.\n"
  707. " If false is specified, the action mentioned "
  708. "above\n"
  709. " is not taken."
  710. msgstr ""
  711. " --follow-torrent=true|false|mem\n"
  712. " Se si specifica true oppure mem, quando\n"
  713. " si scarica un file con estensione .torrent o "
  714. "con tipo\n"
  715. " di contenuto application/x-bittorrent, aria2\n"
  716. " lo tratterà come file torrent e scaricherà i "
  717. "file\n"
  718. " contenuti in esso.\n"
  719. " Se si specifica mem, il file torrent non "
  720. "verrà\n"
  721. " scritto su disco, ma tenuto in memoria.\n"
  722. " Se si specifica false, l'azione descritta "
  723. "sopra\n"
  724. " non verrà eseguita."
  725. #: src/usage_text.h:255
  726. msgid ""
  727. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  728. " mentioned in .torrent file."
  729. msgstr ""
  730. " --direct-file-mapping=true|false\n"
  731. " Legge e scrive in modo diretto ciascun\n"
  732. " file nominato nel file .torrent."
  733. #: src/usage_text.h:258
  734. msgid ""
  735. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  736. " Multiple ports can be specified by using ',',\n"
  737. " for example: \"6881,6885\". You can also use "
  738. "'-'\n"
  739. " to specify a range: \"6881-6999\". ',' and '-' "
  740. "can\n"
  741. " be used together."
  742. msgstr ""
  743. " --listen-port=PORTA[,PORTA][-PORTA]\n"
  744. " Configura il numero di porta TCP per gli "
  745. "scaricamenti\n"
  746. " BitTorrent. Si può indicare più di una porta "
  747. "usando ','\n"
  748. " Per esempio: \"6881,6885\". Si può anche usare "
  749. "'-'\n"
  750. " per indicare un intervallo: \"6881-6999\". I "
  751. "simboli ',' e '-'\n"
  752. " possono venire usati congiuntamente."
  753. #: src/usage_text.h:264
  754. msgid ""
  755. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  756. "sec.\n"
  757. " 0 means unrestricted.\n"
  758. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  759. " To limit the upload speed per torrent, use\n"
  760. " --max-upload-limit option."
  761. msgstr ""
  762. " --max-overall-upload-limit=VELOCITA\n"
  763. " Imposta la velocità massima di upload\n"
  764. " globale espressa in byte/sec. 0 equivale ad "
  765. "illimitata.\n"
  766. " Puoi posporre una K o una M(1K = 1024 byte, 1M "
  767. "= 1024K).\n"
  768. " Per impostare la velocità massima di upload "
  769. "per ciascun\n"
  770. " torrent, usa l'opzione --max-upload-limit."
  771. #: src/usage_text.h:270
  772. msgid ""
  773. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  774. " bytes/sec. 0 means unrestricted.\n"
  775. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  776. " To limit the overall upload speed, use\n"
  777. " --max-overall-upload-limit option."
  778. msgstr ""
  779. " -u, --max-upload-limit=VELOCITA\n"
  780. " Configura la velocità massima per ciascun "
  781. "torrent\n"
  782. " in byte/sec. 0 equivale a illimitata.\n"
  783. " Puoi posporre una K o una M(1K = 1024 byte, 1M "
  784. "= 1024K).\n"
  785. " Per limitare la velocità di upload globale, si "
  786. "usa\n"
  787. " l'opzione --max-overall-upload-limit."
  788. #: src/usage_text.h:276
  789. msgid ""
  790. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  791. " --seed-ratio option."
  792. msgstr ""
  793. " --seed-time=MINUTI Indica il tempo di distribuzione (seeding) in "
  794. "minuti. Vedi anche\n"
  795. " l'opzione --seed-ratio."
  796. #: src/usage_text.h:279
  797. msgid ""
  798. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  799. " until share ratio reaches RATIO.\n"
  800. " You are strongly encouraged to specify equals "
  801. "or\n"
  802. " more than 1.0 here. Specify 0.0 if you intend "
  803. "to\n"
  804. " do seeding regardless of share ratio.\n"
  805. " If --seed-time option is specified along with\n"
  806. " this option, seeding ends when at least one "
  807. "of\n"
  808. " the conditions is satisfied."
  809. msgstr ""
  810. " --seed-ratio=RAPPORTO Indica il rapporto di condivisione. "
  811. "Distribuisce\n"
  812. " (seed) i torrents completi fino a che il "
  813. "rapporto raggiunge\n"
  814. " RAPPORTO. Si consiglia caldamente di indicare "
  815. "qui un\n"
  816. " valore maggiore o uguale a 1.0. Indica 0.0 se "
  817. "intendi\n"
  818. " distribuire il file senza tener conto del "
  819. "rapporto di\n"
  820. " condivisione. Se specificata anche l'opzione\n"
  821. " --seed-time la distibuzione termina quando una "
  822. "delle\n"
  823. " condizioni si verifica."
  824. #: src/usage_text.h:288
  825. msgid ""
  826. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  827. "in\n"
  828. " BitTorrent is 20 byte length. If more than 20\n"
  829. " bytes are specified, only first 20 bytes are\n"
  830. " used. If less than 20 bytes are specified, "
  831. "random\n"
  832. " byte data are added to make its length 20 "
  833. "bytes."
  834. msgstr ""
  835. " --prefisso-peer-id=PREFISSO_PEER_ID Specifica il prefisso del peer ID. Il "
  836. "peer ID in\n"
  837. " BitTorrent è di 20 bytes di lunghezza. Se sono "
  838. "specificati\n"
  839. " più di 20 bytes, solo i primi 20 bytes "
  840. "saranno\n"
  841. " utilizzati. Se invece saranno specificati meno "
  842. "di 20 bytes, verranno\n"
  843. " aggiunti i bytes mancanti fino a raggiungere "
  844. "la lunghezza di 20 bytes."
  845. #: src/usage_text.h:294
  846. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  847. msgstr ""
  848. " --enable-peer-exchange[=true|false]\n"
  849. " Abilita l'estensione di scambio di peer."
  850. #: src/usage_text.h:296
  851. msgid " --enable-dht[=true|false] Enable DHT functionality."
  852. msgstr " --enable-dht[=true|false] Abilita la funzione DHT."
  853. #: src/usage_text.h:298
  854. msgid ""
  855. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  856. " Multiple ports can be specified by using ',',\n"
  857. " for example: \"6881,6885\". You can also use "
  858. "'-'\n"
  859. " to specify a range: \"6881-6999\". ',' and '-' "
  860. "can\n"
  861. " be used together."
  862. msgstr ""
  863. " --dht-listen-port=PORTA[,PORTA][-PORTA]\n"
  864. " Configura la porta di ascolto UDP per il DHT.\n"
  865. " Si possono indicare più porte separate da "
  866. "',',\n"
  867. " p.es.: \"6881,6885\". Si può anche usare il "
  868. "'-'\n"
  869. " per indicare un intervallo: \"6881-6999\". ',' "
  870. "e '-'\n"
  871. " possono essere indicati congiuntamente."
  872. #: src/usage_text.h:304
  873. msgid ""
  874. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  875. " network."
  876. msgstr ""
  877. " --dht-entry-point=HOST:PORTA\n"
  878. " Configura l'host e la porta come punto\n"
  879. " di ingresso alla rete DHT."
  880. #: src/usage_text.h:307
  881. msgid ""
  882. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  883. msgstr ""
  884. " --dht-file-path=PERCORSO\n"
  885. " Modifica la tabella di instradamento DHT come\n"
  886. " indicato in PERCORSO."
  887. #: src/usage_text.h:309
  888. msgid ""
  889. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  890. " If several encryption methods are provided by "
  891. "a\n"
  892. " peer, aria2 chooses the lowest one which "
  893. "satisfies\n"
  894. " the given level."
  895. msgstr ""
  896. " --bt-min-crypto-level=plain|arc4\n"
  897. " Configura il livello minimo di supporto per la "
  898. "cifratura.\n"
  899. " Se da un peer sono supportati più metodi di "
  900. "cifratura, aria2\n"
  901. " sceglierà quello sufficiente a soddisfare il "
  902. "livello indicato."
  903. #: src/usage_text.h:314
  904. msgid ""
  905. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  906. " establish connection with legacy BitTorrent\n"
  907. " handshake. Thus aria2 always uses Obfuscation\n"
  908. " handshake."
  909. msgstr ""
  910. " --bt-require-crypto=true|false\n"
  911. " Se si indica true, aria2 non accetterà\n"
  912. " alcuna connessione stabilita con l'handshake "
  913. "BitTorrent\n"
  914. " tradizionale. Cioé aria2 userà sempre "
  915. "l'offuscamento\n"
  916. " degli handshake."
  917. #: src/usage_text.h:319
  918. msgid ""
  919. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  920. " torrent is lower than SPEED, aria2 "
  921. "temporarily\n"
  922. " increases the number of peers to try for more\n"
  923. " download speed. Configuring this option with "
  924. "your\n"
  925. " preferred download speed can increase your\n"
  926. " download speed in some cases.\n"
  927. " You can append K or M(1K = 1024, 1M = 1024K)."
  928. msgstr ""
  929. " --bt-request-peer-speed-limit=VELOCITA\n"
  930. " Se la velocità globale di scaricamento\n"
  931. " dei torrent è inferiore a VELOCITA, aria2 "
  932. "aumenta\n"
  933. " temporaneamente il numero di peer per provare "
  934. "a\n"
  935. " raggiungere una maggiore velocità di "
  936. "scaricamento.\n"
  937. " Se configurata correttamente, l'opzione può "
  938. "talvolta\n"
  939. " incrementare la velocità di scaricamento.\n"
  940. " Puoi posporre una K o una M(1K = 1024 byte, 1M "
  941. "= 1024K)."
  942. #: src/usage_text.h:327
  943. msgid ""
  944. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  945. "each\n"
  946. " BitTorrent download."
  947. msgstr ""
  948. " --bt-max-open-files=NUM Indica il numero massimo di file aperti per "
  949. "ogni\n"
  950. " scaricamento BitTorrent."
  951. #: src/usage_text.h:330
  952. msgid ""
  953. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  954. " verifying piece hashes."
  955. msgstr ""
  956. " --bt-seed-unverified[=true|false]\n"
  957. " Condivide i file già scaricati senza\n"
  958. " verificare gli hash delle parti."
  959. #: src/usage_text.h:333
  960. msgid ""
  961. " --bt-max-peers=NUM Specify the maximum number of peers per "
  962. "torrent.\n"
  963. " 0 means unlimited.\n"
  964. " See also --bt-request-peer-speed-limit option."
  965. msgstr ""
  966. " --bt-max-peers=NUM Indica il numero massimo di peer per torrent.\n"
  967. " 0 equivale a illimitati.\n"
  968. " Vedere anche l'opzione --bt-request-peer-speed-"
  969. "limit."
  970. #: src/usage_text.h:337
  971. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  972. msgstr ""
  973. " -M, --metalink-file=FILE_METALINK\n"
  974. " Il percorso per il file .metalink."
  975. #: src/usage_text.h:339
  976. msgid ""
  977. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  978. " simultaneously. Some Metalinks regulate the\n"
  979. " number of servers to connect. aria2 strictly\n"
  980. " respects them. This means that if Metalink "
  981. "defines\n"
  982. " the maxconnections attribute lower than\n"
  983. " NUM_SERVERS, then aria2 uses the value of\n"
  984. " maxconnections attribute instead of "
  985. "NUM_SERVERS.\n"
  986. " See also -s and -j options."
  987. msgstr ""
  988. " -C, --metalink-servers=NUM_SERVER\n"
  989. " Il numero di server a cui connettersi\n"
  990. " contemporaneamente. Alcuni Metalink "
  991. "autoconfigurano\n"
  992. " il numero di server a cui connettersi. aria2 "
  993. "rispetta\n"
  994. " i loro settaggi. Questo vuol dire che se "
  995. "Metalink definisce\n"
  996. " l'attributo maxconnections inferiore a "
  997. "NUM_SERVER\n"
  998. " aria2 imposterà il valore dell'attributo "
  999. "maxconnections.\n"
  1000. " Vedere anche le opzioni -s e -j."
  1001. #: src/usage_text.h:348
  1002. msgid " --metalink-version=VERSION The version of the file to download."
  1003. msgstr ""
  1004. " --metalink-version=VERSIONE\n"
  1005. " La versione del file da scaricare."
  1006. #: src/usage_text.h:350
  1007. msgid " --metalink-language=LANGUAGE The language of the file to download."
  1008. msgstr ""
  1009. " --metalink-language=LINGUA\n"
  1010. " La lingua del file da scaricare."
  1011. #: src/usage_text.h:352
  1012. msgid ""
  1013. " --metalink-os=OS The operating system of the file to download."
  1014. msgstr ""
  1015. " --metalink-os=SO Il Sistema Operativo del file da scaricare."
  1016. #: src/usage_text.h:354
  1017. msgid ""
  1018. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  1019. " A comma-delimited list of locations is\n"
  1020. " acceptable."
  1021. msgstr ""
  1022. " --metalink-location=LOCAZIONE[,...]\n"
  1023. " La locazione del server preferito.\n"
  1024. " Si può specificare una lista di locazioni "
  1025. "separate da\n"
  1026. " una virgola."
  1027. #: src/usage_text.h:358
  1028. msgid ""
  1029. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  1030. "'none'\n"
  1031. " if you don't have any preferred protocol."
  1032. msgstr ""
  1033. " --metalink-preferred-protocol=PROTO\n"
  1034. " Configura il protocollo preferito.\n"
  1035. " Indicare 'none' se non c'è un protocollo "
  1036. "preferito."
  1037. #: src/usage_text.h:361
  1038. msgid ""
  1039. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  1040. " whose suffix is .metalink or content type of\n"
  1041. " application/metalink+xml is downloaded, aria2\n"
  1042. " parses it as a metalink file and downloads "
  1043. "files\n"
  1044. " mentioned in it.\n"
  1045. " If mem is specified, a metalink file is not\n"
  1046. " written to the disk, but is just kept in "
  1047. "memory.\n"
  1048. " If false is specified, the action mentioned "
  1049. "above\n"
  1050. " is not taken."
  1051. msgstr ""
  1052. " --accettare-metalink=vero|falso|mem è vero o mem è specificato, quando un "
  1053. "file\n"
  1054. " di cui il suffisso è .metalink o contiene tipi "
  1055. "di\n"
  1056. " applicazioni/metalink+xml viene scaricato, "
  1057. "aria2\n"
  1058. " analizza se è un file metalink file e scarica "
  1059. "i file\n"
  1060. " menzionati in esso.\n"
  1061. " Ses mem è specificato, un file metalink non è\n"
  1062. " scritto sul disco, ma è solo tenuto in "
  1063. "memoria.\n"
  1064. " If false is specified, the action mentioned "
  1065. "above\n"
  1066. " is not taken."
  1067. #: src/usage_text.h:371
  1068. msgid ""
  1069. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  1070. " protocols are available for a mirror in a "
  1071. "metalink\n"
  1072. " file, aria2 uses one of them.\n"
  1073. " Use --metalink-preferred-protocol option to\n"
  1074. " specify the preference of protocol."
  1075. msgstr ""
  1076. " --metalink-enable-unique-protocol=true|false\n"
  1077. " Se si indica true e sono\n"
  1078. " disponibili più protocolli per un dato file "
  1079. "metalink,\n"
  1080. " aria2 ne userà solo uno.\n"
  1081. " Impostare l'opzione --metalink-preferred-"
  1082. "protocol\n"
  1083. " per indicare la preferenza del protocollo."
  1084. #: src/usage_text.h:377
  1085. msgid " -v, --version Print the version number and exit."
  1086. msgstr " -v, --version Mostra il numero di versione ed esce."
  1087. #: src/usage_text.h:379
  1088. msgid ""
  1089. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  1090. " The help messages are classified with tags. A "
  1091. "tag\n"
  1092. " starts with \"#\". For example, type \"--"
  1093. "help=#http\"\n"
  1094. " to get the usage for the options tagged with\n"
  1095. " \"#http\". If non-tag word is given, print the "
  1096. "usage\n"
  1097. " for the options whose name includes that word."
  1098. msgstr ""
  1099. " -h, --aiuto[=TAG|PAROLA CHIAVE] Utilizzo di stampa e di uscita.\n"
  1100. " I messaggi d'aiuto sono classificati con dei "
  1101. "tag. Un tag\n"
  1102. " inizia con \"#\". Per esempio: \"--aiuto=#http"
  1103. "\"\n"
  1104. " per sapere le opzioni utilizzabili con il tag\n"
  1105. " \"#http\". Se nessuna parola tag è inserita, "
  1106. "stampa tutte\n"
  1107. " le opzioni che utilizzano quella parola.."
  1108. #: src/usage_text.h:386
  1109. msgid " --no-conf Disable loading aria2.conf file."
  1110. msgstr ""
  1111. " --no-conf Disabilita il file di configurazione aria2."
  1112. "conf."
  1113. #: src/usage_text.h:388
  1114. msgid ""
  1115. " --conf-path=PATH Change the configuration file path to PATH."
  1116. msgstr ""
  1117. " --conf-path=PERCORSO Cambia il percorso del file di configurazione\n"
  1118. " in PERCORSO."
  1119. #: src/usage_text.h:390
  1120. msgid ""
  1121. " --stop=SEC Stop application after SEC seconds has "
  1122. "passed.\n"
  1123. " If 0 is given, this feature is disabled."
  1124. msgstr ""
  1125. " --stop=SEC Interrompe il programma dopo che il numero\n"
  1126. " di secondi SEC è trascorso. Se si indica 0, la "
  1127. "funzione\n"
  1128. " viene disabilitata."
  1129. #: src/usage_text.h:393
  1130. msgid ""
  1131. " --header=HEADER Append HEADER to HTTP request header. You can "
  1132. "use\n"
  1133. " this option repeatedly to specify more than "
  1134. "one\n"
  1135. " header:\n"
  1136. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  1137. "9J1\"\n"
  1138. " http://host/file"
  1139. msgstr ""
  1140. " --header=INTESTAZIONE Aggiunge INTESTAZIONE all'header della "
  1141. "richiesta\n"
  1142. " HTTP. Si può impostare l'opzione più di una "
  1143. "volta indicando\n"
  1144. " diverse intestazioni:\n"
  1145. " aria2c --header="
  1146. "\"X-A: b78\" --header=\"X-B: 9J1\"\n"
  1147. " http://host/file"
  1148. #: src/usage_text.h:399
  1149. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  1150. msgstr ""
  1151. " -q, --quiet[=true|false] Rende aria2 silenzioso(nessun output su "
  1152. "console)."
  1153. #: src/usage_text.h:401
  1154. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  1155. msgstr " --async-dns[=true|false] Abilita il DNS asincrono."
  1156. #: src/usage_text.h:403
  1157. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  1158. msgstr ""
  1159. " --ftp-reuse-connection[=true|false]\n"
  1160. " Riutilizza la connessione per l'FTP."
  1161. #: src/usage_text.h:405
  1162. msgid ""
  1163. " --summary-interval=SEC Set interval to output download progress "
  1164. "summary.\n"
  1165. " Setting 0 suppresses the output."
  1166. msgstr ""
  1167. " --summary-interval=SEC Configura l'intervallo con cui viene "
  1168. "visualizzato\n"
  1169. " il sommario di progresso scaricamenti. Se "
  1170. "impostato a 0\n"
  1171. " non verrà visualizzato alcun sommario."
  1172. #: src/usage_text.h:408
  1173. msgid " --log-level=LEVEL Set log level to output."
  1174. msgstr ""
  1175. " --log-level=LIVELLO Imposta il LIVELLO di registro (log) "
  1176. "visualizzato."
  1177. #: src/usage_text.h:410
  1178. msgid ""
  1179. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  1180. "the\n"
  1181. " remote HTTP/FTP server and if it is "
  1182. "available,\n"
  1183. " apply it to the local file."
  1184. msgstr ""
  1185. " -R, --remote-time[=true|false]\n"
  1186. " Recupera il timestamp del file remoto\n"
  1187. " dal server HTTP/FTP e se disponibile lo "
  1188. "applica al\n"
  1189. " file locale."
  1190. #: src/usage_text.h:414
  1191. msgid ""
  1192. " --connect-timeout=SEC Set the connect timeout in seconds to "
  1193. "establish\n"
  1194. " connection to HTTP/FTP/proxy server. After "
  1195. "the\n"
  1196. " connection is established, this option makes "
  1197. "no\n"
  1198. " effect and --timeout option is used instead."
  1199. msgstr ""
  1200. " --connect-timeout=SEC Configura il numero di secondi prima del\n"
  1201. " timeout di connessione verso un server HTTP/"
  1202. "FTP/proxy.\n"
  1203. " Dopo che la connessione viene stabilita, "
  1204. "questa opzione\n"
  1205. " non ha più alcun effetto, viene invece "
  1206. "utilizzata\n"
  1207. " l'opzione --timeout."
  1208. #: src/usage_text.h:419
  1209. msgid ""
  1210. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  1211. "the\n"
  1212. " remote HTTP/FTP servers NUM times without "
  1213. "getting\n"
  1214. " a single byte, then force the download to "
  1215. "fail.\n"
  1216. " Specify 0 to disable this option.\n"
  1217. " This options is effective only when using\n"
  1218. " HTTP/FTP servers."
  1219. msgstr ""
  1220. " --max-file-not-found=NUM Se aria2 riceve lo stato `file not found'\n"
  1221. " dal server remoto HTTP/FTP per NUM volte senza "
  1222. "ricevere\n"
  1223. " neanche un byte, allora lo scaricamento viene "
  1224. "interrotto.\n"
  1225. " Indica 0 per disabilitare l'opzione.\n"
  1226. " Questa opzione ha effetto solo se sono in uso\n"
  1227. " server HTTP/FTP."
  1228. #: src/usage_text.h:426
  1229. msgid ""
  1230. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  1231. " If 'inorder' is given, URI is tried in the "
  1232. "order\n"
  1233. " appeared in the URI list.\n"
  1234. " If 'feedback' is given, aria2 uses download "
  1235. "speed\n"
  1236. " observed in the previous downloads and choose\n"
  1237. " fastest server in the URI list. This also\n"
  1238. " effectively skips dead mirrors. The observed\n"
  1239. " download speed is a part of performance "
  1240. "profile\n"
  1241. " of servers mentioned in --server-stat-of and\n"
  1242. " --server-stat-if options.\n"
  1243. " If 'adaptive' is given, selects one of the "
  1244. "best\n"
  1245. " mirrors for the first and reserved "
  1246. "connections.\n"
  1247. " For supplementary ones, it returns mirrors "
  1248. "which\n"
  1249. " has not been tested yet, and if each of them "
  1250. "has\n"
  1251. " already been tested, returns mirrors which has "
  1252. "to\n"
  1253. " be tested again. Otherwise, it doesn't select\n"
  1254. " anymore mirrors. Like 'feedback', it uses a\n"
  1255. " performance profile of servers."
  1256. msgstr ""
  1257. " --uri-selector=SELETTORE Configura l'algoritmo di selezione URI.\n"
  1258. " Se impostato a 'inorder', gli URI vengono "
  1259. "elaborati\n"
  1260. " nell'ordine in cui appaiono nella lista URI.\n"
  1261. " Se impostato a 'feedback', aria2 userà la "
  1262. "velocità\n"
  1263. " di scaricamento osservata in precedenza e "
  1264. "sceglierà\n"
  1265. " il server più veloce dalla lista degli URI. "
  1266. "Così si\n"
  1267. " salteranno anche i mirror inattivi. La "
  1268. "velocità di\n"
  1269. " scaricamento ossservata precedentemente fa "
  1270. "parte\n"
  1271. " del profilo di prestazioni server indicato "
  1272. "tramite\n"
  1273. " le opzioni --server-stat-of e --server-stat-"
  1274. "if.\n"
  1275. " Se impostato a 'adaptive', verrà scelto il "
  1276. "server\n"
  1277. " migliore per la prima connessione e quelle di "
  1278. "riserva.\n"
  1279. " Per le connessioni supplementari verranno "
  1280. "scelti i\n"
  1281. " server che non sono ancora stati testati, o "
  1282. "che\n"
  1283. " devono venire ri-testati. In mancanza di "
  1284. "questi,\n"
  1285. " non verranno scelti altri server. Come "
  1286. "'feedback',\n"
  1287. " userà un profilo di prestazioni dei server."
  1288. #: src/usage_text.h:445
  1289. msgid ""
  1290. " --server-stat-of=FILE Specify the filename to which performance "
  1291. "profile\n"
  1292. " of the servers is saved. You can load saved "
  1293. "data\n"
  1294. " using --server-stat-if option."
  1295. msgstr ""
  1296. " --server-stat-of=FILE Configura il nome del file in cui verrà\n"
  1297. " salvato il profilo di prestazioni dei server. "
  1298. "Si può\n"
  1299. " caricare questo profilo con l'opzione --server-"
  1300. "stat-if."
  1301. #: src/usage_text.h:449
  1302. msgid ""
  1303. " --server-stat-if=FILE Specify the filename to load performance "
  1304. "profile\n"
  1305. " of the servers. The loaded data will be used "
  1306. "in\n"
  1307. " some URI selector such as 'feedback'.\n"
  1308. " See also --uri-selector option"
  1309. msgstr ""
  1310. " --server-stat-if=FILE Configura il nome del file da cui caricare\n"
  1311. " il profilo di prestazioni dei server. I dati "
  1312. "contenuti verranno\n"
  1313. " utilizzati da qualche selettore di URI, p.es. "
  1314. "'feedback'.\n"
  1315. " Vedere anche l'opzione --uri-selector"
  1316. #: src/usage_text.h:454
  1317. msgid ""
  1318. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  1319. " performance profile of the servers since the "
  1320. "last\n"
  1321. " contact to them."
  1322. msgstr ""
  1323. " --server-stat-timeout=SEC Configura il numero di secondi trascorsi\n"
  1324. " dall'ultimo aggiornamento del profilo di "
  1325. "prestazioni dei\n"
  1326. " server affinché questo venga disabilitato."
  1327. #: src/usage_text.h:458
  1328. msgid ""
  1329. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  1330. "seconds.\n"
  1331. " If 0 is given, a control file is not saved "
  1332. "during\n"
  1333. " download. aria2 saves a control file when it "
  1334. "stops\n"
  1335. " regardless of the value."
  1336. msgstr ""
  1337. " --auto-save-interval=SEC Salva il file di controllo(*.aria2) ogni SEC "
  1338. "secondi.\n"
  1339. " Se indicato 0, non verrà salvato alcun file di "
  1340. "controllo durante\n"
  1341. " gli scaricamenti. aria2 salverà un file di "
  1342. "controllo ogni volta\n"
  1343. " che si interrompe, a prescindere da questa "
  1344. "opzione."
  1345. #: src/usage_text.h:463
  1346. msgid ""
  1347. " --certificate=FILE Use the client certificate in FILE.\n"
  1348. " The certificate must be in PEM format.\n"
  1349. " You may use --private-key option to specify "
  1350. "the\n"
  1351. " private key."
  1352. msgstr ""
  1353. " --certificate=FILE Utilizza il certificato di client FILE.\n"
  1354. " questo certificato deve avere il formato PEM.\n"
  1355. " Si può anche impostare l'opzione --private-"
  1356. "key\n"
  1357. " per indicare una chiave privata."
  1358. #: src/usage_text.h:468
  1359. msgid ""
  1360. " --private-key=FILE Use the private key in FILE.\n"
  1361. " The private key must be decrypted and in PEM\n"
  1362. " format. See also --certificate option."
  1363. msgstr ""
  1364. " --private-key=FILE Usa la chiave privata nel FILE.\n"
  1365. " La chiave privata deve essere decifrata e "
  1366. "avere\n"
  1367. " il formato PEM. Vedi anche l'opzione --"
  1368. "certificate."
  1369. #: src/usage_text.h:472
  1370. msgid ""
  1371. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  1372. "verify\n"
  1373. " the peers. The certificate file must be in "
  1374. "PEM\n"
  1375. " format and can contain multiple CA "
  1376. "certificates.\n"
  1377. " Use --check-certificate option to enable\n"
  1378. " verification."
  1379. msgstr ""
  1380. " --ca-certificate=FILE Usa le autorità certificate contenute in FILE\n"
  1381. " per convalidare i peer. Il file dei "
  1382. "certificati deve avere\n"
  1383. " il formato PEM e può contenere diversi "
  1384. "certificati CA.\n"
  1385. " Usa l'opzione --check-certificate per "
  1386. "abilitare il controllo."
  1387. #: src/usage_text.h:478
  1388. msgid ""
  1389. " --check-certificate[=true|false] Verify the peer using certificates "
  1390. "specified\n"
  1391. " in --ca-certificate option."
  1392. msgstr ""
  1393. " --check-certificate[=true|false]\n"
  1394. " Verifica il peer usando i certificati "
  1395. "specificati\n"
  1396. " tramite l'opzione --ca-certificate."
  1397. #: src/usage_text.h:481
  1398. msgid ""
  1399. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  1400. "where\n"
  1401. " proxy should not be used."
  1402. msgstr ""
  1403. " --no-proxy=DOMINI Configura una lista di nomi di host o domini "
  1404. "separati\n"
  1405. " da virgola verso cui non usare proxy."
  1406. #: src/usage_text.h:484
  1407. msgid ""
  1408. " --use-head[=true|false] Use HEAD method for the first request to the "
  1409. "HTTP\n"
  1410. " server."
  1411. msgstr ""
  1412. " --use-head[=true|false] Usa il metodo HEAD per la prima richiesta al\n"
  1413. " server HTTP."
  1414. #: src/usage_text.h:487
  1415. msgid " --event-poll=POLL Specify the method for polling events."
  1416. msgstr ""
  1417. " --event-poll=POLL Configura il metodo di 'polling' degli eventi."
  1418. #: src/usage_text.h:489
  1419. msgid ""
  1420. " --xml-rpc-listen-port=PORT Specify a port number for XML-RPC server to "
  1421. "listen\n"
  1422. " to."
  1423. msgstr ""
  1424. " --xml-rpc-listen-port=PORTA\n"
  1425. " Specifica un numero di porta sulla quale il\n"
  1426. " server XML-RPC sarà in ascolto."
  1427. #: src/usage_text.h:492
  1428. msgid ""
  1429. " --enable-xml-rpc[=true|false] Enable XML-RPC server.\n"
  1430. " It is strongly recommended to set username "
  1431. "and\n"
  1432. " password using --xml-rpc-user and --xml-rpc-"
  1433. "passwd\n"
  1434. " option. See also --xml-rpc-listen-port option."
  1435. msgstr ""
  1436. " --enable-xml-rpc[=true|false]\n"
  1437. " Abilita il server XML-RPC.\n"
  1438. " Si consiglia di impostare il nome utente e la "
  1439. "password\n"
  1440. " tramite le opzioni --xml-rpc-user e --xml-rpc-"
  1441. "passwd.\n"
  1442. " Vedere anche l'opzione --xml-rpc-listen-port."
  1443. #: src/usage_text.h:497
  1444. msgid ""
  1445. " --xml-rpc-max-request-size=SIZE Set max size of XML-RPC request. If aria2\n"
  1446. " detects the request is more than SIZE bytes, "
  1447. "it\n"
  1448. " drops connection."
  1449. msgstr ""
  1450. " --xml-rpc-max-request-size=DIMENSIONE\n"
  1451. " Imposta la dimensione massima per\n"
  1452. " ciascuna richiesta XML-RPC. Se aria2 "
  1453. "intercetta\n"
  1454. " una richiesta maggiore di DIMENSIONE byte,\n"
  1455. " termina la connessione."
  1456. #: src/usage_text.h:501
  1457. msgid " --xml-rpc-user=USER Set XML-RPC user."
  1458. msgstr " --xml-rpc-user=UTENTE Imposta l'utente di XML-RPC."
  1459. #: src/usage_text.h:503
  1460. msgid " --xml-rpc-passwd=PASSWD Set XML-RPC password."
  1461. msgstr ""
  1462. " --xml-rpc-passwd=PASSWORD\n"
  1463. " Imposta la password di XML-RPC."
  1464. #: src/usage_text.h:505
  1465. msgid ""
  1466. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1467. "a\n"
  1468. " BitTorrent tracker. Although this function is\n"
  1469. " named 'external', it can accept any kind of "
  1470. "IP\n"
  1471. " addresses."
  1472. msgstr ""
  1473. " --bt-external-ip=INDIRIZZOIP\n"
  1474. " Indica l'indirizzo IP esterno da comunicare\n"
  1475. " al tracker BitTorrent. Non importa che sia "
  1476. "effettivamente\n"
  1477. " un indirizzo pubblico su Internet, qualunque "
  1478. "indirizzo IP\n"
  1479. " può andare bene."
  1480. #: src/usage_text.h:510
  1481. msgid ""
  1482. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  1483. "it\n"
  1484. " is requested by the server. If false is set, "
  1485. "then\n"
  1486. " authorization header is always sent to the "
  1487. "server.\n"
  1488. " There is an exception: if username and "
  1489. "password\n"
  1490. " are embedded in URI, authorization header is\n"
  1491. " always sent to the server regardless of this\n"
  1492. " option."
  1493. msgstr ""
  1494. " --http-auth-challenge[=true|false]\n"
  1495. " Invia l'intestazione di autorizzazione HTTP\n"
  1496. " solo quando richiesta dal server. Se impostato "
  1497. "a falso,\n"
  1498. " l'intestazione di autorizzazione viene sempre "
  1499. "inviata al server.\n"
  1500. " Con una eccezione: se il nome utente e la "
  1501. "password sono\n"
  1502. " inseriti nell'URI, l'intestazione di "
  1503. "autorizzazione verrà\n"
  1504. " sempre inviata a prescindere da questa opzione."
  1505. #: src/usage_text.h:518
  1506. msgid ""
  1507. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  1508. "can\n"
  1509. " find the file index using the --show-files "
  1510. "option.\n"
  1511. " PATH is a relative path to the path specified "
  1512. "in\n"
  1513. " --dir option. You can use this option "
  1514. "multiple\n"
  1515. " times."
  1516. msgstr ""
  1517. " -O, --index-out=INDICE=PERCORSO\n"
  1518. " Imposta il percorso del file avente "
  1519. "indice=INDICE.\n"
  1520. " Puoi trovare l'indice del file utilizzando "
  1521. "l'opzione --show-files.\n"
  1522. " Il PERCORSO è relativo al percorso indicato "
  1523. "tramite\n"
  1524. " l'opzione --dir. Puoi utilizzare l'opzione più "
  1525. "volte."
  1526. #: src/usage_text.h:524
  1527. msgid ""
  1528. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  1529. "the\n"
  1530. " remote file is available and doesn't download\n"
  1531. " data. This option has effect on HTTP/FTP "
  1532. "download.\n"
  1533. " BitTorrent downloads are canceled if true is\n"
  1534. " specified."
  1535. msgstr ""
  1536. " --dry-run[=true|false] Se si indica true, aria2 controlla solo\n"
  1537. " che il file remoto sia disponibile, ma non "
  1538. "scarica dati.\n"
  1539. " Questa opzione ha effetto solo sugli "
  1540. "scaricamenti HTTP/FTP.\n"
  1541. " Gli scaricamenti BitTorrent vengono annullati "
  1542. "se si indica true."
  1543. #: src/usage_text.h:530
  1544. msgid ""
  1545. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1546. " requests. This completely overrides interval "
  1547. "value\n"
  1548. " and aria2 just uses this value and ignores "
  1549. "the\n"
  1550. " min interval and interval value in the "
  1551. "response of\n"
  1552. " tracker. If 0 is set, aria2 determines "
  1553. "interval\n"
  1554. " based on the response of tracker and the "
  1555. "download\n"
  1556. " progress."
  1557. msgstr ""
  1558. " --bt-tracker-interval=SEC\n"
  1559. " Imposta il numero di secondi tra le richieste\n"
  1560. " al tracker. Questo ha precedenza rispetto ai "
  1561. "valori\n"
  1562. " di intervallo inviati dal tracker. Se si "
  1563. "indica 0, aria2\n"
  1564. " determina l'intervallo sulla base della "
  1565. "risposta del\n"
  1566. " tracker e del progresso di scaricamento."
  1567. #: src/usage_text.h:538
  1568. msgid ""
  1569. " --on-download-complete=COMMAND Set the command to be executed when "
  1570. "download\n"
  1571. " completes.\n"
  1572. " See --on-download-start option for the\n"
  1573. " requirement of COMMAND.\n"
  1574. " See also --on-download-stop option."
  1575. msgstr ""
  1576. " --on-download-complete=COMANDO\n"
  1577. " Imposta il comando da eseguire quando\n"
  1578. " il download è completo. Vedere l'opzione\n"
  1579. " --on-download-start per la sintassi del "
  1580. "COMANDO.\n"
  1581. " Vedere anche l'opzione --on-download-stop."
  1582. #: src/usage_text.h:544
  1583. msgid ""
  1584. " --on-download-start=COMMAND Set the command to be executed when download\n"
  1585. " starts up. COMMAND must take just one argument "
  1586. "and\n"
  1587. " GID is passed to COMMAND as a first argument."
  1588. msgstr ""
  1589. " --on-download-start=COMANDO\n"
  1590. " Imposta il comando da eseguire quando\n"
  1591. " il download comincia. COMANDO deve essere "
  1592. "seguito\n"
  1593. " da un solo argomento e il GID viene passato a "
  1594. "COMANDO\n"
  1595. " come primo argomento."
  1596. #: src/usage_text.h:548
  1597. msgid ""
  1598. " --on-download-error=COMMAND Set the command to be executed when download\n"
  1599. " aborts due to error.\n"
  1600. " See --on-download-start option for the\n"
  1601. " requirement of COMMAND.\n"
  1602. " See also --on-download-stop option."
  1603. msgstr ""
  1604. " --on-download-error=COMANDO\n"
  1605. " Imposta il comando da eseguire quando\n"
  1606. " il download si interrompe a causa di un "
  1607. "errore.\n"
  1608. " Vedere l'opzione --on-download-start per la\n"
  1609. " sintassi del COMANDO.\n"
  1610. " Vedere anche l'opzione --on-download-stop."
  1611. #: src/usage_text.h:554
  1612. msgid ""
  1613. " --on-download-stop=COMMAND Set the command to be executed when download\n"
  1614. " stops. You can override the command to be "
  1615. "executed\n"
  1616. " for particular download result using\n"
  1617. " --on-download-complete and --on-download-"
  1618. "error. If\n"
  1619. " they are specified, command specified in this\n"
  1620. " option is not executed.\n"
  1621. " See --on-download-start option for the\n"
  1622. " requirement of COMMAND."
  1623. msgstr ""
  1624. " --on-download-stop=COMANDO\n"
  1625. " Imposta il comando da eseguire quando\n"
  1626. " il download si interrompe. Si può anche "
  1627. "indicare un comando\n"
  1628. " da eseguire in casi particolari tramite le "
  1629. "opzioni\n"
  1630. " --on-download-complete e --on-download-error. "
  1631. "Se queste\n"
  1632. " ultime sono presenti, il COMANDO associato a "
  1633. "questa opzione\n"
  1634. " non verrà eseguito.\n"
  1635. " Vedere l'opzione --on-download-start per i "
  1636. "requisiti\n"
  1637. " del COMANDO."
  1638. #: src/usage_text.h:563
  1639. msgid ""
  1640. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1641. "0 in\n"
  1642. " consecutive SEC seconds. If 0 is given, this\n"
  1643. " feature is disabled."
  1644. msgstr ""
  1645. " --bt-stop-timeout=SEC Ferma i download di BitTorrent se la velocità "
  1646. "di scaricamento è 0 in\n"
  1647. " SEC secondi consecutivi. Se è impostato lo 0, "
  1648. "questa\n"
  1649. " configurazione è disabilitata."
  1650. #: src/usage_text.h:567
  1651. msgid ""
  1652. " --xml-rpc-listen-all[=true|false] Listen incoming XML-RPC requests on all\n"
  1653. " network interfaces. If false is given, listen "
  1654. "only\n"
  1655. " on local loopback interface."
  1656. msgstr ""
  1657. " --xml-rpc-ascolta-tutto[=vero|falso] Ascolta le richieste XML-RPC in arrivo "
  1658. "su\n"
  1659. " tutte le interfacce di rete. Se è impostato su "
  1660. "falso, ascolta solo\n"
  1661. " sull'interfaccia di loopback locale."
  1662. #: src/version_usage.cc:57
  1663. msgid " version "
  1664. msgstr " versione "
  1665. #: src/version_usage.cc:80
  1666. #, c-format
  1667. msgid "Report bugs to %s"
  1668. msgstr "Segnala i bachi (bug) a %s"
  1669. #: src/version_usage.cc:85
  1670. msgid "Usage: aria2c [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  1671. msgstr "Utilizzo: aria2c [OPZIONI] [URL | FILE_TORRENT | FILE_METALINK]..."
  1672. #: src/version_usage.cc:92
  1673. msgid "Printing all options."
  1674. msgstr "Sono visualizzate tutte le opzioni."
  1675. #: src/version_usage.cc:94
  1676. #, c-format
  1677. msgid "Printing options tagged with '%s'."
  1678. msgstr "Sono visualizzate le opzioni relative a '%s'."
  1679. #: src/version_usage.cc:98
  1680. #, c-format
  1681. msgid "See -h option to know other command-line options(%s)."
  1682. msgstr "Vedi l'opzione -h per le altre opzioni a riga di comando(%s)."
  1683. #: src/version_usage.cc:103 src/version_usage.cc:115
  1684. msgid "Options:"
  1685. msgstr "Opzioni:"
  1686. #: src/version_usage.cc:112
  1687. #, c-format
  1688. msgid "Printing options whose name includes '%s'."
  1689. msgstr "Sono visualizzate le opzioni il cui nome include '%s'."
  1690. #: src/version_usage.cc:120
  1691. #, c-format
  1692. msgid "No option matching with '%s'."
  1693. msgstr "Nessuna opzione corrispondente con '%s'."
  1694. #: src/version_usage.cc:128
  1695. msgid ""
  1696. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  1697. " point to the same file or downloading will fail."
  1698. msgstr ""
  1699. " Puoi specificare molte URL. A meno che sia specificata l'opzione -Z, tutte "
  1700. "le URL\n"
  1701. " devono puntare allo stesso file, altrimenti lo scaricamento fallirà."
  1702. #: src/version_usage.cc:130
  1703. msgid ""
  1704. " You can also specify arbitrary number of torrent files and metalink files\n"
  1705. " stored in a local drive. Please note that they are always treated as a\n"
  1706. " separate download."
  1707. msgstr ""
  1708. " Si può anche indicare un numero qualsiasi di file torrent e metalink\n"
  1709. " contenuti su un disco locale. Ciascuno verrà trattato separatamente."
  1710. #: src/version_usage.cc:135
  1711. msgid ""
  1712. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  1713. " download a file from both torrent swarm and http/ftp server at the same "
  1714. "time,\n"
  1715. " while the data from http/ftp are uploaded to the torrent swarm. For single "
  1716. "file\n"
  1717. " torrents, URL can be a complete URL pointing to the resource or if URL "
  1718. "ends\n"
  1719. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1720. "and\n"
  1721. " 'path' in torrent are added to form a URL for each file."
  1722. msgstr ""
  1723. " Puoi specificare entrambi i file torrent con -T opzioni e URL. In questo "
  1724. "modo,\n"
  1725. " scarichi un file da entrambi gli sciami torrent e server http/ftp allo "
  1726. "stesso tempo,\n"
  1727. " mentre i dati da http/ftp sono caricati dallo sciame torrent. Per i "
  1728. "singoli file\n"
  1729. " torrents, URL può essere un URL completo che punta alla risorsa o se l'URL "
  1730. "termina\n"
  1731. " con '/', il 'nome' nel file torrent è aggiunto. Per i multi-file torrents, "
  1732. "'nome' e\n"
  1733. " 'percorso' in torrent sono aggiunti a formare un URL per ogni file."
  1734. #: src/version_usage.cc:142
  1735. msgid ""
  1736. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  1737. " contains \"&\" or any characters that have special meaning in shell."
  1738. msgstr ""
  1739. " Accertati che l'URL sia racchiuso tra apici singoli(') o doppi(\") se\n"
  1740. " contiene \"&\" o altri caratteri riservati per la shell."
  1741. #: src/version_usage.cc:146
  1742. msgid "Refer to man page for more information."
  1743. msgstr "Fare riferimento alla pagina di manuale per ulteriori informazioni"
  1744. #: src/message.h:40
  1745. #, c-format
  1746. msgid "CUID#%d - The download for one segment completed successfully."
  1747. msgstr ""
  1748. "IDUC#%d - Lo scaricamento di un segmento è stato completato con successo."
  1749. #: src/message.h:41
  1750. #, c-format
  1751. msgid "CUID#%d - No segment available."
  1752. msgstr "IDUC#%d - Nessun segmento disponibile."
  1753. #: src/message.h:42
  1754. #, c-format
  1755. msgid "CUID#%d - Connecting to %s:%d"
  1756. msgstr "IDUC#%d - Connessione a %s:%d"
  1757. #: src/message.h:43
  1758. #, c-format
  1759. msgid ""
  1760. "CUID#%d - The segment changed. We send the request again with new Range "
  1761. "header."
  1762. msgstr ""
  1763. "IDUC#%d - Il segmento è cambiato. Invio nuovamente la richiesta con la nuova "
  1764. "intestazione di intervallo."
  1765. #: src/message.h:44
  1766. #, c-format
  1767. msgid "CUID#%d - Redirecting to %s"
  1768. msgstr "IDUC#%d - Redirezione a %s"
  1769. #: src/message.h:45
  1770. #, c-format
  1771. msgid ""
  1772. "CUID#%d - Requesting:\n"
  1773. "%s"
  1774. msgstr ""
  1775. "IDUC#%d - Richiedendo:\n"
  1776. "%s"
  1777. #: src/message.h:46
  1778. #, c-format
  1779. msgid ""
  1780. "CUID#%d - Response received:\n"
  1781. "%s"
  1782. msgstr ""
  1783. "IDUC#%d - Ricevuta risposta:\n"
  1784. "%s"
  1785. #: src/message.h:47
  1786. #, c-format
  1787. msgid "CUID#%d - Download aborted. URI=%s"
  1788. msgstr "IDUC#%d - Scaricamento annullato. URI=%s"
  1789. #: src/message.h:48
  1790. #, c-format
  1791. msgid "CUID#%d - Restarting the download. URI=%s"
  1792. msgstr "IDUC#%d - Rilanciato scaricamento. URI=%s"
  1793. #: src/message.h:49
  1794. #, c-format
  1795. msgid "CUID#%d - Download aborted."
  1796. msgstr "IDUC#%d - Download annullato."
  1797. #: src/message.h:50
  1798. #, c-format
  1799. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  1800. msgstr "IDUC#%d - provato %d volte, ma senza successo. Scaricamento annullato."
  1801. #: src/message.h:56
  1802. #, c-format
  1803. msgid "CUID#%d - we got new piece. index=%d"
  1804. msgstr "IDUC#%d - ottenuto una nuova parte. indice=%d"
  1805. #: src/message.h:57
  1806. #, c-format
  1807. msgid "CUID#%d - we got wrong piece. index=%d"
  1808. msgstr "IDUC#%d - abbiamo ottenuto una parte errata. index=%d"
  1809. #: src/message.h:58
  1810. #, c-format
  1811. msgid "CUID#%d - Download not complete: %s"
  1812. msgstr "IDUC#%d - Scaricamento non completato: %s"
  1813. #: src/message.h:59
  1814. #, c-format
  1815. msgid "#%d - Download has already completed: %s"
  1816. msgstr "%#d - Lo scaricamento è già stato completato: %s"
  1817. #: src/message.h:60
  1818. #, c-format
  1819. msgid "CUID#%d - Good checksum: %s"
  1820. msgstr "IDUC#%d - Checksum corretto: %s"
  1821. #: src/message.h:61
  1822. #, c-format
  1823. msgid "CUID#%d - Bad checksum: %s"
  1824. msgstr "IDUC#%d - Checksum errato: %s"
  1825. #: src/message.h:62
  1826. #, c-format
  1827. msgid "CUID#%d - Resolving hostname %s"
  1828. msgstr "IDUC#%d - Risoluzione del nome di host %s"
  1829. #: src/message.h:63
  1830. #, c-format
  1831. msgid "CUID#%d - Name resolution complete: %s -> %s"
  1832. msgstr "IDUC#%d - La risoluzione del nome è stata completata: %s -> %s"
  1833. #: src/message.h:64
  1834. #, c-format
  1835. msgid "CUID#%d - Name resolution for %s failed:%s"
  1836. msgstr "IDUC#%d - La risoluzione del nome %s è fallita:%s"
  1837. #: src/message.h:65
  1838. #, c-format
  1839. msgid "CUID#%d - DNS cache hit: %s -> %s"
  1840. msgstr "IDUC#%d - rilevata cache DNS: %s -> %s"
  1841. #: src/message.h:66
  1842. #, c-format
  1843. msgid "CUID#%d - Abort requested."
  1844. msgstr "IDUC#%d - Richiesto annullamento."
  1845. #: src/message.h:67
  1846. #, c-format
  1847. msgid "CUID#%d - Connecting to the peer %s"
  1848. msgstr "IDUC#%d - Connessione al peer %s"
  1849. #: src/message.h:68
  1850. #, c-format
  1851. msgid ""
  1852. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  1853. "blockIndex=%d"
  1854. msgstr ""
  1855. "IDUC#%d - Parte ricevuta. indice=%d, inizio=%d, lunghezza=%d, offset=%llu, "
  1856. "indiceDelBlocco=%d"
  1857. #: src/message.h:69
  1858. #, c-format
  1859. msgid "CUID#%d - Piece bitfield %s"
  1860. msgstr "IDUC#%d - Bit della parte %s"
  1861. #: src/message.h:70
  1862. #, c-format
  1863. msgid ""
  1864. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  1865. "index=%d, begin=%d, length=%d"
  1866. msgstr ""
  1867. "IDUC#%d - Scarta il messaggio della parte in coda, causa peer intasato. "
  1868. "indice=%d, inizio=%d, lunghezza=%d"
  1869. #: src/message.h:71
  1870. #, c-format
  1871. msgid ""
  1872. "CUID#%d - Reject piece message in queue because cancel message received. "
  1873. "index=%d, begin=%d, length=%d"
  1874. msgstr ""
  1875. "IDUC#%d - Rifiutata parte di un messaggio in coda in quanto è stato ricevuto "
  1876. "un messaggio di cancellazione. indice=%d, inizio=%d, lunghezza=%d"
  1877. #: src/message.h:72
  1878. #, c-format
  1879. msgid "CUID#%d - Exception caught while validating file integrity."
  1880. msgstr ""
  1881. "IDUC#%d - È stata rilevata un'eccezione durante la validazione "
  1882. "dell'integrità del file."
  1883. #: src/message.h:73
  1884. #, c-format
  1885. msgid "CUID#%d - Interested in the peer"
  1886. msgstr "IDUC#%d - Interessato al peer"
  1887. #: src/message.h:74
  1888. #, c-format
  1889. msgid "CUID#%d - Not interested in the peer"
  1890. msgstr "IDUC#%d - Non interessato al peer"
  1891. #: src/message.h:75
  1892. #, c-format
  1893. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  1894. msgstr ""
  1895. "IDUC#%d - Cancellazione richiesta per lo slot con indice=%d, indiceDelBlocco="
  1896. "%d"
  1897. #: src/message.h:76
  1898. #, c-format
  1899. msgid ""
  1900. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  1901. "got choked."
  1902. msgstr ""
  1903. "IDUC#%d - Rimozione dello slot di richiesta indice=%d, indiceBlocco=%d "
  1904. "perché localhost si è intasato."
  1905. #: src/message.h:77
  1906. #, c-format
  1907. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  1908. msgstr ""
  1909. "IDUC#%d - Cancellazione richiesta per lo slot con indiceDelBlocco=%d per via "
  1910. "di un time out"
  1911. #: src/message.h:78
  1912. #, c-format
  1913. msgid ""
  1914. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  1915. "acquired."
  1916. msgstr ""
  1917. "IDUC#%d - Annullamento richiesta slot indiceBlocco=%d perché il blocco è "
  1918. "stato ottenuto."
  1919. #: src/message.h:79
  1920. #, c-format
  1921. msgid "CUID#%d - Fast extension enabled."
  1922. msgstr "IDUC#%d - Abilitata estensione veloce."
  1923. #: src/message.h:80
  1924. #, c-format
  1925. msgid "CUID#%d - Extended Messaging enabled."
  1926. msgstr "IDUC#%d - Abilitata la messaggistica estesa."
  1927. #: src/message.h:81
  1928. #, c-format
  1929. msgid "CUID#%d - Exception caught while allocating file space."
  1930. msgstr ""
  1931. "IDUC#%d - Rilevata eccezione durante l'allocazione dello spazio per il file."
  1932. #: src/message.h:82
  1933. #, c-format
  1934. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1935. msgstr ""
  1936. "IDUC#%d - È stato trovato Content-Disposition. Uso %s come nome di file"
  1937. #: src/message.h:83
  1938. #, c-format
  1939. msgid "CUID#%d - Peer %s:%d banned."
  1940. msgstr "IDUC#%d - Il peer %s:%d è stato bannato."
  1941. #: src/message.h:84
  1942. #, c-format
  1943. msgid "CUID#%d - Using port %d for accepting new connections"
  1944. msgstr "IDUC#%d - Utilizzo porta %d per accettare nuove connessioni"
  1945. #: src/message.h:85
  1946. #, c-format
  1947. msgid "CUID#%d - An error occurred while binding port=%d"
  1948. msgstr ""
  1949. "IDUC#%d - È stato riscontrato un errore durante il binding alla porta=%d"
  1950. #: src/message.h:86
  1951. #, c-format
  1952. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1953. msgstr "IDUC#%d - Connessione in entrata, aggiunta di un nuovo comando IDUC#%d"
  1954. #: src/message.h:87
  1955. #, c-format
  1956. msgid "CUID#%d - Error in accepting connection"
  1957. msgstr ""
  1958. "IDUC#%d - È stato riscontrato un errore nell'accettazione della connessione"
  1959. #: src/message.h:88
  1960. #, c-format
  1961. msgid "CUID#%d - Error occurred while processing tracker response."
  1962. msgstr ""
  1963. "IDUC#%d - È stato riscontrato un errore durante la gestione della risposta "
  1964. "del tracker."
  1965. #: src/message.h:89
  1966. #, c-format
  1967. msgid "CUID#%d - Cannot create tracker request."
  1968. msgstr "IDUC#%d - Non riesco a creare la richiesta per il tracker."
  1969. #: src/message.h:90
  1970. #, c-format
  1971. msgid "CUID#%d - Creating new tracker request command #%d"
  1972. msgstr ""
  1973. "IDUC#%d - Creazione di un nuovo comando di richiesta per il tracker #%d"
  1974. #: src/message.h:91
  1975. #, c-format
  1976. msgid "CUID#%d - The peer is DHT-enabled."
  1977. msgstr "IDUC#%d - Il peer è abilitato al DHT."
  1978. #: src/message.h:95
  1979. #, c-format
  1980. msgid "Unrecognized URI or unsupported protocol: %s"
  1981. msgstr "URI non riconosciuta o protocollo non supportato: %s"
  1982. #: src/message.h:96
  1983. #, c-format
  1984. msgid "Tracker returned warning message: %s"
  1985. msgstr "Il tracker ha riportato un messaggio di attenzione:%s"
  1986. #: src/message.h:97
  1987. #, c-format
  1988. msgid "The segment file %s exists."
  1989. msgstr "Il file relativo al segmento %s esiste."
  1990. #: src/message.h:98
  1991. #, c-format
  1992. msgid "The segment file %s does not exist."
  1993. msgstr "Il file relativo al segmento %s non esiste."
  1994. #: src/message.h:99
  1995. #, c-format
  1996. msgid "Saving the segment file %s"
  1997. msgstr "Salvataggio del file relativo al segmento %s"
  1998. #: src/message.h:100
  1999. msgid "The segment file was saved successfully."
  2000. msgstr "Il file relativo al segmento è stato salvato con successo."
  2001. #: src/message.h:101
  2002. #, c-format
  2003. msgid "Loading the segment file %s."
  2004. msgstr "Caricamento del file relativo al segmento %s."
  2005. #: src/message.h:102
  2006. msgid "The segment file was loaded successfully."
  2007. msgstr "Il file relativo al segmento è stato caricato con successo."
  2008. #: src/message.h:103
  2009. msgid "No URI to download. Download aborted."
  2010. msgstr "Nessuna URI da scaricare.Scaricamento annullato."
  2011. #: src/message.h:104
  2012. #, c-format
  2013. msgid ""
  2014. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  2015. "canceled in order to prevent your file from being truncated to 0. If you are "
  2016. "sure to download the file all over again, then delete it or add --allow-"
  2017. "overwrite=true option and restart aria2."
  2018. msgstr ""
  2019. "Il file %s esiste, ma un file di controllo (*.aria2) non esiste. Lo "
  2020. "scaricamento è stato annullato per evitare che il tuo file venisse troncato "
  2021. "a 0. Se sei sicuro di riscaricare il file da capo, allora cancellalo o "
  2022. "aggiungi l'opzione --allow-overwrite=true e fai ripartire aria2."
  2023. #: src/message.h:105
  2024. #, c-format
  2025. msgid "Allocating file %s, %s bytes"
  2026. msgstr "Allocazione del file %s,%s bytes"
  2027. #: src/message.h:106
  2028. msgid "File not found"
  2029. msgstr "FIle non trovato"
  2030. #: src/message.h:107
  2031. msgid "Not a directory"
  2032. msgstr "Non è una directory"
  2033. #: src/message.h:108
  2034. #, c-format
  2035. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  2036. msgstr "Checksum insufficienti. lunghezzaChecksum=%d, numChecksum=%d"
  2037. #: src/message.h:109
  2038. #, c-format
  2039. msgid "Writing file %s"
  2040. msgstr "Scrittura file %s"
  2041. #: src/message.h:110
  2042. msgid "No peer list received."
  2043. msgstr "Non è stata ricevuta la lista dei peer."
  2044. #: src/message.h:111
  2045. #, c-format
  2046. msgid "Adding peer %s:%d"
  2047. msgstr "Aggiunta peer %s:%d"
  2048. #: src/message.h:112
  2049. #, c-format
  2050. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  2051. msgstr "Rimozione parte usata indice=%d, tassoCompletamento(%%)=%d<=%d"
  2052. #: src/message.h:113
  2053. msgid "Download of selected files was complete."
  2054. msgstr "Scaricamento completato dei file selezionati."
  2055. #: src/message.h:114
  2056. msgid "The download was complete."
  2057. msgstr "Scaricamento completato"
  2058. #: src/message.h:115
  2059. #, c-format
  2060. msgid "Removed %d have entries."
  2061. msgstr "Rimosse %d voci di tipo 'have'."
  2062. #: src/message.h:116
  2063. #, c-format
  2064. msgid "Validating file %s"
  2065. msgstr "Validazione del file %s"
  2066. #: src/message.h:117
  2067. #, c-format
  2068. msgid "%d seconds to allocate %s byte(s)"
  2069. msgstr "%d secondi per allocare %s byte(s)"
  2070. #: src/message.h:118
  2071. #, c-format
  2072. msgid "Dispatching FileAllocationCommand for CUID#%d."
  2073. msgstr "Invio ComandoAllocazioneFile per l'IDUC#%d."
  2074. #: src/message.h:119
  2075. #, c-format
  2076. msgid "Metalink: Queueing %s for download."
  2077. msgstr "Metalink: Accodando %s per lo scaricamento."
  2078. #: src/message.h:120
  2079. #, c-format
  2080. msgid "Download complete: %s"
  2081. msgstr "Scaricamento completato: %s"
  2082. #: src/message.h:121
  2083. msgid "Seeding is over."
  2084. msgstr "Seeding terminato."
  2085. #: src/message.h:122
  2086. #, c-format
  2087. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  2088. msgstr ""
  2089. "IDUC#%d cancella l'indice di segmento=%d. IDUC#%d lo gestisce al suo posto."
  2090. #: src/message.h:123
  2091. msgid "No chunk to verify."
  2092. msgstr "Nessuna parte da verificare."
  2093. #: src/message.h:124
  2094. #, c-format
  2095. msgid "Good chunk checksum. hash=%s"
  2096. msgstr "Passato il controllo degli errori. hash=%s"
  2097. #: src/message.h:125
  2098. #, c-format
  2099. msgid "Failed to load cookies from %s"
  2100. msgstr "Non è stato possibile caricare i cookies da %s"
  2101. #: src/message.h:126
  2102. #, c-format
  2103. msgid ""
  2104. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  2105. "support disabled."
  2106. msgstr ""
  2107. "il file .netrc %s non ha i permessi corretti. Dovrebbe essere 600. Il "
  2108. "supporto per il file .netrc è stato disabilitato."
  2109. #: src/message.h:127
  2110. msgid "Logging started."
  2111. msgstr "Iniziato tracciamento delle operazioni."
  2112. #: src/message.h:128
  2113. msgid "Specify at least one URL."
  2114. msgstr "Specifica almeno una URL."
  2115. #: src/message.h:129
  2116. msgid "daemon failed."
  2117. msgstr "demone fallito."
  2118. #: src/message.h:130
  2119. #, c-format
  2120. msgid "Verification finished successfully. file=%s"
  2121. msgstr "La verifica è stata completata con successo. file=%s"
  2122. #: src/message.h:131
  2123. #, c-format
  2124. msgid "Checksum error detected. file=%s"
  2125. msgstr "Trovato errore nel checksum. file=%s"
  2126. #: src/message.h:132
  2127. #, c-format
  2128. msgid "Incomplete range specified. %s"
  2129. msgstr "L'intervallo specificato è incompleto. %s"
  2130. #: src/message.h:133
  2131. #, c-format
  2132. msgid "Failed to convert string into value: %s"
  2133. msgstr "Non è stato possibile convertire la stringa in un valore: %s"
  2134. #: src/message.h:134
  2135. msgid "Resource not found"
  2136. msgstr "Risorsa non trovata"
  2137. #: src/message.h:135
  2138. #, c-format
  2139. msgid "File already exists. Renamed to %s."
  2140. msgstr "File giò esistente. Rinominato in %s."
  2141. #: src/message.h:136
  2142. msgid "Cannot parse metalink XML file. XML may be malformed."
  2143. msgstr ""
  2144. "Impossibile parsificare il file XML metalink. Il formato XML potrebbe essere "
  2145. "errato."
  2146. #: src/message.h:137
  2147. #, c-format
  2148. msgid "Too small payload size for %s, size=%d."
  2149. msgstr "Dimensione payload per %s troppo piccola, dimensione=%d."
  2150. #: src/message.h:138
  2151. #, c-format
  2152. msgid ""
  2153. "Removed the defunct control file %s because the download file %s doesn't "
  2154. "exist."
  2155. msgstr "Rimosso il file di controllo zombie %s perchè il file %s non esiste."
  2156. #: src/message.h:139
  2157. #, c-format
  2158. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  2159. msgstr "Il tuo indice di condivisione è: %.1f, uploaded/downloaded=%sB/%sB"
  2160. #: src/message.h:140
  2161. #, c-format
  2162. msgid "Missing %s in torrent metainfo."
  2163. msgstr "Manca %s nelle metainfo del torrent."
  2164. #: src/message.h:141
  2165. msgid "Tracker returned null data."
  2166. msgstr "Il tracker ha risposto con un dato NULL ."
  2167. #: src/message.h:142
  2168. msgid "Windows socket library initialization failed"
  2169. msgstr "Fallita inizializzazione della libreria socket Windows"
  2170. #: src/message.h:143
  2171. #, c-format
  2172. msgid "%d second(s) has passed. Stopping application."
  2173. msgstr "sono passati %d secondi. Applicazione terminata."
  2174. #: src/message.h:144
  2175. #, c-format
  2176. msgid ""
  2177. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  2178. msgstr "Firma salvata come %s. Nota bene che aria2 non verifica le firme."
  2179. #: src/message.h:146
  2180. #, c-format
  2181. msgid "Saving signature as %s failed. Maybe file already exists."
  2182. msgstr "Fallito salvataggio firma come %s. Il file potrebbe esistere già."
  2183. #: src/message.h:149
  2184. #, c-format
  2185. msgid "Failed to open ServerStat file %s for read."
  2186. msgstr "Apertura in lettura del file StatServer %s fallita."
  2187. #: src/message.h:150
  2188. #, c-format
  2189. msgid "ServerStat file %s loaded successfully."
  2190. msgstr "File StatServer %s caricato con successo."
  2191. #: src/message.h:151
  2192. #, c-format
  2193. msgid "Failed to read ServerStat from %s."
  2194. msgstr "Lettura delle StatServer da %s fallita."
  2195. #: src/message.h:154
  2196. #, c-format
  2197. msgid "Failed to open ServerStat file %s for write."
  2198. msgstr "Apertura in scrittura del file StatServer %s fallita."
  2199. #: src/message.h:155
  2200. #, c-format
  2201. msgid "ServerStat file %s saved successfully."
  2202. msgstr "File StatServer %s salvato con successo."
  2203. #: src/message.h:156
  2204. #, c-format
  2205. msgid "Failed to write ServerStat to %s."
  2206. msgstr "Scrittura delle StatServer su %s fallita."
  2207. #: src/message.h:159
  2208. #, c-format
  2209. msgid "Failed to establish connection, cause: %s"
  2210. msgstr "Stabilimento della connessione fallito, causa: %s"
  2211. #: src/message.h:160
  2212. #, c-format
  2213. msgid "Network problem has occurred. cause:%s"
  2214. msgstr "Problema di rete. Causa:%s"
  2215. #: src/message.h:162
  2216. #, c-format
  2217. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  2218. msgstr "Caricamento certificati fidati CA da %s fallito. Causa: %s"
  2219. #: src/message.h:164
  2220. #, c-format
  2221. msgid "Certificate verification failed. Cause: %s"
  2222. msgstr "Verifica certificato fallita. Causa: %s"
  2223. #: src/message.h:165
  2224. msgid "No certificate found."
  2225. msgstr "Non è stato trovato alcun certificato."
  2226. #: src/message.h:166
  2227. msgid "Hostname not match."
  2228. msgstr "Il nome di host non corrisponde."
  2229. #: src/message.h:167
  2230. msgid "No files to download."
  2231. msgstr "Nessun file da scaricare."
  2232. #: src/message.h:169
  2233. msgid ""
  2234. "You may encounter the certificate verification error with HTTPS server. See "
  2235. "--ca-certificate and --check-certificate option."
  2236. msgstr ""
  2237. "Si potrebbe verficare un errore di verifica di certificato con il server "
  2238. "HTTPS. Vedi le opzioni --ca-certificate e --check-certificate."
  2239. #: src/message.h:171
  2240. #, c-format
  2241. msgid "Printing the contents of file '%s'..."
  2242. msgstr "Visualizzazione contenuti del file '%s'..."
  2243. #: src/message.h:172
  2244. msgid "This file is neither Torrent nor Metalink file. Skipping."
  2245. msgstr "Questo file non è né un file Torrent né Metalink. Saltato."
  2246. #: src/message.h:177
  2247. #, c-format
  2248. msgid "Is '%s' a file?"
  2249. msgstr "E' '%s' un file?"
  2250. #: src/message.h:179
  2251. msgid "Timeout."
  2252. msgstr "Tempo scaduto."
  2253. #: src/message.h:180
  2254. msgid "Invalid chunk size."
  2255. msgstr "Dimensione della parte invalida."
  2256. #: src/message.h:181
  2257. #, c-format
  2258. msgid "Too large chunk. size=%d"
  2259. msgstr "Parte troppo grande. dimensione=%d"
  2260. #: src/message.h:182
  2261. msgid "Invalid header."
  2262. msgstr "Intestazione non corretta."
  2263. #: src/message.h:183
  2264. msgid "Invalid response."
  2265. msgstr "Risposta non corretta."
  2266. #: src/message.h:184
  2267. msgid "No header found."
  2268. msgstr "Nessuna intestazione trovata."
  2269. #: src/message.h:185
  2270. msgid "No status header."
  2271. msgstr "Nessuna intestazione relativa allo stato."
  2272. #: src/message.h:186
  2273. msgid "Proxy connection failed."
  2274. msgstr "La connessione al proxy è fallita."
  2275. #: src/message.h:187
  2276. msgid "Connection failed."
  2277. msgstr "Connessione fallita."
  2278. #: src/message.h:188
  2279. #, c-format
  2280. msgid ""
  2281. "The requested filename and the previously registered one are not same. "
  2282. "Expected:%s Actual:%s"
  2283. msgstr ""
  2284. "Il nome di file richiesto e quello precedentemente registrato non sono lo "
  2285. "stesso. Atteso:%s Attuale:%s"
  2286. #: src/message.h:189
  2287. #, c-format
  2288. msgid "The response status is not successful. status=%d"
  2289. msgstr "Lo stato della risposta è non riuscito. stato=%d"
  2290. #: src/message.h:190
  2291. #, c-format
  2292. msgid "Too large file size. size=%s"
  2293. msgstr "File troppo grande. dimensione=%s"
  2294. #: src/message.h:191
  2295. #, c-format
  2296. msgid "Transfer encoding %s is not supported."
  2297. msgstr "La codifica del trasferimento %s non è supportata."
  2298. #: src/message.h:192
  2299. #, c-format
  2300. msgid "SSL initialization failed: %s"
  2301. msgstr "Inizializzazione SSL fallita: %s"
  2302. #: src/message.h:193
  2303. msgid "SSL I/O error"
  2304. msgstr "Errore nell'I/O SSL"
  2305. #: src/message.h:194
  2306. msgid "SSL protocol error"
  2307. msgstr "Errore col protocollo SSL"
  2308. #: src/message.h:195
  2309. #, c-format
  2310. msgid "SSL unknown error %d"
  2311. msgstr "Errore sconosciuto in SSL %d"
  2312. #: src/message.h:196
  2313. #, c-format
  2314. msgid "SSL initialization failed: OpenSSL connect error %d"
  2315. msgstr "Inizializzazione SSL fallita: errore di connessione OpenSSL %d"
  2316. #: src/message.h:197
  2317. #, c-format
  2318. msgid "Size mismatch Expected:%s Actual:%s"
  2319. msgstr "Errore dovuto due dimensioni differenti: Atteso:%s Attuale:%s"
  2320. #: src/message.h:198
  2321. msgid "Authorization failed."
  2322. msgstr "Autenticazione fallita."
  2323. #: src/message.h:199
  2324. msgid "Got EOF from the server."
  2325. msgstr "Ricevuto EOF dal server."
  2326. #: src/message.h:200
  2327. msgid "Got EOF from peer."
  2328. msgstr "Ricevuto EOF dal peer."
  2329. #: src/message.h:201
  2330. msgid "Malformed meta info."
  2331. msgstr "Metainformazioni non correttamente codificate."
  2332. #: src/message.h:203
  2333. #, c-format
  2334. msgid "Failed to open the file %s, cause: %s"
  2335. msgstr "Impossibile aprire il file %s, causa: %s"
  2336. #: src/message.h:204
  2337. #, c-format
  2338. msgid "Failed to write into the file %s, cause: %s"
  2339. msgstr "Scrittura fallita sul file %s, causa: %s"
  2340. #: src/message.h:205
  2341. #, c-format
  2342. msgid "Failed to read from the file %s, cause: %s"
  2343. msgstr "Lettura fallita dal file %s, causa: %s"
  2344. #: src/message.h:206
  2345. msgid "Failed to read data from disk."
  2346. msgstr "Fallita lettura dei dati dal disco."
  2347. #: src/message.h:207
  2348. #, c-format
  2349. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  2350. msgstr ""
  2351. "Il calcolo del digest SHA1 di una parte del file %s è fallito, causa: %s"
  2352. #: src/message.h:208
  2353. #, c-format
  2354. msgid "Failed to seek the file %s, cause: %s"
  2355. msgstr "È fallito lo spostamento all'interno del file %s, causa: %s"
  2356. #: src/message.h:209
  2357. #, c-format
  2358. msgid "The offset is out of range, offset=%s"
  2359. msgstr "Lo scostamento è fuori intervallo, scostamento=%s"
  2360. #: src/message.h:210
  2361. #, c-format
  2362. msgid "%s is not a directory."
  2363. msgstr "%s non è una directory."
  2364. #: src/message.h:211
  2365. #, c-format
  2366. msgid "Failed to make the directory %s, cause: %s"
  2367. msgstr "La creazione della directory %s è fallita, causa: %s"
  2368. #: src/message.h:212
  2369. #, c-format
  2370. msgid "Failed to open the segment file %s, cause: %s"
  2371. msgstr "Fallita l'apertura del file relativo al segmento %s, causa: %s"
  2372. #: src/message.h:213
  2373. #, c-format
  2374. msgid "Failed to write into the segment file %s, cause: %s"
  2375. msgstr "Fallita la scrittura sul file relativo al segmento %s, causa: %s"
  2376. #: src/message.h:214
  2377. #, c-format
  2378. msgid "Failed to read from the segment file %s, cause: %s"
  2379. msgstr "Fallita la lettura dal file relativo al segmento %s, causa: %s"
  2380. #: src/message.h:216
  2381. #, c-format
  2382. msgid "Failed to open a socket, cause: %s"
  2383. msgstr "Fallita l'apertura di un socket, causa: %s"
  2384. #: src/message.h:217
  2385. #, c-format
  2386. msgid "Failed to set a socket option, cause: %s"
  2387. msgstr "L'abilitazione di una opzione sul socket è fallita, causa: %s"
  2388. #: src/message.h:218
  2389. #, c-format
  2390. msgid "Failed to set a socket as blocking, cause: %s"
  2391. msgstr "Il settaggio di un socket come bloccante è fallita, causa: %s"
  2392. #: src/message.h:219
  2393. #, c-format
  2394. msgid "Failed to set a socket as non-blocking, cause: %s"
  2395. msgstr "Fallita l'impostazione di un socket a non-bloccante, causa: %s"
  2396. #: src/message.h:220
  2397. #, c-format
  2398. msgid "Failed to bind a socket, cause: %s"
  2399. msgstr "Il binding di un socket è fallito, causa: %s"
  2400. #: src/message.h:221
  2401. #, c-format
  2402. msgid "Failed to listen to a socket, cause: %s"
  2403. msgstr "Fallito l'ascolto su di un socket, causa: %s"
  2404. #: src/message.h:222
  2405. #, c-format
  2406. msgid "Failed to accept a peer connection, cause: %s"
  2407. msgstr "L'accettazione di una connessione da un peer è fallita, causa: %s"
  2408. #: src/message.h:223
  2409. #, c-format
  2410. msgid "Failed to get the name of socket, cause: %s"
  2411. msgstr "Il recupero del nome del socket è fallito, causa: %s"
  2412. #: src/message.h:224
  2413. #, c-format
  2414. msgid "Failed to get the name of connected peer, cause: %s"
  2415. msgstr "Il recupero del nome di un peer connesso è fallito, causa: %s"
  2416. #: src/message.h:225
  2417. #, c-format
  2418. msgid "Failed to resolve the hostname %s, cause: %s"
  2419. msgstr "La risoluzione del nome %s è fallita, causa :%s"
  2420. #: src/message.h:226
  2421. #, c-format
  2422. msgid "Failed to connect to the host %s, cause: %s"
  2423. msgstr "La connessione all'host %s è fallita, causa: %s"
  2424. #: src/message.h:227
  2425. #, c-format
  2426. msgid "Failed to check whether the socket is writable, cause: %s"
  2427. msgstr "Non sono riuscito a verificare che il socket sia scrivibile, causa: %s"
  2428. #: src/message.h:228
  2429. #, c-format
  2430. msgid "Failed to check whether the socket is readable, cause: %s"
  2431. msgstr "Non sono riuscito a verificare che il socket sia leggibile, causa: %s"
  2432. #: src/message.h:229
  2433. #, c-format
  2434. msgid "Failed to send data, cause: %s"
  2435. msgstr "Invio dati fallito, causa: %s"
  2436. #: src/message.h:230
  2437. #, c-format
  2438. msgid "Failed to receive data, cause: %s"
  2439. msgstr "Ricezione dati fallita, causa: %s"
  2440. #: src/message.h:231
  2441. #, c-format
  2442. msgid "Failed to peek data, cause: %s"
  2443. msgstr "Reperimento dati fallito, causa: %s"
  2444. #: src/message.h:232
  2445. #, c-format
  2446. msgid "Unknown socket error %d (0x%x)"
  2447. msgstr "Errore sconosciuto del socket %d (0x%x)"
  2448. #: src/message.h:233
  2449. #, c-format
  2450. msgid "File %s exists, but %s does not exist."
  2451. msgstr "Il file %s esiste, ma %s non esiste."
  2452. #: src/message.h:234
  2453. #, c-format
  2454. msgid "Invalid payload size for %s, size=%d. It should be %d."
  2455. msgstr ""
  2456. "Errata dimensione del payload per %s, dimensione=%d. Avrebbe dovuto essere %d"
  2457. #: src/message.h:235
  2458. #, c-format
  2459. msgid "Invalid ID=%d for %s. It should be %d."
  2460. msgstr "ID=%d errato per %s. Dovrebbe essere %d."
  2461. #: src/message.h:236
  2462. #, c-format
  2463. msgid ""
  2464. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  2465. "s, actualHash=%s"
  2466. msgstr ""
  2467. "Convalida del checksum della parte fallita. indiceChecksum=%d, offset=%s, "
  2468. "hashAtteso=%s, hashAttuale=%s"
  2469. #: src/message.h:237
  2470. msgid "Download aborted."
  2471. msgstr "Scaricamento annullato."
  2472. #: src/message.h:238
  2473. #, c-format
  2474. msgid "File %s is being downloaded by other command."
  2475. msgstr "Il file %s viene scaricato già da un altro comando."
  2476. #: src/message.h:239
  2477. msgid "Insufficient checksums."
  2478. msgstr "Checksum insufficienti."
  2479. #: src/message.h:240
  2480. #, c-format
  2481. msgid "Tracker returned failure reason: %s"
  2482. msgstr "Il tracker ha ritornato un messaggio di fallimento: %s"
  2483. #: src/message.h:241
  2484. msgid "Flooding detected."
  2485. msgstr "Rilevato flooding."
  2486. #: src/message.h:242
  2487. #, c-format
  2488. msgid ""
  2489. "Drop connection because no request/piece messages were exchanged in a "
  2490. "certain period(%d seconds)."
  2491. msgstr ""
  2492. "La connessione è stata interrotta in quanto nessun messaggio di richiesta o "
  2493. "di parte sono stati scambiati in un certo periodo di tempo(%d secondi)."
  2494. #: src/message.h:243
  2495. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2496. msgstr "L'infoHash nel file torrent è diverso da quello nel file .aria2."
  2497. #: src/message.h:244
  2498. #, c-format
  2499. msgid "No such file entry %s"
  2500. msgstr "Nessun file con il nome %s"
  2501. #: src/message.h:245
  2502. #, c-format
  2503. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2504. msgstr "Velocità di scaricamento troppo bassa: %d <= %d(B/s), host:%s"
  2505. #: src/message.h:246
  2506. msgid "No HttpRequestEntry found."
  2507. msgstr "Non è stata trovata la HttpRequestEntry."
  2508. #: src/message.h:247
  2509. #, c-format
  2510. msgid "Got %d status, but no location header provided."
  2511. msgstr ""
  2512. "Ho ricevuto lo stato %d, ma nessun header di locazione è stato fornito."
  2513. #: src/message.h:248
  2514. #, c-format
  2515. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  2516. msgstr ""
  2517. "Header con intervallo invalido. Richiesta: %s-%s/%s, Risposta: %s-%s/%s"
  2518. #: src/message.h:249
  2519. msgid "No file matched with your preference."
  2520. msgstr "Nessun file riconosciuto con le tue preferenze."
  2521. #: src/message.h:250
  2522. msgid "Exception caught"
  2523. msgstr "È stata rilevata un'eccezione."
  2524. #: src/message.h:251
  2525. #, c-format
  2526. msgid "Max payload length exceeded or invalid. length = %u"
  2527. msgstr "Lunghezza massima del payload superata o invalida. Lughezza = %u"
  2528. #: src/message.h:252
  2529. #, c-format
  2530. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2531. msgstr ""
  2532. "La lunghezza del file è invalida. Non posso continuare a scaricare %s: "
  2533. "locale %s, remoto %s"
  2534. #: src/BtSetup.cc:158
  2535. msgid "Errors occurred while binding port.\n"
  2536. msgstr "Ci sono stati degli errori durante il binding della porta.\n"