it.po 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964
  1. # Italian translation of apt
  2. # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 The Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the apt package.
  4. # Samuele Giovanni Tonon <samu@debian.org>, 2002.
  5. # Milo Casagrande <milo@ubuntu.com>, 2009
  6. #
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: apt 0.7.20\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2008-11-12 22:07+0100\n"
  12. "PO-Revision-Date: 2009-06-04 13:23+0200\n"
  13. "Last-Translator: Milo Casagrande <milo@ubuntu.com>\n"
  14. "Language-Team: Italian <tp@lists.linux.it>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: cmdline/apt-cache.cc:143
  19. #, c-format
  20. msgid "Package %s version %s has an unmet dep:\n"
  21. msgstr "Il pacchetto %s versione %s ha una dipendenza non soddisfatta:\n"
  22. #: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
  23. #: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
  24. #: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
  25. #, c-format
  26. msgid "Unable to locate package %s"
  27. msgstr "Impossibile trovare il pacchetto %s"
  28. #: cmdline/apt-cache.cc:247
  29. msgid "Total package names: "
  30. msgstr "Totale nomi dei pacchetti: "
  31. #: cmdline/apt-cache.cc:287
  32. msgid " Normal packages: "
  33. msgstr " Pacchetti normali: "
  34. #: cmdline/apt-cache.cc:288
  35. msgid " Pure virtual packages: "
  36. msgstr " Pacchetti virtuali puri: "
  37. #: cmdline/apt-cache.cc:289
  38. msgid " Single virtual packages: "
  39. msgstr " Pacchetti virtuali singoli: "
  40. #: cmdline/apt-cache.cc:290
  41. msgid " Mixed virtual packages: "
  42. msgstr " Pacchetti virtuali misti: "
  43. #: cmdline/apt-cache.cc:291
  44. msgid " Missing: "
  45. msgstr " Mancante: "
  46. #: cmdline/apt-cache.cc:293
  47. msgid "Total distinct versions: "
  48. msgstr "Totale versioni distinte: "
  49. #: cmdline/apt-cache.cc:295
  50. msgid "Total distinct descriptions: "
  51. msgstr "Totale descrizioni distinte: "
  52. #: cmdline/apt-cache.cc:297
  53. msgid "Total dependencies: "
  54. msgstr "Totale dipendenze: "
  55. #: cmdline/apt-cache.cc:300
  56. msgid "Total ver/file relations: "
  57. msgstr "Totale relazioni ver/file: "
  58. #: cmdline/apt-cache.cc:302
  59. msgid "Total Desc/File relations: "
  60. msgstr "Totale relazioni Desc/File: "
  61. #: cmdline/apt-cache.cc:304
  62. msgid "Total Provides mappings: "
  63. msgstr "Totale corrispondenze fornite: "
  64. #: cmdline/apt-cache.cc:316
  65. msgid "Total globbed strings: "
  66. msgstr "Totale stringhe globalizzate: "
  67. #: cmdline/apt-cache.cc:330
  68. msgid "Total dependency version space: "
  69. msgstr "Totale spazio di dipendenza di versione: "
  70. #: cmdline/apt-cache.cc:335
  71. msgid "Total slack space: "
  72. msgstr "Totale spazio inutilizzato: "
  73. #: cmdline/apt-cache.cc:343
  74. msgid "Total space accounted for: "
  75. msgstr "Totale spazio occupato: "
  76. #: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
  77. #, c-format
  78. msgid "Package file %s is out of sync."
  79. msgstr "Il file dei pacchetti %s non è sincronizzato."
  80. #: cmdline/apt-cache.cc:1293
  81. msgid "You must give exactly one pattern"
  82. msgstr "È necessario specificare un solo modello"
  83. #: cmdline/apt-cache.cc:1447
  84. msgid "No packages found"
  85. msgstr "Nessun pacchetto trovato"
  86. #: cmdline/apt-cache.cc:1524
  87. msgid "Package files:"
  88. msgstr "File dei pacchetti:"
  89. #: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
  90. msgid "Cache is out of sync, can't x-ref a package file"
  91. msgstr ""
  92. "La cache non è sincronizzata, impossibile referenziare un file di pacchetti"
  93. #: cmdline/apt-cache.cc:1532
  94. #, c-format
  95. msgid "%4i %s\n"
  96. msgstr "%4i %s\n"
  97. #. Show any packages have explicit pins
  98. #: cmdline/apt-cache.cc:1544
  99. msgid "Pinned packages:"
  100. msgstr "Pacchetti con gancio:"
  101. #: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
  102. msgid "(not found)"
  103. msgstr "(non trovato)"
  104. #. Installed version
  105. #: cmdline/apt-cache.cc:1577
  106. msgid " Installed: "
  107. msgstr " Installato: "
  108. #: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
  109. msgid "(none)"
  110. msgstr "(nessuno)"
  111. #. Candidate Version
  112. #: cmdline/apt-cache.cc:1584
  113. msgid " Candidate: "
  114. msgstr " Candidato: "
  115. #: cmdline/apt-cache.cc:1594
  116. msgid " Package pin: "
  117. msgstr " Gancio del pacchetto: "
  118. #. Show the priority tables
  119. #: cmdline/apt-cache.cc:1603
  120. msgid " Version table:"
  121. msgstr " Tabella versione:"
  122. #: cmdline/apt-cache.cc:1618
  123. #, c-format
  124. msgid " %4i %s\n"
  125. msgstr " %4i %s\n"
  126. #: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
  127. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
  128. #: cmdline/apt-get.cc:2573 cmdline/apt-sortpkgs.cc:144
  129. #, c-format
  130. msgid "%s %s for %s compiled on %s %s\n"
  131. msgstr "%s %s per %s compilato il %s %s\n"
  132. #: cmdline/apt-cache.cc:1721
  133. msgid ""
  134. "Usage: apt-cache [options] command\n"
  135. " apt-cache [options] add file1 [file2 ...]\n"
  136. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  137. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  138. "\n"
  139. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  140. "cache files, and query information from them\n"
  141. "\n"
  142. "Commands:\n"
  143. " add - Add a package file to the source cache\n"
  144. " gencaches - Build both the package and source cache\n"
  145. " showpkg - Show some general information for a single package\n"
  146. " showsrc - Show source records\n"
  147. " stats - Show some basic statistics\n"
  148. " dump - Show the entire file in a terse form\n"
  149. " dumpavail - Print an available file to stdout\n"
  150. " unmet - Show unmet dependencies\n"
  151. " search - Search the package list for a regex pattern\n"
  152. " show - Show a readable record for the package\n"
  153. " depends - Show raw dependency information for a package\n"
  154. " rdepends - Show reverse dependency information for a package\n"
  155. " pkgnames - List the names of all packages in the system\n"
  156. " dotty - Generate package graphs for GraphViz\n"
  157. " xvcg - Generate package graphs for xvcg\n"
  158. " policy - Show policy settings\n"
  159. "\n"
  160. "Options:\n"
  161. " -h This help text.\n"
  162. " -p=? The package cache.\n"
  163. " -s=? The source cache.\n"
  164. " -q Disable progress indicator.\n"
  165. " -i Show only important deps for the unmet command.\n"
  166. " -c=? Read this configuration file\n"
  167. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  168. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  169. msgstr ""
  170. "Uso: apt-cache [OPZIONI] COMANDO\n"
  171. " apt-cache [OPZIONI] add FILE1 [FILE2 ...]\n"
  172. " apt-cache [OPZIONI] showpkg PKG1 [PKG2 ...]\n"
  173. " apt-cache [OPZIONI] showsrc PKG1 [PKG2 ...]\n"
  174. "\n"
  175. "apt-cache è uno strumento di basso livello usato per manipolare \n"
  176. "i file di cache dei binari di APT e cercare informazioni in questi\n"
  177. "\n"
  178. "Comandi:\n"
  179. " add - Aggiunge un file di pacchetti alla cache sorgente\n"
  180. " gencaches - Costruisce sia la cache dei pacchetti sia quella dei "
  181. "sorgenti\n"
  182. " showpkg - Mostra informazioni generali per un singolo pacchetto\n"
  183. " showsrc - Mostra i campi dei sorgenti\n"
  184. " stats - Mostra alcune statistiche di base\n"
  185. " dump - Mostra il file in forma compatta\n"
  186. " dumpavail - Stampa un file \"available\" sullo stdout\n"
  187. " unmet - Mostra le dipendenze non soddisfatte\n"
  188. " search - Cerca nell'elenco dei pacchetti un'espressione regolare\n"
  189. " show - Mostra un campo leggibile per il pacchetto specificato\n"
  190. " depends - Mostra informazioni di dipendenza per un pacchetto\n"
  191. " rdepends - Mostra informazioni di dipendenza all'incontrario per un "
  192. "pacchetto\n"
  193. " pkgnames - Elenca i nomi di tutti i pacchetti nel sistema\n"
  194. " dotty - Genera un grafo dei pacchetti per GraphViz\n"
  195. " xvcg - Genera un grafo dei pacchetti per xvcg\n"
  196. " policy - Mostra le preferenze adottate\n"
  197. "\n"
  198. "Opzioni:\n"
  199. " -h Mostra questo aiuto\n"
  200. " -p=? La cache dei pacchetti\n"
  201. " -s=? La cache dei sorgenti\n"
  202. " -q Disabilita l'indicatore di avanzamento\n"
  203. " -i Mostra solo dipendenze importanti per il comando unmet\n"
  204. " -c=? Legge come configurazione il file specificato\n"
  205. " -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
  206. "Per maggiori informazioni, consultare le pagine di manuale apt-cache(8) e "
  207. "apt.conf(5).\n"
  208. #: cmdline/apt-cdrom.cc:78
  209. msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
  210. msgstr "Dare un nome a questo disco, tipo \"Debian 5.0 Disco 1\""
  211. #: cmdline/apt-cdrom.cc:93
  212. msgid "Please insert a Disc in the drive and press enter"
  213. msgstr "Inserire un disco nell'unità e premere Invio"
  214. #: cmdline/apt-cdrom.cc:117
  215. msgid "Repeat this process for the rest of the CDs in your set."
  216. msgstr "Ripetere questo processo per il resto dei CD."
  217. #: cmdline/apt-config.cc:41
  218. msgid "Arguments not in pairs"
  219. msgstr "Argomenti non in coppia"
  220. #: cmdline/apt-config.cc:76
  221. msgid ""
  222. "Usage: apt-config [options] command\n"
  223. "\n"
  224. "apt-config is a simple tool to read the APT config file\n"
  225. "\n"
  226. "Commands:\n"
  227. " shell - Shell mode\n"
  228. " dump - Show the configuration\n"
  229. "\n"
  230. "Options:\n"
  231. " -h This help text.\n"
  232. " -c=? Read this configuration file\n"
  233. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  234. msgstr ""
  235. "Uso: apt-config [OPZIONI] COMANDO\n"
  236. "\n"
  237. "apt-config è uno strumento per leggere il file di configurazione di APT\n"
  238. "\n"
  239. "Comandi:\n"
  240. " shell - Modalità shell\n"
  241. " dump - Mostra la configurazione\n"
  242. "\n"
  243. "Opzioni\n"
  244. " -h Mostra questo aiuto\n"
  245. " -c=? Legge come configurazione il file specificato\n"
  246. " -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
  247. #: cmdline/apt-extracttemplates.cc:98
  248. #, c-format
  249. msgid "%s not a valid DEB package."
  250. msgstr "%s non è un pacchetto DEB valido."
  251. #: cmdline/apt-extracttemplates.cc:232
  252. msgid ""
  253. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  254. "\n"
  255. "apt-extracttemplates is a tool to extract config and template info\n"
  256. "from debian packages\n"
  257. "\n"
  258. "Options:\n"
  259. " -h This help text\n"
  260. " -t Set the temp dir\n"
  261. " -c=? Read this configuration file\n"
  262. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  263. msgstr ""
  264. "Uso: apt-extracttemplates FILE1 [FILE2 ...]\n"
  265. "\n"
  266. "apt-extracttemplates è uno strumento per estrarre configurazioni e template\n"
  267. "dai pacchetti debian\n"
  268. "\n"
  269. "Opzioni:\n"
  270. " -h Mostra questo aiuto\n"
  271. " -t Imposta la directory temporanea\n"
  272. " -c=? Legge come configurazione il file specificato\n"
  273. " -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
  274. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827
  275. #, c-format
  276. msgid "Unable to write to %s"
  277. msgstr "Impossibile scrivere in %s"
  278. #: cmdline/apt-extracttemplates.cc:310
  279. msgid "Cannot get debconf version. Is debconf installed?"
  280. msgstr "Impossibile trovare la versione di debconf. È installato?"
  281. #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
  282. msgid "Package extension list is too long"
  283. msgstr "L'elenco dell'estensione del pacchetto è troppo lungo"
  284. #: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
  285. #: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
  286. #: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
  287. #, c-format
  288. msgid "Error processing directory %s"
  289. msgstr "Errore nell'elaborare la directory %s"
  290. #: ftparchive/apt-ftparchive.cc:251
  291. msgid "Source extension list is too long"
  292. msgstr "L'elenco dell'estensione del sorgente è troppo lungo"
  293. #: ftparchive/apt-ftparchive.cc:368
  294. msgid "Error writing header to contents file"
  295. msgstr "Errore nella scrittura dell'intestazione nel file \"contents\""
  296. #: ftparchive/apt-ftparchive.cc:398
  297. #, c-format
  298. msgid "Error processing contents %s"
  299. msgstr "Errore nell'analisi dei \"contents\" %s"
  300. #: ftparchive/apt-ftparchive.cc:553
  301. msgid ""
  302. "Usage: apt-ftparchive [options] command\n"
  303. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  304. " sources srcpath [overridefile [pathprefix]]\n"
  305. " contents path\n"
  306. " release path\n"
  307. " generate config [groups]\n"
  308. " clean config\n"
  309. "\n"
  310. "apt-ftparchive generates index files for Debian archives. It supports\n"
  311. "many styles of generation from fully automated to functional replacements\n"
  312. "for dpkg-scanpackages and dpkg-scansources\n"
  313. "\n"
  314. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  315. "Package file contains the contents of all the control fields from\n"
  316. "each package as well as the MD5 hash and filesize. An override file\n"
  317. "is supported to force the value of Priority and Section.\n"
  318. "\n"
  319. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  320. "The --source-override option can be used to specify a src override file\n"
  321. "\n"
  322. "The 'packages' and 'sources' command should be run in the root of the\n"
  323. "tree. BinaryPath should point to the base of the recursive search and \n"
  324. "override file should contain the override flags. Pathprefix is\n"
  325. "appended to the filename fields if present. Example usage from the \n"
  326. "Debian archive:\n"
  327. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  328. " dists/potato/main/binary-i386/Packages\n"
  329. "\n"
  330. "Options:\n"
  331. " -h This help text\n"
  332. " --md5 Control MD5 generation\n"
  333. " -s=? Source override file\n"
  334. " -q Quiet\n"
  335. " -d=? Select the optional caching database\n"
  336. " --no-delink Enable delinking debug mode\n"
  337. " --contents Control contents file generation\n"
  338. " -c=? Read this configuration file\n"
  339. " -o=? Set an arbitrary configuration option"
  340. msgstr ""
  341. "Uso: apt-ftparchive [OPZIONI] COMANDO\n"
  342. "Comandi: packages PERCORSO_AL_BINARIO [FILE_OVERRIDE [PREFISSO_PERCORSO]\n"
  343. " sources PERCORSO_AI_SORGENTI [FILE_OVERRIDE [PREFISSO_PERCORSO]\n"
  344. " contents PERCORSO\n"
  345. " release PERCORSO\n"
  346. " generate CONFIGURAZIONE [GRUPPI]\n"
  347. " clean CONFIGURAZIONE\n"
  348. "\n"
  349. "apt-ftparchive genera file di indice per gli archivi Debian. Supporta\n"
  350. "molti stili di generazione da completamente automatici ad alternative\n"
  351. "funzionali per dpkg-scanpackages e dpkg-scansources\n"
  352. "\n"
  353. "apt-ftparchive genera file Packages da un albero di \".deb\". Il file\n"
  354. "Package contiene le informazioni di tutti i campi control da ogni\n"
  355. "pacchetto, così come l'hash MD5 e la dimensione del file. Un file override\n"
  356. "è supportato per forzare i valori di priorità e sezione.\n"
  357. "\n"
  358. "Similmente, apt-ftparchive genera file Sources da un albero di .dscs.\n"
  359. "L'opzione --source-override può essere usata per specificare un file\n"
  360. "di override per i sorgenti\n"
  361. "\n"
  362. "I comandi \"packages\" e \"sources\" devono essere eseguiti nella root \n"
  363. "dell'albero. Il percorso al binario deve puntare alla base della ricerca \n"
  364. "ricorsiva e il file override deve contenere le opzioni di override.\n"
  365. "Il prefisso del percorso è aggiunto al campo filename se presente. Esempio\n"
  366. "di utilizzo dall'archivio Debian:\n"
  367. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  368. " dists/potato/main/binary-i386/Packages \n"
  369. "\n"
  370. "Opzioni:\n"
  371. " -h Mostra questo aiuto\n"
  372. " --md5 Controlla la generazione dell'MD5\n"
  373. " -s=? File override dei sorgenti\n"
  374. " -q Silenzioso\n"
  375. " -d=? Seleziona il database di cache opzionale\n"
  376. " --no-delink Abilita la modalità di debug del delinking\n"
  377. " --contents Controlla la generazione del file \"contents\"\n"
  378. " -c=? Legge come configurazione il file specificato\n"
  379. " -o=? Imposta un'opzione arbitraria di configurazione"
  380. #: ftparchive/apt-ftparchive.cc:759
  381. msgid "No selections matched"
  382. msgstr "Nessuna selezione corrisponde"
  383. #: ftparchive/apt-ftparchive.cc:832
  384. #, c-format
  385. msgid "Some files are missing in the package file group `%s'"
  386. msgstr "Mancano alcuni file nel file group di pacchetti \"%s\""
  387. #: ftparchive/cachedb.cc:43
  388. #, c-format
  389. msgid "DB was corrupted, file renamed to %s.old"
  390. msgstr "Il database era danneggiato, il file è stato rinominato in %s.old"
  391. #: ftparchive/cachedb.cc:61
  392. #, c-format
  393. msgid "DB is old, attempting to upgrade %s"
  394. msgstr "Il database è vecchio, tentativo di aggiornamento %s"
  395. #: ftparchive/cachedb.cc:72
  396. msgid ""
  397. "DB format is invalid. If you upgraded from a older version of apt, please "
  398. "remove and re-create the database."
  399. msgstr ""
  400. "Il formato del database non è valido. Se è stata aggiornata una vecchia "
  401. "versione di apt, rimuovere e ricreare il database."
  402. #: ftparchive/cachedb.cc:77
  403. #, c-format
  404. msgid "Unable to open DB file %s: %s"
  405. msgstr "Impossibile aprire il file del database %s: %s"
  406. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  407. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  408. #, c-format
  409. msgid "Failed to stat %s"
  410. msgstr "Impossibile eseguire stat su %s"
  411. #: ftparchive/cachedb.cc:238
  412. msgid "Archive has no control record"
  413. msgstr "L'archivio non ha un campo \"control\""
  414. #: ftparchive/cachedb.cc:444
  415. msgid "Unable to get a cursor"
  416. msgstr "Impossibile ottenere un cursore"
  417. # (ndt) messo A per Avviso
  418. # Inizio con la maiuscola dopo i : perché mi sa che in molti
  419. # casi molte stringhe sono così
  420. #: ftparchive/writer.cc:76
  421. #, c-format
  422. msgid "W: Unable to read directory %s\n"
  423. msgstr "A: Impossibile leggere la directory %s\n"
  424. #: ftparchive/writer.cc:81
  425. #, c-format
  426. msgid "W: Unable to stat %s\n"
  427. msgstr "A: Impossibile eseguire stat su %s\n"
  428. #: ftparchive/writer.cc:132
  429. msgid "E: "
  430. msgstr "E: "
  431. #: ftparchive/writer.cc:134
  432. msgid "W: "
  433. msgstr "A: "
  434. #: ftparchive/writer.cc:141
  435. msgid "E: Errors apply to file "
  436. msgstr "E: Gli errori si applicano al file "
  437. #: ftparchive/writer.cc:158 ftparchive/writer.cc:188
  438. #, c-format
  439. msgid "Failed to resolve %s"
  440. msgstr "Risoluzione di %s non riuscita"
  441. #: ftparchive/writer.cc:170
  442. msgid "Tree walking failed"
  443. msgstr "Visita dell'albero non riuscita"
  444. #: ftparchive/writer.cc:195
  445. #, c-format
  446. msgid "Failed to open %s"
  447. msgstr "Apertura di %s non riuscita"
  448. #: ftparchive/writer.cc:254
  449. #, c-format
  450. msgid " DeLink %s [%s]\n"
  451. msgstr " Delink %s [%s]\n"
  452. #: ftparchive/writer.cc:262
  453. #, c-format
  454. msgid "Failed to readlink %s"
  455. msgstr "Esecuzione di readlink su %s non riuscita"
  456. #: ftparchive/writer.cc:266
  457. #, c-format
  458. msgid "Failed to unlink %s"
  459. msgstr "Esecuzione di unlink su %s non riuscita"
  460. #: ftparchive/writer.cc:273
  461. #, c-format
  462. msgid "*** Failed to link %s to %s"
  463. msgstr "*** Collegamento di %s a %s non riuscito"
  464. #: ftparchive/writer.cc:283
  465. #, c-format
  466. msgid " DeLink limit of %sB hit.\n"
  467. msgstr " Raggiunto il limite di Delink di %sB.\n"
  468. #: ftparchive/writer.cc:387
  469. msgid "Archive had no package field"
  470. msgstr "L'archivio non ha un campo \"package\""
  471. #: ftparchive/writer.cc:395 ftparchive/writer.cc:610
  472. #, c-format
  473. msgid " %s has no override entry\n"
  474. msgstr " %s non ha un campo override\n"
  475. #: ftparchive/writer.cc:440 ftparchive/writer.cc:698
  476. #, c-format
  477. msgid " %s maintainer is %s not %s\n"
  478. msgstr " il responsabile di %s è %s non %s\n"
  479. #: ftparchive/writer.cc:620
  480. #, c-format
  481. msgid " %s has no source override entry\n"
  482. msgstr " %s non ha un campo source override\n"
  483. #: ftparchive/writer.cc:624
  484. #, c-format
  485. msgid " %s has no binary override entry either\n"
  486. msgstr " %s non ha neppure un campo binario override\n"
  487. #: ftparchive/contents.cc:321
  488. #, c-format
  489. msgid "Internal error, could not locate member %s"
  490. msgstr "Errore interno, impossibile trovare il membro %s"
  491. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  492. msgid "realloc - Failed to allocate memory"
  493. msgstr "realloc - Allocazione della memoria non riuscita"
  494. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  495. #, c-format
  496. msgid "Unable to open %s"
  497. msgstr "Impossibile aprire %s"
  498. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  499. #, c-format
  500. msgid "Malformed override %s line %lu #1"
  501. msgstr "Override non corretto: file %s riga %lu #1"
  502. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  503. #, c-format
  504. msgid "Malformed override %s line %lu #2"
  505. msgstr "Override non corretto: file %s riga %lu #2"
  506. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  507. #, c-format
  508. msgid "Malformed override %s line %lu #3"
  509. msgstr "Override non corretto: file %s riga %lu #3"
  510. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  511. #, c-format
  512. msgid "Failed to read the override file %s"
  513. msgstr "Lettura del file override %s non riuscita"
  514. #: ftparchive/multicompress.cc:72
  515. #, c-format
  516. msgid "Unknown compression algorithm '%s'"
  517. msgstr "Algoritmo di compressione \"%s\" sconosciuto"
  518. #: ftparchive/multicompress.cc:102
  519. #, c-format
  520. msgid "Compressed output %s needs a compression set"
  521. msgstr "L'output compresso %s necessita di un insieme di compressione"
  522. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  523. msgid "Failed to create IPC pipe to subprocess"
  524. msgstr "Creazione di una pipe IPC verso il sottoprocesso non riuscita"
  525. #: ftparchive/multicompress.cc:195
  526. msgid "Failed to create FILE*"
  527. msgstr "Creazione di FILE* non riuscita"
  528. #: ftparchive/multicompress.cc:198
  529. msgid "Failed to fork"
  530. msgstr "Fork non riuscita"
  531. #: ftparchive/multicompress.cc:212
  532. msgid "Compress child"
  533. msgstr "Sottoprocesso compresso"
  534. #: ftparchive/multicompress.cc:235
  535. #, c-format
  536. msgid "Internal error, failed to create %s"
  537. msgstr "Errore interno, creazione di %s non riuscita"
  538. #: ftparchive/multicompress.cc:286
  539. msgid "Failed to create subprocess IPC"
  540. msgstr "Creazione di un sottoprocesso IPC non riuscita"
  541. #: ftparchive/multicompress.cc:321
  542. msgid "Failed to exec compressor "
  543. msgstr "Esecuzione di compressor non riuscita"
  544. #: ftparchive/multicompress.cc:360
  545. msgid "decompressor"
  546. msgstr "decompressore"
  547. #: ftparchive/multicompress.cc:403
  548. msgid "IO to subprocess/file failed"
  549. msgstr "I/O al sottoprocesso/file non riuscito"
  550. #: ftparchive/multicompress.cc:455
  551. msgid "Failed to read while computing MD5"
  552. msgstr "Lettura durante l'elaborazione MD5 non riuscita"
  553. #: ftparchive/multicompress.cc:472
  554. #, c-format
  555. msgid "Problem unlinking %s"
  556. msgstr "Problema nell'unlink di %s"
  557. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  558. #, c-format
  559. msgid "Failed to rename %s to %s"
  560. msgstr "Rinomina di %s in %s non riuscita"
  561. #: cmdline/apt-get.cc:124
  562. msgid "Y"
  563. msgstr "S"
  564. #: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1651
  565. #, c-format
  566. msgid "Regex compilation error - %s"
  567. msgstr "Errore di compilazione dell'espressione regolare - %s"
  568. #: cmdline/apt-get.cc:241
  569. msgid "The following packages have unmet dependencies:"
  570. msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:"
  571. #: cmdline/apt-get.cc:331
  572. #, c-format
  573. msgid "but %s is installed"
  574. msgstr "ma %s è installato"
  575. #: cmdline/apt-get.cc:333
  576. #, c-format
  577. msgid "but %s is to be installed"
  578. msgstr "ma %s sta per essere installato"
  579. #: cmdline/apt-get.cc:340
  580. msgid "but it is not installable"
  581. msgstr "ma non è installabile"
  582. #: cmdline/apt-get.cc:342
  583. msgid "but it is a virtual package"
  584. msgstr "ma è un pacchetto virtuale"
  585. #: cmdline/apt-get.cc:345
  586. msgid "but it is not installed"
  587. msgstr "ma non è installato"
  588. #: cmdline/apt-get.cc:345
  589. msgid "but it is not going to be installed"
  590. msgstr "ma non sta per essere installato"
  591. #: cmdline/apt-get.cc:350
  592. msgid " or"
  593. msgstr " oppure"
  594. #: cmdline/apt-get.cc:379
  595. msgid "The following NEW packages will be installed:"
  596. msgstr "I seguenti pacchetti NUOVI saranno installati:"
  597. #: cmdline/apt-get.cc:405
  598. msgid "The following packages will be REMOVED:"
  599. msgstr "I seguenti pacchetti saranno RIMOSSI:"
  600. #: cmdline/apt-get.cc:427
  601. msgid "The following packages have been kept back:"
  602. msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:"
  603. #: cmdline/apt-get.cc:448
  604. msgid "The following packages will be upgraded:"
  605. msgstr "I seguenti pacchetti saranno aggiornati:"
  606. #: cmdline/apt-get.cc:469
  607. msgid "The following packages will be DOWNGRADED:"
  608. msgstr "I seguenti pacchetti saranno RETROCESSI:"
  609. #: cmdline/apt-get.cc:489
  610. msgid "The following held packages will be changed:"
  611. msgstr "I seguenti pacchetti bloccati saranno cambiati:"
  612. #: cmdline/apt-get.cc:542
  613. #, c-format
  614. msgid "%s (due to %s) "
  615. msgstr "%s (a causa di %s) "
  616. #: cmdline/apt-get.cc:550
  617. msgid ""
  618. "WARNING: The following essential packages will be removed.\n"
  619. "This should NOT be done unless you know exactly what you are doing!"
  620. msgstr ""
  621. "ATTENZIONE: i seguenti pacchetti essenziali stanno per essere rimossi.\n"
  622. "Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa "
  623. "si sta facendo."
  624. #: cmdline/apt-get.cc:581
  625. #, c-format
  626. msgid "%lu upgraded, %lu newly installed, "
  627. msgstr "%lu aggiornati, %lu installati, "
  628. #: cmdline/apt-get.cc:585
  629. #, c-format
  630. msgid "%lu reinstalled, "
  631. msgstr "%lu reinstallati, "
  632. #: cmdline/apt-get.cc:587
  633. #, c-format
  634. msgid "%lu downgraded, "
  635. msgstr "%lu retrocessi, "
  636. #: cmdline/apt-get.cc:589
  637. #, c-format
  638. msgid "%lu to remove and %lu not upgraded.\n"
  639. msgstr "%lu da rimuovere e %lu non aggiornati.\n"
  640. #: cmdline/apt-get.cc:593
  641. #, c-format
  642. msgid "%lu not fully installed or removed.\n"
  643. msgstr "%lu non completamente installati o rimossi.\n"
  644. #: cmdline/apt-get.cc:667
  645. msgid "Correcting dependencies..."
  646. msgstr "Correzione delle dipendenze..."
  647. #: cmdline/apt-get.cc:670
  648. msgid " failed."
  649. msgstr " non riuscita."
  650. #: cmdline/apt-get.cc:673
  651. msgid "Unable to correct dependencies"
  652. msgstr "Impossibile correggere le dipendenze"
  653. #: cmdline/apt-get.cc:676
  654. msgid "Unable to minimize the upgrade set"
  655. msgstr "Impossibile minimizzare l'insieme da aggiornare"
  656. #: cmdline/apt-get.cc:678
  657. msgid " Done"
  658. msgstr " Fatto"
  659. #: cmdline/apt-get.cc:682
  660. msgid "You might want to run `apt-get -f install' to correct these."
  661. msgstr ""
  662. "È utile eseguire \"apt-get -f install\" per correggere questi problemi."
  663. #: cmdline/apt-get.cc:685
  664. msgid "Unmet dependencies. Try using -f."
  665. msgstr "Dipendenze non trovate. Riprovare usando -f."
  666. #: cmdline/apt-get.cc:707
  667. msgid "WARNING: The following packages cannot be authenticated!"
  668. msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati."
  669. #: cmdline/apt-get.cc:711
  670. msgid "Authentication warning overridden.\n"
  671. msgstr "Avviso di autenticazione disabilitato.\n"
  672. #: cmdline/apt-get.cc:718
  673. msgid "Install these packages without verification [y/N]? "
  674. msgstr "Installare questi pacchetti senza verificarli [s/N]? "
  675. #: cmdline/apt-get.cc:720
  676. msgid "Some packages could not be authenticated"
  677. msgstr "Alcuni pacchetti non possono essere autenticati"
  678. #: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
  679. msgid "There are problems and -y was used without --force-yes"
  680. msgstr "Si sono verificati dei problemi ed è stata usata -y senza --force-yes"
  681. #: cmdline/apt-get.cc:773
  682. msgid "Internal error, InstallPackages was called with broken packages!"
  683. msgstr ""
  684. "Errore interno, InstallPackages è stato chiamato con un pacchetto "
  685. "danneggiato."
  686. #: cmdline/apt-get.cc:782
  687. msgid "Packages need to be removed but remove is disabled."
  688. msgstr ""
  689. "I pacchetti devono essere rimossi, ma l'azione di rimozione è disabilitata."
  690. #: cmdline/apt-get.cc:793
  691. msgid "Internal error, Ordering didn't finish"
  692. msgstr "Errore interno, l'ordinamento non è stato terminato"
  693. #: cmdline/apt-get.cc:809 cmdline/apt-get.cc:1992 cmdline/apt-get.cc:2025
  694. msgid "Unable to lock the download directory"
  695. msgstr "Impossibile bloccare la directory di scaricamento"
  696. #: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2073 cmdline/apt-get.cc:2319
  697. #: apt-pkg/cachefile.cc:65
  698. msgid "The list of sources could not be read."
  699. msgstr "Impossibile leggere l'elenco dei sorgenti."
  700. #: cmdline/apt-get.cc:834
  701. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  702. msgstr ""
  703. "Le dimensioni non corrispondono. Inviare un'email a: apt@packages.debian.org"
  704. #: cmdline/apt-get.cc:839
  705. #, c-format
  706. msgid "Need to get %sB/%sB of archives.\n"
  707. msgstr "È necessario scaricare %sB/%sB di archivi.\n"
  708. #: cmdline/apt-get.cc:842
  709. #, c-format
  710. msgid "Need to get %sB of archives.\n"
  711. msgstr "È necessario scaricare %sB di archivi.\n"
  712. #: cmdline/apt-get.cc:847
  713. #, c-format
  714. msgid "After this operation, %sB of additional disk space will be used.\n"
  715. msgstr "Dopo quest'operazione, verranno occupati %sB di spazio su disco.\n"
  716. #: cmdline/apt-get.cc:850
  717. #, c-format
  718. msgid "After this operation, %sB disk space will be freed.\n"
  719. msgstr "Dopo quest'operazione, verranno liberati %sB di spazio su disco.\n"
  720. #: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2168
  721. #, c-format
  722. msgid "Couldn't determine free space in %s"
  723. msgstr "Impossibile determinare lo spazio libero su %s"
  724. #: cmdline/apt-get.cc:871
  725. #, c-format
  726. msgid "You don't have enough free space in %s."
  727. msgstr "Spazio libero in %s insufficiente."
  728. #: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
  729. msgid "Trivial Only specified but this is not a trivial operation."
  730. msgstr ""
  731. "È stata specificata la modalità \"Trivial Only\", ma questa non è "
  732. "un'operazione banale."
  733. #: cmdline/apt-get.cc:889
  734. msgid "Yes, do as I say!"
  735. msgstr "Sì, esegui come da richiesta."
  736. #: cmdline/apt-get.cc:891
  737. #, c-format
  738. msgid ""
  739. "You are about to do something potentially harmful.\n"
  740. "To continue type in the phrase '%s'\n"
  741. " ?] "
  742. msgstr ""
  743. "Si sta per compiere un'azione potenzialmente pericolosa.\n"
  744. "Per continuare scrivere la frase \"%s\"\n"
  745. " ?] "
  746. #: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
  747. msgid "Abort."
  748. msgstr "Interrotto."
  749. #: cmdline/apt-get.cc:912
  750. msgid "Do you want to continue [Y/n]? "
  751. msgstr "Continuare [S/n]? "
  752. #: cmdline/apt-get.cc:984 cmdline/apt-get.cc:2216 apt-pkg/algorithms.cc:1349
  753. #, c-format
  754. msgid "Failed to fetch %s %s\n"
  755. msgstr "Impossibile recuperare %s %s\n"
  756. #: cmdline/apt-get.cc:1002
  757. msgid "Some files failed to download"
  758. msgstr "Scaricamento di alcuni file non riuscito"
  759. #: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2225
  760. msgid "Download complete and in download only mode"
  761. msgstr "Scaricamento completato e in modalità solo scaricamento"
  762. #: cmdline/apt-get.cc:1009
  763. msgid ""
  764. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  765. "missing?"
  766. msgstr ""
  767. "Impossibile recuperare alcuni pacchetti. Potrebbe essere utile eseguire "
  768. "\"apt-get update\" o provare l'opzione \"--fix-missing\"."
  769. #: cmdline/apt-get.cc:1013
  770. msgid "--fix-missing and media swapping is not currently supported"
  771. msgstr "--fix-missing su supporti estraibili non è ancora supportato"
  772. #: cmdline/apt-get.cc:1018
  773. msgid "Unable to correct missing packages."
  774. msgstr "Impossibile correggere i pacchetti mancanti."
  775. #: cmdline/apt-get.cc:1019
  776. msgid "Aborting install."
  777. msgstr "Interruzione dell'installazione."
  778. #: cmdline/apt-get.cc:1053
  779. #, c-format
  780. msgid "Note, selecting %s instead of %s\n"
  781. msgstr "Nota, viene selezionato %s al posto di %s\n"
  782. #: cmdline/apt-get.cc:1063
  783. #, c-format
  784. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  785. msgstr ""
  786. "Viene saltato %s poiché è già installato e l'aggiornamento non è impostato.\n"
  787. #: cmdline/apt-get.cc:1081
  788. #, c-format
  789. msgid "Package %s is not installed, so not removed\n"
  790. msgstr "Il pacchetto %s non è installato e quindi non è stato rimosso\n"
  791. #: cmdline/apt-get.cc:1092
  792. #, c-format
  793. msgid "Package %s is a virtual package provided by:\n"
  794. msgstr "Il pacchetto %s è un pacchetto virtuale fornito da:\n"
  795. #: cmdline/apt-get.cc:1104
  796. msgid " [Installed]"
  797. msgstr " [Installato]"
  798. #: cmdline/apt-get.cc:1109
  799. msgid "You should explicitly select one to install."
  800. msgstr "È necessario sceglierne uno da installare."
  801. #: cmdline/apt-get.cc:1114
  802. #, c-format
  803. msgid ""
  804. "Package %s is not available, but is referred to by another package.\n"
  805. "This may mean that the package is missing, has been obsoleted, or\n"
  806. "is only available from another source\n"
  807. msgstr ""
  808. "Il pacchetto %s non ha versioni disponibili, ma è nominato da un altro\n"
  809. "pacchetto. Questo significa che il pacchetto manca, è diventato obsoleto\n"
  810. "oppure è disponibile solo all'interno di un'altra sorgente\n"
  811. #: cmdline/apt-get.cc:1133
  812. msgid "However the following packages replace it:"
  813. msgstr "Tuttavia questi pacchetti lo sostituiscono:"
  814. #: cmdline/apt-get.cc:1136
  815. #, c-format
  816. msgid "Package %s has no installation candidate"
  817. msgstr "Il pacchetto %s non ha candidati da installare"
  818. #: cmdline/apt-get.cc:1156
  819. #, c-format
  820. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  821. msgstr "La reinstallazione di %s non è possibile, non può essere scaricato.\n"
  822. #: cmdline/apt-get.cc:1164
  823. #, c-format
  824. msgid "%s is already the newest version.\n"
  825. msgstr "%s è già alla versione più recente.\n"
  826. # (ndt) dovrebbe essere inteso il file Release
  827. #: cmdline/apt-get.cc:1193
  828. #, c-format
  829. msgid "Release '%s' for '%s' was not found"
  830. msgstr "Release \"%s\" per \"%s\" non trovato."
  831. # (ndt) dovrebbe essere inteso il Version
  832. #: cmdline/apt-get.cc:1195
  833. #, c-format
  834. msgid "Version '%s' for '%s' was not found"
  835. msgstr "Version \"%s\" per \"%s\" non trovato"
  836. #: cmdline/apt-get.cc:1201
  837. #, c-format
  838. msgid "Selected version %s (%s) for %s\n"
  839. msgstr "Versione %s (%s) selezionata per %s\n"
  840. #: cmdline/apt-get.cc:1338
  841. msgid "The update command takes no arguments"
  842. msgstr "Il comando update non accetta argomenti"
  843. #: cmdline/apt-get.cc:1351
  844. msgid "Unable to lock the list directory"
  845. msgstr "Impossibile bloccare la directory"
  846. #: cmdline/apt-get.cc:1403
  847. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  848. msgstr ""
  849. "Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover"
  850. #: cmdline/apt-get.cc:1435
  851. msgid ""
  852. "The following packages were automatically installed and are no longer "
  853. "required:"
  854. msgstr ""
  855. "I seguenti pacchetti sono stati installati automaticamente e non sono più "
  856. "richiesti:"
  857. #: cmdline/apt-get.cc:1437
  858. msgid "Use 'apt-get autoremove' to remove them."
  859. msgstr "Usare \"apt-get autoremove\" per rimuoverli."
  860. #: cmdline/apt-get.cc:1442
  861. msgid ""
  862. "Hmm, seems like the AutoRemover destroyed something which really\n"
  863. "shouldn't happen. Please file a bug report against apt."
  864. msgstr ""
  865. "Sembra che AutoRemover abbia rovinato qualcosa e questo\n"
  866. "non doveva accadere. Segnalare un bug riguardo apt."
  867. #.
  868. #. if (Packages == 1)
  869. #. {
  870. #. c1out << endl;
  871. #. c1out <<
  872. #. _("Since you only requested a single operation it is extremely likely that\n"
  873. #. "the package is simply not installable and a bug report against\n"
  874. #. "that package should be filed.") << endl;
  875. #. }
  876. #.
  877. #: cmdline/apt-get.cc:1445 cmdline/apt-get.cc:1735
  878. msgid "The following information may help to resolve the situation:"
  879. msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione: "
  880. #: cmdline/apt-get.cc:1449
  881. msgid "Internal Error, AutoRemover broke stuff"
  882. msgstr "Errore interno, AutoRemover ha rovinato qualche cosa"
  883. #: cmdline/apt-get.cc:1468
  884. msgid "Internal error, AllUpgrade broke stuff"
  885. msgstr "Errore interno, AllUpgrade ha rovinato qualche cosa"
  886. #: cmdline/apt-get.cc:1523
  887. #, c-format
  888. msgid "Couldn't find task %s"
  889. msgstr "Impossibile trovare il task %s"
  890. #: cmdline/apt-get.cc:1638 cmdline/apt-get.cc:1674
  891. #, c-format
  892. msgid "Couldn't find package %s"
  893. msgstr "Impossibile trovare il pacchetto %s"
  894. #: cmdline/apt-get.cc:1661
  895. #, c-format
  896. msgid "Note, selecting %s for regex '%s'\n"
  897. msgstr "Nota, si sta selezionando %s per l'espressione regolare \"%s\"\n"
  898. #: cmdline/apt-get.cc:1692
  899. #, c-format
  900. msgid "%s set to manually installed.\n"
  901. msgstr "È stato impostato %s per l'installazione manuale.\n"
  902. #: cmdline/apt-get.cc:1705
  903. msgid "You might want to run `apt-get -f install' to correct these:"
  904. msgstr ""
  905. "È utile eseguire \"apt-get -f install\" per correggere questi problemi:"
  906. #: cmdline/apt-get.cc:1708
  907. msgid ""
  908. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  909. "solution)."
  910. msgstr ""
  911. "Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti "
  912. "(o specificare una soluzione)."
  913. #: cmdline/apt-get.cc:1720
  914. msgid ""
  915. "Some packages could not be installed. This may mean that you have\n"
  916. "requested an impossible situation or if you are using the unstable\n"
  917. "distribution that some required packages have not yet been created\n"
  918. "or been moved out of Incoming."
  919. msgstr ""
  920. "Alcuni pacchetti non possono essere installati. Questo può voler dire\n"
  921. "che è stata richiesta una situazione impossibile oppure, se si sta\n"
  922. "usando una distribuzione in sviluppo, che alcuni pacchetti richiesti\n"
  923. "non sono ancora stati creati o sono stati rimossi da Incoming."
  924. #: cmdline/apt-get.cc:1738
  925. msgid "Broken packages"
  926. msgstr "Pacchetto danneggiato"
  927. #: cmdline/apt-get.cc:1767
  928. msgid "The following extra packages will be installed:"
  929. msgstr "I seguenti pacchetti saranno inoltre installati:"
  930. #: cmdline/apt-get.cc:1856
  931. msgid "Suggested packages:"
  932. msgstr "Pacchetti suggeriti:"
  933. #: cmdline/apt-get.cc:1857
  934. msgid "Recommended packages:"
  935. msgstr "Pacchetti raccomandati:"
  936. #: cmdline/apt-get.cc:1885
  937. msgid "Calculating upgrade... "
  938. msgstr "Calcolo dell'aggiornamento... "
  939. #: cmdline/apt-get.cc:1888 methods/ftp.cc:702 methods/connect.cc:112
  940. msgid "Failed"
  941. msgstr "Non riuscito"
  942. #: cmdline/apt-get.cc:1893
  943. msgid "Done"
  944. msgstr "Eseguito"
  945. #: cmdline/apt-get.cc:1960 cmdline/apt-get.cc:1968
  946. msgid "Internal error, problem resolver broke stuff"
  947. msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa"
  948. #: cmdline/apt-get.cc:2068
  949. msgid "Must specify at least one package to fetch source for"
  950. msgstr ""
  951. "È necessario specificare almeno un pacchetto di cui recuperare il sorgente"
  952. #: cmdline/apt-get.cc:2098 cmdline/apt-get.cc:2337
  953. #, c-format
  954. msgid "Unable to find a source package for %s"
  955. msgstr "Impossibile trovare un pacchetto sorgente per %s"
  956. #: cmdline/apt-get.cc:2147
  957. #, c-format
  958. msgid "Skipping already downloaded file '%s'\n"
  959. msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n"
  960. #: cmdline/apt-get.cc:2175
  961. #, c-format
  962. msgid "You don't have enough free space in %s"
  963. msgstr "Lo spazio libero in %s è insufficiente"
  964. #: cmdline/apt-get.cc:2181
  965. #, c-format
  966. msgid "Need to get %sB/%sB of source archives.\n"
  967. msgstr "È necessario recuperare %sB/%sB di sorgenti.\n"
  968. #: cmdline/apt-get.cc:2184
  969. #, c-format
  970. msgid "Need to get %sB of source archives.\n"
  971. msgstr "È necessario recuperare %sB di sorgenti\n"
  972. #: cmdline/apt-get.cc:2190
  973. #, c-format
  974. msgid "Fetch source %s\n"
  975. msgstr "Recupero sorgente %s\n"
  976. #: cmdline/apt-get.cc:2221
  977. msgid "Failed to fetch some archives."
  978. msgstr "Recupero di alcuni archivi non riuscito."
  979. #: cmdline/apt-get.cc:2249
  980. #, c-format
  981. msgid "Skipping unpack of already unpacked source in %s\n"
  982. msgstr "Estrazione del pacchetto sorgente già estratto in %s saltata\n"
  983. #: cmdline/apt-get.cc:2261
  984. #, c-format
  985. msgid "Unpack command '%s' failed.\n"
  986. msgstr "Comando di estrazione \"%s\" non riuscito.\n"
  987. #: cmdline/apt-get.cc:2262
  988. #, c-format
  989. msgid "Check if the 'dpkg-dev' package is installed.\n"
  990. msgstr "Verificare che il pacchetto \"dpkg-dev\" sia installato.\n"
  991. #: cmdline/apt-get.cc:2279
  992. #, c-format
  993. msgid "Build command '%s' failed.\n"
  994. msgstr "Comando \"%s\" di generazione non riuscito.\n"
  995. #: cmdline/apt-get.cc:2298
  996. msgid "Child process failed"
  997. msgstr "Creazione processo figlio non riuscita"
  998. #: cmdline/apt-get.cc:2314
  999. msgid "Must specify at least one package to check builddeps for"
  1000. msgstr ""
  1001. "È necessario specificare almeno un pacchetto di cui controllare le "
  1002. "dipendenze di generazione"
  1003. #: cmdline/apt-get.cc:2342
  1004. #, c-format
  1005. msgid "Unable to get build-dependency information for %s"
  1006. msgstr "Impossibile ottenere informazioni di dipendenza di generazione per %s"
  1007. #: cmdline/apt-get.cc:2362
  1008. #, c-format
  1009. msgid "%s has no build depends.\n"
  1010. msgstr "%s non ha dipendenze di generazione.\n"
  1011. #: cmdline/apt-get.cc:2414
  1012. #, c-format
  1013. msgid ""
  1014. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1015. "found"
  1016. msgstr ""
  1017. "%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s "
  1018. "non può essere trovato"
  1019. #: cmdline/apt-get.cc:2467
  1020. #, c-format
  1021. msgid ""
  1022. "%s dependency for %s cannot be satisfied because no available versions of "
  1023. "package %s can satisfy version requirements"
  1024. msgstr ""
  1025. "%s dipendenze per %s non possono essere soddisfatte perché nessuna versione "
  1026. "del pacchetto %s può soddisfare le richieste di versione"
  1027. #: cmdline/apt-get.cc:2503
  1028. #, c-format
  1029. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1030. msgstr ""
  1031. "La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s "
  1032. "è troppo nuovo"
  1033. #: cmdline/apt-get.cc:2528
  1034. #, c-format
  1035. msgid "Failed to satisfy %s dependency for %s: %s"
  1036. msgstr "La dipendenza %s per %s non è stata soddisfatta: %s"
  1037. #: cmdline/apt-get.cc:2542
  1038. #, c-format
  1039. msgid "Build-dependencies for %s could not be satisfied."
  1040. msgstr "Le dipendenze di generazione per %s non sono state soddisfatte."
  1041. #: cmdline/apt-get.cc:2546
  1042. msgid "Failed to process build dependencies"
  1043. msgstr "Elaborazione delle dipendenze di generazione non riuscita"
  1044. #: cmdline/apt-get.cc:2578
  1045. msgid "Supported modules:"
  1046. msgstr "Moduli supportati:"
  1047. #: cmdline/apt-get.cc:2619
  1048. msgid ""
  1049. "Usage: apt-get [options] command\n"
  1050. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1051. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1052. "\n"
  1053. "apt-get is a simple command line interface for downloading and\n"
  1054. "installing packages. The most frequently used commands are update\n"
  1055. "and install.\n"
  1056. "\n"
  1057. "Commands:\n"
  1058. " update - Retrieve new lists of packages\n"
  1059. " upgrade - Perform an upgrade\n"
  1060. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1061. " remove - Remove packages\n"
  1062. " autoremove - Remove automatically all unused packages\n"
  1063. " purge - Remove and purge packages\n"
  1064. " source - Download source archives\n"
  1065. " build-dep - Configure build-dependencies for source packages\n"
  1066. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1067. " dselect-upgrade - Follow dselect selections\n"
  1068. " clean - Erase downloaded archive files\n"
  1069. " autoclean - Erase old downloaded archive files\n"
  1070. " check - Verify that there are no broken dependencies\n"
  1071. "\n"
  1072. "Options:\n"
  1073. " -h This help text.\n"
  1074. " -q Loggable output - no progress indicator\n"
  1075. " -qq No output except for errors\n"
  1076. " -d Download only - do NOT install or unpack archives\n"
  1077. " -s No-act. Perform ordering simulation\n"
  1078. " -y Assume Yes to all queries and do not prompt\n"
  1079. " -f Attempt to correct a system with broken dependencies in place\n"
  1080. " -m Attempt to continue if archives are unlocatable\n"
  1081. " -u Show a list of upgraded packages as well\n"
  1082. " -b Build the source package after fetching it\n"
  1083. " -V Show verbose version numbers\n"
  1084. " -c=? Read this configuration file\n"
  1085. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1086. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1087. "pages for more information and options.\n"
  1088. " This APT has Super Cow Powers.\n"
  1089. msgstr ""
  1090. "Uso: apt-get [OPZIONI] COMANDO\n"
  1091. " apt-get [OPZIONI] install|remove PKG1 [PKG2 ...]\n"
  1092. " apt-get [OPZIONI] source PKG1 [PKG2 ...]\n"
  1093. "\n"
  1094. "apt-get è una semplice interfaccia a riga di comando per scaricare \n"
  1095. "e installare pacchetti. I comandi più usati sono update e install.\n"
  1096. "\n"
  1097. "Comandi:\n"
  1098. " update - Scarica l'elenco aggiornato dei pacchetti\n"
  1099. " upgrade - Esegue un aggiornamento dei pacchetti installati\n"
  1100. " install - Installa nuovi pacchetti (PKG è libc6 non libc6.deb)\n"
  1101. " remove - Rimuove i pacchetti\n"
  1102. " autoremove - Rimuove automaticamente i pacchetti inutilizzati\n"
  1103. " purge - Rimuove i pacchetti e la loro configurazione\n"
  1104. " source - Scarica i pacchetti sorgente\n"
  1105. " build-dep - Configura le dipendenze di compilazione per i pacchetti "
  1106. "sorgente\n"
  1107. " dist-upgrade - Esegue un avanzamento della distribuzione, consultare apt-"
  1108. "get(8)\n"
  1109. " dselect-upgrade - Segue le selezioni di dselect\n"
  1110. " clean - Elimina i file dei pacchetti scaricati\n"
  1111. " autoclean - Elimina i vecchi pacchetti scaricati\n"
  1112. " check - Verifica che non ci siano dipendenze insoddisfatte\n"
  1113. "\n"
  1114. "Opzioni:\n"
  1115. " -h Mostra questo aiuto\n"
  1116. " -q Output registrabile, nessun indicatore di avanzamento\n"
  1117. " -qq Nessun output eccetto gli errori\n"
  1118. " -d Scarica solamente, NON installa o decomprime gli archivi\n"
  1119. " -s Nessuna azione, simula i passi in ordine\n"
  1120. " -y Assume una risposta affermativa a tutte le domande e non chiede "
  1121. "conferma\n"
  1122. " -f Tenta di continuare se il controllo di integrità non riesce\n"
  1123. " -m Tenta di continuare se gli archivi non sono localizzabili\n"
  1124. " -u Mostra un elenco dei pacchetti aggiornati\n"
  1125. " -b Genera il pacchetto sorgente dopo averlo recuperato\n"
  1126. " -V Mostra prolissamente i numeri di versione\n"
  1127. " -c=? Legge come configurazione il file specificato\n"
  1128. " -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tmp\n"
  1129. "Per maggiori informazioni e opzioni, consultare le pagine di manuale\n"
  1130. "apt-get(8), sources.list(5) e apt.conf(5).\n"
  1131. " Questo APT ha i poteri della Super Mucca.\n"
  1132. #: cmdline/acqprogress.cc:55
  1133. msgid "Hit "
  1134. msgstr "Trovato "
  1135. #: cmdline/acqprogress.cc:79
  1136. msgid "Get:"
  1137. msgstr "Scaricare:"
  1138. # (ndt) questa non so cosa voglia dire
  1139. #: cmdline/acqprogress.cc:110
  1140. msgid "Ign "
  1141. msgstr "Ign "
  1142. #: cmdline/acqprogress.cc:114
  1143. msgid "Err "
  1144. msgstr "Err "
  1145. #: cmdline/acqprogress.cc:135
  1146. #, c-format
  1147. msgid "Fetched %sB in %s (%sB/s)\n"
  1148. msgstr "Recuperati %sB in %s (%sB/s)\n"
  1149. #: cmdline/acqprogress.cc:225
  1150. #, c-format
  1151. msgid " [Working]"
  1152. msgstr " [In lavorazione]"
  1153. #: cmdline/acqprogress.cc:271
  1154. #, c-format
  1155. msgid ""
  1156. "Media change: please insert the disc labeled\n"
  1157. " '%s'\n"
  1158. "in the drive '%s' and press enter\n"
  1159. msgstr ""
  1160. "Cambio disco: inserire il disco chiamato\n"
  1161. " \"%s\"\n"
  1162. "nel dispositivo \"%s\" e premere Invio\n"
  1163. #: cmdline/apt-sortpkgs.cc:86
  1164. msgid "Unknown package record!"
  1165. msgstr "Record del pacchetto sconosciuto."
  1166. #: cmdline/apt-sortpkgs.cc:150
  1167. msgid ""
  1168. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1169. "\n"
  1170. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1171. "to indicate what kind of file it is.\n"
  1172. "\n"
  1173. "Options:\n"
  1174. " -h This help text\n"
  1175. " -s Use source file sorting\n"
  1176. " -c=? Read this configuration file\n"
  1177. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1178. msgstr ""
  1179. "Uso: apt-sortpkgs [OPZIONI] FILE1 [FILE2 ...]\n"
  1180. "\n"
  1181. "apt-sortpkgs è uno strumento per ordinare i file dei pacchetti.\n"
  1182. "L'opzione -s è usata per indicare il tipo di file.\n"
  1183. "\n"
  1184. "Opzioni:\n"
  1185. " -h Mostra questo aiuto\n"
  1186. " -s Ordina per pacchetto sorgente\n"
  1187. " -c=? Legge come configurazione il file specificato\n"
  1188. " -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tmp\n"
  1189. #: dselect/install:32
  1190. msgid "Bad default setting!"
  1191. msgstr "Impostazione predefinita errata."
  1192. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1193. #: dselect/install:105 dselect/update:45
  1194. msgid "Press enter to continue."
  1195. msgstr "Premere Invio per continuare."
  1196. #: dselect/install:91
  1197. msgid "Do you want to erase any previously downloaded .deb files?"
  1198. msgstr "Eliminare tutti i file .deb precedentemente scaricati?"
  1199. # Note to translators: The following four messages belong together. It doesn't
  1200. # matter where sentences start, but it has to fit in just these four lines, and
  1201. # at only 80 characters per line, if possible.
  1202. #: dselect/install:101
  1203. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1204. msgstr ""
  1205. "Si sono verificati alcuni errori nell'estrazione. Verrà tentato di "
  1206. "configurare "
  1207. #: dselect/install:102
  1208. msgid "packages that were installed. This may result in duplicate errors"
  1209. msgstr ""
  1210. "i pacchetti che sono stati installati. Questo potrebbe generare molteplici "
  1211. #: dselect/install:103
  1212. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1213. msgstr ""
  1214. "errori o errori causati da dipendenze mancanti. Questo non causa problemi, "
  1215. #: dselect/install:104
  1216. msgid ""
  1217. "above this message are important. Please fix them and run [I]nstall again"
  1218. msgstr ""
  1219. "gli errori precedenti sono importanti. Correggerli e rieseguire "
  1220. "l'installazione"
  1221. #: dselect/update:30
  1222. msgid "Merging available information"
  1223. msgstr "Aggiornamento delle informazioni disponibili"
  1224. #: apt-inst/contrib/extracttar.cc:114
  1225. msgid "Failed to create pipes"
  1226. msgstr "Creazione delle pipe non riuscita"
  1227. #: apt-inst/contrib/extracttar.cc:141
  1228. msgid "Failed to exec gzip "
  1229. msgstr "Esecuzione di gzip non riuscita"
  1230. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1231. msgid "Corrupted archive"
  1232. msgstr "Archivio danneggiato"
  1233. #: apt-inst/contrib/extracttar.cc:193
  1234. msgid "Tar checksum failed, archive corrupted"
  1235. msgstr "Checksum di tar non riuscito, archivio danneggiato"
  1236. #: apt-inst/contrib/extracttar.cc:296
  1237. #, c-format
  1238. msgid "Unknown TAR header type %u, member %s"
  1239. msgstr "Intestazione TAR di tipo %u sconosciuta, member %s"
  1240. #: apt-inst/contrib/arfile.cc:70
  1241. msgid "Invalid archive signature"
  1242. msgstr "Firma dell'archivio non valida"
  1243. #: apt-inst/contrib/arfile.cc:78
  1244. msgid "Error reading archive member header"
  1245. msgstr "Errore nel leggere l'intestazione member dell'archivio"
  1246. #: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
  1247. msgid "Invalid archive member header"
  1248. msgstr "Intestazione member dell'archivio non valida"
  1249. #: apt-inst/contrib/arfile.cc:128
  1250. msgid "Archive is too short"
  1251. msgstr "L'archivio è troppo piccolo"
  1252. #: apt-inst/contrib/arfile.cc:132
  1253. msgid "Failed to read the archive headers"
  1254. msgstr "Lettura delle intestazioni dell'archivio non riuscita"
  1255. #: apt-inst/filelist.cc:380
  1256. msgid "DropNode called on still linked node"
  1257. msgstr "Dropnode invocata su un nodo ancora collegato"
  1258. #: apt-inst/filelist.cc:412
  1259. msgid "Failed to locate the hash element!"
  1260. msgstr "Localizzazione dell'elemento hash non riuscita."
  1261. #: apt-inst/filelist.cc:459
  1262. msgid "Failed to allocate diversion"
  1263. msgstr "Allocazione della deviazione non riuscita"
  1264. #: apt-inst/filelist.cc:464
  1265. msgid "Internal error in AddDiversion"
  1266. msgstr "Errore interno in AddDiversion"
  1267. #: apt-inst/filelist.cc:477
  1268. #, c-format
  1269. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1270. msgstr "Tentativo di sovrascrivere una deviazione, %s -> %s e %s/%s"
  1271. #: apt-inst/filelist.cc:506
  1272. #, c-format
  1273. msgid "Double add of diversion %s -> %s"
  1274. msgstr "Doppia aggiunta di deviazione %s -> %s"
  1275. #: apt-inst/filelist.cc:549
  1276. #, c-format
  1277. msgid "Duplicate conf file %s/%s"
  1278. msgstr "File di configurazione duplicato %s/%s"
  1279. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1280. #, c-format
  1281. msgid "Failed to write file %s"
  1282. msgstr "Scrittura del file %s non riuscita"
  1283. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1284. #, c-format
  1285. msgid "Failed to close file %s"
  1286. msgstr "Chiusura del file %s non riuscita"
  1287. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1288. #, c-format
  1289. msgid "The path %s is too long"
  1290. msgstr "Il percorso %s è troppo lungo"
  1291. #: apt-inst/extract.cc:124
  1292. #, c-format
  1293. msgid "Unpacking %s more than once"
  1294. msgstr "Estrazione di %s eseguita più di una volta"
  1295. #: apt-inst/extract.cc:134
  1296. #, c-format
  1297. msgid "The directory %s is diverted"
  1298. msgstr "La directory %s è deviata"
  1299. #: apt-inst/extract.cc:144
  1300. #, c-format
  1301. msgid "The package is trying to write to the diversion target %s/%s"
  1302. msgstr ""
  1303. "Il pacchetto sta cercando di scrivere nell'obiettivo di deviazione %s/%s"
  1304. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1305. msgid "The diversion path is too long"
  1306. msgstr "Il percorso della deviazione è troppo lungo"
  1307. #: apt-inst/extract.cc:240
  1308. #, c-format
  1309. msgid "The directory %s is being replaced by a non-directory"
  1310. msgstr "La directory %s sta per essere sostituita da una non-directory"
  1311. #: apt-inst/extract.cc:280
  1312. msgid "Failed to locate node in its hash bucket"
  1313. msgstr "Localizzazione del nodo nel suo hash bucket non riuscita"
  1314. #: apt-inst/extract.cc:284
  1315. msgid "The path is too long"
  1316. msgstr "Il percorso è troppo lungo"
  1317. #: apt-inst/extract.cc:414
  1318. #, c-format
  1319. msgid "Overwrite package match with no version for %s"
  1320. msgstr "Il pacchetto sovrascritto corrisponde senza versione per %s"
  1321. #: apt-inst/extract.cc:431
  1322. #, c-format
  1323. msgid "File %s/%s overwrites the one in the package %s"
  1324. msgstr "Il file %s/%s sovrascrive quello nel pacchetto %s"
  1325. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:821
  1326. #: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
  1327. #: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
  1328. #, c-format
  1329. msgid "Unable to read %s"
  1330. msgstr "Impossibile leggere %s"
  1331. #: apt-inst/extract.cc:491
  1332. #, c-format
  1333. msgid "Unable to stat %s"
  1334. msgstr "Impossibile eseguire stat su %s"
  1335. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1336. #, c-format
  1337. msgid "Failed to remove %s"
  1338. msgstr "Rimozione di %s non riuscita"
  1339. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1340. #, c-format
  1341. msgid "Unable to create %s"
  1342. msgstr "Impossibile creare %s"
  1343. #: apt-inst/deb/dpkgdb.cc:114
  1344. #, c-format
  1345. msgid "Failed to stat %sinfo"
  1346. msgstr "Esecuzione di stat su %sinfo non riuscita"
  1347. #: apt-inst/deb/dpkgdb.cc:119
  1348. msgid "The info and temp directories need to be on the same filesystem"
  1349. msgstr "Le directory temp e info devono essere sullo stesso file system"
  1350. #. Build the status cache
  1351. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760
  1352. #: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834
  1353. #: apt-pkg/pkgcachegen.cc:957
  1354. msgid "Reading package lists"
  1355. msgstr "Lettura elenco dei pacchetti"
  1356. #: apt-inst/deb/dpkgdb.cc:176
  1357. #, c-format
  1358. msgid "Failed to change to the admin dir %sinfo"
  1359. msgstr "Cambio della directory admin %sinfo non riuscito"
  1360. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1361. #: apt-inst/deb/dpkgdb.cc:444
  1362. msgid "Internal error getting a package name"
  1363. msgstr "Errore interno nel recuperare un nome di un pacchetto"
  1364. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1365. msgid "Reading file listing"
  1366. msgstr "Lettura elenco dei file"
  1367. #: apt-inst/deb/dpkgdb.cc:212
  1368. #, c-format
  1369. msgid ""
  1370. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1371. "then make it empty and immediately re-install the same version of the "
  1372. "package!"
  1373. msgstr ""
  1374. "Impossibile aprire il file dell'elenco \"%sinfo/%s\". Se non è possibile "
  1375. "ripristinarlo, crearne uno vuoto e reinstallare immediatamente la stessa "
  1376. "versione del pacchetto."
  1377. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1378. #, c-format
  1379. msgid "Failed reading the list file %sinfo/%s"
  1380. msgstr "Lettura del file dell'elenco %sinfo/%s non riuscita"
  1381. #: apt-inst/deb/dpkgdb.cc:262
  1382. msgid "Internal error getting a node"
  1383. msgstr "Errore interno nel recuperare un nodo"
  1384. #: apt-inst/deb/dpkgdb.cc:305
  1385. #, c-format
  1386. msgid "Failed to open the diversions file %sdiversions"
  1387. msgstr "Apertura del file di deviazione %sdiversions non riuscita"
  1388. #: apt-inst/deb/dpkgdb.cc:320
  1389. msgid "The diversion file is corrupted"
  1390. msgstr "Il file di diversion è danneggiato"
  1391. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1392. #: apt-inst/deb/dpkgdb.cc:337
  1393. #, c-format
  1394. msgid "Invalid line in the diversion file: %s"
  1395. msgstr "Riga non valida nel file di diversion: %s"
  1396. #: apt-inst/deb/dpkgdb.cc:358
  1397. msgid "Internal error adding a diversion"
  1398. msgstr "Errore interno nell'aggiungere una deviazioni"
  1399. #: apt-inst/deb/dpkgdb.cc:379
  1400. msgid "The pkg cache must be initialized first"
  1401. msgstr "La cache dei pacchetti deve prima essere inizializzata"
  1402. #: apt-inst/deb/dpkgdb.cc:439
  1403. #, c-format
  1404. msgid "Failed to find a Package: header, offset %lu"
  1405. msgstr "Impossibile trovare un Package: header, offset %lu"
  1406. #: apt-inst/deb/dpkgdb.cc:461
  1407. #, c-format
  1408. msgid "Bad ConfFile section in the status file. Offset %lu"
  1409. msgstr "Sezione ConfFile nel file di stato non corretta. Offset %lu"
  1410. #: apt-inst/deb/dpkgdb.cc:466
  1411. #, c-format
  1412. msgid "Error parsing MD5. Offset %lu"
  1413. msgstr "Errore nell'analisi MD5. Offset %lu"
  1414. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1415. #, c-format
  1416. msgid "This is not a valid DEB archive, missing '%s' member"
  1417. msgstr "Questo non è un archivio DEB valido: membro \"%s\" mancante"
  1418. #: apt-inst/deb/debfile.cc:50
  1419. #, c-format
  1420. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1421. msgstr ""
  1422. "Questo non è un archivio DEB valido: membri \"%s\", \"%s\" o \"%s\" mancanti"
  1423. #: apt-inst/deb/debfile.cc:110
  1424. #, c-format
  1425. msgid "Couldn't change to %s"
  1426. msgstr "Impossibile passare a %s"
  1427. #: apt-inst/deb/debfile.cc:140
  1428. msgid "Internal error, could not locate member"
  1429. msgstr "Errore interno, impossibile localizzare il membro"
  1430. #: apt-inst/deb/debfile.cc:173
  1431. msgid "Failed to locate a valid control file"
  1432. msgstr "Impossibile localizzare un file \"control\" valido"
  1433. #: apt-inst/deb/debfile.cc:258
  1434. msgid "Unparsable control file"
  1435. msgstr "File \"control\" non analizzabile"
  1436. #: methods/cdrom.cc:114
  1437. #, c-format
  1438. msgid "Unable to read the cdrom database %s"
  1439. msgstr "Impossibile leggere il database del CD-ROM %s"
  1440. #: methods/cdrom.cc:123
  1441. msgid ""
  1442. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1443. "cannot be used to add new CD-ROMs"
  1444. msgstr ""
  1445. "Usare apt-cdrom per far riconoscere questo CD-ROM da APT. apt-get update non "
  1446. "può essere usato per aggiungere nuovi CD-ROM"
  1447. #: methods/cdrom.cc:131
  1448. msgid "Wrong CD-ROM"
  1449. msgstr "CD-ROM sbagliato"
  1450. #: methods/cdrom.cc:166
  1451. #, c-format
  1452. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1453. msgstr "Impossibile smontare il CD-ROM in %s, potrebbe essere ancora in uso."
  1454. #: methods/cdrom.cc:171
  1455. msgid "Disk not found."
  1456. msgstr "Disco non trovato"
  1457. #: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
  1458. msgid "File not found"
  1459. msgstr "File non trovato"
  1460. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1461. #: methods/rred.cc:234 methods/rred.cc:243
  1462. msgid "Failed to stat"
  1463. msgstr "Esecuzione di stat non riuscita"
  1464. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
  1465. msgid "Failed to set modification time"
  1466. msgstr "Impostazione della data di modifica non riuscita"
  1467. #: methods/file.cc:44
  1468. msgid "Invalid URI, local URIS must not start with //"
  1469. msgstr "URI non valido, gli URI locali non devono iniziare con //"
  1470. #. Login must be before getpeername otherwise dante won't work.
  1471. #: methods/ftp.cc:162
  1472. msgid "Logging in"
  1473. msgstr "Accesso in corso"
  1474. #: methods/ftp.cc:168
  1475. msgid "Unable to determine the peer name"
  1476. msgstr "Impossibile determinare il nome del nodo"
  1477. #: methods/ftp.cc:173
  1478. msgid "Unable to determine the local name"
  1479. msgstr "Impossibile determinare il nome locale"
  1480. #: methods/ftp.cc:204 methods/ftp.cc:232
  1481. #, c-format
  1482. msgid "The server refused the connection and said: %s"
  1483. msgstr "Il server ha rifiutato la connessione e riporta: %s"
  1484. #: methods/ftp.cc:210
  1485. #, c-format
  1486. msgid "USER failed, server said: %s"
  1487. msgstr "USER non riuscito, il server riporta: %s"
  1488. #: methods/ftp.cc:217
  1489. #, c-format
  1490. msgid "PASS failed, server said: %s"
  1491. msgstr "PASS non riuscito, il server riporta: %s"
  1492. #: methods/ftp.cc:237
  1493. msgid ""
  1494. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1495. "is empty."
  1496. msgstr ""
  1497. "È stato specificato un server proxy, ma nessuno script di accesso: Acquire::"
  1498. "ftp::ProxyLogin è vuoto."
  1499. #: methods/ftp.cc:265
  1500. #, c-format
  1501. msgid "Login script command '%s' failed, server said: %s"
  1502. msgstr ""
  1503. "Comando dello script di accesso \"%s\" non riuscito, il server riporta: %s"
  1504. #: methods/ftp.cc:291
  1505. #, c-format
  1506. msgid "TYPE failed, server said: %s"
  1507. msgstr "TYPE non riuscito, il server riporta: %s"
  1508. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1509. msgid "Connection timeout"
  1510. msgstr "Connessione scaduta"
  1511. #: methods/ftp.cc:335
  1512. msgid "Server closed the connection"
  1513. msgstr "Il server ha chiuso la connessione"
  1514. #: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:538 methods/rsh.cc:190
  1515. msgid "Read error"
  1516. msgstr "Errore di lettura"
  1517. #: methods/ftp.cc:345 methods/rsh.cc:197
  1518. msgid "A response overflowed the buffer."
  1519. msgstr "Una risposta ha superato le dimensioni del buffer."
  1520. #: methods/ftp.cc:362 methods/ftp.cc:374
  1521. msgid "Protocol corruption"
  1522. msgstr "Protocollo danneggiato"
  1523. #: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:577 methods/rsh.cc:232
  1524. msgid "Write error"
  1525. msgstr "Errore di scrittura"
  1526. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1527. msgid "Could not create a socket"
  1528. msgstr "Impossibile creare un socket"
  1529. #: methods/ftp.cc:698
  1530. msgid "Could not connect data socket, connection timed out"
  1531. msgstr "Impossibile connettersi al socket dati, connessione terminata"
  1532. #: methods/ftp.cc:704
  1533. msgid "Could not connect passive socket."
  1534. msgstr "Impossibile connettere socket passivo."
  1535. #: methods/ftp.cc:722
  1536. msgid "getaddrinfo was unable to get a listening socket"
  1537. msgstr "Impossibile ottenere un socket in ascolto con getaddrinfo()"
  1538. #: methods/ftp.cc:736
  1539. msgid "Could not bind a socket"
  1540. msgstr "Impossibile eseguire bind() su un socket"
  1541. #: methods/ftp.cc:740
  1542. msgid "Could not listen on the socket"
  1543. msgstr "Impossibile eseguire listen() su un socket"
  1544. #: methods/ftp.cc:747
  1545. msgid "Could not determine the socket's name"
  1546. msgstr "Impossibile determinare il nome del socket"
  1547. #: methods/ftp.cc:779
  1548. msgid "Unable to send PORT command"
  1549. msgstr "Impossibile inviare il comando PORT"
  1550. #: methods/ftp.cc:789
  1551. #, c-format
  1552. msgid "Unknown address family %u (AF_*)"
  1553. msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta"
  1554. #: methods/ftp.cc:798
  1555. #, c-format
  1556. msgid "EPRT failed, server said: %s"
  1557. msgstr "EPRT non riuscito, il server riporta: %s"
  1558. #: methods/ftp.cc:818
  1559. msgid "Data socket connect timed out"
  1560. msgstr "Connessione al socket dati terminata"
  1561. #: methods/ftp.cc:825
  1562. msgid "Unable to accept connection"
  1563. msgstr "Impossibile accettare connessioni"
  1564. #: methods/ftp.cc:864 methods/http.cc:960 methods/rsh.cc:303
  1565. msgid "Problem hashing file"
  1566. msgstr "Si è verificato un problema nel creare l'hash del file"
  1567. #: methods/ftp.cc:877
  1568. #, c-format
  1569. msgid "Unable to fetch file, server said '%s'"
  1570. msgstr "Impossibile recuperare il file, il server riporta: \"%s\""
  1571. #: methods/ftp.cc:892 methods/rsh.cc:322
  1572. msgid "Data socket timed out"
  1573. msgstr "Socket dati terminato"
  1574. #: methods/ftp.cc:922
  1575. #, c-format
  1576. msgid "Data transfer failed, server said '%s'"
  1577. msgstr "Trasferimento dati non riuscito, il server riporta: \"%s\""
  1578. #. Get the files information
  1579. #: methods/ftp.cc:997
  1580. msgid "Query"
  1581. msgstr "Interrogazione"
  1582. #: methods/ftp.cc:1109
  1583. msgid "Unable to invoke "
  1584. msgstr "Impossibile invocare "
  1585. #: methods/connect.cc:70
  1586. #, c-format
  1587. msgid "Connecting to %s (%s)"
  1588. msgstr "Connessione a %s (%s)"
  1589. #: methods/connect.cc:81
  1590. #, c-format
  1591. msgid "[IP: %s %s]"
  1592. msgstr "[IP: %s %s]"
  1593. #: methods/connect.cc:90
  1594. #, c-format
  1595. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1596. msgstr "Impossibile creare un socket per %s (f=%u t=%u p=%u)"
  1597. #: methods/connect.cc:96
  1598. #, c-format
  1599. msgid "Cannot initiate the connection to %s:%s (%s)."
  1600. msgstr "Impossibile iniziare la connessione a %s:%s (%s)."
  1601. #: methods/connect.cc:104
  1602. #, c-format
  1603. msgid "Could not connect to %s:%s (%s), connection timed out"
  1604. msgstr "Impossibile connettersi a %s:%s (%s), connessione terminata"
  1605. #: methods/connect.cc:119
  1606. #, c-format
  1607. msgid "Could not connect to %s:%s (%s)."
  1608. msgstr "Impossibile connettersi a %s:%s (%s)."
  1609. #. We say this mainly because the pause here is for the
  1610. #. ssh connection that is still going
  1611. #: methods/connect.cc:147 methods/rsh.cc:425
  1612. #, c-format
  1613. msgid "Connecting to %s"
  1614. msgstr "Connessione a %s"
  1615. #: methods/connect.cc:165 methods/connect.cc:184
  1616. #, c-format
  1617. msgid "Could not resolve '%s'"
  1618. msgstr "Impossibile risolvere \"%s\""
  1619. #: methods/connect.cc:190
  1620. #, c-format
  1621. msgid "Temporary failure resolving '%s'"
  1622. msgstr "Risoluzione di \"%s\" temporaneamente non riuscita"
  1623. #: methods/connect.cc:193
  1624. #, c-format
  1625. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1626. msgstr ""
  1627. "Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i)"
  1628. #: methods/connect.cc:240
  1629. #, c-format
  1630. msgid "Unable to connect to %s %s:"
  1631. msgstr "Impossibile connettersi a %s %s:"
  1632. #: methods/gpgv.cc:65
  1633. #, c-format
  1634. msgid "Couldn't access keyring: '%s'"
  1635. msgstr "Impossibile accedere al portachiavi: \"%s\""
  1636. #: methods/gpgv.cc:101
  1637. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1638. msgstr "E: Elenco argomenti da Acquire::gpgv::Options troppo lungo. Uscita."
  1639. #: methods/gpgv.cc:205
  1640. msgid ""
  1641. "Internal error: Good signature, but could not determine key fingerprint?!"
  1642. msgstr ""
  1643. "Errore interno: firma corretta, ma non è possibile determinare l'impronta "
  1644. "della chiave."
  1645. #: methods/gpgv.cc:210
  1646. msgid "At least one invalid signature was encountered."
  1647. msgstr "È stata trovata almeno una firma non valida."
  1648. #: methods/gpgv.cc:214
  1649. #, c-format
  1650. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1651. msgstr ""
  1652. "Impossibile eseguire \"%s\" per verificare la firma (forse gpgv non è "
  1653. "installato)"
  1654. #: methods/gpgv.cc:219
  1655. msgid "Unknown error executing gpgv"
  1656. msgstr "Errore sconosciuto durante l'esecuzione di gpgv"
  1657. #: methods/gpgv.cc:250
  1658. msgid "The following signatures were invalid:\n"
  1659. msgstr "Le seguenti firme non erano valide:\n"
  1660. #: methods/gpgv.cc:257
  1661. msgid ""
  1662. "The following signatures couldn't be verified because the public key is not "
  1663. "available:\n"
  1664. msgstr ""
  1665. "Le seguenti firme non sono state verificate perché la chiave pubblica non è "
  1666. "disponibile:\n"
  1667. #: methods/gzip.cc:64
  1668. #, c-format
  1669. msgid "Couldn't open pipe for %s"
  1670. msgstr "Impossibile aprire una pipe per %s"
  1671. #: methods/gzip.cc:109
  1672. #, c-format
  1673. msgid "Read error from %s process"
  1674. msgstr "Errore di lettura dal processo %s"
  1675. #: methods/http.cc:377
  1676. msgid "Waiting for headers"
  1677. msgstr "In attesa degli header"
  1678. #: methods/http.cc:523
  1679. #, c-format
  1680. msgid "Got a single header line over %u chars"
  1681. msgstr "Ricevuta una singola riga header su %u caratteri"
  1682. #: methods/http.cc:531
  1683. msgid "Bad header line"
  1684. msgstr "Riga header non corretta"
  1685. #: methods/http.cc:550 methods/http.cc:557
  1686. msgid "The HTTP server sent an invalid reply header"
  1687. msgstr "Il server HTTP ha inviato un header di risposta non valido"
  1688. #: methods/http.cc:586
  1689. msgid "The HTTP server sent an invalid Content-Length header"
  1690. msgstr "Il server HTTP ha inviato un header Content-Length non valido"
  1691. #: methods/http.cc:601
  1692. msgid "The HTTP server sent an invalid Content-Range header"
  1693. msgstr "Il server HTTP ha inviato un header Content-Range non valido"
  1694. #: methods/http.cc:603
  1695. msgid "This HTTP server has broken range support"
  1696. msgstr "Questo server HTTP ha un supporto del range non corretto"
  1697. #: methods/http.cc:627
  1698. msgid "Unknown date format"
  1699. msgstr "Formato della data sconosciuto"
  1700. #: methods/http.cc:774
  1701. msgid "Select failed"
  1702. msgstr "Select non riuscita"
  1703. #: methods/http.cc:779
  1704. msgid "Connection timed out"
  1705. msgstr "Connessione terminata"
  1706. #: methods/http.cc:802
  1707. msgid "Error writing to output file"
  1708. msgstr "Errore nello scrivere sul file di output"
  1709. #: methods/http.cc:833
  1710. msgid "Error writing to file"
  1711. msgstr "Errore nello scrivere su file"
  1712. #: methods/http.cc:861
  1713. msgid "Error writing to the file"
  1714. msgstr "Errore nello scrivere sul file"
  1715. #: methods/http.cc:875
  1716. msgid "Error reading from server. Remote end closed connection"
  1717. msgstr "Errore nel leggere dal server. Il lato remoto ha chiuso la connessione"
  1718. #: methods/http.cc:877
  1719. msgid "Error reading from server"
  1720. msgstr "Errore nel leggere dal server"
  1721. #: methods/http.cc:945 apt-pkg/contrib/mmap.cc:196
  1722. msgid "Failed to truncate file"
  1723. msgstr "Troncamento del file non riuscito"
  1724. #: methods/http.cc:1105
  1725. msgid "Bad header data"
  1726. msgstr "Header dati non corretto"
  1727. #: methods/http.cc:1122 methods/http.cc:1177
  1728. msgid "Connection failed"
  1729. msgstr "Connessione non riuscita"
  1730. #: methods/http.cc:1229
  1731. msgid "Internal error"
  1732. msgstr "Errore interno"
  1733. #: apt-pkg/contrib/mmap.cc:80
  1734. msgid "Can't mmap an empty file"
  1735. msgstr "Impossibile eseguire mmap su un file vuoto"
  1736. #: apt-pkg/contrib/mmap.cc:85
  1737. #, c-format
  1738. msgid "Couldn't make mmap of %lu bytes"
  1739. msgstr "Impossibile eseguire mmap di %lu byte"
  1740. #: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276
  1741. #, c-format
  1742. msgid ""
  1743. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1744. "Current value: %lu. (man 5 apt.conf)"
  1745. msgstr ""
  1746. "Mmap dinamica esaurita. Aumentare la dimensione di APT::Cache-Limit. Il "
  1747. "valore attuale è: %lu (man 5 apt.conf)."
  1748. #: apt-pkg/contrib/strutl.cc:1014
  1749. #, c-format
  1750. msgid "Selection %s not found"
  1751. msgstr "Selezione %s non trovata"
  1752. #: apt-pkg/contrib/configuration.cc:439
  1753. #, c-format
  1754. msgid "Unrecognized type abbreviation: '%c'"
  1755. msgstr "Tipo di abbreviazione non riconosciuto: \"%c\""
  1756. #: apt-pkg/contrib/configuration.cc:497
  1757. #, c-format
  1758. msgid "Opening configuration file %s"
  1759. msgstr "Apertura file di configurazione %s"
  1760. #: apt-pkg/contrib/configuration.cc:662
  1761. #, c-format
  1762. msgid "Syntax error %s:%u: Block starts with no name."
  1763. msgstr "Errore di sintassi %s:%u: il blocco inizia senza nome"
  1764. #: apt-pkg/contrib/configuration.cc:681
  1765. #, c-format
  1766. msgid "Syntax error %s:%u: Malformed tag"
  1767. msgstr "Errore di sintassi %s:%u: tag non corretto"
  1768. #: apt-pkg/contrib/configuration.cc:698
  1769. #, c-format
  1770. msgid "Syntax error %s:%u: Extra junk after value"
  1771. msgstr "Errore di sintassi %s:%u: caratteri extra dopo il valore"
  1772. #: apt-pkg/contrib/configuration.cc:738
  1773. #, c-format
  1774. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1775. msgstr ""
  1776. "Errore di sintassi %s:%u: le direttive possono essere fatte solo al livello "
  1777. "più alto"
  1778. #: apt-pkg/contrib/configuration.cc:745
  1779. #, c-format
  1780. msgid "Syntax error %s:%u: Too many nested includes"
  1781. msgstr "Errore di sintassi %s:%u: troppe inclusioni annidate"
  1782. #: apt-pkg/contrib/configuration.cc:749 apt-pkg/contrib/configuration.cc:754
  1783. #, c-format
  1784. msgid "Syntax error %s:%u: Included from here"
  1785. msgstr "Errore di sintassi %s:%u: incluso da qui"
  1786. #: apt-pkg/contrib/configuration.cc:758
  1787. #, c-format
  1788. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1789. msgstr "Errore di sintassi %s:%u: direttiva \"%s\" non supportata"
  1790. #: apt-pkg/contrib/configuration.cc:809
  1791. #, c-format
  1792. msgid "Syntax error %s:%u: Extra junk at end of file"
  1793. msgstr "Errore di sintassi %s:%u: caratteri extra alla fine del file"
  1794. #: apt-pkg/contrib/progress.cc:153
  1795. #, c-format
  1796. msgid "%c%s... Error!"
  1797. msgstr "%c%s... Errore."
  1798. #: apt-pkg/contrib/progress.cc:155
  1799. #, c-format
  1800. msgid "%c%s... Done"
  1801. msgstr "%c%s... Fatto"
  1802. #: apt-pkg/contrib/cmndline.cc:77
  1803. #, c-format
  1804. msgid "Command line option '%c' [from %s] is not known."
  1805. msgstr "Opzione a riga di comando \"%c\" [da %s] sconosciuta."
  1806. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1807. #: apt-pkg/contrib/cmndline.cc:119
  1808. #, c-format
  1809. msgid "Command line option %s is not understood"
  1810. msgstr "Opzione a riga di comando %s non comprensibile"
  1811. #: apt-pkg/contrib/cmndline.cc:124
  1812. #, c-format
  1813. msgid "Command line option %s is not boolean"
  1814. msgstr "Opzione a riga di comando %s non booleana"
  1815. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1816. #, c-format
  1817. msgid "Option %s requires an argument."
  1818. msgstr "L'opzione %s richiede un argomento."
  1819. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1820. #, c-format
  1821. msgid "Option %s: Configuration item specification must have an =<val>."
  1822. msgstr ""
  1823. "Opzione %s: la specifica di configurazione dell'oggetto deve avere un "
  1824. "=<valore>."
  1825. #: apt-pkg/contrib/cmndline.cc:234
  1826. #, c-format
  1827. msgid "Option %s requires an integer argument, not '%s'"
  1828. msgstr "L'opzione %s richiede un argomento intero, non \"%s\""
  1829. #: apt-pkg/contrib/cmndline.cc:265
  1830. #, c-format
  1831. msgid "Option '%s' is too long"
  1832. msgstr "Opzione \"%s\" troppo lunga"
  1833. #: apt-pkg/contrib/cmndline.cc:298
  1834. #, c-format
  1835. msgid "Sense %s is not understood, try true or false."
  1836. msgstr "Il valore %s non è comprensibile, provare \"true\" o \"false\"."
  1837. #: apt-pkg/contrib/cmndline.cc:348
  1838. #, c-format
  1839. msgid "Invalid operation %s"
  1840. msgstr "Operazione %s non valida"
  1841. #: apt-pkg/contrib/cdromutl.cc:52
  1842. #, c-format
  1843. msgid "Unable to stat the mount point %s"
  1844. msgstr "Impossibile eseguire stat sul punto di mount %s"
  1845. #: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180
  1846. #: apt-pkg/acquire.cc:424 apt-pkg/acquire.cc:449 apt-pkg/clean.cc:40
  1847. #, c-format
  1848. msgid "Unable to change to %s"
  1849. msgstr "Impossibile passare a %s"
  1850. #: apt-pkg/contrib/cdromutl.cc:188
  1851. msgid "Failed to stat the cdrom"
  1852. msgstr "Esecuzione di stat sul CD-ROM non riuscita"
  1853. #: apt-pkg/contrib/fileutl.cc:149
  1854. #, c-format
  1855. msgid "Not using locking for read only lock file %s"
  1856. msgstr "Blocco disabilitato per il file di blocco in sola lettura %s"
  1857. #: apt-pkg/contrib/fileutl.cc:154
  1858. #, c-format
  1859. msgid "Could not open lock file %s"
  1860. msgstr "Impossibile aprire il file di blocco %s"
  1861. #: apt-pkg/contrib/fileutl.cc:172
  1862. #, c-format
  1863. msgid "Not using locking for nfs mounted lock file %s"
  1864. msgstr "Blocco disabilitato per il file di blocco %s montato via nfs"
  1865. #: apt-pkg/contrib/fileutl.cc:176
  1866. #, c-format
  1867. msgid "Could not get lock %s"
  1868. msgstr "Impossibile impostare il blocco %s"
  1869. #: apt-pkg/contrib/fileutl.cc:444
  1870. #, c-format
  1871. msgid "Waited for %s but it wasn't there"
  1872. msgstr "In attesa di %s ma non era presente"
  1873. #: apt-pkg/contrib/fileutl.cc:454
  1874. #, c-format
  1875. msgid "Sub-process %s received a segmentation fault."
  1876. msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault."
  1877. #: apt-pkg/contrib/fileutl.cc:457
  1878. #, c-format
  1879. msgid "Sub-process %s returned an error code (%u)"
  1880. msgstr "Il sottoprocesso %s ha restituito un codice d'errore (%u)"
  1881. #: apt-pkg/contrib/fileutl.cc:459
  1882. #, c-format
  1883. msgid "Sub-process %s exited unexpectedly"
  1884. msgstr "Il sottoprocesso %s è uscito inaspettatamente"
  1885. #: apt-pkg/contrib/fileutl.cc:503
  1886. #, c-format
  1887. msgid "Could not open file %s"
  1888. msgstr "Impossibile aprire il file %s"
  1889. #: apt-pkg/contrib/fileutl.cc:559
  1890. #, c-format
  1891. msgid "read, still have %lu to read but none left"
  1892. msgstr "lettura, c'erano ancora %lu da leggere ma non ne è rimasto alcuno"
  1893. #: apt-pkg/contrib/fileutl.cc:589
  1894. #, c-format
  1895. msgid "write, still have %lu to write but couldn't"
  1896. msgstr "scrittura, c'erano ancora %lu da scrivere ma non è stato possibile"
  1897. #: apt-pkg/contrib/fileutl.cc:664
  1898. msgid "Problem closing the file"
  1899. msgstr "Si è verificato un problema nel chiudere il file"
  1900. #: apt-pkg/contrib/fileutl.cc:670
  1901. msgid "Problem unlinking the file"
  1902. msgstr "Si è verificato un problema nell'eseguire l'unlink del file"
  1903. #: apt-pkg/contrib/fileutl.cc:681
  1904. msgid "Problem syncing the file"
  1905. msgstr "Si è verificato un problema nel sincronizzare il file"
  1906. #: apt-pkg/pkgcache.cc:132
  1907. msgid "Empty package cache"
  1908. msgstr "Cache dei pacchetti vuota"
  1909. #: apt-pkg/pkgcache.cc:138
  1910. msgid "The package cache file is corrupted"
  1911. msgstr "Il file della cache dei pacchetti è danneggiato"
  1912. #: apt-pkg/pkgcache.cc:143
  1913. msgid "The package cache file is an incompatible version"
  1914. msgstr "La versione del file della cache dei pacchetti è incompatibile"
  1915. #: apt-pkg/pkgcache.cc:148
  1916. #, c-format
  1917. msgid "This APT does not support the versioning system '%s'"
  1918. msgstr "Questo APT non supporta il sistema di versione \"%s\""
  1919. #: apt-pkg/pkgcache.cc:153
  1920. msgid "The package cache was built for a different architecture"
  1921. msgstr ""
  1922. "Il file della cache dei pacchetti è stato generato per un'altra architettura"
  1923. #: apt-pkg/pkgcache.cc:224
  1924. msgid "Depends"
  1925. msgstr "Dipende"
  1926. #: apt-pkg/pkgcache.cc:224
  1927. msgid "PreDepends"
  1928. msgstr "Pre-dipende"
  1929. #: apt-pkg/pkgcache.cc:224
  1930. msgid "Suggests"
  1931. msgstr "Consiglia"
  1932. #: apt-pkg/pkgcache.cc:225
  1933. msgid "Recommends"
  1934. msgstr "Raccomanda"
  1935. #: apt-pkg/pkgcache.cc:225
  1936. msgid "Conflicts"
  1937. msgstr "Va in conflitto"
  1938. #: apt-pkg/pkgcache.cc:225
  1939. msgid "Replaces"
  1940. msgstr "Sostituisce"
  1941. #: apt-pkg/pkgcache.cc:226
  1942. msgid "Obsoletes"
  1943. msgstr "Rende obsoleto"
  1944. #: apt-pkg/pkgcache.cc:226
  1945. msgid "Breaks"
  1946. msgstr "Rompe"
  1947. #: apt-pkg/pkgcache.cc:237
  1948. msgid "important"
  1949. msgstr "importante"
  1950. #: apt-pkg/pkgcache.cc:237
  1951. msgid "required"
  1952. msgstr "richiesto"
  1953. #: apt-pkg/pkgcache.cc:237
  1954. msgid "standard"
  1955. msgstr "standard"
  1956. #: apt-pkg/pkgcache.cc:238
  1957. msgid "optional"
  1958. msgstr "opzionale"
  1959. #: apt-pkg/pkgcache.cc:238
  1960. msgid "extra"
  1961. msgstr "extra"
  1962. #: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
  1963. msgid "Building dependency tree"
  1964. msgstr "Generazione albero delle dipendenze"
  1965. #: apt-pkg/depcache.cc:122
  1966. msgid "Candidate versions"
  1967. msgstr "Versioni candidate"
  1968. #: apt-pkg/depcache.cc:151
  1969. msgid "Dependency generation"
  1970. msgstr "Generazione delle dipendenze"
  1971. #: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
  1972. msgid "Reading state information"
  1973. msgstr "Lettura informazioni sullo stato"
  1974. #: apt-pkg/depcache.cc:219
  1975. #, c-format
  1976. msgid "Failed to open StateFile %s"
  1977. msgstr "Apertura del file di stato %s non riuscita"
  1978. #: apt-pkg/depcache.cc:225
  1979. #, c-format
  1980. msgid "Failed to write temporary StateFile %s"
  1981. msgstr "Scrittura del file temporaneo di stato %s non riuscita"
  1982. #: apt-pkg/tagfile.cc:102
  1983. #, c-format
  1984. msgid "Unable to parse package file %s (1)"
  1985. msgstr "Impossibile analizzare il file di pacchetto %s (1)"
  1986. #: apt-pkg/tagfile.cc:189
  1987. #, c-format
  1988. msgid "Unable to parse package file %s (2)"
  1989. msgstr "Impossibile analizzare il file di pacchetto %s (2)"
  1990. #: apt-pkg/sourcelist.cc:90
  1991. #, c-format
  1992. msgid "Malformed line %lu in source list %s (URI)"
  1993. msgstr "La riga %lu nel file %s non è corretta (URI)"
  1994. #: apt-pkg/sourcelist.cc:92
  1995. #, c-format
  1996. msgid "Malformed line %lu in source list %s (dist)"
  1997. msgstr "La riga %lu nel file %s non è corretta (dist)"
  1998. #: apt-pkg/sourcelist.cc:95
  1999. #, c-format
  2000. msgid "Malformed line %lu in source list %s (URI parse)"
  2001. msgstr "La riga %lu nel file %s non è corretta (URI parse)"
  2002. #: apt-pkg/sourcelist.cc:101
  2003. #, c-format
  2004. msgid "Malformed line %lu in source list %s (absolute dist)"
  2005. msgstr "La riga %lu nel file %s non è corretta (absolute dist)"
  2006. #: apt-pkg/sourcelist.cc:108
  2007. #, c-format
  2008. msgid "Malformed line %lu in source list %s (dist parse)"
  2009. msgstr "La riga %lu nel file %s non è corretta (dist parse)"
  2010. #: apt-pkg/sourcelist.cc:199
  2011. #, c-format
  2012. msgid "Opening %s"
  2013. msgstr "Apertura di %s"
  2014. #: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
  2015. #, c-format
  2016. msgid "Line %u too long in source list %s."
  2017. msgstr "Riga %u troppo lunga nel file %s."
  2018. #: apt-pkg/sourcelist.cc:236
  2019. #, c-format
  2020. msgid "Malformed line %u in source list %s (type)"
  2021. msgstr "La riga %u nel file %s non è corretta (type)"
  2022. #: apt-pkg/sourcelist.cc:240
  2023. #, c-format
  2024. msgid "Type '%s' is not known on line %u in source list %s"
  2025. msgstr "Tipo \"%s\" non riconosciuto alla riga %u nel file %s"
  2026. #: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
  2027. #, c-format
  2028. msgid "Malformed line %u in source list %s (vendor id)"
  2029. msgstr "La riga %u nel file %s non è corretta (vendor id)"
  2030. #: apt-pkg/packagemanager.cc:428
  2031. #, c-format
  2032. msgid ""
  2033. "This installation run will require temporarily removing the essential "
  2034. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2035. "you really want to do it, activate the APT::Force-LoopBreak option."
  2036. msgstr ""
  2037. "L'installazione necessita della rimozione temporanea del pacchetto "
  2038. "essenziale %s a causa di un ciclo conflitto/pre-dipendenza. Questa è una "
  2039. "situazione critica, ma se si vuole realmente procedere, attivare l'opzione "
  2040. "APT::Force-LoopBreak."
  2041. #: apt-pkg/pkgrecords.cc:32
  2042. #, c-format
  2043. msgid "Index file type '%s' is not supported"
  2044. msgstr "Il file indice di tipo \"%s\" non è supportato"
  2045. #: apt-pkg/algorithms.cc:248
  2046. #, c-format
  2047. msgid ""
  2048. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2049. msgstr ""
  2050. "Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un "
  2051. "archivio."
  2052. #: apt-pkg/algorithms.cc:1107
  2053. msgid ""
  2054. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2055. "held packages."
  2056. msgstr ""
  2057. "Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo "
  2058. "potrebbe essere causato da pacchetti bloccati."
  2059. #: apt-pkg/algorithms.cc:1109
  2060. msgid "Unable to correct problems, you have held broken packages."
  2061. msgstr ""
  2062. "Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati."
  2063. #: apt-pkg/algorithms.cc:1375 apt-pkg/algorithms.cc:1377
  2064. msgid ""
  2065. "Some index files failed to download, they have been ignored, or old ones "
  2066. "used instead."
  2067. msgstr ""
  2068. "Impossibile scaricare alcuni file di indice: saranno ignorati o verranno "
  2069. "usati quelli vecchi."
  2070. #: apt-pkg/acquire.cc:59
  2071. #, c-format
  2072. msgid "Lists directory %spartial is missing."
  2073. msgstr "Manca la directory di liste %spartial."
  2074. #: apt-pkg/acquire.cc:63
  2075. #, c-format
  2076. msgid "Archive directory %spartial is missing."
  2077. msgstr "Manca la directory di archivio %spartial."
  2078. #. only show the ETA if it makes sense
  2079. #. two days
  2080. #: apt-pkg/acquire.cc:828
  2081. #, c-format
  2082. msgid "Retrieving file %li of %li (%s remaining)"
  2083. msgstr "Scaricamento file %li di %li (%s rimanente)"
  2084. #: apt-pkg/acquire.cc:830
  2085. #, c-format
  2086. msgid "Retrieving file %li of %li"
  2087. msgstr "Scaricamento file %li di %li"
  2088. #: apt-pkg/acquire-worker.cc:110
  2089. #, c-format
  2090. msgid "The method driver %s could not be found."
  2091. msgstr "Impossibile trovare un driver per il metodo %s."
  2092. #: apt-pkg/acquire-worker.cc:159
  2093. #, c-format
  2094. msgid "Method %s did not start correctly"
  2095. msgstr "Il metodo %s non si è avviato correttamente"
  2096. #: apt-pkg/acquire-worker.cc:399
  2097. #, c-format
  2098. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2099. msgstr "Inserire il disco chiamato \"%s\" nell'unità \"%s\" e premere Invio."
  2100. #: apt-pkg/init.cc:124
  2101. #, c-format
  2102. msgid "Packaging system '%s' is not supported"
  2103. msgstr "Il sistema di pacchetti \"%s\" non è supportato"
  2104. #: apt-pkg/init.cc:140
  2105. msgid "Unable to determine a suitable packaging system type"
  2106. msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti"
  2107. #: apt-pkg/clean.cc:57
  2108. #, c-format
  2109. msgid "Unable to stat %s."
  2110. msgstr "Impossibile eseguire stat su %s."
  2111. #: apt-pkg/srcrecords.cc:44
  2112. msgid "You must put some 'source' URIs in your sources.list"
  2113. msgstr ""
  2114. "È necessario inserire alcuni URI di tipo \"source\" nel file sources.list"
  2115. #: apt-pkg/cachefile.cc:71
  2116. msgid "The package lists or status file could not be parsed or opened."
  2117. msgstr ""
  2118. "L'elenco dei pacchetti o il file di stato non può essere letto o aperto."
  2119. #: apt-pkg/cachefile.cc:75
  2120. msgid "You may want to run apt-get update to correct these problems"
  2121. msgstr ""
  2122. "È consigliato eseguire \"apt-get update\" per correggere questi problemi"
  2123. #: apt-pkg/policy.cc:267
  2124. msgid "Invalid record in the preferences file, no Package header"
  2125. msgstr "Campo non valido nel file delle preferenze: manca l'header \"Package\""
  2126. #: apt-pkg/policy.cc:289
  2127. #, c-format
  2128. msgid "Did not understand pin type %s"
  2129. msgstr "Impossibile capire il tipo di gancio %s"
  2130. #: apt-pkg/policy.cc:297
  2131. msgid "No priority (or zero) specified for pin"
  2132. msgstr "Priorità per il gancio non specificata (o zero)"
  2133. #: apt-pkg/pkgcachegen.cc:72
  2134. msgid "Cache has an incompatible versioning system"
  2135. msgstr "La cache ha un sistema di gestione delle versioni incompatibile"
  2136. #: apt-pkg/pkgcachegen.cc:115
  2137. #, c-format
  2138. msgid "Error occurred while processing %s (NewPackage)"
  2139. msgstr "Si è verificato un errore nell'elaborare %s (NewPackage)"
  2140. #: apt-pkg/pkgcachegen.cc:130
  2141. #, c-format
  2142. msgid "Error occurred while processing %s (UsePackage1)"
  2143. msgstr "Si è verificato un errore nell'elaborare %s (UsePackage1)"
  2144. #: apt-pkg/pkgcachegen.cc:164
  2145. #, c-format
  2146. msgid "Error occurred while processing %s (NewFileDesc1)"
  2147. msgstr "Si è verificato un errore nell'elaborare %s (NewFileDesc1)"
  2148. #: apt-pkg/pkgcachegen.cc:189
  2149. #, c-format
  2150. msgid "Error occurred while processing %s (UsePackage2)"
  2151. msgstr "Si è verificato un errore nell'elaborare %s (UsePackage2)"
  2152. #: apt-pkg/pkgcachegen.cc:193
  2153. #, c-format
  2154. msgid "Error occurred while processing %s (NewFileVer1)"
  2155. msgstr "Si è verificato un errore nell'elaborare %s (NewFileVer1)"
  2156. #: apt-pkg/pkgcachegen.cc:224
  2157. #, c-format
  2158. msgid "Error occurred while processing %s (NewVersion1)"
  2159. msgstr "Si è verificato un errore nell'elaborare %s (NewVersion1)"
  2160. #: apt-pkg/pkgcachegen.cc:228
  2161. #, c-format
  2162. msgid "Error occurred while processing %s (UsePackage3)"
  2163. msgstr "Si è verificato un errore nell'elaborare %s (UsePackage3)"
  2164. #: apt-pkg/pkgcachegen.cc:232
  2165. #, c-format
  2166. msgid "Error occurred while processing %s (NewVersion2)"
  2167. msgstr "Si è verificato un errore nell'elaborare %s (NewVersion2)"
  2168. #: apt-pkg/pkgcachegen.cc:256
  2169. #, c-format
  2170. msgid "Error occurred while processing %s (NewFileDesc2)"
  2171. msgstr "Si è verificato un errore nell'elaborare %s (NewFileDesc2)"
  2172. #: apt-pkg/pkgcachegen.cc:262
  2173. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2174. msgstr ""
  2175. "È stato superato il numero di nomi di pacchetti che questo APT può gestire."
  2176. #: apt-pkg/pkgcachegen.cc:265
  2177. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2178. msgstr "È stato superato il numero di versioni che questo APT può gestire."
  2179. #: apt-pkg/pkgcachegen.cc:268
  2180. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2181. msgstr "È stato superato il numero di descrizioni che questo APT può gestire."
  2182. #: apt-pkg/pkgcachegen.cc:271
  2183. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2184. msgstr "È stato superato il numero di dipendenze che questo APT può gestire."
  2185. #: apt-pkg/pkgcachegen.cc:299
  2186. #, c-format
  2187. msgid "Error occurred while processing %s (FindPkg)"
  2188. msgstr "Si è verificato un errore nell'elaborare %s (FindPkg)"
  2189. #: apt-pkg/pkgcachegen.cc:312
  2190. #, c-format
  2191. msgid "Error occurred while processing %s (CollectFileProvides)"
  2192. msgstr "Si è verificato un errore nell'elaborare %s (CollectFileProvides)"
  2193. # (ndt) il primo è il nome del pacchetto, il secondo la versione
  2194. #: apt-pkg/pkgcachegen.cc:318
  2195. #, c-format
  2196. msgid "Package %s %s was not found while processing file dependencies"
  2197. msgstr ""
  2198. "Il pacchetto %s v.%s non è stato trovato durante l'elaborazione delle "
  2199. "dipendenze"
  2200. #: apt-pkg/pkgcachegen.cc:690
  2201. #, c-format
  2202. msgid "Couldn't stat source package list %s"
  2203. msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s"
  2204. # (ndt) non mi convince per niente, ma vediamo cosa salta fuori
  2205. #: apt-pkg/pkgcachegen.cc:775
  2206. msgid "Collecting File Provides"
  2207. msgstr "Il file fornisce"
  2208. #: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909
  2209. msgid "IO Error saving source cache"
  2210. msgstr "Errore di I/O nel salvare la cache sorgente"
  2211. #: apt-pkg/acquire-item.cc:127
  2212. #, c-format
  2213. msgid "rename failed, %s (%s -> %s)."
  2214. msgstr "rename() non riuscita: %s (%s -> %s)."
  2215. #: apt-pkg/acquire-item.cc:401
  2216. msgid "MD5Sum mismatch"
  2217. msgstr "MD5sum non corrispondente"
  2218. #: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426
  2219. msgid "Hash Sum mismatch"
  2220. msgstr "Somma hash non corrispondente"
  2221. #: apt-pkg/acquire-item.cc:1118
  2222. msgid "There is no public key available for the following key IDs:\n"
  2223. msgstr ""
  2224. "Non è disponibile alcuna chiave pubblica per i seguenti ID di chiavi:\n"
  2225. #: apt-pkg/acquire-item.cc:1231
  2226. #, c-format
  2227. msgid ""
  2228. "I wasn't able to locate a file for the %s package. This might mean you need "
  2229. "to manually fix this package. (due to missing arch)"
  2230. msgstr ""
  2231. "Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario "
  2232. "sistemare manualmente questo pacchetto (a causa dell'architettura mancante)."
  2233. #: apt-pkg/acquire-item.cc:1290
  2234. #, c-format
  2235. msgid ""
  2236. "I wasn't able to locate file for the %s package. This might mean you need to "
  2237. "manually fix this package."
  2238. msgstr ""
  2239. "Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario "
  2240. "sistemare manualmente questo pacchetto."
  2241. #: apt-pkg/acquire-item.cc:1331
  2242. #, c-format
  2243. msgid ""
  2244. "The package index files are corrupted. No Filename: field for package %s."
  2245. msgstr ""
  2246. "L'indice dei file è danneggiato. Manca il campo \"Filename:\" per il "
  2247. "pacchetto %s."
  2248. #: apt-pkg/acquire-item.cc:1418
  2249. msgid "Size mismatch"
  2250. msgstr "Le dimensioni non corrispondono"
  2251. #: apt-pkg/vendorlist.cc:66
  2252. #, c-format
  2253. msgid "Vendor block %s contains no fingerprint"
  2254. msgstr "Il blocco vendor %s non contiene impronte"
  2255. #: apt-pkg/cdrom.cc:529
  2256. #, c-format
  2257. msgid ""
  2258. "Using CD-ROM mount point %s\n"
  2259. "Mounting CD-ROM\n"
  2260. msgstr ""
  2261. "Viene usato il punto di mount del CD-ROM %s\n"
  2262. "Montaggio CD-ROM\n"
  2263. #: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
  2264. msgid "Identifying.. "
  2265. msgstr "Identificazione... "
  2266. #: apt-pkg/cdrom.cc:563
  2267. #, c-format
  2268. msgid "Stored label: %s\n"
  2269. msgstr "Etichette archiviate: %s \n"
  2270. #: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
  2271. msgid "Unmounting CD-ROM...\n"
  2272. msgstr "Smontaggio CD-ROM...\n"
  2273. #: apt-pkg/cdrom.cc:590
  2274. #, c-format
  2275. msgid "Using CD-ROM mount point %s\n"
  2276. msgstr "Viene usato il punto di mount del CD-ROM %s\n"
  2277. #: apt-pkg/cdrom.cc:608
  2278. msgid "Unmounting CD-ROM\n"
  2279. msgstr "Smontaggio CD-ROM\n"
  2280. #: apt-pkg/cdrom.cc:612
  2281. msgid "Waiting for disc...\n"
  2282. msgstr "In attesa del disco...\n"
  2283. #. Mount the new CDROM
  2284. #: apt-pkg/cdrom.cc:620
  2285. msgid "Mounting CD-ROM...\n"
  2286. msgstr "Montaggio CD-ROM...\n"
  2287. #: apt-pkg/cdrom.cc:638
  2288. msgid "Scanning disc for index files..\n"
  2289. msgstr "Analisi del disco per file indice...\n"
  2290. #: apt-pkg/cdrom.cc:678
  2291. #, c-format
  2292. msgid ""
  2293. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2294. "zu signatures\n"
  2295. msgstr ""
  2296. "Trovati %zu indici di pacchetto, %zu indici di sorgente, %zu indici di "
  2297. "traduzione e %zu firme\n"
  2298. #: apt-pkg/cdrom.cc:715
  2299. #, c-format
  2300. msgid "Found label '%s'\n"
  2301. msgstr "Trovata l'etichetta \"%s\"\n"
  2302. #: apt-pkg/cdrom.cc:744
  2303. msgid "That is not a valid name, try again.\n"
  2304. msgstr "Questo non è un nome valido, riprovare.\n"
  2305. #: apt-pkg/cdrom.cc:760
  2306. #, c-format
  2307. msgid ""
  2308. "This disc is called: \n"
  2309. "'%s'\n"
  2310. msgstr ""
  2311. "Questo disco è chiamato: \n"
  2312. "\"%s\"\n"
  2313. #: apt-pkg/cdrom.cc:764
  2314. msgid "Copying package lists..."
  2315. msgstr "Copia elenco pacchetti..."
  2316. #: apt-pkg/cdrom.cc:790
  2317. msgid "Writing new source list\n"
  2318. msgstr "Scrittura nuovo elenco sorgenti\n"
  2319. #: apt-pkg/cdrom.cc:799
  2320. msgid "Source list entries for this disc are:\n"
  2321. msgstr "Le voci dell'elenco sorgenti per questo disco sono:\n"
  2322. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
  2323. #, c-format
  2324. msgid "Wrote %i records.\n"
  2325. msgstr "Scritti %i record.\n"
  2326. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
  2327. #, c-format
  2328. msgid "Wrote %i records with %i missing files.\n"
  2329. msgstr "Scritti %i record con %i file mancanti.\n"
  2330. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
  2331. #, c-format
  2332. msgid "Wrote %i records with %i mismatched files\n"
  2333. msgstr "Scritti %i record con %i file senza corrispondenze\n"
  2334. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
  2335. #, c-format
  2336. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2337. msgstr ""
  2338. "Scritti %i record con %i file mancanti e %i file senza corrispondenze\n"
  2339. #: apt-pkg/deb/dpkgpm.cc:49
  2340. #, c-format
  2341. msgid "Installing %s"
  2342. msgstr "Installazione di %s"
  2343. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:612
  2344. #, c-format
  2345. msgid "Configuring %s"
  2346. msgstr "Configurazione di %s"
  2347. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:627
  2348. #, c-format
  2349. msgid "Removing %s"
  2350. msgstr "Rimozione di %s"
  2351. #: apt-pkg/deb/dpkgpm.cc:52
  2352. #, c-format
  2353. msgid "Running post-installation trigger %s"
  2354. msgstr "Esecuzione comando di post installazione %s"
  2355. #: apt-pkg/deb/dpkgpm.cc:521
  2356. #, c-format
  2357. msgid "Directory '%s' missing"
  2358. msgstr "Directory \"%s\" mancante"
  2359. #: apt-pkg/deb/dpkgpm.cc:605
  2360. #, c-format
  2361. msgid "Preparing %s"
  2362. msgstr "Preparazione di %s"
  2363. #: apt-pkg/deb/dpkgpm.cc:606
  2364. #, c-format
  2365. msgid "Unpacking %s"
  2366. msgstr "Estrazione di %s"
  2367. #: apt-pkg/deb/dpkgpm.cc:611
  2368. #, c-format
  2369. msgid "Preparing to configure %s"
  2370. msgstr "Preparazione alla configurazione di %s"
  2371. #: apt-pkg/deb/dpkgpm.cc:614 apt-pkg/deb/dpkgpm.cc:615
  2372. #, c-format
  2373. msgid "Processing triggers for %s"
  2374. msgstr "Elaborazione opzioni addizionali per %s"
  2375. #: apt-pkg/deb/dpkgpm.cc:617
  2376. #, c-format
  2377. msgid "Installed %s"
  2378. msgstr "Pacchetto %s installato"
  2379. #: apt-pkg/deb/dpkgpm.cc:622 apt-pkg/deb/dpkgpm.cc:624
  2380. #: apt-pkg/deb/dpkgpm.cc:625
  2381. #, c-format
  2382. msgid "Preparing for removal of %s"
  2383. msgstr "Preparazione alla rimozione di %s"
  2384. #: apt-pkg/deb/dpkgpm.cc:628
  2385. #, c-format
  2386. msgid "Removed %s"
  2387. msgstr "Pacchetto %s rimosso"
  2388. #: apt-pkg/deb/dpkgpm.cc:633
  2389. #, c-format
  2390. msgid "Preparing to completely remove %s"
  2391. msgstr "Preparazione alla rimozione completa di %s"
  2392. #: apt-pkg/deb/dpkgpm.cc:634
  2393. #, c-format
  2394. msgid "Completely removed %s"
  2395. msgstr "Pacchetto %s rimosso completamente"
  2396. #: apt-pkg/deb/dpkgpm.cc:791
  2397. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2398. msgstr ""
  2399. "Impossibile scrivere il registro, openpty() non riuscita (forse /dev/pts non "
  2400. "è montato)\n"
  2401. #: methods/rred.cc:219
  2402. msgid "Could not patch file"
  2403. msgstr "Impossibile applicare la patch al file"
  2404. #: methods/rsh.cc:330
  2405. msgid "Connection closed prematurely"
  2406. msgstr "Connessione chiusa prematuramente"
  2407. #~ msgid "No source package '%s' picking '%s' instead\n"
  2408. #~ msgstr "Nessun pacchetto sorgente \"%s\", selezionato \"%s\" al suo posto\n"
  2409. #~ msgid "%lid %lih %limin %lis"
  2410. #~ msgstr "%lig %lih %limin %lis"
  2411. #~ msgid "%lih %limin %lis"
  2412. #~ msgstr "%lih %limin %lis"
  2413. #~ msgid "%limin %lis"
  2414. #~ msgstr "%limin %lis"
  2415. #~ msgid "%lis"
  2416. #~ msgstr "%lis"
  2417. #~ msgid "Not locked"
  2418. #~ msgstr "Non bloccato"