it.po 102 KB

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