it.po 117 KB

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