it.po 86 KB

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