it.po 109 KB

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