it.po 85 KB

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