it.po 79 KB

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