it.po 106 KB

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