it.po 116 KB

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