it.po 90 KB

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