it.po 108 KB

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