it.po 119 KB

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