it.po 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462
  1. # Italian translation of apt
  2. # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the apt package.
  4. # Samuele Giovanni Tonon <samu@debian.org>, 2002.
  5. #
  6. # Milo Casagrande <milo@ubuntu.com>, 2009, 2010.
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: apt\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2011-01-12 17:42+0100\n"
  12. "PO-Revision-Date: 2010-08-27 20:57+0200\n"
  13. "Last-Translator: Milo Casagrande <milo@ubuntu.com>\n"
  14. "Language-Team: Italian <tp@lists.linux.it>\n"
  15. "Language: it\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  20. #: cmdline/apt-cache.cc:156
  21. #, c-format
  22. msgid "Package %s version %s has an unmet dep:\n"
  23. msgstr "Il pacchetto %s versione %s ha una dipendenza non soddisfatta:\n"
  24. #: cmdline/apt-cache.cc:284
  25. msgid "Total package names: "
  26. msgstr "Totale nomi dei pacchetti: "
  27. #: cmdline/apt-cache.cc:286
  28. msgid "Total package structures: "
  29. msgstr "Totale strutture dei pacchetti: "
  30. #: cmdline/apt-cache.cc:326
  31. msgid " Normal packages: "
  32. msgstr " Pacchetti normali: "
  33. #: cmdline/apt-cache.cc:327
  34. msgid " Pure virtual packages: "
  35. msgstr " Pacchetti virtuali puri: "
  36. #: cmdline/apt-cache.cc:328
  37. msgid " Single virtual packages: "
  38. msgstr " Pacchetti virtuali singoli: "
  39. #: cmdline/apt-cache.cc:329
  40. msgid " Mixed virtual packages: "
  41. msgstr " Pacchetti virtuali misti: "
  42. #: cmdline/apt-cache.cc:330
  43. msgid " Missing: "
  44. msgstr " Mancante: "
  45. #: cmdline/apt-cache.cc:332
  46. msgid "Total distinct versions: "
  47. msgstr "Totale versioni distinte: "
  48. #: cmdline/apt-cache.cc:334
  49. msgid "Total distinct descriptions: "
  50. msgstr "Totale descrizioni distinte: "
  51. #: cmdline/apt-cache.cc:336
  52. msgid "Total dependencies: "
  53. msgstr "Totale dipendenze: "
  54. #: cmdline/apt-cache.cc:339
  55. msgid "Total ver/file relations: "
  56. msgstr "Totale relazioni ver/file: "
  57. #: cmdline/apt-cache.cc:341
  58. msgid "Total Desc/File relations: "
  59. msgstr "Totale relazioni desc/file: "
  60. #: cmdline/apt-cache.cc:343
  61. msgid "Total Provides mappings: "
  62. msgstr "Totale corrispondenze fornite: "
  63. #: cmdline/apt-cache.cc:355
  64. msgid "Total globbed strings: "
  65. msgstr "Totale stringhe globalizzate: "
  66. #: cmdline/apt-cache.cc:369
  67. msgid "Total dependency version space: "
  68. msgstr "Totale spazio dipendenza di versione: "
  69. #: cmdline/apt-cache.cc:374
  70. msgid "Total slack space: "
  71. msgstr "Totale spazio inutilizzato: "
  72. #: cmdline/apt-cache.cc:382
  73. msgid "Total space accounted for: "
  74. msgstr "Totale spazio occupato: "
  75. #: cmdline/apt-cache.cc:513 cmdline/apt-cache.cc:1194
  76. #, c-format
  77. msgid "Package file %s is out of sync."
  78. msgstr "Il file dei pacchetti %s non è sincronizzato."
  79. #: cmdline/apt-cache.cc:1273
  80. msgid "You must give at least one search pattern"
  81. msgstr "È necessario specificare almeno un modello per la ricerca"
  82. #: cmdline/apt-cache.cc:1429 cmdline/apt-cache.cc:1431
  83. #: cmdline/apt-cache.cc:1508
  84. msgid "No packages found"
  85. msgstr "Nessun pacchetto trovato"
  86. #: cmdline/apt-cache.cc:1503 apt-pkg/cacheset.cc:440
  87. #, c-format
  88. msgid "Unable to locate package %s"
  89. msgstr "Impossibile trovare il pacchetto %s"
  90. #: cmdline/apt-cache.cc:1533
  91. msgid "Package files:"
  92. msgstr "File dei pacchetti:"
  93. #: cmdline/apt-cache.cc:1540 cmdline/apt-cache.cc:1638
  94. msgid "Cache is out of sync, can't x-ref a package file"
  95. msgstr ""
  96. "La cache non è sincronizzata, impossibile referenziare un file di pacchetti"
  97. #. Show any packages have explicit pins
  98. #: cmdline/apt-cache.cc:1554
  99. msgid "Pinned packages:"
  100. msgstr "Pacchetti con gancio:"
  101. #: cmdline/apt-cache.cc:1566 cmdline/apt-cache.cc:1618
  102. msgid "(not found)"
  103. msgstr "(non trovato)"
  104. #: cmdline/apt-cache.cc:1575
  105. msgid " Installed: "
  106. msgstr " Installato: "
  107. #: cmdline/apt-cache.cc:1576
  108. msgid " Candidate: "
  109. msgstr " Candidato: "
  110. #: cmdline/apt-cache.cc:1600 cmdline/apt-cache.cc:1608
  111. msgid "(none)"
  112. msgstr "(nessuno)"
  113. #: cmdline/apt-cache.cc:1615
  114. msgid " Package pin: "
  115. msgstr " Gancio del pacchetto: "
  116. #. Show the priority tables
  117. #: cmdline/apt-cache.cc:1624
  118. msgid " Version table:"
  119. msgstr " Tabella versione:"
  120. #: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70
  121. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589
  122. #: cmdline/apt-get.cc:2793 cmdline/apt-sortpkgs.cc:144
  123. #, c-format
  124. msgid "%s %s for %s compiled on %s %s\n"
  125. msgstr "%s %s per %s compilato il %s %s\n"
  126. #: cmdline/apt-cache.cc:1745
  127. msgid ""
  128. "Usage: apt-cache [options] command\n"
  129. " apt-cache [options] add file1 [file2 ...]\n"
  130. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  131. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  132. "\n"
  133. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  134. "cache files, and query information from them\n"
  135. "\n"
  136. "Commands:\n"
  137. " add - Add a package file to the source cache\n"
  138. " gencaches - Build both the package and source cache\n"
  139. " showpkg - Show some general information for a single package\n"
  140. " showsrc - Show source records\n"
  141. " stats - Show some basic statistics\n"
  142. " dump - Show the entire file in a terse form\n"
  143. " dumpavail - Print an available file to stdout\n"
  144. " unmet - Show unmet dependencies\n"
  145. " search - Search the package list for a regex pattern\n"
  146. " show - Show a readable record for the package\n"
  147. " showauto - Display a list of automatically installed packages\n"
  148. " depends - Show raw dependency information for a package\n"
  149. " rdepends - Show reverse dependency information for a package\n"
  150. " pkgnames - List the names of all packages in the system\n"
  151. " dotty - Generate package graphs for GraphViz\n"
  152. " xvcg - Generate package graphs for xvcg\n"
  153. " policy - Show policy settings\n"
  154. "\n"
  155. "Options:\n"
  156. " -h This help text.\n"
  157. " -p=? The package cache.\n"
  158. " -s=? The source cache.\n"
  159. " -q Disable progress indicator.\n"
  160. " -i Show only important deps for the unmet command.\n"
  161. " -c=? Read this configuration file\n"
  162. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  163. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  164. msgstr ""
  165. "Uso: apt-cache [OPZIONI] COMANDO\n"
  166. " apt-cache [OPZIONI] add FILE1 [FILE2 ...]\n"
  167. " apt-cache [OPZIONI] showpkg PKG1 [PKG2 ...]\n"
  168. " apt-cache [OPZIONI] showsrc PKG1 [PKG2 ...]\n"
  169. "\n"
  170. "apt-cache è uno strumento di basso livello usato per manipolare \n"
  171. "i file di cache dei binari di APT e cercare informazioni in questi\n"
  172. "\n"
  173. "Comandi:\n"
  174. " add - Aggiunge un file di pacchetti alla cache sorgente\n"
  175. " gencaches - Costruisce sia la cache dei pacchetti sia quella dei "
  176. "sorgenti\n"
  177. " showpkg - Mostra informazioni generali per un singolo pacchetto\n"
  178. " showsrc - Mostra i campi dei sorgenti\n"
  179. " stats - Mostra alcune statistiche di base\n"
  180. " dump - Mostra il file in forma compatta\n"
  181. " dumpavail - Stampa un file \"available\" sullo stdout\n"
  182. " unmet - Mostra le dipendenze non soddisfatte\n"
  183. " search - Cerca nell'elenco dei pacchetti un'espressione regolare\n"
  184. " show - Mostra un campo leggibile per il pacchetto specificato\n"
  185. " showauto - Visualizza un elenco di pacchetti installati automaticamente\n"
  186. " depends - Mostra informazioni di dipendenza per un pacchetto\n"
  187. " rdepends - Mostra informazioni di dipendenza all'incontrario per un "
  188. "pacchetto\n"
  189. " pkgnames - Elenca i nomi di tutti i pacchetti nel sistema\n"
  190. " dotty - Genera un grafo dei pacchetti per GraphViz\n"
  191. " xvcg - Genera un grafo dei pacchetti per xvcg\n"
  192. " policy - Mostra le preferenze adottate\n"
  193. "\n"
  194. "Opzioni:\n"
  195. " -h Mostra questo aiuto\n"
  196. " -p=? La cache dei pacchetti\n"
  197. " -s=? La cache dei sorgenti\n"
  198. " -q Disabilita l'indicatore di avanzamento\n"
  199. " -i Mostra solo dipendenze importanti per il comando unmet\n"
  200. " -c=? Legge come configurazione il file specificato\n"
  201. " -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
  202. "Per maggiori informazioni, consultare le pagine di manuale apt-cache(8) e "
  203. "apt.conf(5).\n"
  204. #: cmdline/apt-cdrom.cc:77
  205. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  206. msgstr "Dare un nome a questo disco, tipo \"Debian 5.0.3 Disco 1\""
  207. #: cmdline/apt-cdrom.cc:92
  208. msgid "Please insert a Disc in the drive and press enter"
  209. msgstr "Inserire un disco nell'unità e premere Invio"
  210. #: cmdline/apt-cdrom.cc:127
  211. #, c-format
  212. msgid "Failed to mount '%s' to '%s'"
  213. msgstr "Mount di \"%s\" su \"%s\" non riuscito"
  214. #: cmdline/apt-cdrom.cc:162
  215. msgid "Repeat this process for the rest of the CDs in your set."
  216. msgstr "Ripetere questo processo per il resto dei CD."
  217. #: cmdline/apt-config.cc:41
  218. msgid "Arguments not in pairs"
  219. msgstr "Argomenti non in coppia"
  220. #: cmdline/apt-config.cc:76
  221. msgid ""
  222. "Usage: apt-config [options] command\n"
  223. "\n"
  224. "apt-config is a simple tool to read the APT config file\n"
  225. "\n"
  226. "Commands:\n"
  227. " shell - Shell mode\n"
  228. " dump - Show the configuration\n"
  229. "\n"
  230. "Options:\n"
  231. " -h This help text.\n"
  232. " -c=? Read this configuration file\n"
  233. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  234. msgstr ""
  235. "Uso: apt-config [OPZIONI] COMANDO\n"
  236. "\n"
  237. "apt-config è uno strumento per leggere il file di configurazione di APT\n"
  238. "\n"
  239. "Comandi:\n"
  240. " shell - Modalità shell\n"
  241. " dump - Mostra la configurazione\n"
  242. "\n"
  243. "Opzioni\n"
  244. " -h Mostra questo aiuto\n"
  245. " -c=? Legge come configurazione il file specificato\n"
  246. " -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
  247. #: cmdline/apt-extracttemplates.cc:98
  248. #, c-format
  249. msgid "%s not a valid DEB package."
  250. msgstr "%s non è un pacchetto DEB valido."
  251. #: cmdline/apt-extracttemplates.cc:232
  252. msgid ""
  253. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  254. "\n"
  255. "apt-extracttemplates is a tool to extract config and template info\n"
  256. "from debian packages\n"
  257. "\n"
  258. "Options:\n"
  259. " -h This help text\n"
  260. " -t Set the temp dir\n"
  261. " -c=? Read this configuration file\n"
  262. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  263. msgstr ""
  264. "Uso: apt-extracttemplates FILE1 [FILE2 ...]\n"
  265. "\n"
  266. "apt-extracttemplates è uno strumento per estrarre configurazioni e template\n"
  267. "dai pacchetti debian\n"
  268. "\n"
  269. "Opzioni:\n"
  270. " -h Mostra questo aiuto\n"
  271. " -t Imposta la directory temporanea\n"
  272. " -c=? Legge come configurazione il file specificato\n"
  273. " -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
  274. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:1171
  275. #, c-format
  276. msgid "Unable to write to %s"
  277. msgstr "Impossibile scrivere in %s"
  278. #: cmdline/apt-extracttemplates.cc:309
  279. msgid "Cannot get debconf version. Is debconf installed?"
  280. msgstr "Impossibile trovare la versione di debconf. È installato?"
  281. #: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347
  282. msgid "Package extension list is too long"
  283. msgstr "L'elenco dell'estensione del pacchetto è troppo lungo"
  284. #: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189
  285. #: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262
  286. #: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298
  287. #, c-format
  288. msgid "Error processing directory %s"
  289. msgstr "Errore nell'elaborare la directory %s"
  290. #: ftparchive/apt-ftparchive.cc:260
  291. msgid "Source extension list is too long"
  292. msgstr "L'elenco dell'estensione del sorgente è troppo lungo"
  293. #: ftparchive/apt-ftparchive.cc:377
  294. msgid "Error writing header to contents file"
  295. msgstr "Errore nella scrittura dell'intestazione nel file \"contents\""
  296. #: ftparchive/apt-ftparchive.cc:407
  297. #, c-format
  298. msgid "Error processing contents %s"
  299. msgstr "Errore nell'elaborare i contenuti %s"
  300. #: ftparchive/apt-ftparchive.cc:595
  301. msgid ""
  302. "Usage: apt-ftparchive [options] command\n"
  303. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  304. " sources srcpath [overridefile [pathprefix]]\n"
  305. " contents path\n"
  306. " release path\n"
  307. " generate config [groups]\n"
  308. " clean config\n"
  309. "\n"
  310. "apt-ftparchive generates index files for Debian archives. It supports\n"
  311. "many styles of generation from fully automated to functional replacements\n"
  312. "for dpkg-scanpackages and dpkg-scansources\n"
  313. "\n"
  314. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  315. "Package file contains the contents of all the control fields from\n"
  316. "each package as well as the MD5 hash and filesize. An override file\n"
  317. "is supported to force the value of Priority and Section.\n"
  318. "\n"
  319. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  320. "The --source-override option can be used to specify a src override file\n"
  321. "\n"
  322. "The 'packages' and 'sources' command should be run in the root of the\n"
  323. "tree. BinaryPath should point to the base of the recursive search and \n"
  324. "override file should contain the override flags. Pathprefix is\n"
  325. "appended to the filename fields if present. Example usage from the \n"
  326. "Debian archive:\n"
  327. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  328. " dists/potato/main/binary-i386/Packages\n"
  329. "\n"
  330. "Options:\n"
  331. " -h This help text\n"
  332. " --md5 Control MD5 generation\n"
  333. " -s=? Source override file\n"
  334. " -q Quiet\n"
  335. " -d=? Select the optional caching database\n"
  336. " --no-delink Enable delinking debug mode\n"
  337. " --contents Control contents file generation\n"
  338. " -c=? Read this configuration file\n"
  339. " -o=? Set an arbitrary configuration option"
  340. msgstr ""
  341. "Uso: apt-ftparchive [OPZIONI] COMANDO\n"
  342. "Comandi: packages PERCORSO_AL_BINARIO [FILE_OVERRIDE [PREFISSO_PERCORSO]\n"
  343. " sources PERCORSO_AI_SORGENTI [FILE_OVERRIDE [PREFISSO_PERCORSO]\n"
  344. " contents PERCORSO\n"
  345. " release PERCORSO\n"
  346. " generate CONFIGURAZIONE [GRUPPI]\n"
  347. " clean CONFIGURAZIONE\n"
  348. "\n"
  349. "apt-ftparchive genera file di indice per gli archivi Debian. Supporta\n"
  350. "molti stili di generazione da completamente automatici ad alternative\n"
  351. "funzionali per dpkg-scanpackages e dpkg-scansources\n"
  352. "\n"
  353. "apt-ftparchive genera file Packages da un albero di \".deb\". Il file\n"
  354. "Package contiene le informazioni di tutti i campi control da ogni\n"
  355. "pacchetto, così come l'hash MD5 e la dimensione del file. Un file override\n"
  356. "è supportato per forzare i valori di priorità e sezione.\n"
  357. "\n"
  358. "Similmente, apt-ftparchive genera file Sources da un albero di .dscs.\n"
  359. "L'opzione --source-override può essere usata per specificare un file\n"
  360. "di override per i sorgenti\n"
  361. "\n"
  362. "I comandi \"packages\" e \"sources\" devono essere eseguiti nella root \n"
  363. "dell'albero. Il percorso al binario deve puntare alla base della ricerca \n"
  364. "ricorsiva e il file override deve contenere le opzioni di override.\n"
  365. "Il prefisso del percorso è aggiunto al campo filename se presente. Esempio\n"
  366. "di utilizzo dall'archivio Debian:\n"
  367. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  368. " dists/potato/main/binary-i386/Packages \n"
  369. "\n"
  370. "Opzioni:\n"
  371. " -h Mostra questo aiuto\n"
  372. " --md5 Controlla la generazione dell'MD5\n"
  373. " -s=? File override dei sorgenti\n"
  374. " -q Silenzioso\n"
  375. " -d=? Seleziona il database di cache opzionale\n"
  376. " --no-delink Abilita la modalità di debug del delinking\n"
  377. " --contents Controlla la generazione del file \"contents\"\n"
  378. " -c=? Legge come configurazione il file specificato\n"
  379. " -o=? Imposta un'opzione arbitraria di configurazione"
  380. #: ftparchive/apt-ftparchive.cc:801
  381. msgid "No selections matched"
  382. msgstr "Nessuna selezione corrisponde"
  383. #: ftparchive/apt-ftparchive.cc:879
  384. #, c-format
  385. msgid "Some files are missing in the package file group `%s'"
  386. msgstr "Mancano alcuni file nel file group di pacchetti \"%s\""
  387. #: ftparchive/cachedb.cc:43
  388. #, c-format
  389. msgid "DB was corrupted, file renamed to %s.old"
  390. msgstr "Il database era danneggiato, il file è stato rinominato in %s.old"
  391. #: ftparchive/cachedb.cc:61
  392. #, c-format
  393. msgid "DB is old, attempting to upgrade %s"
  394. msgstr "Il database è vecchio, tentativo di aggiornamento %s"
  395. #: ftparchive/cachedb.cc:72
  396. msgid ""
  397. "DB format is invalid. If you upgraded from an older version of apt, please "
  398. "remove and re-create the database."
  399. msgstr ""
  400. "Il formato del database non è valido. Se è stato eseguito l'aggiornamento da "
  401. "una vecchia versione di apt, rimuovere e ricreare il database."
  402. #: ftparchive/cachedb.cc:77
  403. #, c-format
  404. msgid "Unable to open DB file %s: %s"
  405. msgstr "Impossibile aprire il file del database %s: %s"
  406. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  407. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  408. #, c-format
  409. msgid "Failed to stat %s"
  410. msgstr "Impossibile eseguire stat su %s"
  411. #: ftparchive/cachedb.cc:242
  412. msgid "Archive has no control record"
  413. msgstr "L'archivio non ha un campo \"control\""
  414. #: ftparchive/cachedb.cc:448
  415. msgid "Unable to get a cursor"
  416. msgstr "Impossibile ottenere un cursore"
  417. # (ndt) messo A per Avviso
  418. # Inizio con la maiuscola dopo i : perché mi sa che in molti
  419. # casi molte stringhe sono così
  420. #: ftparchive/writer.cc:73
  421. #, c-format
  422. msgid "W: Unable to read directory %s\n"
  423. msgstr "A: Impossibile leggere la directory %s\n"
  424. #: ftparchive/writer.cc:78
  425. #, c-format
  426. msgid "W: Unable to stat %s\n"
  427. msgstr "A: Impossibile eseguire stat su %s\n"
  428. #: ftparchive/writer.cc:134
  429. msgid "E: "
  430. msgstr "E: "
  431. #: ftparchive/writer.cc:136
  432. msgid "W: "
  433. msgstr "A: "
  434. #: ftparchive/writer.cc:143
  435. msgid "E: Errors apply to file "
  436. msgstr "E: Gli errori si applicano al file "
  437. #: ftparchive/writer.cc:161 ftparchive/writer.cc:193
  438. #, c-format
  439. msgid "Failed to resolve %s"
  440. msgstr "Risoluzione di %s non riuscita"
  441. #: ftparchive/writer.cc:174
  442. msgid "Tree walking failed"
  443. msgstr "Visita dell'albero non riuscita"
  444. #: ftparchive/writer.cc:201
  445. #, c-format
  446. msgid "Failed to open %s"
  447. msgstr "Apertura di %s non riuscita"
  448. #: ftparchive/writer.cc:260
  449. #, c-format
  450. msgid " DeLink %s [%s]\n"
  451. msgstr " Delink %s [%s]\n"
  452. #: ftparchive/writer.cc:268
  453. #, c-format
  454. msgid "Failed to readlink %s"
  455. msgstr "Esecuzione di readlink su %s non riuscita"
  456. #: ftparchive/writer.cc:272
  457. #, c-format
  458. msgid "Failed to unlink %s"
  459. msgstr "Esecuzione di unlink su %s non riuscita"
  460. #: ftparchive/writer.cc:279
  461. #, c-format
  462. msgid "*** Failed to link %s to %s"
  463. msgstr "*** Collegamento di %s a %s non riuscito"
  464. #: ftparchive/writer.cc:289
  465. #, c-format
  466. msgid " DeLink limit of %sB hit.\n"
  467. msgstr " Raggiunto il limite di DeLink di %sB.\n"
  468. #: ftparchive/writer.cc:393
  469. msgid "Archive had no package field"
  470. msgstr "L'archivio non ha un campo \"package\""
  471. #: ftparchive/writer.cc:401 ftparchive/writer.cc:688
  472. #, c-format
  473. msgid " %s has no override entry\n"
  474. msgstr " %s non ha un campo override\n"
  475. #: ftparchive/writer.cc:464 ftparchive/writer.cc:793
  476. #, c-format
  477. msgid " %s maintainer is %s not %s\n"
  478. msgstr " il responsabile di %s è %s non %s\n"
  479. #: ftparchive/writer.cc:698
  480. #, c-format
  481. msgid " %s has no source override entry\n"
  482. msgstr " %s non ha un campo source override\n"
  483. #: ftparchive/writer.cc:702
  484. #, c-format
  485. msgid " %s has no binary override entry either\n"
  486. msgstr " %s non ha neppure un campo binario override\n"
  487. #: ftparchive/contents.cc:321
  488. #, c-format
  489. msgid "Internal error, could not locate member %s"
  490. msgstr "Errore interno, impossibile trovare il membro %s"
  491. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  492. msgid "realloc - Failed to allocate memory"
  493. msgstr "realloc - Allocazione della memoria non riuscita"
  494. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  495. #, c-format
  496. msgid "Unable to open %s"
  497. msgstr "Impossibile aprire %s"
  498. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  499. #, c-format
  500. msgid "Malformed override %s line %lu #1"
  501. msgstr "Override non corretto: file %s riga %lu #1"
  502. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  503. #, c-format
  504. msgid "Malformed override %s line %lu #2"
  505. msgstr "Override non corretto: file %s riga %lu #2"
  506. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  507. #, c-format
  508. msgid "Malformed override %s line %lu #3"
  509. msgstr "Override non corretto: file %s riga %lu #3"
  510. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  511. #, c-format
  512. msgid "Failed to read the override file %s"
  513. msgstr "Lettura del file override %s non riuscita"
  514. #: ftparchive/multicompress.cc:72
  515. #, c-format
  516. msgid "Unknown compression algorithm '%s'"
  517. msgstr "Algoritmo di compressione \"%s\" sconosciuto"
  518. #: ftparchive/multicompress.cc:102
  519. #, c-format
  520. msgid "Compressed output %s needs a compression set"
  521. msgstr "L'output compresso %s necessita di un insieme di compressione"
  522. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  523. msgid "Failed to create IPC pipe to subprocess"
  524. msgstr "Creazione di una pipe IPC verso il sottoprocesso non riuscita"
  525. #: ftparchive/multicompress.cc:195
  526. msgid "Failed to create FILE*"
  527. msgstr "Creazione di FILE* non riuscita"
  528. #: ftparchive/multicompress.cc:198
  529. msgid "Failed to fork"
  530. msgstr "Fork non riuscita"
  531. #: ftparchive/multicompress.cc:212
  532. msgid "Compress child"
  533. msgstr "Sottoprocesso compresso"
  534. #: ftparchive/multicompress.cc:235
  535. #, c-format
  536. msgid "Internal error, failed to create %s"
  537. msgstr "Errore interno, creazione di %s non riuscita"
  538. #: ftparchive/multicompress.cc:286
  539. msgid "Failed to create subprocess IPC"
  540. msgstr "Creazione di un sottoprocesso IPC non riuscita"
  541. #: ftparchive/multicompress.cc:321
  542. msgid "Failed to exec compressor "
  543. msgstr "Esecuzione non riuscita del compressore "
  544. #: ftparchive/multicompress.cc:360
  545. msgid "decompressor"
  546. msgstr "de-compressore"
  547. #: ftparchive/multicompress.cc:403
  548. msgid "IO to subprocess/file failed"
  549. msgstr "I/O al sottoprocesso/file non riuscito"
  550. #: ftparchive/multicompress.cc:455
  551. msgid "Failed to read while computing MD5"
  552. msgstr "Lettura durante l'elaborazione MD5 non riuscita"
  553. #: ftparchive/multicompress.cc:472
  554. #, c-format
  555. msgid "Problem unlinking %s"
  556. msgstr "Problema nell'unlink di %s"
  557. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  558. #, c-format
  559. msgid "Failed to rename %s to %s"
  560. msgstr "Rinomina di %s in %s non riuscita"
  561. #: cmdline/apt-get.cc:135
  562. msgid "Y"
  563. msgstr "S"
  564. #: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29
  565. #, c-format
  566. msgid "Regex compilation error - %s"
  567. msgstr "Errore di compilazione dell'espressione regolare - %s"
  568. #: cmdline/apt-get.cc:252
  569. msgid "The following packages have unmet dependencies:"
  570. msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:"
  571. #: cmdline/apt-get.cc:342
  572. #, c-format
  573. msgid "but %s is installed"
  574. msgstr "ma la versione %s è installata"
  575. #: cmdline/apt-get.cc:344
  576. #, c-format
  577. msgid "but %s is to be installed"
  578. msgstr "ma la versione %s sta per essere installata"
  579. #: cmdline/apt-get.cc:351
  580. msgid "but it is not installable"
  581. msgstr "ma non è installabile"
  582. #: cmdline/apt-get.cc:353
  583. msgid "but it is a virtual package"
  584. msgstr "ma è un pacchetto virtuale"
  585. #: cmdline/apt-get.cc:356
  586. msgid "but it is not installed"
  587. msgstr "ma non è installato"
  588. #: cmdline/apt-get.cc:356
  589. msgid "but it is not going to be installed"
  590. msgstr "ma non sta per essere installato"
  591. #: cmdline/apt-get.cc:361
  592. msgid " or"
  593. msgstr " oppure"
  594. #: cmdline/apt-get.cc:392
  595. msgid "The following NEW packages will be installed:"
  596. msgstr "I seguenti pacchetti NUOVI saranno installati:"
  597. #: cmdline/apt-get.cc:420
  598. msgid "The following packages will be REMOVED:"
  599. msgstr "I seguenti pacchetti saranno RIMOSSI:"
  600. #: cmdline/apt-get.cc:442
  601. msgid "The following packages have been kept back:"
  602. msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:"
  603. #: cmdline/apt-get.cc:465
  604. msgid "The following packages will be upgraded:"
  605. msgstr "I seguenti pacchetti saranno aggiornati:"
  606. #: cmdline/apt-get.cc:488
  607. msgid "The following packages will be DOWNGRADED:"
  608. msgstr "I seguenti pacchetti saranno RETROCESSI:"
  609. #: cmdline/apt-get.cc:508
  610. msgid "The following held packages will be changed:"
  611. msgstr "I seguenti pacchetti bloccati saranno cambiati:"
  612. #: cmdline/apt-get.cc:563
  613. #, c-format
  614. msgid "%s (due to %s) "
  615. msgstr "%s (a causa di %s) "
  616. #: cmdline/apt-get.cc:571
  617. msgid ""
  618. "WARNING: The following essential packages will be removed.\n"
  619. "This should NOT be done unless you know exactly what you are doing!"
  620. msgstr ""
  621. "ATTENZIONE: i seguenti pacchetti essenziali stanno per essere rimossi.\n"
  622. "Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa "
  623. "si sta facendo."
  624. #: cmdline/apt-get.cc:605
  625. #, c-format
  626. msgid "%lu upgraded, %lu newly installed, "
  627. msgstr "%lu aggiornati, %lu installati, "
  628. #: cmdline/apt-get.cc:609
  629. #, c-format
  630. msgid "%lu reinstalled, "
  631. msgstr "%lu reinstallati, "
  632. #: cmdline/apt-get.cc:611
  633. #, c-format
  634. msgid "%lu downgraded, "
  635. msgstr "%lu retrocessi, "
  636. #: cmdline/apt-get.cc:613
  637. #, c-format
  638. msgid "%lu to remove and %lu not upgraded.\n"
  639. msgstr "%lu da rimuovere e %lu non aggiornati.\n"
  640. #: cmdline/apt-get.cc:617
  641. #, c-format
  642. msgid "%lu not fully installed or removed.\n"
  643. msgstr "%lu non completamente installati o rimossi.\n"
  644. #: cmdline/apt-get.cc:639
  645. #, c-format
  646. msgid "Note, selecting '%s' for task '%s'\n"
  647. msgstr "Nota, viene selezionato \"%s\" per il task \"%s\"\n"
  648. #: cmdline/apt-get.cc:645
  649. #, c-format
  650. msgid "Note, selecting '%s' for regex '%s'\n"
  651. msgstr "Nota, viene selezionato \"%s\" per l'espressione regolare \"%s\"\n"
  652. #: cmdline/apt-get.cc:662
  653. #, c-format
  654. msgid "Package %s is a virtual package provided by:\n"
  655. msgstr "Il pacchetto %s è un pacchetto virtuale fornito da:\n"
  656. #: cmdline/apt-get.cc:673
  657. msgid " [Installed]"
  658. msgstr " [Installato]"
  659. #: cmdline/apt-get.cc:682
  660. msgid " [Not candidate version]"
  661. msgstr " [Versione non candidata]"
  662. #: cmdline/apt-get.cc:684
  663. msgid "You should explicitly select one to install."
  664. msgstr "È necessario sceglierne uno da installare."
  665. #: cmdline/apt-get.cc:687
  666. #, c-format
  667. msgid ""
  668. "Package %s is not available, but is referred to by another package.\n"
  669. "This may mean that the package is missing, has been obsoleted, or\n"
  670. "is only available from another source\n"
  671. msgstr ""
  672. "Il pacchetto %s non ha versioni disponibili, ma è nominato da un altro\n"
  673. "pacchetto. Questo può significare che il pacchetto è mancante, è obsoleto\n"
  674. "oppure è disponibile solo all'interno di un'altra sorgente\n"
  675. #: cmdline/apt-get.cc:705
  676. msgid "However the following packages replace it:"
  677. msgstr "Tuttavia questi pacchetti lo sostituiscono:"
  678. #: cmdline/apt-get.cc:717
  679. #, c-format
  680. msgid "Package '%s' has no installation candidate"
  681. msgstr "Il pacchetto \"%s\" non ha candidati da installare"
  682. #: cmdline/apt-get.cc:728
  683. #, c-format
  684. msgid "Virtual packages like '%s' can't be removed\n"
  685. msgstr "Pacchetti virtuali come \"%s\" non possono essere rimossi\n"
  686. #: cmdline/apt-get.cc:759
  687. #, c-format
  688. msgid "Note, selecting '%s' instead of '%s'\n"
  689. msgstr "Nota, viene selezionato \"%s\" al posto di \"%s\"\n"
  690. #: cmdline/apt-get.cc:789
  691. #, c-format
  692. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  693. msgstr ""
  694. "Viene saltato %s poiché è già installato e l'aggiornamento non è impostato.\n"
  695. #: cmdline/apt-get.cc:793
  696. #, c-format
  697. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  698. msgstr ""
  699. "Viene saltato %s poiché non è installato e sono richiesti solo gli "
  700. "aggiornamenti.\n"
  701. #: cmdline/apt-get.cc:803
  702. #, c-format
  703. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  704. msgstr "La reinstallazione di %s non è possibile, non può essere scaricato.\n"
  705. #: cmdline/apt-get.cc:808
  706. #, c-format
  707. msgid "%s is already the newest version.\n"
  708. msgstr "%s è già alla versione più recente.\n"
  709. #: cmdline/apt-get.cc:827 cmdline/apt-get.cc:2027
  710. #, c-format
  711. msgid "%s set to manually installed.\n"
  712. msgstr "È stato impostato %s per l'installazione manuale.\n"
  713. #: cmdline/apt-get.cc:853
  714. #, c-format
  715. msgid "Selected version '%s' (%s) for '%s'\n"
  716. msgstr "Versione \"%s\" (%s) selezionata per \"%s\"\n"
  717. #: cmdline/apt-get.cc:858
  718. #, fuzzy, c-format
  719. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  720. msgstr "Versione \"%s\" (%s) selezionata per \"%s\"\n"
  721. #: cmdline/apt-get.cc:898
  722. #, c-format
  723. msgid "Package %s is not installed, so not removed\n"
  724. msgstr "Il pacchetto %s non è installato e quindi non è stato rimosso\n"
  725. #: cmdline/apt-get.cc:973
  726. msgid "Correcting dependencies..."
  727. msgstr "Correzione delle dipendenze..."
  728. #: cmdline/apt-get.cc:976
  729. msgid " failed."
  730. msgstr " non riuscita."
  731. #: cmdline/apt-get.cc:979
  732. msgid "Unable to correct dependencies"
  733. msgstr "Impossibile correggere le dipendenze"
  734. #: cmdline/apt-get.cc:982
  735. msgid "Unable to minimize the upgrade set"
  736. msgstr "Impossibile minimizzare l'insieme da aggiornare"
  737. #: cmdline/apt-get.cc:984
  738. msgid " Done"
  739. msgstr " Fatto"
  740. #: cmdline/apt-get.cc:988
  741. msgid "You might want to run 'apt-get -f install' to correct these."
  742. msgstr "È utile eseguire \"apt-get -f install\" per correggere ciò."
  743. #: cmdline/apt-get.cc:991
  744. msgid "Unmet dependencies. Try using -f."
  745. msgstr "Dipendenze non trovate. Riprovare usando -f."
  746. #: cmdline/apt-get.cc:1016
  747. msgid "WARNING: The following packages cannot be authenticated!"
  748. msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati."
  749. #: cmdline/apt-get.cc:1020
  750. msgid "Authentication warning overridden.\n"
  751. msgstr "Avviso di autenticazione disabilitato.\n"
  752. #: cmdline/apt-get.cc:1027
  753. msgid "Install these packages without verification [y/N]? "
  754. msgstr "Installare questi pacchetti senza verificarli [s/N]? "
  755. #: cmdline/apt-get.cc:1029
  756. msgid "Some packages could not be authenticated"
  757. msgstr "Alcuni pacchetti non possono essere autenticati"
  758. #: cmdline/apt-get.cc:1038 cmdline/apt-get.cc:1199
  759. msgid "There are problems and -y was used without --force-yes"
  760. msgstr "Si sono verificati dei problemi ed è stata usata -y senza --force-yes"
  761. #: cmdline/apt-get.cc:1079
  762. msgid "Internal error, InstallPackages was called with broken packages!"
  763. msgstr ""
  764. "Errore interno, InstallPackages è stato chiamato con un pacchetto "
  765. "danneggiato."
  766. #: cmdline/apt-get.cc:1088
  767. msgid "Packages need to be removed but remove is disabled."
  768. msgstr ""
  769. "I pacchetti devono essere rimossi, ma l'azione di rimozione è disabilitata."
  770. #: cmdline/apt-get.cc:1099
  771. msgid "Internal error, Ordering didn't finish"
  772. msgstr "Errore interno, l'ordinamento non è stato terminato"
  773. #: cmdline/apt-get.cc:1137
  774. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  775. msgstr ""
  776. "Le dimensioni non corrispondono. Inviare un'email a: apt@packages.debian.org"
  777. #. TRANSLATOR: The required space between number and unit is already included
  778. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  779. #: cmdline/apt-get.cc:1144
  780. #, c-format
  781. msgid "Need to get %sB/%sB of archives.\n"
  782. msgstr "È necessario scaricare %sB/%sB di archivi.\n"
  783. #. TRANSLATOR: The required space between number and unit is already included
  784. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  785. #: cmdline/apt-get.cc:1149
  786. #, c-format
  787. msgid "Need to get %sB of archives.\n"
  788. msgstr "È necessario scaricare %sB di archivi.\n"
  789. #. TRANSLATOR: The required space between number and unit is already included
  790. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  791. #: cmdline/apt-get.cc:1156
  792. #, c-format
  793. msgid "After this operation, %sB of additional disk space will be used.\n"
  794. msgstr "Dopo quest'operazione, verranno occupati %sB di spazio su disco.\n"
  795. #. TRANSLATOR: The required space between number and unit is already included
  796. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  797. #: cmdline/apt-get.cc:1161
  798. #, c-format
  799. msgid "After this operation, %sB disk space will be freed.\n"
  800. msgstr "Dopo quest'operazione, verranno liberati %sB di spazio su disco.\n"
  801. #: cmdline/apt-get.cc:1176 cmdline/apt-get.cc:1179 cmdline/apt-get.cc:2367
  802. #: cmdline/apt-get.cc:2370
  803. #, c-format
  804. msgid "Couldn't determine free space in %s"
  805. msgstr "Impossibile determinare lo spazio libero in %s"
  806. #: cmdline/apt-get.cc:1189
  807. #, c-format
  808. msgid "You don't have enough free space in %s."
  809. msgstr "Spazio libero in %s insufficiente."
  810. #: cmdline/apt-get.cc:1205 cmdline/apt-get.cc:1225
  811. msgid "Trivial Only specified but this is not a trivial operation."
  812. msgstr ""
  813. "È stata specificata la modalità \"Trivial Only\", ma questa non è "
  814. "un'operazione banale."
  815. #: cmdline/apt-get.cc:1207
  816. msgid "Yes, do as I say!"
  817. msgstr "Sì, esegui come da richiesta."
  818. #: cmdline/apt-get.cc:1209
  819. #, c-format
  820. msgid ""
  821. "You are about to do something potentially harmful.\n"
  822. "To continue type in the phrase '%s'\n"
  823. " ?] "
  824. msgstr ""
  825. "Si sta per compiere un'azione potenzialmente pericolosa.\n"
  826. "Per continuare scrivere la frase \"%s\"\n"
  827. " ?] "
  828. #: cmdline/apt-get.cc:1215 cmdline/apt-get.cc:1234
  829. msgid "Abort."
  830. msgstr "Interrotto."
  831. #: cmdline/apt-get.cc:1230
  832. msgid "Do you want to continue [Y/n]? "
  833. msgstr "Continuare [S/n]? "
  834. #: cmdline/apt-get.cc:1302 cmdline/apt-get.cc:2427 apt-pkg/algorithms.cc:1470
  835. #, c-format
  836. msgid "Failed to fetch %s %s\n"
  837. msgstr "Impossibile recuperare %s %s\n"
  838. #: cmdline/apt-get.cc:1320
  839. msgid "Some files failed to download"
  840. msgstr "Scaricamento di alcuni file non riuscito"
  841. #: cmdline/apt-get.cc:1321 cmdline/apt-get.cc:2436
  842. msgid "Download complete and in download only mode"
  843. msgstr "Scaricamento completato e in modalità solo scaricamento"
  844. #: cmdline/apt-get.cc:1327
  845. msgid ""
  846. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  847. "missing?"
  848. msgstr ""
  849. "Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire \"apt-"
  850. "get update\" o provare l'opzione \"--fix-missing\"."
  851. #: cmdline/apt-get.cc:1331
  852. msgid "--fix-missing and media swapping is not currently supported"
  853. msgstr "--fix-missing su supporti estraibili non è ancora supportato"
  854. #: cmdline/apt-get.cc:1336
  855. msgid "Unable to correct missing packages."
  856. msgstr "Impossibile correggere i pacchetti mancanti."
  857. #: cmdline/apt-get.cc:1337
  858. msgid "Aborting install."
  859. msgstr "Interruzione dell'installazione."
  860. #: cmdline/apt-get.cc:1365
  861. msgid ""
  862. "The following package disappeared from your system as\n"
  863. "all files have been overwritten by other packages:"
  864. msgid_plural ""
  865. "The following packages disappeared from your system as\n"
  866. "all files have been overwritten by other packages:"
  867. msgstr[0] ""
  868. "Il seguente pacchetto è sparito dal sistema poiché\n"
  869. "tutti i file sono stati sovrascritti da altri pacchetti:"
  870. msgstr[1] ""
  871. "I seguenti pacchetti sono spariti dal sistema poiché\n"
  872. "tutti i file sono stati sovrascritti da altri pacchetti:"
  873. #: cmdline/apt-get.cc:1369
  874. msgid "Note: This is done automatic and on purpose by dpkg."
  875. msgstr "Nota: questo viene svolto automaticamente da dpkg."
  876. #: cmdline/apt-get.cc:1499
  877. #, c-format
  878. msgid "Ignore unavailable target release '%s' of package '%s'"
  879. msgstr "Ignorato il rilascio non disponibile \"%s\" del pacchetto \"%s\""
  880. #: cmdline/apt-get.cc:1531
  881. #, c-format
  882. msgid "Picking '%s' as source package instead of '%s'\n"
  883. msgstr "Scelto \"%s\" come pacchetto sorgente al posto di \"%s\"\n"
  884. #. if (VerTag.empty() == false && Last == 0)
  885. #: cmdline/apt-get.cc:1569
  886. #, c-format
  887. msgid "Ignore unavailable version '%s' of package '%s'"
  888. msgstr "Ignorata la versione \"%s\" non disponibile del pacchetto \"%s\""
  889. #: cmdline/apt-get.cc:1585
  890. msgid "The update command takes no arguments"
  891. msgstr "Il comando update non accetta argomenti"
  892. #: cmdline/apt-get.cc:1647
  893. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  894. msgstr ""
  895. "Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover"
  896. #: cmdline/apt-get.cc:1699
  897. msgid ""
  898. "Hmm, seems like the AutoRemover destroyed something which really\n"
  899. "shouldn't happen. Please file a bug report against apt."
  900. msgstr ""
  901. "Sembra che AutoRemover abbia rovinato qualcosa e questo\n"
  902. "non doveva accadere. Segnalare un bug riguardo apt."
  903. #.
  904. #. if (Packages == 1)
  905. #. {
  906. #. c1out << endl;
  907. #. c1out <<
  908. #. _("Since you only requested a single operation it is extremely likely that\n"
  909. #. "the package is simply not installable and a bug report against\n"
  910. #. "that package should be filed.") << endl;
  911. #. }
  912. #.
  913. #: cmdline/apt-get.cc:1702 cmdline/apt-get.cc:1858
  914. msgid "The following information may help to resolve the situation:"
  915. msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione:"
  916. #: cmdline/apt-get.cc:1706
  917. msgid "Internal Error, AutoRemover broke stuff"
  918. msgstr "Errore interno, AutoRemover ha rovinato qualche cosa"
  919. #: cmdline/apt-get.cc:1713
  920. msgid ""
  921. "The following package was automatically installed and is no longer required:"
  922. msgid_plural ""
  923. "The following packages were automatically installed and are no longer "
  924. "required:"
  925. msgstr[0] ""
  926. "Il seguente pacchetto è stato installato automaticamente e non è più "
  927. "richiesto:"
  928. msgstr[1] ""
  929. "I seguenti pacchetti sono stati installati automaticamente e non sono più "
  930. "richiesti:"
  931. #: cmdline/apt-get.cc:1717
  932. #, c-format
  933. msgid "%lu package was automatically installed and is no longer required.\n"
  934. msgid_plural ""
  935. "%lu packages were automatically installed and are no longer required.\n"
  936. msgstr[0] ""
  937. "%lu pacchetto è stato installato automaticamente e non è più richiesto.\n"
  938. msgstr[1] ""
  939. "%lu pacchetti sono stati installati automaticamente e non sono più "
  940. "richiesti.\n"
  941. #: cmdline/apt-get.cc:1719
  942. msgid "Use 'apt-get autoremove' to remove them."
  943. msgstr "Usare \"apt-get autoremove\" per rimuoverli."
  944. #: cmdline/apt-get.cc:1738
  945. msgid "Internal error, AllUpgrade broke stuff"
  946. msgstr "Errore interno, AllUpgrade ha rovinato qualche cosa"
  947. #: cmdline/apt-get.cc:1828
  948. msgid "You might want to run 'apt-get -f install' to correct these:"
  949. msgstr ""
  950. "È utile eseguire \"apt-get -f install\" per correggere questi problemi:"
  951. #: cmdline/apt-get.cc:1831
  952. msgid ""
  953. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  954. "solution)."
  955. msgstr ""
  956. "Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti "
  957. "(o specificare una soluzione)."
  958. #: cmdline/apt-get.cc:1843
  959. msgid ""
  960. "Some packages could not be installed. This may mean that you have\n"
  961. "requested an impossible situation or if you are using the unstable\n"
  962. "distribution that some required packages have not yet been created\n"
  963. "or been moved out of Incoming."
  964. msgstr ""
  965. "Alcuni pacchetti non possono essere installati. Questo può voler dire\n"
  966. "che è stata richiesta una situazione impossibile oppure, se si sta\n"
  967. "usando una distribuzione in sviluppo, che alcuni pacchetti richiesti\n"
  968. "non sono ancora stati creati o sono stati rimossi da Incoming."
  969. #: cmdline/apt-get.cc:1861
  970. msgid "Broken packages"
  971. msgstr "Pacchetti danneggiati"
  972. #: cmdline/apt-get.cc:1889
  973. msgid "The following extra packages will be installed:"
  974. msgstr "I seguenti pacchetti saranno inoltre installati:"
  975. #: cmdline/apt-get.cc:1979
  976. msgid "Suggested packages:"
  977. msgstr "Pacchetti suggeriti:"
  978. #: cmdline/apt-get.cc:1980
  979. msgid "Recommended packages:"
  980. msgstr "Pacchetti raccomandati:"
  981. #: cmdline/apt-get.cc:2022
  982. #, c-format
  983. msgid "Couldn't find package %s"
  984. msgstr "Impossibile trovare il pacchetto %s"
  985. #: cmdline/apt-get.cc:2029
  986. #, c-format
  987. msgid "%s set to automatically installed.\n"
  988. msgstr "%s impostato automaticamente come installato.\n"
  989. #: cmdline/apt-get.cc:2050
  990. msgid "Calculating upgrade... "
  991. msgstr "Calcolo dell'aggiornamento... "
  992. #: cmdline/apt-get.cc:2053 methods/ftp.cc:707 methods/connect.cc:111
  993. msgid "Failed"
  994. msgstr "Non riuscito"
  995. #: cmdline/apt-get.cc:2058
  996. msgid "Done"
  997. msgstr "Eseguito"
  998. #: cmdline/apt-get.cc:2125 cmdline/apt-get.cc:2133
  999. msgid "Internal error, problem resolver broke stuff"
  1000. msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa"
  1001. #: cmdline/apt-get.cc:2157 cmdline/apt-get.cc:2190
  1002. msgid "Unable to lock the download directory"
  1003. msgstr "Impossibile bloccare la directory di scaricamento"
  1004. #: cmdline/apt-get.cc:2233
  1005. msgid "Must specify at least one package to fetch source for"
  1006. msgstr ""
  1007. "È necessario specificare almeno un pacchetto di cui recuperare il sorgente"
  1008. #: cmdline/apt-get.cc:2273 cmdline/apt-get.cc:2554
  1009. #, c-format
  1010. msgid "Unable to find a source package for %s"
  1011. msgstr "Impossibile trovare un pacchetto sorgente per %s"
  1012. #: cmdline/apt-get.cc:2289
  1013. #, c-format
  1014. msgid ""
  1015. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  1016. "%s\n"
  1017. msgstr ""
  1018. "Nota: il processo di pacchettizzazione di \"%s\" è mantenuto\n"
  1019. "all'interno del sistema di controllo della versione \"%s\" presso:\n"
  1020. "%s\n"
  1021. #: cmdline/apt-get.cc:2294
  1022. #, c-format
  1023. msgid ""
  1024. "Please use:\n"
  1025. "bzr get %s\n"
  1026. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  1027. msgstr ""
  1028. "Usare:\n"
  1029. "bzr get %s\n"
  1030. "per recuperare gli ultimi (e probabilmente non rilasciati) aggiornamenti del "
  1031. "pacchetto.\n"
  1032. #: cmdline/apt-get.cc:2345
  1033. #, c-format
  1034. msgid "Skipping already downloaded file '%s'\n"
  1035. msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n"
  1036. #: cmdline/apt-get.cc:2380
  1037. #, c-format
  1038. msgid "You don't have enough free space in %s"
  1039. msgstr "Lo spazio libero in %s è insufficiente"
  1040. #. TRANSLATOR: The required space between number and unit is already included
  1041. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1042. #: cmdline/apt-get.cc:2388
  1043. #, c-format
  1044. msgid "Need to get %sB/%sB of source archives.\n"
  1045. msgstr "È necessario recuperare %sB/%sB di sorgenti.\n"
  1046. #. TRANSLATOR: The required space between number and unit is already included
  1047. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1048. #: cmdline/apt-get.cc:2393
  1049. #, c-format
  1050. msgid "Need to get %sB of source archives.\n"
  1051. msgstr "È necessario scaricare %sB di sorgenti.\n"
  1052. #: cmdline/apt-get.cc:2399
  1053. #, c-format
  1054. msgid "Fetch source %s\n"
  1055. msgstr "Recupero sorgente %s\n"
  1056. #: cmdline/apt-get.cc:2432
  1057. msgid "Failed to fetch some archives."
  1058. msgstr "Recupero di alcuni archivi non riuscito."
  1059. #: cmdline/apt-get.cc:2462
  1060. #, c-format
  1061. msgid "Skipping unpack of already unpacked source in %s\n"
  1062. msgstr "Estrazione del pacchetto sorgente già estratto in %s saltata\n"
  1063. #: cmdline/apt-get.cc:2474
  1064. #, c-format
  1065. msgid "Unpack command '%s' failed.\n"
  1066. msgstr "Comando di estrazione \"%s\" non riuscito.\n"
  1067. #: cmdline/apt-get.cc:2475
  1068. #, c-format
  1069. msgid "Check if the 'dpkg-dev' package is installed.\n"
  1070. msgstr "Verificare che il pacchetto \"dpkg-dev\" sia installato.\n"
  1071. #: cmdline/apt-get.cc:2492
  1072. #, c-format
  1073. msgid "Build command '%s' failed.\n"
  1074. msgstr "Comando \"%s\" di generazione non riuscito.\n"
  1075. #: cmdline/apt-get.cc:2512
  1076. msgid "Child process failed"
  1077. msgstr "Creazione processo figlio non riuscita"
  1078. #: cmdline/apt-get.cc:2528
  1079. msgid "Must specify at least one package to check builddeps for"
  1080. msgstr ""
  1081. "È necessario specificare almeno un pacchetto di cui controllare le "
  1082. "dipendenze di generazione"
  1083. #: cmdline/apt-get.cc:2559
  1084. #, c-format
  1085. msgid "Unable to get build-dependency information for %s"
  1086. msgstr "Impossibile ottenere informazioni di dipendenza di generazione per %s"
  1087. #: cmdline/apt-get.cc:2579
  1088. #, c-format
  1089. msgid "%s has no build depends.\n"
  1090. msgstr "%s non ha dipendenze di generazione.\n"
  1091. #: cmdline/apt-get.cc:2630
  1092. #, c-format
  1093. msgid ""
  1094. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1095. "found"
  1096. msgstr ""
  1097. "%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s "
  1098. "non può essere trovato"
  1099. #: cmdline/apt-get.cc:2683
  1100. #, c-format
  1101. msgid ""
  1102. "%s dependency for %s cannot be satisfied because no available versions of "
  1103. "package %s can satisfy version requirements"
  1104. msgstr ""
  1105. "%s dipendenze per %s non possono essere soddisfatte perché nessuna versione "
  1106. "del pacchetto %s può soddisfare le richieste di versione"
  1107. #: cmdline/apt-get.cc:2719
  1108. #, c-format
  1109. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1110. msgstr ""
  1111. "La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s "
  1112. "è troppo recente"
  1113. #: cmdline/apt-get.cc:2746
  1114. #, c-format
  1115. msgid "Failed to satisfy %s dependency for %s: %s"
  1116. msgstr "La dipendenza %s per %s non è stata soddisfatta: %s"
  1117. #: cmdline/apt-get.cc:2762
  1118. #, c-format
  1119. msgid "Build-dependencies for %s could not be satisfied."
  1120. msgstr "Le dipendenze di generazione per %s non sono state soddisfatte."
  1121. #: cmdline/apt-get.cc:2767
  1122. msgid "Failed to process build dependencies"
  1123. msgstr "Elaborazione delle dipendenze di generazione non riuscita"
  1124. #: cmdline/apt-get.cc:2798
  1125. msgid "Supported modules:"
  1126. msgstr "Moduli supportati:"
  1127. #: cmdline/apt-get.cc:2839
  1128. msgid ""
  1129. "Usage: apt-get [options] command\n"
  1130. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1131. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1132. "\n"
  1133. "apt-get is a simple command line interface for downloading and\n"
  1134. "installing packages. The most frequently used commands are update\n"
  1135. "and install.\n"
  1136. "\n"
  1137. "Commands:\n"
  1138. " update - Retrieve new lists of packages\n"
  1139. " upgrade - Perform an upgrade\n"
  1140. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1141. " remove - Remove packages\n"
  1142. " autoremove - Remove automatically all unused packages\n"
  1143. " purge - Remove packages and config files\n"
  1144. " source - Download source archives\n"
  1145. " build-dep - Configure build-dependencies for source packages\n"
  1146. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1147. " dselect-upgrade - Follow dselect selections\n"
  1148. " clean - Erase downloaded archive files\n"
  1149. " autoclean - Erase old downloaded archive files\n"
  1150. " check - Verify that there are no broken dependencies\n"
  1151. " markauto - Mark the given packages as automatically installed\n"
  1152. " unmarkauto - Mark the given packages as manually installed\n"
  1153. "\n"
  1154. "Options:\n"
  1155. " -h This help text.\n"
  1156. " -q Loggable output - no progress indicator\n"
  1157. " -qq No output except for errors\n"
  1158. " -d Download only - do NOT install or unpack archives\n"
  1159. " -s No-act. Perform ordering simulation\n"
  1160. " -y Assume Yes to all queries and do not prompt\n"
  1161. " -f Attempt to correct a system with broken dependencies in place\n"
  1162. " -m Attempt to continue if archives are unlocatable\n"
  1163. " -u Show a list of upgraded packages as well\n"
  1164. " -b Build the source package after fetching it\n"
  1165. " -V Show verbose version numbers\n"
  1166. " -c=? Read this configuration file\n"
  1167. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1168. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1169. "pages for more information and options.\n"
  1170. " This APT has Super Cow Powers.\n"
  1171. msgstr ""
  1172. "Uso: apt-get [OPZIONI] COMANDO\n"
  1173. " apt-get [OPZIONI] install|remove PKG1 [PKG2 ...]\n"
  1174. " apt-get [OPZIONI] source PKG1 [PKG2 ...]\n"
  1175. "\n"
  1176. "apt-get è una semplice interfaccia a riga di comando per scaricare \n"
  1177. "e installare pacchetti. I comandi più usati sono update e install.\n"
  1178. "\n"
  1179. "Comandi:\n"
  1180. " update - Scarica l'elenco aggiornato dei pacchetti\n"
  1181. " upgrade - Esegue un aggiornamento dei pacchetti installati\n"
  1182. " install - Installa nuovi pacchetti (PKG è libc6 non libc6.deb)\n"
  1183. " remove - Rimuove i pacchetti\n"
  1184. " autoremove - Rimuove automaticamente i pacchetti inutilizzati\n"
  1185. " purge - Rimuove i pacchetti e la loro configurazione\n"
  1186. " source - Scarica i pacchetti sorgente\n"
  1187. " build-dep - Configura le dipendenze di generazione per i pacchetti "
  1188. "sorgente\n"
  1189. " dist-upgrade - Esegue un avanzamento della distribuzione, consultare apt-"
  1190. "get(8)\n"
  1191. " dselect-upgrade - Segue le selezioni di dselect\n"
  1192. " clean - Elimina i file dei pacchetti scaricati\n"
  1193. " autoclean - Elimina i vecchi pacchetti scaricati\n"
  1194. " check - Verifica che non ci siano dipendenze insoddisfatte\n"
  1195. " markauto - Imposta i pacchetti forniti come installati automaticamente\n"
  1196. " unmarkauto - Imposta i pacchetti forniti come installati manualmente\n"
  1197. "\n"
  1198. "Opzioni:\n"
  1199. " -h Mostra questo aiuto\n"
  1200. " -q Output registrabile, nessun indicatore di avanzamento\n"
  1201. " -qq Nessun output eccetto gli errori\n"
  1202. " -d Scarica solamente, NON installa o decomprime gli archivi\n"
  1203. " -s Nessuna azione, simula i passi in ordine\n"
  1204. " -y Assume una risposta affermativa a tutte le domande e non chiede "
  1205. "conferma\n"
  1206. " -f Tenta di continuare se il controllo di integrità non riesce\n"
  1207. " -m Tenta di continuare se gli archivi non sono localizzabili\n"
  1208. " -u Mostra anche un elenco dei pacchetti aggiornati\n"
  1209. " -b Genera il pacchetto sorgente dopo averlo recuperato\n"
  1210. " -V Mostra prolissamente i numeri di versione\n"
  1211. " -c=? Legge come configurazione il file specificato\n"
  1212. " -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tmp\n"
  1213. "Per maggiori informazioni e opzioni, consultare le pagine di manuale\n"
  1214. "apt-get(8), sources.list(5) e apt.conf(5).\n"
  1215. " Questo APT ha i poteri della Super Mucca.\n"
  1216. #: cmdline/apt-get.cc:2995
  1217. msgid ""
  1218. "NOTE: This is only a simulation!\n"
  1219. " apt-get needs root privileges for real execution.\n"
  1220. " Keep also in mind that locking is deactivated,\n"
  1221. " so don't depend on the relevance to the real current situation!"
  1222. msgstr ""
  1223. "Nota: questa è solo una simulazione.\n"
  1224. " apt-get necessita dei privilegi di root per la normale esecuzione.\n"
  1225. " Inoltre, il meccanismo di blocco non è attivato e non è quindi\n"
  1226. " utile dare importanza a tutto ciò per una situazione reale."
  1227. #: cmdline/acqprogress.cc:57
  1228. msgid "Hit "
  1229. msgstr "Trovato "
  1230. #: cmdline/acqprogress.cc:81
  1231. msgid "Get:"
  1232. msgstr "Scaricamento di:"
  1233. # (ndt) questa non so cosa voglia dire
  1234. #: cmdline/acqprogress.cc:112
  1235. msgid "Ign "
  1236. msgstr "Ign "
  1237. #: cmdline/acqprogress.cc:116
  1238. msgid "Err "
  1239. msgstr "Err "
  1240. #: cmdline/acqprogress.cc:137
  1241. #, c-format
  1242. msgid "Fetched %sB in %s (%sB/s)\n"
  1243. msgstr "Recuperati %sB in %s (%sB/s)\n"
  1244. #: cmdline/acqprogress.cc:227
  1245. #, c-format
  1246. msgid " [Working]"
  1247. msgstr " [In lavorazione]"
  1248. #: cmdline/acqprogress.cc:283
  1249. #, c-format
  1250. msgid ""
  1251. "Media change: please insert the disc labeled\n"
  1252. " '%s'\n"
  1253. "in the drive '%s' and press enter\n"
  1254. msgstr ""
  1255. "Cambio disco: inserire il disco chiamato\n"
  1256. " \"%s\"\n"
  1257. "nell'unità \"%s\" e premere Invio\n"
  1258. #: cmdline/apt-sortpkgs.cc:86
  1259. msgid "Unknown package record!"
  1260. msgstr "Record del pacchetto sconosciuto."
  1261. #: cmdline/apt-sortpkgs.cc:150
  1262. msgid ""
  1263. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1264. "\n"
  1265. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1266. "to indicate what kind of file it is.\n"
  1267. "\n"
  1268. "Options:\n"
  1269. " -h This help text\n"
  1270. " -s Use source file sorting\n"
  1271. " -c=? Read this configuration file\n"
  1272. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1273. msgstr ""
  1274. "Uso: apt-sortpkgs [OPZIONI] FILE1 [FILE2 ...]\n"
  1275. "\n"
  1276. "apt-sortpkgs è uno strumento per ordinare i file dei pacchetti.\n"
  1277. "L'opzione -s è usata per indicare il tipo di file.\n"
  1278. "\n"
  1279. "Opzioni:\n"
  1280. " -h Mostra questo aiuto\n"
  1281. " -s Ordina per pacchetto sorgente\n"
  1282. " -c=? Legge come configurazione il file specificato\n"
  1283. " -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tmp\n"
  1284. #: dselect/install:32
  1285. msgid "Bad default setting!"
  1286. msgstr "Impostazione predefinita errata."
  1287. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1288. #: dselect/install:105 dselect/update:45
  1289. msgid "Press enter to continue."
  1290. msgstr "Premere Invio per continuare."
  1291. #: dselect/install:91
  1292. msgid "Do you want to erase any previously downloaded .deb files?"
  1293. msgstr "Eliminare tutti i file .deb precedentemente scaricati?"
  1294. # Note to translators: The following four messages belong together. It doesn't
  1295. # matter where sentences start, but it has to fit in just these four lines, and
  1296. # at only 80 characters per line, if possible.
  1297. #: dselect/install:101
  1298. msgid "Some errors occurred while unpacking. Packages that were installed"
  1299. msgstr ""
  1300. "Si sono verificati alcuni errori nell'estrazione. Verrà tentata la "
  1301. "configurazione "
  1302. #: dselect/install:102
  1303. msgid "will be configured. This may result in duplicate errors"
  1304. msgstr "dei pacchetti installati. Questo potrebbe generare errori duplicati "
  1305. #: dselect/install:103
  1306. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1307. msgstr "o errori causati da dipendenze mancanti. Questo non causa problemi, "
  1308. #: dselect/install:104
  1309. msgid ""
  1310. "above this message are important. Please fix them and run [I]nstall again"
  1311. msgstr ""
  1312. "gli errori precedenti sono importanti. Correggerli e rieseguire "
  1313. "l'installazione [I]"
  1314. #: dselect/update:30
  1315. msgid "Merging available information"
  1316. msgstr "Unione delle informazioni disponibili"
  1317. #: apt-inst/contrib/extracttar.cc:114
  1318. msgid "Failed to create pipes"
  1319. msgstr "Creazione delle pipe non riuscita"
  1320. #: apt-inst/contrib/extracttar.cc:141
  1321. msgid "Failed to exec gzip "
  1322. msgstr "Esecuzione di gzip non riuscita"
  1323. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1324. msgid "Corrupted archive"
  1325. msgstr "Archivio danneggiato"
  1326. #: apt-inst/contrib/extracttar.cc:193
  1327. msgid "Tar checksum failed, archive corrupted"
  1328. msgstr "Checksum di tar non riuscito, archivio danneggiato"
  1329. #: apt-inst/contrib/extracttar.cc:296
  1330. #, c-format
  1331. msgid "Unknown TAR header type %u, member %s"
  1332. msgstr "Intestazione TAR di tipo %u sconosciuta, member %s"
  1333. #: apt-inst/contrib/arfile.cc:70
  1334. msgid "Invalid archive signature"
  1335. msgstr "Firma dell'archivio non valida"
  1336. #: apt-inst/contrib/arfile.cc:78
  1337. msgid "Error reading archive member header"
  1338. msgstr "Errore nel leggere l'intestazione member dell'archivio"
  1339. #: apt-inst/contrib/arfile.cc:90
  1340. #, c-format
  1341. msgid "Invalid archive member header %s"
  1342. msgstr "Intestazione member dell'archivio %s non valida"
  1343. #: apt-inst/contrib/arfile.cc:102
  1344. msgid "Invalid archive member header"
  1345. msgstr "Intestazione member dell'archivio non valida"
  1346. #: apt-inst/contrib/arfile.cc:128
  1347. msgid "Archive is too short"
  1348. msgstr "L'archivio è troppo piccolo"
  1349. #: apt-inst/contrib/arfile.cc:132
  1350. msgid "Failed to read the archive headers"
  1351. msgstr "Lettura delle intestazioni dell'archivio non riuscita"
  1352. #: apt-inst/filelist.cc:380
  1353. msgid "DropNode called on still linked node"
  1354. msgstr "DropNode invocata su un nodo ancora collegato"
  1355. #: apt-inst/filelist.cc:412
  1356. msgid "Failed to locate the hash element!"
  1357. msgstr "Localizzazione dell'elemento hash non riuscita."
  1358. #: apt-inst/filelist.cc:459
  1359. msgid "Failed to allocate diversion"
  1360. msgstr "Allocazione della deviazione non riuscita"
  1361. #: apt-inst/filelist.cc:464
  1362. msgid "Internal error in AddDiversion"
  1363. msgstr "Errore interno in AddDiversion"
  1364. #: apt-inst/filelist.cc:477
  1365. #, c-format
  1366. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1367. msgstr "Tentativo di sovrascrivere una deviazione, %s -> %s e %s/%s"
  1368. #: apt-inst/filelist.cc:506
  1369. #, c-format
  1370. msgid "Double add of diversion %s -> %s"
  1371. msgstr "Doppia aggiunta di deviazione %s -> %s"
  1372. #: apt-inst/filelist.cc:549
  1373. #, c-format
  1374. msgid "Duplicate conf file %s/%s"
  1375. msgstr "File di configurazione duplicato %s/%s"
  1376. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1377. #, c-format
  1378. msgid "Failed to write file %s"
  1379. msgstr "Scrittura del file %s non riuscita"
  1380. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1381. #, c-format
  1382. msgid "Failed to close file %s"
  1383. msgstr "Chiusura del file %s non riuscita"
  1384. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1385. #, c-format
  1386. msgid "The path %s is too long"
  1387. msgstr "Il percorso %s è troppo lungo"
  1388. #: apt-inst/extract.cc:124
  1389. #, c-format
  1390. msgid "Unpacking %s more than once"
  1391. msgstr "Estrazione di %s eseguita più di una volta"
  1392. #: apt-inst/extract.cc:134
  1393. #, c-format
  1394. msgid "The directory %s is diverted"
  1395. msgstr "La directory %s è deviata"
  1396. #: apt-inst/extract.cc:144
  1397. #, c-format
  1398. msgid "The package is trying to write to the diversion target %s/%s"
  1399. msgstr ""
  1400. "Il pacchetto sta cercando di scrivere nell'obiettivo di deviazione %s/%s"
  1401. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1402. msgid "The diversion path is too long"
  1403. msgstr "Il percorso della deviazione è troppo lungo"
  1404. #: apt-inst/extract.cc:240
  1405. #, c-format
  1406. msgid "The directory %s is being replaced by a non-directory"
  1407. msgstr "La directory %s sta per essere sostituita da una non-directory"
  1408. #: apt-inst/extract.cc:280
  1409. msgid "Failed to locate node in its hash bucket"
  1410. msgstr "Localizzazione del nodo nel suo hash bucket non riuscita"
  1411. #: apt-inst/extract.cc:284
  1412. msgid "The path is too long"
  1413. msgstr "Il percorso è troppo lungo"
  1414. #: apt-inst/extract.cc:414
  1415. #, c-format
  1416. msgid "Overwrite package match with no version for %s"
  1417. msgstr "Il pacchetto sovrascritto corrisponde senza versione per %s"
  1418. #: apt-inst/extract.cc:431
  1419. #, c-format
  1420. msgid "File %s/%s overwrites the one in the package %s"
  1421. msgstr "Il file %s/%s sovrascrive quello nel pacchetto %s"
  1422. #. Only warn if there are no sources.list.d.
  1423. #. Only warn if there is no sources.list file.
  1424. #: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179
  1425. #: apt-pkg/contrib/fileutl.cc:329 apt-pkg/sourcelist.cc:204
  1426. #: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100
  1427. #: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307
  1428. #: methods/mirror.cc:87
  1429. #, c-format
  1430. msgid "Unable to read %s"
  1431. msgstr "Impossibile leggere %s"
  1432. #: apt-inst/extract.cc:491
  1433. #, c-format
  1434. msgid "Unable to stat %s"
  1435. msgstr "Impossibile eseguire stat su %s"
  1436. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1437. #, c-format
  1438. msgid "Failed to remove %s"
  1439. msgstr "Rimozione di %s non riuscita"
  1440. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1441. #, c-format
  1442. msgid "Unable to create %s"
  1443. msgstr "Impossibile creare %s"
  1444. #: apt-inst/deb/dpkgdb.cc:114
  1445. #, c-format
  1446. msgid "Failed to stat %sinfo"
  1447. msgstr "Esecuzione di stat su %sinfo non riuscita"
  1448. #: apt-inst/deb/dpkgdb.cc:119
  1449. msgid "The info and temp directories need to be on the same filesystem"
  1450. msgstr "Le directory temp e info devono essere sullo stesso file system"
  1451. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:1070
  1452. #: apt-pkg/pkgcachegen.cc:1174 apt-pkg/pkgcachegen.cc:1180
  1453. #: apt-pkg/pkgcachegen.cc:1326
  1454. msgid "Reading package lists"
  1455. msgstr "Lettura elenco dei pacchetti"
  1456. #: apt-inst/deb/dpkgdb.cc:176
  1457. #, c-format
  1458. msgid "Failed to change to the admin dir %sinfo"
  1459. msgstr "Cambio della directory admin %sinfo non riuscito"
  1460. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1461. #: apt-inst/deb/dpkgdb.cc:444
  1462. msgid "Internal error getting a package name"
  1463. msgstr "Errore interno nel recuperare un nome di un pacchetto"
  1464. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1465. msgid "Reading file listing"
  1466. msgstr "Lettura elenco dei file"
  1467. #: apt-inst/deb/dpkgdb.cc:212
  1468. #, c-format
  1469. msgid ""
  1470. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1471. "then make it empty and immediately re-install the same version of the "
  1472. "package!"
  1473. msgstr ""
  1474. "Impossibile aprire il file dell'elenco \"%sinfo/%s\". Se non è possibile "
  1475. "ripristinarlo, crearne uno vuoto e reinstallare immediatamente la stessa "
  1476. "versione del pacchetto."
  1477. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1478. #, c-format
  1479. msgid "Failed reading the list file %sinfo/%s"
  1480. msgstr "Lettura del file dell'elenco %sinfo/%s non riuscita"
  1481. #: apt-inst/deb/dpkgdb.cc:262
  1482. msgid "Internal error getting a node"
  1483. msgstr "Errore interno nel recuperare un nodo"
  1484. #: apt-inst/deb/dpkgdb.cc:305
  1485. #, c-format
  1486. msgid "Failed to open the diversions file %sdiversions"
  1487. msgstr "Apertura del file di deviazione %sdiversions non riuscita"
  1488. #: apt-inst/deb/dpkgdb.cc:320
  1489. msgid "The diversion file is corrupted"
  1490. msgstr "Il file di deviazione è danneggiato"
  1491. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1492. #: apt-inst/deb/dpkgdb.cc:337
  1493. #, c-format
  1494. msgid "Invalid line in the diversion file: %s"
  1495. msgstr "Riga non valida nel file di diversion: %s"
  1496. #: apt-inst/deb/dpkgdb.cc:358
  1497. msgid "Internal error adding a diversion"
  1498. msgstr "Errore interno nell'aggiungere una deviazioni"
  1499. #: apt-inst/deb/dpkgdb.cc:379
  1500. msgid "The pkg cache must be initialized first"
  1501. msgstr "La cache dei pacchetti deve prima essere inizializzata"
  1502. #: apt-inst/deb/dpkgdb.cc:439
  1503. #, c-format
  1504. msgid "Failed to find a Package: header, offset %lu"
  1505. msgstr "Impossibile trovare un Package: header, offset %lu"
  1506. #: apt-inst/deb/dpkgdb.cc:461
  1507. #, c-format
  1508. msgid "Bad ConfFile section in the status file. Offset %lu"
  1509. msgstr "Sezione ConfFile nel file di stato non corretta. Offset %lu"
  1510. #: apt-inst/deb/dpkgdb.cc:466
  1511. #, c-format
  1512. msgid "Error parsing MD5. Offset %lu"
  1513. msgstr "Errore nell'analisi MD5. Offset %lu"
  1514. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1515. #, c-format
  1516. msgid "This is not a valid DEB archive, missing '%s' member"
  1517. msgstr "Questo non è un archivio DEB valido: membro \"%s\" mancante"
  1518. #: apt-inst/deb/debfile.cc:50
  1519. #, c-format
  1520. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1521. msgstr ""
  1522. "Questo non è un archivio DEB valido: membri \"%s\", \"%s\" o \"%s\" mancanti"
  1523. #: apt-inst/deb/debfile.cc:110
  1524. #, c-format
  1525. msgid "Couldn't change to %s"
  1526. msgstr "Impossibile passare a %s"
  1527. #: apt-inst/deb/debfile.cc:140
  1528. msgid "Internal error, could not locate member"
  1529. msgstr "Errore interno, impossibile localizzare il membro"
  1530. #: apt-inst/deb/debfile.cc:173
  1531. msgid "Failed to locate a valid control file"
  1532. msgstr "Impossibile localizzare un file \"control\" valido"
  1533. #: apt-inst/deb/debfile.cc:258
  1534. msgid "Unparsable control file"
  1535. msgstr "File \"control\" non analizzabile"
  1536. #: methods/bzip2.cc:65
  1537. #, c-format
  1538. msgid "Couldn't open pipe for %s"
  1539. msgstr "Impossibile aprire una pipe per %s"
  1540. #: methods/bzip2.cc:109
  1541. #, c-format
  1542. msgid "Read error from %s process"
  1543. msgstr "Errore di lettura dal processo %s"
  1544. #: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43
  1545. #: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486
  1546. #: methods/rred.cc:495
  1547. msgid "Failed to stat"
  1548. msgstr "Esecuzione di stat non riuscita"
  1549. #: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99
  1550. #: methods/rred.cc:492
  1551. msgid "Failed to set modification time"
  1552. msgstr "Impostazione della data di modifica non riuscita"
  1553. #: methods/cdrom.cc:199
  1554. #, c-format
  1555. msgid "Unable to read the cdrom database %s"
  1556. msgstr "Impossibile leggere il database del CD-ROM %s"
  1557. #: methods/cdrom.cc:208
  1558. msgid ""
  1559. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1560. "cannot be used to add new CD-ROMs"
  1561. msgstr ""
  1562. "Usare apt-cdrom per far riconoscere questo CD-ROM da APT. apt-get update non "
  1563. "può essere usato per aggiungere nuovi CD-ROM"
  1564. #: methods/cdrom.cc:218
  1565. msgid "Wrong CD-ROM"
  1566. msgstr "CD-ROM sbagliato"
  1567. #: methods/cdrom.cc:245
  1568. #, c-format
  1569. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1570. msgstr "Impossibile smontare il CD-ROM in %s, potrebbe essere ancora in uso."
  1571. #: methods/cdrom.cc:250
  1572. msgid "Disk not found."
  1573. msgstr "Disco non trovato"
  1574. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1575. msgid "File not found"
  1576. msgstr "File non trovato"
  1577. #: methods/file.cc:44
  1578. msgid "Invalid URI, local URIS must not start with //"
  1579. msgstr "URI non valido, gli URI locali non devono iniziare con //"
  1580. #. Login must be before getpeername otherwise dante won't work.
  1581. #: methods/ftp.cc:168
  1582. msgid "Logging in"
  1583. msgstr "Accesso in corso"
  1584. #: methods/ftp.cc:174
  1585. msgid "Unable to determine the peer name"
  1586. msgstr "Impossibile determinare il nome del nodo"
  1587. #: methods/ftp.cc:179
  1588. msgid "Unable to determine the local name"
  1589. msgstr "Impossibile determinare il nome locale"
  1590. #: methods/ftp.cc:210 methods/ftp.cc:238
  1591. #, c-format
  1592. msgid "The server refused the connection and said: %s"
  1593. msgstr "Il server ha rifiutato la connessione e riporta: %s"
  1594. #: methods/ftp.cc:216
  1595. #, c-format
  1596. msgid "USER failed, server said: %s"
  1597. msgstr "USER non riuscito, il server riporta: %s"
  1598. #: methods/ftp.cc:223
  1599. #, c-format
  1600. msgid "PASS failed, server said: %s"
  1601. msgstr "PASS non riuscito, il server riporta: %s"
  1602. #: methods/ftp.cc:243
  1603. msgid ""
  1604. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1605. "is empty."
  1606. msgstr ""
  1607. "È stato specificato un server proxy, ma nessuno script di accesso: Acquire::"
  1608. "ftp::ProxyLogin è vuoto."
  1609. #: methods/ftp.cc:271
  1610. #, c-format
  1611. msgid "Login script command '%s' failed, server said: %s"
  1612. msgstr ""
  1613. "Comando dello script di accesso \"%s\" non riuscito, il server riporta: %s"
  1614. #: methods/ftp.cc:297
  1615. #, c-format
  1616. msgid "TYPE failed, server said: %s"
  1617. msgstr "TYPE non riuscito, il server riporta: %s"
  1618. #: methods/ftp.cc:335 methods/ftp.cc:446 methods/rsh.cc:183 methods/rsh.cc:226
  1619. msgid "Connection timeout"
  1620. msgstr "Connessione scaduta"
  1621. #: methods/ftp.cc:341
  1622. msgid "Server closed the connection"
  1623. msgstr "Il server ha chiuso la connessione"
  1624. #: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:802 methods/rsh.cc:190
  1625. msgid "Read error"
  1626. msgstr "Errore di lettura"
  1627. #: methods/ftp.cc:351 methods/rsh.cc:197
  1628. msgid "A response overflowed the buffer."
  1629. msgstr "Una risposta ha superato le dimensioni del buffer."
  1630. #: methods/ftp.cc:368 methods/ftp.cc:380
  1631. msgid "Protocol corruption"
  1632. msgstr "Protocollo danneggiato"
  1633. #: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:844 methods/rsh.cc:232
  1634. msgid "Write error"
  1635. msgstr "Errore di scrittura"
  1636. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1637. msgid "Could not create a socket"
  1638. msgstr "Impossibile creare un socket"
  1639. #: methods/ftp.cc:703
  1640. msgid "Could not connect data socket, connection timed out"
  1641. msgstr ""
  1642. "Impossibile connettersi al socket dati, tempo esaurito per la connessione"
  1643. #: methods/ftp.cc:709
  1644. msgid "Could not connect passive socket."
  1645. msgstr "Impossibile connettersi alla socket passiva."
  1646. #: methods/ftp.cc:727
  1647. msgid "getaddrinfo was unable to get a listening socket"
  1648. msgstr "Impossibile ottenere un socket in ascolto con getaddrinfo()"
  1649. #: methods/ftp.cc:741
  1650. msgid "Could not bind a socket"
  1651. msgstr "Impossibile eseguire bind() su un socket"
  1652. #: methods/ftp.cc:745
  1653. msgid "Could not listen on the socket"
  1654. msgstr "Impossibile eseguire listen() su un socket"
  1655. #: methods/ftp.cc:752
  1656. msgid "Could not determine the socket's name"
  1657. msgstr "Impossibile determinare il nome del socket"
  1658. #: methods/ftp.cc:784
  1659. msgid "Unable to send PORT command"
  1660. msgstr "Impossibile inviare il comando PORT"
  1661. #: methods/ftp.cc:794
  1662. #, c-format
  1663. msgid "Unknown address family %u (AF_*)"
  1664. msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta"
  1665. #: methods/ftp.cc:803
  1666. #, c-format
  1667. msgid "EPRT failed, server said: %s"
  1668. msgstr "EPRT non riuscito, il server riporta: %s"
  1669. #: methods/ftp.cc:823
  1670. msgid "Data socket connect timed out"
  1671. msgstr "Connessione al socket dati terminata"
  1672. #: methods/ftp.cc:830
  1673. msgid "Unable to accept connection"
  1674. msgstr "Impossibile accettare connessioni"
  1675. #: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302
  1676. msgid "Problem hashing file"
  1677. msgstr "Si è verificato un problema nel creare l'hash del file"
  1678. #: methods/ftp.cc:882
  1679. #, c-format
  1680. msgid "Unable to fetch file, server said '%s'"
  1681. msgstr "Impossibile recuperare il file, il server riporta: \"%s\""
  1682. #: methods/ftp.cc:897 methods/rsh.cc:321
  1683. msgid "Data socket timed out"
  1684. msgstr "Socket dati terminato"
  1685. #: methods/ftp.cc:927
  1686. #, c-format
  1687. msgid "Data transfer failed, server said '%s'"
  1688. msgstr "Trasferimento dati non riuscito, il server riporta: \"%s\""
  1689. #. Get the files information
  1690. #: methods/ftp.cc:1004
  1691. msgid "Query"
  1692. msgstr "Interrogazione"
  1693. #: methods/ftp.cc:1116
  1694. msgid "Unable to invoke "
  1695. msgstr "Impossibile invocare "
  1696. #: methods/connect.cc:71
  1697. #, c-format
  1698. msgid "Connecting to %s (%s)"
  1699. msgstr "Connessione a %s (%s)"
  1700. #: methods/connect.cc:82
  1701. #, c-format
  1702. msgid "[IP: %s %s]"
  1703. msgstr "[IP: %s %s]"
  1704. #: methods/connect.cc:89
  1705. #, c-format
  1706. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1707. msgstr "Impossibile creare un socket per %s (f=%u t=%u p=%u)"
  1708. #: methods/connect.cc:95
  1709. #, c-format
  1710. msgid "Cannot initiate the connection to %s:%s (%s)."
  1711. msgstr "Impossibile iniziare la connessione a %s:%s (%s)."
  1712. #: methods/connect.cc:103
  1713. #, c-format
  1714. msgid "Could not connect to %s:%s (%s), connection timed out"
  1715. msgstr "Impossibile connettersi a %s:%s (%s), connessione terminata"
  1716. #: methods/connect.cc:121
  1717. #, c-format
  1718. msgid "Could not connect to %s:%s (%s)."
  1719. msgstr "Impossibile connettersi a %s:%s (%s)."
  1720. #. We say this mainly because the pause here is for the
  1721. #. ssh connection that is still going
  1722. #: methods/connect.cc:149 methods/rsh.cc:424
  1723. #, c-format
  1724. msgid "Connecting to %s"
  1725. msgstr "Connessione a %s"
  1726. #: methods/connect.cc:168 methods/connect.cc:187
  1727. #, c-format
  1728. msgid "Could not resolve '%s'"
  1729. msgstr "Impossibile risolvere \"%s\""
  1730. #: methods/connect.cc:193
  1731. #, c-format
  1732. msgid "Temporary failure resolving '%s'"
  1733. msgstr "Risoluzione di \"%s\" temporaneamente non riuscita"
  1734. #: methods/connect.cc:196
  1735. #, c-format
  1736. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1737. msgstr ""
  1738. "Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i - %s)"
  1739. #: methods/connect.cc:243
  1740. #, c-format
  1741. msgid "Unable to connect to %s:%s:"
  1742. msgstr "Impossibile connettersi a %s:%s:"
  1743. #. TRANSLATOR: %s is the trusted keyring parts directory
  1744. #: methods/gpgv.cc:71
  1745. #, c-format
  1746. msgid "No keyring installed in %s."
  1747. msgstr "Nessun portachiavi installato in %s."
  1748. #: methods/gpgv.cc:163
  1749. msgid ""
  1750. "Internal error: Good signature, but could not determine key fingerprint?!"
  1751. msgstr ""
  1752. "Errore interno: firma corretta, ma non è possibile determinare l'impronta "
  1753. "della chiave."
  1754. #: methods/gpgv.cc:168
  1755. msgid "At least one invalid signature was encountered."
  1756. msgstr "È stata trovata almeno una firma non valida."
  1757. #: methods/gpgv.cc:172
  1758. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  1759. msgstr ""
  1760. "Impossibile eseguire \"gpgv\" per verificare la firma (forse gpgv non è "
  1761. "installato)"
  1762. #: methods/gpgv.cc:177
  1763. msgid "Unknown error executing gpgv"
  1764. msgstr "Errore sconosciuto durante l'esecuzione di gpgv"
  1765. #: methods/gpgv.cc:211 methods/gpgv.cc:218
  1766. msgid "The following signatures were invalid:\n"
  1767. msgstr "Le seguenti firme non erano valide:\n"
  1768. #: methods/gpgv.cc:225
  1769. msgid ""
  1770. "The following signatures couldn't be verified because the public key is not "
  1771. "available:\n"
  1772. msgstr ""
  1773. "Le seguenti firme non sono state verificate perché la chiave pubblica non è "
  1774. "disponibile:\n"
  1775. #: methods/http.cc:385
  1776. msgid "Waiting for headers"
  1777. msgstr "In attesa degli header"
  1778. #: methods/http.cc:531
  1779. #, c-format
  1780. msgid "Got a single header line over %u chars"
  1781. msgstr "Ricevuta una singola riga header su %u caratteri"
  1782. #: methods/http.cc:539
  1783. msgid "Bad header line"
  1784. msgstr "Riga header non corretta"
  1785. #: methods/http.cc:564 methods/http.cc:571
  1786. msgid "The HTTP server sent an invalid reply header"
  1787. msgstr "Il server HTTP ha inviato un header di risposta non valido"
  1788. #: methods/http.cc:600
  1789. msgid "The HTTP server sent an invalid Content-Length header"
  1790. msgstr "Il server HTTP ha inviato un header Content-Length non valido"
  1791. #: methods/http.cc:615
  1792. msgid "The HTTP server sent an invalid Content-Range header"
  1793. msgstr "Il server HTTP ha inviato un header Content-Range non valido"
  1794. #: methods/http.cc:617
  1795. msgid "This HTTP server has broken range support"
  1796. msgstr "Questo server HTTP ha un supporto del range non corretto"
  1797. #: methods/http.cc:641
  1798. msgid "Unknown date format"
  1799. msgstr "Formato della data sconosciuto"
  1800. #: methods/http.cc:799
  1801. msgid "Select failed"
  1802. msgstr "Select non riuscita"
  1803. #: methods/http.cc:804
  1804. msgid "Connection timed out"
  1805. msgstr "Connessione terminata"
  1806. #: methods/http.cc:827
  1807. msgid "Error writing to output file"
  1808. msgstr "Errore nello scrivere sul file di output"
  1809. #: methods/http.cc:858
  1810. msgid "Error writing to file"
  1811. msgstr "Errore nello scrivere su file"
  1812. #: methods/http.cc:886
  1813. msgid "Error writing to the file"
  1814. msgstr "Errore nello scrivere sul file"
  1815. #: methods/http.cc:900
  1816. msgid "Error reading from server. Remote end closed connection"
  1817. msgstr "Errore nel leggere dal server. Il lato remoto ha chiuso la connessione"
  1818. #: methods/http.cc:902
  1819. msgid "Error reading from server"
  1820. msgstr "Errore nel leggere dal server"
  1821. #: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281
  1822. msgid "Failed to truncate file"
  1823. msgstr "Troncamento del file non riuscito"
  1824. #: methods/http.cc:1160
  1825. msgid "Bad header data"
  1826. msgstr "Header dati non corretto"
  1827. #: methods/http.cc:1177 methods/http.cc:1232
  1828. msgid "Connection failed"
  1829. msgstr "Connessione non riuscita"
  1830. #: methods/http.cc:1324
  1831. msgid "Internal error"
  1832. msgstr "Errore interno"
  1833. #: apt-pkg/contrib/mmap.cc:77
  1834. msgid "Can't mmap an empty file"
  1835. msgstr "Impossibile eseguire mmap su un file vuoto"
  1836. #: apt-pkg/contrib/mmap.cc:89
  1837. #, c-format
  1838. msgid "Couldn't duplicate file descriptor %i"
  1839. msgstr "Impossibile duplicare il descrittore del file %i"
  1840. #: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:250
  1841. #, c-format
  1842. msgid "Couldn't make mmap of %lu bytes"
  1843. msgstr "Impossibile eseguire mmap di %lu byte"
  1844. #: apt-pkg/contrib/mmap.cc:124
  1845. msgid "Unable to close mmap"
  1846. msgstr "Impossibile chiudere mmap"
  1847. #: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180
  1848. msgid "Unable to synchronize mmap"
  1849. msgstr "Impossibile sincronizzare mmap"
  1850. #: apt-pkg/contrib/mmap.cc:300
  1851. #, c-format
  1852. msgid ""
  1853. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1854. "Current value: %lu. (man 5 apt.conf)"
  1855. msgstr ""
  1856. "MMap dinamica esaurita. Aumentare la dimensione di APT::Cache-Limit. Il "
  1857. "valore attuale è: %lu (man 5 apt.conf)."
  1858. #: apt-pkg/contrib/mmap.cc:399
  1859. #, c-format
  1860. msgid ""
  1861. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  1862. "reached."
  1863. msgstr ""
  1864. "Impossibile incrementare la dimensione della MMap poiché il limite di %lu "
  1865. "byte è stato raggiunto."
  1866. # (ndt) lunghetta...
  1867. #: apt-pkg/contrib/mmap.cc:402
  1868. msgid ""
  1869. "Unable to increase size of the MMap as automatic growing is disabled by user."
  1870. msgstr ""
  1871. "Impossibile incrementare la dimensione della MMap poiché il "
  1872. "ridimensionamento automatico è stato disabilitato dall'utente."
  1873. #. d means days, h means hours, min means minutes, s means seconds
  1874. #: apt-pkg/contrib/strutl.cc:371
  1875. #, c-format
  1876. msgid "%lid %lih %limin %lis"
  1877. msgstr "%lig %lih %limin %lis"
  1878. #. h means hours, min means minutes, s means seconds
  1879. #: apt-pkg/contrib/strutl.cc:378
  1880. #, c-format
  1881. msgid "%lih %limin %lis"
  1882. msgstr "%lih %limin %lis"
  1883. #. min means minutes, s means seconds
  1884. #: apt-pkg/contrib/strutl.cc:385
  1885. #, c-format
  1886. msgid "%limin %lis"
  1887. msgstr "%limin %lis"
  1888. #. s means seconds
  1889. #: apt-pkg/contrib/strutl.cc:390
  1890. #, c-format
  1891. msgid "%lis"
  1892. msgstr "%lis"
  1893. #: apt-pkg/contrib/strutl.cc:1119
  1894. #, c-format
  1895. msgid "Selection %s not found"
  1896. msgstr "Selezione %s non trovata"
  1897. #: apt-pkg/contrib/configuration.cc:452
  1898. #, c-format
  1899. msgid "Unrecognized type abbreviation: '%c'"
  1900. msgstr "Tipo di abbreviazione non riconosciuto: \"%c\""
  1901. #: apt-pkg/contrib/configuration.cc:510
  1902. #, c-format
  1903. msgid "Opening configuration file %s"
  1904. msgstr "Apertura file di configurazione %s"
  1905. #: apt-pkg/contrib/configuration.cc:678
  1906. #, c-format
  1907. msgid "Syntax error %s:%u: Block starts with no name."
  1908. msgstr "Errore di sintassi %s:%u: il blocco inizia senza nome"
  1909. #: apt-pkg/contrib/configuration.cc:697
  1910. #, c-format
  1911. msgid "Syntax error %s:%u: Malformed tag"
  1912. msgstr "Errore di sintassi %s:%u: tag non corretto"
  1913. #: apt-pkg/contrib/configuration.cc:714
  1914. #, c-format
  1915. msgid "Syntax error %s:%u: Extra junk after value"
  1916. msgstr "Errore di sintassi %s:%u: caratteri extra dopo il valore"
  1917. #: apt-pkg/contrib/configuration.cc:754
  1918. #, c-format
  1919. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1920. msgstr ""
  1921. "Errore di sintassi %s:%u: le direttive possono essere fatte solo al livello "
  1922. "più alto"
  1923. #: apt-pkg/contrib/configuration.cc:761
  1924. #, c-format
  1925. msgid "Syntax error %s:%u: Too many nested includes"
  1926. msgstr "Errore di sintassi %s:%u: troppe inclusioni annidate"
  1927. #: apt-pkg/contrib/configuration.cc:765 apt-pkg/contrib/configuration.cc:770
  1928. #, c-format
  1929. msgid "Syntax error %s:%u: Included from here"
  1930. msgstr "Errore di sintassi %s:%u: incluso da qui"
  1931. #: apt-pkg/contrib/configuration.cc:774
  1932. #, c-format
  1933. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1934. msgstr "Errore di sintassi %s:%u: direttiva \"%s\" non supportata"
  1935. # (ndt) sarebbe da controllare meglio...
  1936. #: apt-pkg/contrib/configuration.cc:777
  1937. #, c-format
  1938. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  1939. msgstr ""
  1940. "Errore di sintassi %s:%u: la direttiva clear richiede un albero di opzioni "
  1941. "come argomento"
  1942. #: apt-pkg/contrib/configuration.cc:827
  1943. #, c-format
  1944. msgid "Syntax error %s:%u: Extra junk at end of file"
  1945. msgstr "Errore di sintassi %s:%u: caratteri extra alla fine del file"
  1946. #: apt-pkg/contrib/progress.cc:153
  1947. #, c-format
  1948. msgid "%c%s... Error!"
  1949. msgstr "%c%s... Errore"
  1950. #: apt-pkg/contrib/progress.cc:155
  1951. #, c-format
  1952. msgid "%c%s... Done"
  1953. msgstr "%c%s... Fatto"
  1954. #: apt-pkg/contrib/cmndline.cc:77
  1955. #, c-format
  1956. msgid "Command line option '%c' [from %s] is not known."
  1957. msgstr "Opzione a riga di comando \"%c\" [da %s] sconosciuta."
  1958. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1959. #: apt-pkg/contrib/cmndline.cc:119
  1960. #, c-format
  1961. msgid "Command line option %s is not understood"
  1962. msgstr "Opzione a riga di comando %s non comprensibile"
  1963. #: apt-pkg/contrib/cmndline.cc:124
  1964. #, c-format
  1965. msgid "Command line option %s is not boolean"
  1966. msgstr "Opzione a riga di comando %s non booleana"
  1967. #: apt-pkg/contrib/cmndline.cc:165 apt-pkg/contrib/cmndline.cc:186
  1968. #, c-format
  1969. msgid "Option %s requires an argument."
  1970. msgstr "L'opzione %s richiede un argomento."
  1971. #: apt-pkg/contrib/cmndline.cc:200 apt-pkg/contrib/cmndline.cc:206
  1972. #, c-format
  1973. msgid "Option %s: Configuration item specification must have an =<val>."
  1974. msgstr ""
  1975. "Opzione %s: la specifica di configurazione dell'oggetto deve avere un "
  1976. "=<valore>."
  1977. #: apt-pkg/contrib/cmndline.cc:236
  1978. #, c-format
  1979. msgid "Option %s requires an integer argument, not '%s'"
  1980. msgstr "L'opzione %s richiede un argomento intero, non \"%s\""
  1981. #: apt-pkg/contrib/cmndline.cc:267
  1982. #, c-format
  1983. msgid "Option '%s' is too long"
  1984. msgstr "Opzione \"%s\" troppo lunga"
  1985. #: apt-pkg/contrib/cmndline.cc:300
  1986. #, c-format
  1987. msgid "Sense %s is not understood, try true or false."
  1988. msgstr "Il valore %s non è comprensibile, provare \"true\" o \"false\"."
  1989. #: apt-pkg/contrib/cmndline.cc:350
  1990. #, c-format
  1991. msgid "Invalid operation %s"
  1992. msgstr "Operazione %s non valida"
  1993. #: apt-pkg/contrib/cdromutl.cc:52
  1994. #, c-format
  1995. msgid "Unable to stat the mount point %s"
  1996. msgstr "Impossibile eseguire stat sul punto di mount %s"
  1997. #: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209
  1998. #: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39
  1999. #: methods/mirror.cc:93
  2000. #, c-format
  2001. msgid "Unable to change to %s"
  2002. msgstr "Impossibile passare a %s"
  2003. #: apt-pkg/contrib/cdromutl.cc:217
  2004. msgid "Failed to stat the cdrom"
  2005. msgstr "Esecuzione di stat sul CD-ROM non riuscita"
  2006. #: apt-pkg/contrib/fileutl.cc:154
  2007. #, c-format
  2008. msgid "Not using locking for read only lock file %s"
  2009. msgstr "Blocco disabilitato per il file di blocco in sola lettura %s"
  2010. #: apt-pkg/contrib/fileutl.cc:159
  2011. #, c-format
  2012. msgid "Could not open lock file %s"
  2013. msgstr "Impossibile aprire il file di blocco %s"
  2014. #: apt-pkg/contrib/fileutl.cc:177
  2015. #, c-format
  2016. msgid "Not using locking for nfs mounted lock file %s"
  2017. msgstr "Blocco disabilitato per il file di blocco %s montato via nfs"
  2018. #: apt-pkg/contrib/fileutl.cc:181
  2019. #, c-format
  2020. msgid "Could not get lock %s"
  2021. msgstr "Impossibile impostare il blocco %s"
  2022. #: apt-pkg/contrib/fileutl.cc:321
  2023. #, c-format
  2024. msgid "List of files can't be created as '%s' is not a directory"
  2025. msgstr ""
  2026. #: apt-pkg/contrib/fileutl.cc:661
  2027. #, c-format
  2028. msgid "Waited for %s but it wasn't there"
  2029. msgstr "In attesa di %s ma non era presente"
  2030. #: apt-pkg/contrib/fileutl.cc:673
  2031. #, c-format
  2032. msgid "Sub-process %s received a segmentation fault."
  2033. msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault."
  2034. #: apt-pkg/contrib/fileutl.cc:675
  2035. #, c-format
  2036. msgid "Sub-process %s received signal %u."
  2037. msgstr "Il sottoprocesso %s ha ricevuto il segnale %u."
  2038. #: apt-pkg/contrib/fileutl.cc:679
  2039. #, c-format
  2040. msgid "Sub-process %s returned an error code (%u)"
  2041. msgstr "Il sottoprocesso %s ha restituito un codice d'errore (%u)"
  2042. #: apt-pkg/contrib/fileutl.cc:681
  2043. #, c-format
  2044. msgid "Sub-process %s exited unexpectedly"
  2045. msgstr "Il sottoprocesso %s è uscito inaspettatamente"
  2046. #: apt-pkg/contrib/fileutl.cc:746
  2047. #, c-format
  2048. msgid "Could not open file %s"
  2049. msgstr "Impossibile aprire il file %s"
  2050. #: apt-pkg/contrib/fileutl.cc:763
  2051. #, c-format
  2052. msgid "Could not open file descriptor %d"
  2053. msgstr "Impossibile aprire il descrittore del file %d"
  2054. #: apt-pkg/contrib/fileutl.cc:823
  2055. #, c-format
  2056. msgid "read, still have %lu to read but none left"
  2057. msgstr "lettura, c'erano ancora %lu da leggere ma non ne è rimasto alcuno"
  2058. #: apt-pkg/contrib/fileutl.cc:856
  2059. #, c-format
  2060. msgid "write, still have %lu to write but couldn't"
  2061. msgstr "scrittura, c'erano ancora %lu da scrivere ma non è stato possibile"
  2062. #: apt-pkg/contrib/fileutl.cc:985
  2063. #, c-format
  2064. msgid "Problem closing the gzip file %s"
  2065. msgstr "Si è verificato un problema nel chiudere il file gzip %s"
  2066. #: apt-pkg/contrib/fileutl.cc:988
  2067. #, c-format
  2068. msgid "Problem closing the file %s"
  2069. msgstr "Si è verificato un problema nel chiudere il file %s"
  2070. #: apt-pkg/contrib/fileutl.cc:993
  2071. #, c-format
  2072. msgid "Problem renaming the file %s to %s"
  2073. msgstr "Si è verificato un problema nel rinominare il file %s in %s"
  2074. #: apt-pkg/contrib/fileutl.cc:1004
  2075. #, c-format
  2076. msgid "Problem unlinking the file %s"
  2077. msgstr "Si è verificato un problema nell'eseguire l'unlink del file %s"
  2078. #: apt-pkg/contrib/fileutl.cc:1017
  2079. msgid "Problem syncing the file"
  2080. msgstr "Si è verificato un problema nel sincronizzare il file"
  2081. #: apt-pkg/pkgcache.cc:145
  2082. msgid "Empty package cache"
  2083. msgstr "Cache dei pacchetti vuota"
  2084. #: apt-pkg/pkgcache.cc:151
  2085. msgid "The package cache file is corrupted"
  2086. msgstr "Il file della cache dei pacchetti è danneggiato"
  2087. #: apt-pkg/pkgcache.cc:156
  2088. msgid "The package cache file is an incompatible version"
  2089. msgstr "La versione del file della cache dei pacchetti è incompatibile"
  2090. #: apt-pkg/pkgcache.cc:161
  2091. #, c-format
  2092. msgid "This APT does not support the versioning system '%s'"
  2093. msgstr "Questo APT non supporta il sistema di versione \"%s\""
  2094. #: apt-pkg/pkgcache.cc:166
  2095. msgid "The package cache was built for a different architecture"
  2096. msgstr ""
  2097. "Il file della cache dei pacchetti è stato generato per un'altra architettura"
  2098. #: apt-pkg/pkgcache.cc:293
  2099. msgid "Depends"
  2100. msgstr "Dipende"
  2101. #: apt-pkg/pkgcache.cc:293
  2102. msgid "PreDepends"
  2103. msgstr "Pre-dipende"
  2104. #: apt-pkg/pkgcache.cc:293
  2105. msgid "Suggests"
  2106. msgstr "Consiglia"
  2107. #: apt-pkg/pkgcache.cc:294
  2108. msgid "Recommends"
  2109. msgstr "Raccomanda"
  2110. #: apt-pkg/pkgcache.cc:294
  2111. msgid "Conflicts"
  2112. msgstr "Va in conflitto"
  2113. #: apt-pkg/pkgcache.cc:294
  2114. msgid "Replaces"
  2115. msgstr "Sostituisce"
  2116. #: apt-pkg/pkgcache.cc:295
  2117. msgid "Obsoletes"
  2118. msgstr "Rende obsoleto"
  2119. #: apt-pkg/pkgcache.cc:295
  2120. msgid "Breaks"
  2121. msgstr "Rompe"
  2122. #: apt-pkg/pkgcache.cc:295
  2123. msgid "Enhances"
  2124. msgstr "Migliora"
  2125. #: apt-pkg/pkgcache.cc:306
  2126. msgid "important"
  2127. msgstr "importante"
  2128. #: apt-pkg/pkgcache.cc:306
  2129. msgid "required"
  2130. msgstr "richiesto"
  2131. #: apt-pkg/pkgcache.cc:306
  2132. msgid "standard"
  2133. msgstr "standard"
  2134. #: apt-pkg/pkgcache.cc:307
  2135. msgid "optional"
  2136. msgstr "opzionale"
  2137. #: apt-pkg/pkgcache.cc:307
  2138. msgid "extra"
  2139. msgstr "extra"
  2140. #: apt-pkg/depcache.cc:125 apt-pkg/depcache.cc:154
  2141. msgid "Building dependency tree"
  2142. msgstr "Generazione albero delle dipendenze"
  2143. #: apt-pkg/depcache.cc:126
  2144. msgid "Candidate versions"
  2145. msgstr "Versioni candidate"
  2146. #: apt-pkg/depcache.cc:155
  2147. msgid "Dependency generation"
  2148. msgstr "Generazione delle dipendenze"
  2149. #: apt-pkg/depcache.cc:175 apt-pkg/depcache.cc:208 apt-pkg/depcache.cc:212
  2150. msgid "Reading state information"
  2151. msgstr "Lettura informazioni sullo stato"
  2152. #: apt-pkg/depcache.cc:237
  2153. #, c-format
  2154. msgid "Failed to open StateFile %s"
  2155. msgstr "Apertura del file di stato %s non riuscita"
  2156. #: apt-pkg/depcache.cc:243
  2157. #, c-format
  2158. msgid "Failed to write temporary StateFile %s"
  2159. msgstr "Scrittura del file temporaneo di stato %s non riuscita"
  2160. #: apt-pkg/depcache.cc:922
  2161. #, c-format
  2162. msgid "Internal error, group '%s' has no installable pseudo package"
  2163. msgstr ""
  2164. "Errore interno, il gruppo \"%s\" non ha uno pseudo pacchetto installabile"
  2165. #: apt-pkg/tagfile.cc:102
  2166. #, c-format
  2167. msgid "Unable to parse package file %s (1)"
  2168. msgstr "Impossibile analizzare il file di pacchetto %s (1)"
  2169. #: apt-pkg/tagfile.cc:189
  2170. #, c-format
  2171. msgid "Unable to parse package file %s (2)"
  2172. msgstr "Impossibile analizzare il file di pacchetto %s (2)"
  2173. #: apt-pkg/sourcelist.cc:92
  2174. #, c-format
  2175. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  2176. msgstr ""
  2177. "La riga %lu nel file delle sorgenti %s non è corretta ([opzione] non "
  2178. "analizzabile)"
  2179. #: apt-pkg/sourcelist.cc:95
  2180. #, c-format
  2181. msgid "Malformed line %lu in source list %s ([option] too short)"
  2182. msgstr ""
  2183. "La riga %lu nel file delle sorgenti %s non è corretta ([opzione] troppo "
  2184. "corta)"
  2185. #: apt-pkg/sourcelist.cc:106
  2186. #, c-format
  2187. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  2188. msgstr ""
  2189. "La riga %lu nel file delle sorgenti %s non è corretta ([%s] non è "
  2190. "un'assegnazione)"
  2191. #: apt-pkg/sourcelist.cc:112
  2192. #, c-format
  2193. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  2194. msgstr ""
  2195. "La riga %lu nel file delle sorgenti %s non è corretta ([%s] non ha una "
  2196. "chiave)"
  2197. #: apt-pkg/sourcelist.cc:115
  2198. #, c-format
  2199. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  2200. msgstr ""
  2201. "La riga %lu nel file delle sorgenti %s non è corretta ([%s] la chiave %s non "
  2202. "ha un valore)"
  2203. #: apt-pkg/sourcelist.cc:128
  2204. #, c-format
  2205. msgid "Malformed line %lu in source list %s (URI)"
  2206. msgstr "La riga %lu nel file %s non è corretta (URI)"
  2207. #: apt-pkg/sourcelist.cc:130
  2208. #, c-format
  2209. msgid "Malformed line %lu in source list %s (dist)"
  2210. msgstr "La riga %lu nel file %s non è corretta (dist)"
  2211. #: apt-pkg/sourcelist.cc:133
  2212. #, c-format
  2213. msgid "Malformed line %lu in source list %s (URI parse)"
  2214. msgstr "La riga %lu nel file %s non è corretta (URI parse)"
  2215. #: apt-pkg/sourcelist.cc:139
  2216. #, c-format
  2217. msgid "Malformed line %lu in source list %s (absolute dist)"
  2218. msgstr "La riga %lu nel file %s non è corretta (absolute dist)"
  2219. #: apt-pkg/sourcelist.cc:146
  2220. #, c-format
  2221. msgid "Malformed line %lu in source list %s (dist parse)"
  2222. msgstr "La riga %lu nel file %s non è corretta (dist parse)"
  2223. #: apt-pkg/sourcelist.cc:244
  2224. #, c-format
  2225. msgid "Opening %s"
  2226. msgstr "Apertura di %s"
  2227. #: apt-pkg/sourcelist.cc:261 apt-pkg/cdrom.cc:438
  2228. #, c-format
  2229. msgid "Line %u too long in source list %s."
  2230. msgstr "Riga %u troppo lunga nel file %s."
  2231. #: apt-pkg/sourcelist.cc:281
  2232. #, c-format
  2233. msgid "Malformed line %u in source list %s (type)"
  2234. msgstr "La riga %u nel file %s non è corretta (type)"
  2235. #: apt-pkg/sourcelist.cc:285
  2236. #, c-format
  2237. msgid "Type '%s' is not known on line %u in source list %s"
  2238. msgstr "Tipo \"%s\" non riconosciuto alla riga %u nel file %s"
  2239. #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616
  2240. #, c-format
  2241. msgid ""
  2242. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2243. "under APT::Immediate-Configure for details. (%d)"
  2244. msgstr ""
  2245. "Impossibile eseguire immediatamente la configurazione su \"%s\". Per "
  2246. "maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::"
  2247. "Immediate-Configure\" (%d)."
  2248. #: apt-pkg/packagemanager.cc:452
  2249. #, c-format
  2250. msgid ""
  2251. "This installation run will require temporarily removing the essential "
  2252. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2253. "you really want to do it, activate the APT::Force-LoopBreak option."
  2254. msgstr ""
  2255. "L'installazione necessita della rimozione temporanea del pacchetto "
  2256. "essenziale %s a causa di un ciclo conflitto/pre-dipendenza. Questa è una "
  2257. "situazione critica, ma se si vuole realmente procedere, attivare l'opzione "
  2258. "APT::Force-LoopBreak."
  2259. #: apt-pkg/packagemanager.cc:495
  2260. #, c-format
  2261. msgid ""
  2262. "Could not perform immediate configuration on already unpacked '%s'. Please "
  2263. "see man 5 apt.conf under APT::Immediate-Configure for details."
  2264. msgstr ""
  2265. "Impossibile eseguire immediatamente la configurazione su \"%s\" già "
  2266. "estratto. Per maggiori informazioni, consultare \"man 5 apt.conf\" alla "
  2267. "sezione \"APT::Immediate-Configure\"."
  2268. #: apt-pkg/pkgrecords.cc:32
  2269. #, c-format
  2270. msgid "Index file type '%s' is not supported"
  2271. msgstr "Il file indice di tipo \"%s\" non è supportato"
  2272. #: apt-pkg/algorithms.cc:292
  2273. #, c-format
  2274. msgid ""
  2275. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2276. msgstr ""
  2277. "Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un "
  2278. "archivio."
  2279. #: apt-pkg/algorithms.cc:1218
  2280. msgid ""
  2281. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2282. "held packages."
  2283. msgstr ""
  2284. "Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo "
  2285. "potrebbe essere causato da pacchetti bloccati."
  2286. #: apt-pkg/algorithms.cc:1220
  2287. msgid "Unable to correct problems, you have held broken packages."
  2288. msgstr ""
  2289. "Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati."
  2290. #: apt-pkg/algorithms.cc:1496 apt-pkg/algorithms.cc:1498
  2291. msgid ""
  2292. "Some index files failed to download, they have been ignored, or old ones "
  2293. "used instead."
  2294. msgstr ""
  2295. "Impossibile scaricare alcuni file di indice: saranno ignorati o verranno "
  2296. "usati quelli vecchi."
  2297. #: apt-pkg/acquire.cc:79
  2298. #, c-format
  2299. msgid "List directory %spartial is missing."
  2300. msgstr "Manca la directory di liste %spartial."
  2301. #: apt-pkg/acquire.cc:83
  2302. #, c-format
  2303. msgid "Archives directory %spartial is missing."
  2304. msgstr "Manca la directory di archivio %spartial."
  2305. #: apt-pkg/acquire.cc:91
  2306. #, c-format
  2307. msgid "Unable to lock directory %s"
  2308. msgstr "Impossibile bloccare la directory %s"
  2309. #. only show the ETA if it makes sense
  2310. #. two days
  2311. #: apt-pkg/acquire.cc:857
  2312. #, c-format
  2313. msgid "Retrieving file %li of %li (%s remaining)"
  2314. msgstr "Scaricamento file %li di %li (%s rimanente)"
  2315. #: apt-pkg/acquire.cc:859
  2316. #, c-format
  2317. msgid "Retrieving file %li of %li"
  2318. msgstr "Scaricamento file %li di %li"
  2319. #: apt-pkg/acquire-worker.cc:110
  2320. #, c-format
  2321. msgid "The method driver %s could not be found."
  2322. msgstr "Impossibile trovare un driver per il metodo %s."
  2323. #: apt-pkg/acquire-worker.cc:159
  2324. #, c-format
  2325. msgid "Method %s did not start correctly"
  2326. msgstr "Il metodo %s non si è avviato correttamente"
  2327. #: apt-pkg/acquire-worker.cc:413
  2328. #, c-format
  2329. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2330. msgstr "Inserire il disco chiamato \"%s\" nell'unità \"%s\" e premere Invio."
  2331. #: apt-pkg/init.cc:143
  2332. #, c-format
  2333. msgid "Packaging system '%s' is not supported"
  2334. msgstr "Il sistema di pacchetti \"%s\" non è supportato"
  2335. #: apt-pkg/init.cc:159
  2336. msgid "Unable to determine a suitable packaging system type"
  2337. msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti"
  2338. #: apt-pkg/clean.cc:56
  2339. #, c-format
  2340. msgid "Unable to stat %s."
  2341. msgstr "Impossibile eseguire stat su %s."
  2342. #: apt-pkg/srcrecords.cc:44
  2343. msgid "You must put some 'source' URIs in your sources.list"
  2344. msgstr ""
  2345. "È necessario inserire alcuni URI di tipo \"source\" nel file sources.list"
  2346. #: apt-pkg/cachefile.cc:84
  2347. msgid "The package lists or status file could not be parsed or opened."
  2348. msgstr ""
  2349. "L'elenco dei pacchetti o il file di stato non può essere letto o aperto."
  2350. #: apt-pkg/cachefile.cc:88
  2351. msgid "You may want to run apt-get update to correct these problems"
  2352. msgstr ""
  2353. "È consigliato eseguire \"apt-get update\" per correggere questi problemi"
  2354. #: apt-pkg/cachefile.cc:106
  2355. msgid "The list of sources could not be read."
  2356. msgstr "Impossibile leggere l'elenco dei sorgenti."
  2357. #: apt-pkg/policy.cc:344
  2358. #, c-format
  2359. msgid "Invalid record in the preferences file %s, no Package header"
  2360. msgstr ""
  2361. "Campo non valido nel file delle preferenze %s, manca l'intestazione \"Package"
  2362. "\""
  2363. #: apt-pkg/policy.cc:366
  2364. #, c-format
  2365. msgid "Did not understand pin type %s"
  2366. msgstr "Impossibile comprendere il tipo di gancio %s"
  2367. #: apt-pkg/policy.cc:374
  2368. msgid "No priority (or zero) specified for pin"
  2369. msgstr "Priorità per il gancio non specificata (o zero)"
  2370. #: apt-pkg/pkgcachegen.cc:80
  2371. msgid "Cache has an incompatible versioning system"
  2372. msgstr "La cache ha un sistema di gestione delle versioni incompatibile"
  2373. #: apt-pkg/pkgcachegen.cc:198
  2374. #, c-format
  2375. msgid "Error occurred while processing %s (NewPackage)"
  2376. msgstr "Si è verificato un errore nell'elaborare %s (NewPackage)"
  2377. #: apt-pkg/pkgcachegen.cc:215
  2378. #, c-format
  2379. msgid "Error occurred while processing %s (UsePackage1)"
  2380. msgstr "Si è verificato un errore nell'elaborare %s (UsePackage1)"
  2381. #: apt-pkg/pkgcachegen.cc:253
  2382. #, c-format
  2383. msgid "Error occurred while processing %s (NewFileDesc1)"
  2384. msgstr "Si è verificato un errore nell'elaborare %s (NewFileDesc1)"
  2385. #: apt-pkg/pkgcachegen.cc:285
  2386. #, c-format
  2387. msgid "Error occurred while processing %s (UsePackage2)"
  2388. msgstr "Si è verificato un errore nell'elaborare %s (UsePackage2)"
  2389. #: apt-pkg/pkgcachegen.cc:289
  2390. #, c-format
  2391. msgid "Error occurred while processing %s (NewFileVer1)"
  2392. msgstr "Si è verificato un errore nell'elaborare %s (NewFileVer1)"
  2393. #: apt-pkg/pkgcachegen.cc:306 apt-pkg/pkgcachegen.cc:316
  2394. #: apt-pkg/pkgcachegen.cc:324
  2395. #, c-format
  2396. msgid "Error occurred while processing %s (NewVersion%d)"
  2397. msgstr "Si è verificato un errore nell'elaborare %s (NewVersion%d)"
  2398. #: apt-pkg/pkgcachegen.cc:320
  2399. #, c-format
  2400. msgid "Error occurred while processing %s (UsePackage3)"
  2401. msgstr "Si è verificato un errore nell'elaborare %s (UsePackage3)"
  2402. #: apt-pkg/pkgcachegen.cc:353
  2403. #, c-format
  2404. msgid "Error occurred while processing %s (NewFileDesc2)"
  2405. msgstr "Si è verificato un errore nell'elaborare %s (NewFileDesc2)"
  2406. #: apt-pkg/pkgcachegen.cc:360
  2407. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2408. msgstr ""
  2409. "È stato superato il numero di nomi di pacchetti che questo APT può gestire."
  2410. #: apt-pkg/pkgcachegen.cc:363
  2411. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2412. msgstr "È stato superato il numero di versioni che questo APT può gestire."
  2413. #: apt-pkg/pkgcachegen.cc:366
  2414. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2415. msgstr "È stato superato il numero di descrizioni che questo APT può gestire."
  2416. #: apt-pkg/pkgcachegen.cc:369
  2417. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2418. msgstr "È stato superato il numero di dipendenze che questo APT può gestire."
  2419. #: apt-pkg/pkgcachegen.cc:398
  2420. #, c-format
  2421. msgid "Error occurred while processing %s (FindPkg)"
  2422. msgstr "Si è verificato un errore nell'elaborare %s (FindPkg)"
  2423. #: apt-pkg/pkgcachegen.cc:412
  2424. #, c-format
  2425. msgid "Error occurred while processing %s (CollectFileProvides)"
  2426. msgstr "Si è verificato un errore nell'elaborare %s (CollectFileProvides)"
  2427. # (ndt) il primo è il nome del pacchetto, il secondo la versione
  2428. #: apt-pkg/pkgcachegen.cc:418
  2429. #, c-format
  2430. msgid "Package %s %s was not found while processing file dependencies"
  2431. msgstr ""
  2432. "Il pacchetto %s v.%s non è stato trovato durante l'elaborazione delle "
  2433. "dipendenze"
  2434. #: apt-pkg/pkgcachegen.cc:982
  2435. #, c-format
  2436. msgid "Couldn't stat source package list %s"
  2437. msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s"
  2438. # (ndt) non mi convince per niente, ma vediamo cosa salta fuori
  2439. #: apt-pkg/pkgcachegen.cc:1087
  2440. msgid "Collecting File Provides"
  2441. msgstr "Il file fornisce"
  2442. #: apt-pkg/pkgcachegen.cc:1265 apt-pkg/pkgcachegen.cc:1272
  2443. msgid "IO Error saving source cache"
  2444. msgstr "Errore di I/O nel salvare la cache sorgente"
  2445. #: apt-pkg/acquire-item.cc:136
  2446. #, c-format
  2447. msgid "rename failed, %s (%s -> %s)."
  2448. msgstr "rename() non riuscita: %s (%s -> %s)."
  2449. #: apt-pkg/acquire-item.cc:484
  2450. msgid "MD5Sum mismatch"
  2451. msgstr "MD5sum non corrispondente"
  2452. #: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574
  2453. #: apt-pkg/acquire-item.cc:1717
  2454. msgid "Hash Sum mismatch"
  2455. msgstr "Somma hash non corrispondente"
  2456. #: apt-pkg/acquire-item.cc:1244
  2457. msgid "There is no public key available for the following key IDs:\n"
  2458. msgstr ""
  2459. "Non è disponibile alcuna chiave pubblica per i seguenti ID di chiavi:\n"
  2460. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2461. #. the time since then the file is invalid - formated in the same way as in
  2462. #. the download progress display (e.g. 7d 3h 42min 1s)
  2463. #: apt-pkg/acquire-item.cc:1281
  2464. #, c-format
  2465. msgid "Release file expired, ignoring %s (invalid since %s)"
  2466. msgstr "File Release scaduto, %s viene ignorato (non valido da %s)"
  2467. #: apt-pkg/acquire-item.cc:1302
  2468. #, c-format
  2469. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2470. msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)"
  2471. #: apt-pkg/acquire-item.cc:1328
  2472. #, c-format
  2473. msgid ""
  2474. "A error occurred during the signature verification. The repository is not "
  2475. "updated and the previous index files will be used. GPG error: %s: %s\n"
  2476. msgstr ""
  2477. "Si è verificato un errore nel verificare la firma. Il repository non è "
  2478. "aggiornato e verranno usati i file indice precedenti. Errore GPG: %s: %s\n"
  2479. #: apt-pkg/acquire-item.cc:1337
  2480. #, c-format
  2481. msgid "GPG error: %s: %s"
  2482. msgstr "Errore GPG: %s: %s"
  2483. #: apt-pkg/acquire-item.cc:1365
  2484. #, c-format
  2485. msgid ""
  2486. "I wasn't able to locate a file for the %s package. This might mean you need "
  2487. "to manually fix this package. (due to missing arch)"
  2488. msgstr ""
  2489. "Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario "
  2490. "sistemare manualmente questo pacchetto (a causa dell'architettura mancante)."
  2491. #: apt-pkg/acquire-item.cc:1424
  2492. #, c-format
  2493. msgid ""
  2494. "I wasn't able to locate file for the %s package. This might mean you need to "
  2495. "manually fix this package."
  2496. msgstr ""
  2497. "Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario "
  2498. "sistemare manualmente questo pacchetto."
  2499. # (ndt) sarebbe da controllare se veramente possono esistere più file indice
  2500. #: apt-pkg/acquire-item.cc:1479
  2501. #, c-format
  2502. msgid ""
  2503. "The package index files are corrupted. No Filename: field for package %s."
  2504. msgstr ""
  2505. "I file indice del pacchetto sono danneggiati. Manca il campo \"Filename:\" "
  2506. "per il pacchetto %s."
  2507. #: apt-pkg/acquire-item.cc:1566
  2508. msgid "Size mismatch"
  2509. msgstr "Le dimensioni non corrispondono"
  2510. #: apt-pkg/indexrecords.cc:53
  2511. #, c-format
  2512. msgid "Unable to parse Release file %s"
  2513. msgstr "Impossibile analizzare il file Release %s"
  2514. #: apt-pkg/indexrecords.cc:60
  2515. #, c-format
  2516. msgid "No sections in Release file %s"
  2517. msgstr "Nessuna sezione nel file Release %s"
  2518. #: apt-pkg/indexrecords.cc:94
  2519. #, c-format
  2520. msgid "No Hash entry in Release file %s"
  2521. msgstr "Nessuna voce Hash nel file Release %s"
  2522. #: apt-pkg/indexrecords.cc:107
  2523. #, c-format
  2524. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2525. msgstr "Voce \"Valid-Until\" nel file Release %s non valida"
  2526. #: apt-pkg/indexrecords.cc:122
  2527. #, c-format
  2528. msgid "Invalid 'Date' entry in Release file %s"
  2529. msgstr "Voce \"Date\" nel file Release %s non valida"
  2530. #: apt-pkg/vendorlist.cc:66
  2531. #, c-format
  2532. msgid "Vendor block %s contains no fingerprint"
  2533. msgstr "Il blocco vendor %s non contiene impronte"
  2534. #: apt-pkg/cdrom.cc:518
  2535. #, c-format
  2536. msgid ""
  2537. "Using CD-ROM mount point %s\n"
  2538. "Mounting CD-ROM\n"
  2539. msgstr ""
  2540. "Viene usato il punto di mount del CD-ROM %s\n"
  2541. "Montaggio CD-ROM\n"
  2542. #: apt-pkg/cdrom.cc:527 apt-pkg/cdrom.cc:615
  2543. msgid "Identifying.. "
  2544. msgstr "Identificazione... "
  2545. #: apt-pkg/cdrom.cc:552
  2546. #, c-format
  2547. msgid "Stored label: %s\n"
  2548. msgstr "Etichette archiviate: %s \n"
  2549. #: apt-pkg/cdrom.cc:559 apt-pkg/cdrom.cc:827
  2550. msgid "Unmounting CD-ROM...\n"
  2551. msgstr "Smontaggio CD-ROM...\n"
  2552. #: apt-pkg/cdrom.cc:578
  2553. #, c-format
  2554. msgid "Using CD-ROM mount point %s\n"
  2555. msgstr "Viene usato il punto di mount del CD-ROM %s\n"
  2556. #: apt-pkg/cdrom.cc:596
  2557. msgid "Unmounting CD-ROM\n"
  2558. msgstr "Smontaggio CD-ROM\n"
  2559. #: apt-pkg/cdrom.cc:600
  2560. msgid "Waiting for disc...\n"
  2561. msgstr "In attesa del disco...\n"
  2562. #. Mount the new CDROM
  2563. #: apt-pkg/cdrom.cc:608
  2564. msgid "Mounting CD-ROM...\n"
  2565. msgstr "Montaggio CD-ROM...\n"
  2566. #: apt-pkg/cdrom.cc:626
  2567. msgid "Scanning disc for index files..\n"
  2568. msgstr "Analisi del disco per file indice...\n"
  2569. #: apt-pkg/cdrom.cc:666
  2570. #, c-format
  2571. msgid ""
  2572. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2573. "%zu signatures\n"
  2574. msgstr ""
  2575. "Trovati %zu indici di pacchetto, %zu indici di sorgente, %zu indici di "
  2576. "traduzione e %zu firme\n"
  2577. #: apt-pkg/cdrom.cc:677
  2578. msgid ""
  2579. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2580. "wrong architecture?"
  2581. msgstr ""
  2582. "Impossibile trovare alcun file di pacchetto. Questo potrebbe non essere un "
  2583. "disco Debian o potrebbe essere l'architettura errata."
  2584. #: apt-pkg/cdrom.cc:703
  2585. #, c-format
  2586. msgid "Found label '%s'\n"
  2587. msgstr "Trovata l'etichetta \"%s\"\n"
  2588. #: apt-pkg/cdrom.cc:732
  2589. msgid "That is not a valid name, try again.\n"
  2590. msgstr "Questo non è un nome valido, riprovare.\n"
  2591. #: apt-pkg/cdrom.cc:748
  2592. #, c-format
  2593. msgid ""
  2594. "This disc is called: \n"
  2595. "'%s'\n"
  2596. msgstr ""
  2597. "Questo disco è chiamato: \n"
  2598. "\"%s\"\n"
  2599. #: apt-pkg/cdrom.cc:752
  2600. msgid "Copying package lists..."
  2601. msgstr "Copia elenco pacchetti..."
  2602. #: apt-pkg/cdrom.cc:778
  2603. msgid "Writing new source list\n"
  2604. msgstr "Scrittura nuovo elenco sorgenti\n"
  2605. #: apt-pkg/cdrom.cc:787
  2606. msgid "Source list entries for this disc are:\n"
  2607. msgstr "Le voci dell'elenco sorgenti per questo disco sono:\n"
  2608. #: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908
  2609. #, c-format
  2610. msgid "Wrote %i records.\n"
  2611. msgstr "Scritti %i record.\n"
  2612. #: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910
  2613. #, c-format
  2614. msgid "Wrote %i records with %i missing files.\n"
  2615. msgstr "Scritti %i record con %i file mancanti.\n"
  2616. #: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913
  2617. #, c-format
  2618. msgid "Wrote %i records with %i mismatched files\n"
  2619. msgstr "Scritti %i record con %i file senza corrispondenze\n"
  2620. #: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916
  2621. #, c-format
  2622. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2623. msgstr ""
  2624. "Scritti %i record con %i file mancanti e %i file senza corrispondenze\n"
  2625. #: apt-pkg/indexcopy.cc:537
  2626. #, c-format
  2627. msgid "Skipping nonexistent file %s"
  2628. msgstr "Saltato il file inesistente %s"
  2629. #: apt-pkg/indexcopy.cc:543
  2630. #, c-format
  2631. msgid "Can't find authentication record for: %s"
  2632. msgstr "Impossibile trovare il record di autenticazione per %s"
  2633. #: apt-pkg/indexcopy.cc:549
  2634. #, c-format
  2635. msgid "Hash mismatch for: %s"
  2636. msgstr "Hash non corrispondente per %s"
  2637. # (ndt) dovrebbe essere inteso il file Release
  2638. #: apt-pkg/cacheset.cc:337
  2639. #, c-format
  2640. msgid "Release '%s' for '%s' was not found"
  2641. msgstr "Release \"%s\" per \"%s\" non trovato."
  2642. # (ndt) dovrebbe essere inteso il Version
  2643. #: apt-pkg/cacheset.cc:340
  2644. #, c-format
  2645. msgid "Version '%s' for '%s' was not found"
  2646. msgstr "Version \"%s\" per \"%s\" non trovato"
  2647. #: apt-pkg/cacheset.cc:447
  2648. #, c-format
  2649. msgid "Couldn't find task '%s'"
  2650. msgstr "Impossibile trovare il task \"%s\""
  2651. #: apt-pkg/cacheset.cc:454
  2652. #, c-format
  2653. msgid "Couldn't find any package by regex '%s'"
  2654. msgstr ""
  2655. "Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\""
  2656. #: apt-pkg/cacheset.cc:467
  2657. #, c-format
  2658. msgid "Can't select versions from package '%s' as it purely virtual"
  2659. msgstr ""
  2660. "Impossibile selezionare le versioni dal pacchetto \"%s\" poiché è virtuale"
  2661. #: apt-pkg/cacheset.cc:475 apt-pkg/cacheset.cc:483
  2662. #, c-format
  2663. msgid ""
  2664. "Can't select installed nor candidate version from package '%s' as it has "
  2665. "neither of them"
  2666. msgstr ""
  2667. "Impossibile selezionare la versione installata o la candidata dal pacchetto "
  2668. "\"%s\" poiché non sono presenti"
  2669. #: apt-pkg/cacheset.cc:491
  2670. #, c-format
  2671. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2672. msgstr ""
  2673. "Impossibile selezionare la versione più recente dal pacchetto \"%s\" poiché "
  2674. "è virtuale"
  2675. #: apt-pkg/cacheset.cc:499
  2676. #, c-format
  2677. msgid "Can't select candidate version from package %s as it has no candidate"
  2678. msgstr ""
  2679. "Impossibile selezionare la versione candidata dal pacchetto %s poiché non ha "
  2680. "alcun candidato"
  2681. #: apt-pkg/cacheset.cc:507
  2682. #, c-format
  2683. msgid "Can't select installed version from package %s as it is not installed"
  2684. msgstr ""
  2685. "Impossibile selezionare la versione installata dal pacchetto %s poiché non è "
  2686. "installato"
  2687. #: apt-pkg/deb/dpkgpm.cc:52
  2688. #, c-format
  2689. msgid "Installing %s"
  2690. msgstr "Installazione di %s"
  2691. #: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:823
  2692. #, c-format
  2693. msgid "Configuring %s"
  2694. msgstr "Configurazione di %s"
  2695. #: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:830
  2696. #, c-format
  2697. msgid "Removing %s"
  2698. msgstr "Rimozione di %s"
  2699. #: apt-pkg/deb/dpkgpm.cc:55
  2700. #, c-format
  2701. msgid "Completely removing %s"
  2702. msgstr "Rimozione completa di %s"
  2703. #: apt-pkg/deb/dpkgpm.cc:56
  2704. #, c-format
  2705. msgid "Noting disappearance of %s"
  2706. msgstr "Notata la sparizione di %s"
  2707. #: apt-pkg/deb/dpkgpm.cc:57
  2708. #, c-format
  2709. msgid "Running post-installation trigger %s"
  2710. msgstr "Esecuzione comando di post installazione %s"
  2711. #. FIXME: use a better string after freeze
  2712. #: apt-pkg/deb/dpkgpm.cc:646
  2713. #, c-format
  2714. msgid "Directory '%s' missing"
  2715. msgstr "Directory \"%s\" mancante"
  2716. #: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:675
  2717. #, c-format
  2718. msgid "Could not open file '%s'"
  2719. msgstr "Impossibile aprire il file \"%s\""
  2720. #: apt-pkg/deb/dpkgpm.cc:816
  2721. #, c-format
  2722. msgid "Preparing %s"
  2723. msgstr "Preparazione di %s"
  2724. #: apt-pkg/deb/dpkgpm.cc:817
  2725. #, c-format
  2726. msgid "Unpacking %s"
  2727. msgstr "Estrazione di %s"
  2728. #: apt-pkg/deb/dpkgpm.cc:822
  2729. #, c-format
  2730. msgid "Preparing to configure %s"
  2731. msgstr "Preparazione alla configurazione di %s"
  2732. #: apt-pkg/deb/dpkgpm.cc:824
  2733. #, c-format
  2734. msgid "Installed %s"
  2735. msgstr "Pacchetto %s installato"
  2736. #: apt-pkg/deb/dpkgpm.cc:829
  2737. #, c-format
  2738. msgid "Preparing for removal of %s"
  2739. msgstr "Preparazione alla rimozione di %s"
  2740. #: apt-pkg/deb/dpkgpm.cc:831
  2741. #, c-format
  2742. msgid "Removed %s"
  2743. msgstr "Pacchetto %s rimosso"
  2744. #: apt-pkg/deb/dpkgpm.cc:836
  2745. #, c-format
  2746. msgid "Preparing to completely remove %s"
  2747. msgstr "Preparazione alla rimozione completa di %s"
  2748. #: apt-pkg/deb/dpkgpm.cc:837
  2749. #, c-format
  2750. msgid "Completely removed %s"
  2751. msgstr "Pacchetto %s rimosso completamente"
  2752. #: apt-pkg/deb/dpkgpm.cc:1043
  2753. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2754. msgstr ""
  2755. "Impossibile scrivere il registro, openpty() non riuscita (forse /dev/pts non "
  2756. "è montato)\n"
  2757. #: apt-pkg/deb/dpkgpm.cc:1074
  2758. msgid "Running dpkg"
  2759. msgstr "Esecuzione di dpkg"
  2760. #: apt-pkg/deb/dpkgpm.cc:1277
  2761. msgid "No apport report written because MaxReports is reached already"
  2762. msgstr ""
  2763. "Segnalazione apport non scritta poiché è stato raggiunto il valore massimo "
  2764. "di MaxReports"
  2765. #. check if its not a follow up error
  2766. #: apt-pkg/deb/dpkgpm.cc:1282
  2767. msgid "dependency problems - leaving unconfigured"
  2768. msgstr "Problemi con le dipendenze - Viene lasciato non configurato"
  2769. #: apt-pkg/deb/dpkgpm.cc:1284
  2770. msgid ""
  2771. "No apport report written because the error message indicates its a followup "
  2772. "error from a previous failure."
  2773. msgstr ""
  2774. "Segnalazione apport non scritta poiché il messaggio di errore indica la "
  2775. "presenza di un fallimento precedente."
  2776. #: apt-pkg/deb/dpkgpm.cc:1290
  2777. msgid ""
  2778. "No apport report written because the error message indicates a disk full "
  2779. "error"
  2780. msgstr ""
  2781. "Segnalazione apport non scritta poiché il messaggio di errore indica un "
  2782. "errore per disco pieno."
  2783. #: apt-pkg/deb/dpkgpm.cc:1296
  2784. msgid ""
  2785. "No apport report written because the error message indicates a out of memory "
  2786. "error"
  2787. msgstr ""
  2788. "Segnalazione apport non scritta poiché il messaggio di errore indica un "
  2789. "errore di memoria esaurita"
  2790. #: apt-pkg/deb/dpkgpm.cc:1303
  2791. msgid ""
  2792. "No apport report written because the error message indicates a dpkg I/O error"
  2793. msgstr ""
  2794. "Segnalazione apport non scritta poiché il messaggio di errore indica un "
  2795. "errore di I/O di dpkg"
  2796. #: apt-pkg/deb/debsystem.cc:69
  2797. #, c-format
  2798. msgid ""
  2799. "Unable to lock the administration directory (%s), is another process using "
  2800. "it?"
  2801. msgstr ""
  2802. "Impossibile acquisire il blocco sulla directory di amministrazione (%s). Un "
  2803. "altro processo potrebbe tenerla occupata."
  2804. #: apt-pkg/deb/debsystem.cc:72
  2805. #, c-format
  2806. msgid "Unable to lock the administration directory (%s), are you root?"
  2807. msgstr ""
  2808. "Impossibile acquisire il blocco sulla directory di amministrazione (%s). È "
  2809. "necessario essere root."
  2810. #. TRANSLATORS: the %s contains the recovery command, usually
  2811. #. dpkg --configure -a
  2812. #: apt-pkg/deb/debsystem.cc:88
  2813. #, c-format
  2814. msgid ""
  2815. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2816. msgstr ""
  2817. "dpkg è stato interrotto. È necessario eseguire \"%s\" per correggere il "
  2818. "problema. "
  2819. #: apt-pkg/deb/debsystem.cc:106
  2820. msgid "Not locked"
  2821. msgstr "Non bloccato"
  2822. #. FIXME: fallback to a default mirror here instead
  2823. #. and provide a config option to define that default
  2824. #: methods/mirror.cc:200
  2825. #, c-format
  2826. msgid "No mirror file '%s' found "
  2827. msgstr "Nessun file mirror \"%s\" trovato"
  2828. #: methods/mirror.cc:343
  2829. #, c-format
  2830. msgid "[Mirror: %s]"
  2831. msgstr "[Mirror: %s]"
  2832. #: methods/rred.cc:465
  2833. #, c-format
  2834. msgid ""
  2835. "Could not patch %s with mmap and with file operation usage - the patch seems "
  2836. "to be corrupt."
  2837. msgstr ""
  2838. "Impossibile applicare la patch a %s con mmap e con l'utilizzo di operazioni "
  2839. "file. La patch sembra essere danneggiata."
  2840. #: methods/rred.cc:470
  2841. #, c-format
  2842. msgid ""
  2843. "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  2844. "to be corrupt."
  2845. msgstr ""
  2846. "Impossibile applicare la patch a %s con mmap (nessun errore da parte di "
  2847. "mmap). La patch sembra essere danneggiata."
  2848. #: methods/rsh.cc:329
  2849. msgid "Connection closed prematurely"
  2850. msgstr "Connessione chiusa prematuramente"