it.po 120 KB

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