it.po 87 KB

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