it.po 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818
  1. # Messaggi in Italiano per `dpkg'.
  2. # Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
  3. # Lele Gaifax <lele@seldati.it>, 2000, 2001, 2002, 2003, 2004.
  4. #
  5. # Stefano Canepa <sc@linux.it>, 2004 only for an update because Lele was
  6. # unreachable and translation needed to be updated
  7. #
  8. # Stefano Canepa <sc@linux.it>, 2005.
  9. # Convenzioni usate, per rendere più semplice la loro individuazione ed
  10. # eventuale sostituzione:
  11. #
  12. # `(hard) link' ......: `collegamento'
  13. # `argument' .........: `parametro'
  14. # `bad magic' ........: `codice di controllo errato'
  15. # `broken' ...........: `difettoso'
  16. # `bulk update' ......: `aggiornamento massivo'
  17. # `checksum' .........: `codice di controllo'
  18. # `cleanup' ..........: `pulizia'
  19. # `corrupt' ..........: `rovinato'
  20. # `diverted by' ......: `diversificato da'
  21. # `enter' ............: `invio'
  22. # `file details field': `campo dettagli del file'
  23. # `giving up' ........: `lascio perdere'
  24. # `hold' .............: `blocca'/`bloccato'
  25. # `junk' .............: `robaccia'
  26. # `maintainer' .......: `responsabile'
  27. # `nested errors' ....: `errori correlati'
  28. # `newline' ..........: `a-capo'
  29. # `pad' ..............: `riempimento'
  30. # `pan' ..............: `slittare'
  31. # `purge' ............: `elimina'
  32. # `required' .........: `essenziale'
  33. # `screenpart' .......: `settore schermata'
  34. # `set up' ...........: `configurare'
  35. # `symbolic link' ....: `collegamento simbolico'
  36. # `unable' ...........: `impossibile'
  37. # `unbuffer' .........: `rimuovere la bufferizzazione'
  38. # `unpacked' .........: `spacchettato'
  39. # `up-to-date' .......: `già aggiornati'
  40. # `warning' ..........: `attenzione'
  41. #
  42. msgid ""
  43. msgstr ""
  44. "Project-Id-Version: dselect 1.10.22\n"
  45. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  46. "POT-Creation-Date: 2014-06-05 13:42+0200\n"
  47. "PO-Revision-Date: 2006-10-06 22:01+0200\n"
  48. "Last-Translator: Stefano Canepa <sc@linux.it>\n"
  49. "Language-Team: Italian <debian-l10n-italian@debian.org>\n"
  50. "Language: it\n"
  51. "MIME-Version: 1.0\n"
  52. "Content-Type: text/plain; charset=UTF-8\n"
  53. "Content-Transfer-Encoding: 8bit\n"
  54. #: dselect/basecmds.cc:125
  55. msgid "Search for ? "
  56. msgstr "Ricerca di ? "
  57. #: dselect/basecmds.cc:149
  58. msgid "Error: "
  59. msgstr "Errore: "
  60. #: dselect/basecmds.cc:180
  61. msgid "Help: "
  62. msgstr "Aiuto: "
  63. #: dselect/basecmds.cc:186
  64. msgid "Press ? for help menu, . for next topic, <space> to exit help."
  65. msgstr "Premi ? per menu aiuto, . prossimo argomento, <spazio> per uscire."
  66. #: dselect/basecmds.cc:193
  67. msgid "Help information is available under the following topics:"
  68. msgstr "Sono disponibili informazioni di aiuto sui seguenti argomenti:"
  69. #: dselect/basecmds.cc:201
  70. msgid ""
  71. "Press a key from the list above, <space> or `q' to exit help,\n"
  72. " or `.' (full stop) to read each help page in turn. "
  73. msgstr ""
  74. "Premi un tasto della lista sopra, <spazio> o 'q' per uscire dall'aiuto,\n"
  75. " o '.' (punto) per leggere ogni pagina di aiuto in sequenza. "
  76. #: dselect/basecmds.cc:207
  77. msgid "error reading keyboard in help"
  78. msgstr "errore di lettura della tastiera nell'aiuto"
  79. #: dselect/baselist.cc:60
  80. msgid "ioctl(TIOCGWINSZ) failed"
  81. msgstr "ioctl(TIOCGWINSZ) fallita"
  82. #: dselect/baselist.cc:63
  83. msgid "doupdate in SIGWINCH handler failed"
  84. msgstr "fallita doupdate nel gestore SIGWINCH"
  85. #: dselect/baselist.cc:72
  86. msgid "failed to restore old SIGWINCH sigact"
  87. msgstr "impossibile ripristinare la vecchia \"sigact\" su SIGWINCH"
  88. #: dselect/baselist.cc:75
  89. msgid "failed to restore old signal mask"
  90. msgstr "impossibile ripristinare la vecchia maschera dei segnali"
  91. #: dselect/baselist.cc:86
  92. msgid "failed to get old signal mask"
  93. msgstr "impossibile ottenere la vecchia maschera dei segnali"
  94. #: dselect/baselist.cc:88
  95. msgid "failed to get old SIGWINCH sigact"
  96. msgstr "impossibile ottenere la vecchia \"sigact\" su SIGWINCH"
  97. #: dselect/baselist.cc:93
  98. msgid "failed to block SIGWINCH"
  99. msgstr "impossibile bloccare SIGWINCH"
  100. #: dselect/baselist.cc:99
  101. msgid "failed to set new SIGWINCH sigact"
  102. msgstr "impossibile impostare la nuova \"sigact\" su SIGWINCH"
  103. #: dselect/baselist.cc:136
  104. msgid "failed to allocate colour pair"
  105. msgstr "impossibile allocare le coppie di colori"
  106. #: dselect/baselist.cc:165
  107. msgid "failed to create title window"
  108. msgstr "impossibile creare la finestra del titolo"
  109. #: dselect/baselist.cc:169
  110. msgid "failed to create whatinfo window"
  111. msgstr "impossibile creare la finestra di descrizione delle informazioni"
  112. #: dselect/baselist.cc:173
  113. msgid "failed to create baselist pad"
  114. msgstr "impossibile creare la schermata per la lista di base"
  115. #: dselect/baselist.cc:176
  116. msgid "failed to create heading pad"
  117. msgstr "impossibile creare la schermata per l'intestazione"
  118. #: dselect/baselist.cc:180
  119. msgid "failed to create thisstate pad"
  120. msgstr "impossibile creare la schermata per lo stato del pacchetto"
  121. #: dselect/baselist.cc:184
  122. msgid "failed to create info pad"
  123. msgstr "impossibile creare la schermata delle informazioni"
  124. #: dselect/baselist.cc:189
  125. msgid "failed to create query window"
  126. msgstr "impossibile creare la finestra di ricerca"
  127. #: dselect/baselist.cc:258
  128. #, fuzzy
  129. msgid "Keybindings"
  130. msgstr "funzionalità dei tasti"
  131. #: dselect/baselist.cc:307
  132. #, c-format
  133. msgid " -- %d%%, press "
  134. msgstr " -- %d%%, premi "
  135. #: dselect/baselist.cc:310
  136. #, c-format
  137. msgid "%s for more"
  138. msgstr "%s per vedere il resto"
  139. #: dselect/baselist.cc:314
  140. #, c-format
  141. msgid "%s to go back"
  142. msgstr "%s per tornare indietro"
  143. #: dselect/bindings.cc:78
  144. msgid "[not bound]"
  145. msgstr "[non associato ad alcuna funzione]"
  146. #: dselect/bindings.cc:82
  147. #, c-format
  148. msgid "[unk: %d]"
  149. msgstr "[sconosc.: %d]"
  150. #: dselect/bindings.cc:141
  151. msgid "Scroll onwards through help/information"
  152. msgstr "Scorri l'aiuto/informazione in avanti"
  153. #: dselect/bindings.cc:142
  154. msgid "Scroll backwards through help/information"
  155. msgstr "Scorri l'aiuto/informazione indietro"
  156. #: dselect/bindings.cc:143
  157. msgid "Move up"
  158. msgstr "Spostati in su"
  159. #: dselect/bindings.cc:144
  160. msgid "Move down"
  161. msgstr "Spostati in giù"
  162. #: dselect/bindings.cc:145
  163. msgid "Go to top of list"
  164. msgstr "Vai all'inizio della lista"
  165. #: dselect/bindings.cc:146
  166. msgid "Go to end of list"
  167. msgstr "Vai alla fine della lista"
  168. #: dselect/bindings.cc:147
  169. msgid "Request help (cycle through help screens)"
  170. msgstr "Richiedi aiuto (vedi le varie pagine di aiuto)"
  171. #: dselect/bindings.cc:148
  172. msgid "Cycle through information displays"
  173. msgstr "Vedi le varie pagine di informazione"
  174. #: dselect/bindings.cc:149
  175. msgid "Redraw display"
  176. msgstr "Ridisegna la schermata"
  177. #: dselect/bindings.cc:150
  178. msgid "Scroll onwards through list by 1 line"
  179. msgstr "Scorri la lista in avanti di una riga"
  180. #: dselect/bindings.cc:151
  181. msgid "Scroll backwards through list by 1 line"
  182. msgstr "Scorri la lista indietro di una riga"
  183. #: dselect/bindings.cc:152
  184. msgid "Scroll onwards through help/information by 1 line"
  185. msgstr "Scorri l'aiuto/informazione in avanti di una riga"
  186. #: dselect/bindings.cc:153
  187. msgid "Scroll backwards through help/information by 1 line"
  188. msgstr "Scorri l'aiuto/informazione indietro di una riga"
  189. #: dselect/bindings.cc:154
  190. msgid "Scroll onwards through list"
  191. msgstr "Scorri la lista in avanti"
  192. #: dselect/bindings.cc:155
  193. msgid "Scroll backwards through list"
  194. msgstr "Scorri la lista indietro"
  195. #: dselect/bindings.cc:158
  196. msgid "Mark package(s) for installation"
  197. msgstr "Contrassegna i pacchetti per l'installazione"
  198. #: dselect/bindings.cc:159
  199. msgid "Mark package(s) for deinstallation"
  200. msgstr "Contrassegna i pacchetti per la disinstallazione"
  201. #: dselect/bindings.cc:160
  202. msgid "Mark package(s) for deinstall and purge"
  203. msgstr "Contrassegna i pacchetti per la disinstallazione ed eliminazione"
  204. #: dselect/bindings.cc:161
  205. msgid "Make highlight more specific"
  206. msgstr "Rendi l'evidenziazione più specifica"
  207. #: dselect/bindings.cc:162
  208. msgid "Make highlight less specific"
  209. msgstr "Rendi l'evidenziazione meno specifica"
  210. #: dselect/bindings.cc:163
  211. msgid "Search for a package whose name contains a string"
  212. msgstr "Ricerca un pacchetto il cui nome contenga una stringa"
  213. #: dselect/bindings.cc:164
  214. #, fuzzy
  215. #| msgid "Repeat last search."
  216. msgid "Repeat last search"
  217. msgstr "Ripeti l'ultima ricerca."
  218. #: dselect/bindings.cc:165
  219. msgid "Swap sort order priority/section"
  220. msgstr "Scambia l'ordinamento priorità/sezione"
  221. #: dselect/bindings.cc:166
  222. msgid "Quit, confirming, and checking dependencies"
  223. msgstr "Esci, confermando, con controllo delle dipendenze"
  224. #: dselect/bindings.cc:167
  225. msgid "Quit, confirming without check"
  226. msgstr "Esci, confermando senza ulteriori controlli"
  227. #: dselect/bindings.cc:168
  228. msgid "Quit, rejecting conflict/dependency suggestions"
  229. msgstr "Esci, rifiutando i suggerimenti sui conflitti/dipendenze"
  230. #: dselect/bindings.cc:169
  231. msgid "Abort - quit without making changes"
  232. msgstr "Abbandona - esci senza apportare alcuna modifica"
  233. #: dselect/bindings.cc:170
  234. msgid "Revert to old state for all packages"
  235. msgstr "Ripristina lo stato precedente per tutti i pacchetti"
  236. #: dselect/bindings.cc:171
  237. msgid "Revert to suggested state for all packages"
  238. msgstr "Ripristina lo stato suggerito per tutti i pacchetti"
  239. #: dselect/bindings.cc:172
  240. msgid "Revert to directly requested state for all packages"
  241. msgstr "Ripristina lo stato espressamente richiesto per tutti i pacchetti"
  242. #: dselect/bindings.cc:173
  243. #, fuzzy
  244. msgid "Revert to currently installed state for all packages"
  245. msgstr "Ripristina lo stato espressamente richiesto per tutti i pacchetti"
  246. #: dselect/bindings.cc:176
  247. msgid "Select currently-highlighted access method"
  248. msgstr "Seleziona il metodo evidenziato"
  249. #: dselect/bindings.cc:177
  250. msgid "Quit without changing selected access method"
  251. msgstr "Esci senza cambiare il metodo di accesso"
  252. #: dselect/helpmsgs.cc:29
  253. msgid "Keystrokes"
  254. msgstr "Funzionalità dei Tasti"
  255. #: dselect/helpmsgs.cc:29
  256. #, fuzzy
  257. msgid ""
  258. "Motion keys: Next/Previous, Top/End, Up/Down, Backwards/Forwards:\n"
  259. " j, Down-arrow k, Up-arrow move highlight\n"
  260. " N, Page-down, Space P, Page-up, Backspace scroll list by 1 page\n"
  261. " ^n ^p scroll list by 1 line\n"
  262. " t, Home e, End jump to top/end of list\n"
  263. " u d scroll info by 1 page\n"
  264. " ^u ^d scroll info by 1 line\n"
  265. " B, Left-arrow F, Right-arrow pan display by 1/3 screen\n"
  266. " ^b ^f pan display by 1 character\n"
  267. "\n"
  268. "Mark packages for later processing:\n"
  269. " +, Insert install or upgrade =, H hold in present state\n"
  270. " -, Delete remove :, G unhold: upgrade or leave "
  271. "uninstalled\n"
  272. " _ remove & purge config\n"
  273. " Miscellaneous:\n"
  274. "Quit, exit, overwrite (note capitals!): ?, F1 request help (also "
  275. "Help)\n"
  276. " Return Confirm, quit (check dependencies) i, I toggle/cycle info "
  277. "displays\n"
  278. " Q Confirm, quit (override dep.s) o, O cycle through sort "
  279. "options\n"
  280. " X, Esc eXit, abandoning any changes made v, V change status display "
  281. "opts\n"
  282. " R Revert to state before this list ^l redraw display\n"
  283. " U set all to sUggested state / search (Return to "
  284. "cancel)\n"
  285. " D set all to Directly requested state n, \\ repeat last search\n"
  286. msgstr ""
  287. "Tasti per lo spostamento: \n"
  288. " n, Cursore-giù, j p, Cursore-su, k sposta l'evidenziazione\n"
  289. " N, Pag.-giù, Spazio P, Pag.-su, Backspace scorri la lista di 1 pagina\n"
  290. " ^n ^p scorri la lista di 1 riga\n"
  291. " t, Inizio e, Fine salta in cima/fondo alla "
  292. "lista\n"
  293. " u d scorri le info di 1 pagina\n"
  294. " ^u ^d scorri le info di 1 riga\n"
  295. " B, Cursore-sinistra F, Cursore-destra slitta schermo di 1/3 "
  296. "ampiezza\n"
  297. " ^b ^f slitta schermo di 1 "
  298. "carattere\n"
  299. "\n"
  300. "Contrassegna i pacchetti per una azione successiva:\n"
  301. " +, Ins installa o aggiorna =, H blocca nello stato attuale\n"
  302. " -, Canc rimuovi :, G sblocca: aggiorna o lascia non "
  303. "install.\n"
  304. " _ rimuovi ed elimina configurazione\n"
  305. " Varie:\n"
  306. "Esci, termina, sovrascr. (nota maiuscole!): ?, F1 chiedi aiuto (anche "
  307. "Help)\n"
  308. " Invio Conferma, esci (controlla dipend.) i, I vedi varie pagine di "
  309. "info\n"
  310. " Q Conferma, termina (ignora dipend.) o, O cambia ordinamento "
  311. "lista\n"
  312. " X, Esc Esci, abbandona modifiche fatte v, V cambia modo visual. "
  313. "stato\n"
  314. " R Riprist. stato prec. questa lista ^l ridisegna la schermata\n"
  315. " U imposta tutti a stato sUggerito / cerca (Invio per "
  316. "annullare)\n"
  317. " D imposta tutti a stato Dirett. chiesto \\ ripeti l'ultima "
  318. "ricerca\n"
  319. #: dselect/helpmsgs.cc:55
  320. msgid "Introduction to package selections"
  321. msgstr "Introduzione alla selezione dei pacchetti"
  322. #: dselect/helpmsgs.cc:55
  323. msgid ""
  324. "Welcome to dselect's main package listing.\n"
  325. "\n"
  326. "You will be presented with a list of packages which are installed or "
  327. "available\n"
  328. "for installation. You can navigate around the list using the cursor keys,\n"
  329. "mark packages for installation (using `+') or deinstallation (using `-').\n"
  330. "Packages can be marked either singly or in groups; initially you will see "
  331. "that\n"
  332. "the line `All packages' is selected. `+', `-' and so on will affect all "
  333. "the\n"
  334. "packages described by the highlighted line.\n"
  335. "\n"
  336. "Some of your choices will cause conflicts or dependency problems; you will "
  337. "be\n"
  338. "given a sub-list of the relevant packages, so that you can solve the "
  339. "problems.\n"
  340. "\n"
  341. "You should read the list of keys and the explanations of the display.\n"
  342. "Much on-line help is available, please make use of it - press `?' at\n"
  343. "any time for help.\n"
  344. "\n"
  345. "When you have finished selecting packages, press <enter> to confirm "
  346. "changes,\n"
  347. "or `X' to quit without saving changes. A final check on conflicts and\n"
  348. "dependencies will be done - here too you may see a sublist.\n"
  349. "\n"
  350. "Press <space> to leave help and enter the list now.\n"
  351. msgstr ""
  352. "Benvenuto nella lista principale dei pacchetti.\n"
  353. "\n"
  354. "Ti sarà presentata una lista dei pacchetti che sono installati o "
  355. "disponibili\n"
  356. "ad esserlo. Puoi navigare in giro per la lista usando i tasti cursore, "
  357. "marcare\n"
  358. "i pacchetti per l'installazione (usando `+') o per la rimozione (usando "
  359. "`-').\n"
  360. "I pacchetti possono essere marcati sia singolarmente che in gruppo; "
  361. "all'inizio\n"
  362. "risulterà evidenziata la riga `Tutti i pacchetti'. `+',`-' e così via "
  363. "agiscono\n"
  364. "su tutti i pacchetti indicati dalla riga evidenziata.\n"
  365. "\n"
  366. "Alcune scelte causeranno conflitti o problemi con le dipendenze; ti verrà\n"
  367. "proposta una sotto-lista dei pacchetti in questione consentirti di "
  368. "risolverli.\n"
  369. "\n"
  370. "Dovresti leggere la lista dei tasti e le spiegazioni sulle schermate. E'\n"
  371. "disponibile svariato aiuto in linea, fanne buon uso - premi `?' in "
  372. "qualsiasi\n"
  373. "momento per ottenerlo.\n"
  374. "\n"
  375. "Quando sei soddisfatto della selezione premi <invio> per confermare le\n"
  376. "modifiche, o `X' per uscire senza salvarle. Verrà effettuato un controllo\n"
  377. "finale sui conflitti e sulle dipendenze - anche qui potresti ottenere una\n"
  378. "sotto-lista.\n"
  379. "\n"
  380. "Adesso premi <spazio> per uscire dall'aiuto ed entrare nella lista.\n"
  381. #: dselect/helpmsgs.cc:80
  382. msgid "Introduction to read-only package list browser"
  383. msgstr "Introduzione alla lista dei pacchetti (in sola lettura)"
  384. #: dselect/helpmsgs.cc:80
  385. msgid ""
  386. "Welcome to dselect's main package listing.\n"
  387. "\n"
  388. "You will be presented with a list of packages which are installed or "
  389. "available\n"
  390. "for installation. Since you do not have the privilege necessary to update\n"
  391. "package states, you are in a read-only mode. You can navigate around the\n"
  392. "list using the cursor keys (please see the `Keystrokes' help screen), "
  393. "observe\n"
  394. "the status of the packages and read information about them.\n"
  395. "\n"
  396. "You should read the list of keys and the explanations of the display.\n"
  397. "Much on-line help is available, please make use of it - press `?' at\n"
  398. "any time for help.\n"
  399. "\n"
  400. "When you have finished browsing, press `Q' or <enter> to quit.\n"
  401. "\n"
  402. "Press <space> to leave help and enter the list now.\n"
  403. msgstr ""
  404. "Benvenuto nella lista principale dei pacchetti di dselect.\n"
  405. "\n"
  406. "Ti sarà presentata una lista di pacchetti che sono installati o disponibili\n"
  407. "ad esserlo. Dal momento che non hai i privilegi necessari ad aggiornare lo\n"
  408. "stato dei pacchetti, sei in modalità di sola lettura. Puoi navigare in "
  409. "giro\n"
  410. "per la lista con i tasti cursore (vedi l'aiuto sulle associazioni dei "
  411. "tasti),\n"
  412. "osservare lo stato dei pacchetti e leggerne le relative informazioni.\n"
  413. "\n"
  414. "Dovresti leggere la lista dei tasti e le spiegazioni sulle videate.\n"
  415. "E' disponibile molto aiuto in linea, usalo per favore! Premi `?' in "
  416. "qualsiasi\n"
  417. "momento per vederlo.\n"
  418. "\n"
  419. "Quando hai finito di ispezionare, premi `Q' o <invio> per uscire.\n"
  420. "\n"
  421. "Adesso premi <spazio> per lasciare l'aiuto e visitare la lista.\n"
  422. #: dselect/helpmsgs.cc:99
  423. msgid "Introduction to conflict/dependency resolution sub-list"
  424. msgstr ""
  425. "Introduzione alla sotto-lista per la risoluzione dei conflitti/dipendenze"
  426. #: dselect/helpmsgs.cc:99
  427. msgid ""
  428. "Dependency/conflict resolution - introduction.\n"
  429. "\n"
  430. "One or more of your choices have raised a conflict or dependency problem -\n"
  431. "some packages should only be installed in conjunction with certain others, "
  432. "and\n"
  433. "some combinations of packages may not be installed together.\n"
  434. "\n"
  435. "You will see a sub-list containing the packages involved. The bottom half "
  436. "of\n"
  437. "the display shows relevant conflicts and dependencies; use `i' to cycle "
  438. "between\n"
  439. "that, the package descriptions and the internal control information.\n"
  440. "\n"
  441. "A set of `suggested' packages has been calculated, and the initial markings "
  442. "in\n"
  443. "this sub-list have been set to match those, so you can just hit Return to\n"
  444. "accept the suggestions if you wish. You may abort the change(s) which "
  445. "caused\n"
  446. "the problem(s), and go back to the main list, by pressing capital `X'.\n"
  447. "\n"
  448. "You can also move around the list and change the markings so that they are "
  449. "more\n"
  450. "like what you want, and you can `reject' my suggestions by using the "
  451. "capital\n"
  452. "`D' or `R' keys (see the keybindings help screen). You can use capital `Q' "
  453. "to\n"
  454. "force me to accept the situation currently displayed, in case you want to\n"
  455. "override a recommendation or think that the program is mistaken.\n"
  456. "\n"
  457. "Press <space> to leave help and enter the sub-list; remember: press `?' for "
  458. "help.\n"
  459. msgstr ""
  460. "Risoluzione problemi con le dipendenze/conflitti - introduzione.\n"
  461. "\n"
  462. "Una o più delle scelte effettuate hanno causato un conflitto o un problema "
  463. "con\n"
  464. "le dipendenze - qualche pacchetto dovrebbe essere installato solo insieme "
  465. "con\n"
  466. "qualche altro, e potrebbe essere impossibile installare insieme qualche\n"
  467. "combinazione di pacchetti.\n"
  468. "\n"
  469. "Ti viene ora proposta una sotto-lista contenente i pacchetti coinvolti. La "
  470. "metà\n"
  471. "inferiore dello schermo mostra i conflitti ed i problemi con le dipendenze; "
  472. "usa\n"
  473. "`i' per passare da questa informazione, alla descrizione del pacchetto ed "
  474. "alle\n"
  475. "informazioni di controllo interne.\n"
  476. "\n"
  477. "Viene stabilito un insieme di pacchetti `suggeriti' e le marcature iniziali "
  478. "di\n"
  479. "questa sotto-lista sono impostate di conseguenza, in modo tale che con un "
  480. "solo\n"
  481. "<invio> tu possa confermare la selezione, se ti va bene. Puoi annullare la\n"
  482. "modifica che ha causato il problema, e tornare indietro alla lista "
  483. "principale\n"
  484. "premendo `X' maiuscola.\n"
  485. "\n"
  486. "Puoi anche spostarti per la lista e cambiare le impostazioni a tuo "
  487. "piacimento,\n"
  488. "e puoi rigettare i miei suggerimenti usando le maiuscole `D' o `R' (vedi "
  489. "aiuto\n"
  490. "sulle associazioni dei tasti). Puoi usare la maiuscola `Q' per forzarmi ad\n"
  491. "accettare le impostazioni correnti, nel caso tu voglia ignorare una\n"
  492. "raccomandazione o perché pensi il programma sia in errore.\n"
  493. "\n"
  494. "Premi <spazio> per lasciare l'aiuto e visitare la sotto-lista; ricorda:"
  495. "`?'=aiuto\n"
  496. #: dselect/helpmsgs.cc:125
  497. msgid "Display, part 1: package listing and status chars"
  498. msgstr "Visualizzazione, parte 1: lista dei pacchetti e caratteri di stato"
  499. #: dselect/helpmsgs.cc:125
  500. #, fuzzy
  501. msgid ""
  502. "The top half of the screen shows a list of packages. For each package you "
  503. "see\n"
  504. "four columns for its current status on the system and mark. In terse mode "
  505. "(use\n"
  506. "`v' to toggle verbose display) these are single characters, from left to "
  507. "right:\n"
  508. "\n"
  509. " Error flag: Space - no error (but package may be in broken state - see "
  510. "below)\n"
  511. " `R' - serious error during installation, needs "
  512. "reinstallation;\n"
  513. " Installed state: Space - not installed;\n"
  514. " `*' - installed;\n"
  515. " `-' - not installed but config files remain;\n"
  516. " packages in these { `U' - unpacked but not yet configured;\n"
  517. " states are not { `C' - half-configured (an error happened);\n"
  518. " (quite) properly { `I' - half-installed (an error happened);\n"
  519. " installed { `W',`t' - triggers are awaited resp. pending.\n"
  520. " Old mark: what was requested for this package before presenting this list;\n"
  521. " Mark: what is requested for this package:\n"
  522. " `*': marked for installation or upgrade;\n"
  523. " `-': marked for removal, but any configuration files will remain;\n"
  524. " `=': on hold: package will not be processed at all;\n"
  525. " `_': marked for purge completely - even remove configuration;\n"
  526. " `n': package is new and has yet to be marked for install/remove/&c.\n"
  527. "\n"
  528. "Also displayed are each package's Priority, Section, name, installed and\n"
  529. "available version numbers (shift-V to display/hide) and summary "
  530. "description.\n"
  531. msgstr ""
  532. "La prima metà dello schermo mostra una lista di pacchetti. Per ognuno di "
  533. "essi\n"
  534. "quattro colonne riportano lo stato corrente e la marcatura. Nella modalità\n"
  535. "concisa (`v' passa a quella estesa) sono singoli caratteri, da sinistra "
  536. "sono:\n"
  537. "\n"
  538. " Indicatore Errore: Spazio - nessun errore (ma può essere difettoso - v."
  539. "sotto)\n"
  540. " `R' - errori gravi di installaz., necessita "
  541. "reinstall.;\n"
  542. " Stato pacchetto: Spazio - non installato;\n"
  543. " `*' - installato;\n"
  544. " `-' - non installato, ma file configurazione "
  545. "presenti;\n"
  546. " i pacchetti in { `U' - spacchettato ma non ancora configurato;\n"
  547. " questi stati { `C' - configurato parzialmente (occorso qualche "
  548. "errore);\n"
  549. " sono difettosi { `I' - installato parzialmente (occorso qualche "
  550. "errore).\n"
  551. " Vecchia marcatura: situazione precedente alla presentazione di questa "
  552. "lista;\n"
  553. " Marcatura: cosa si richiede per questo pacchetto:\n"
  554. " `*': contrassegnato per l'installazione o l'aggiornamento;\n"
  555. " `-': contrassegnato per la rimozione, conservando però i file di "
  556. "configuraz.;\n"
  557. " `=': bloccato: il pacchetto non verrà processato in alcun modo;\n"
  558. " `_': contrassegnato per l'eliminazione completa, anche della "
  559. "configurazione;\n"
  560. " `n': il pacchetto è nuovo e non è ancora stato contrassegnato.\n"
  561. "\n"
  562. "Di ogni pacchetto sono riportate la Priorità, la Sezione, il Nome, la "
  563. "versione\n"
  564. "installata, quella disponibile (`V' per mostrarla/nasc.) e la descr. "
  565. "sommaria.\n"
  566. #: dselect/helpmsgs.cc:152
  567. msgid "Display, part 2: list highlight; information display"
  568. msgstr ""
  569. "Visualizzazione, parte 2: evidenziazione nella lista; vis. informazioni"
  570. #: dselect/helpmsgs.cc:152
  571. msgid ""
  572. "* Highlight: One line in the package list will be highlighted. It "
  573. "indicates\n"
  574. " which package(s) will be affected by presses of `+', `-' and `_'.\n"
  575. "\n"
  576. "* The dividing line in the middle of the screen shows a brief explanation "
  577. "of\n"
  578. " the status of the currently-highlighted package, or a description of "
  579. "which\n"
  580. " group is highlighted if a group line is. If you don't understand the\n"
  581. " meaning of some of the status characters displayed, go to the relevant\n"
  582. " package and look at this divider line, or use the `v' key for a verbose\n"
  583. " display (press `v' again to go back to the terse display).\n"
  584. "\n"
  585. "* The bottom of the screen shows more information about the\n"
  586. " currently-highlighted package (if there is only one).\n"
  587. "\n"
  588. " It can show an extended description of the package, the internal package\n"
  589. " control details (either for the installed or available version of the\n"
  590. " package), or information about conflicts and dependencies involving the\n"
  591. " current package (in conflict/dependency resolution sublists).\n"
  592. "\n"
  593. " Use the `i' key to cycle through the displays, and `I' to hide the\n"
  594. " information display or expand it to use almost all of the screen.\n"
  595. msgstr ""
  596. "* Evidenziatura: una linea dell'elenco dei pacchetti verrà evidenziata,\n"
  597. " ed indica a quale o a quali pacchetti verrà applicato il comando `+',\n"
  598. " `-' e `_'.\n"
  599. "\n"
  600. "* La linea divisoria nel mezzo dello schermo mostra una breve spiegazione\n"
  601. " dello stato del pacchetto evidenziato al momento, o una descrizione di\n"
  602. " a quale gruppo si applichi il comando se viene evidenziata una linea di\n"
  603. " gruppo. Se non capite il significato di alcuni dei caratteri di stato\n"
  604. " mostrati, andate sul pacchetto in questione e guardate la linea "
  605. "divisoria,\n"
  606. " o usate il tasto `v' per avere una spiegazione prolissa (premete di nuovo\n"
  607. " `v' per tornare alla visualizzazione sintetica).\n"
  608. "\n"
  609. "* Il fondo dello schermo mostra ulteriori informazioni sul pacchetto\n"
  610. " correntemente evidenziato, se c'è.\n"
  611. "\n"
  612. " Può mostrare una descrizione estesa del pacchetto, i dettagli di "
  613. "controllo\n"
  614. " interni del pacchetto (sia per la versione installata che per quella \n"
  615. " disponibile), o informazioni sui conflitti e sulle dipendenze relative\n"
  616. " al pacchetto stesso (in sottoelenchi di risoluzione di conflitti e\n"
  617. " dipendenze).\n"
  618. "\n"
  619. " Usate il tasto `i' per fare un ciclo tra le schermate, e `I' per \n"
  620. " nascondere la schermata delle informazioni o espanderla su quasi \n"
  621. " tutto lo schermo.\n"
  622. #: dselect/helpmsgs.cc:176
  623. msgid "Introduction to method selection display"
  624. msgstr "Introduzione alla selezione del metodo"
  625. #: dselect/helpmsgs.cc:176
  626. msgid ""
  627. "dselect and dpkg can do automatic installation, loading the package files to "
  628. "be\n"
  629. "installed from one of a number of different possible places.\n"
  630. "\n"
  631. "This list allows you to select one of these installation methods.\n"
  632. "\n"
  633. "Move the highlight to the method you wish to use, and hit Enter. You will "
  634. "then\n"
  635. "be prompted for the information required to do the installation.\n"
  636. "\n"
  637. "As you move the highlight a description of each method, where available, is\n"
  638. "displayed in the bottom half of the screen.\n"
  639. "\n"
  640. "If you wish to quit without changing anything use the `x' key while in the "
  641. "list\n"
  642. "of installation methods.\n"
  643. "\n"
  644. "A full list of keystrokes is available by pressing `k' now, or from the "
  645. "help\n"
  646. "menu reachable by pressing `?'.\n"
  647. msgstr ""
  648. "dselect e dpkg possono eseguire una installazione automatica, caricando i\n"
  649. "file dei pacchetti da installare in una delle svariate maniere possibili.\n"
  650. "\n"
  651. "Questa lista ti consente di selezionare uno di questi metodi di "
  652. "installazione.\n"
  653. "\n"
  654. "Sposta l'evidenziazione sul metodo che desideri usare e premi Invio. Poi "
  655. "ti\n"
  656. "saranno richieste le informazioni necessarie all'installazione.\n"
  657. "\n"
  658. "Spostando l'evidenziazione viene visualizzata una descrizione di\n"
  659. "ciascun metodo, se è disponibile, sulla metà inferiore dello schermo.\n"
  660. "\n"
  661. "Se desideri uscire senza cambiare nulla, usa il tasto `x' mentre sei nella\n"
  662. "lista dei metodi di installazione.\n"
  663. "\n"
  664. "Una lista completa dei tasti è disponibile premendo `k' adesso, o dal menù\n"
  665. "di aiuto che è raggiungibile premendo `?'.\n"
  666. #: dselect/helpmsgs.cc:196
  667. msgid "Keystrokes for method selection"
  668. msgstr "Tasti per la selezione del metodo"
  669. #: dselect/helpmsgs.cc:196
  670. #, fuzzy
  671. msgid ""
  672. "Motion keys: Next/Previous, Top/End, Up/Down, Backwards/Forwards:\n"
  673. " j, Down-arrow k, Up-arrow move highlight\n"
  674. " N, Page-down, Space P, Page-up, Backspace scroll list by 1 page\n"
  675. " ^n ^p scroll list by 1 line\n"
  676. " t, Home e, End jump to top/end of list\n"
  677. " u d scroll info by 1 page\n"
  678. " ^u ^d scroll info by 1 line\n"
  679. " B, Left-arrow F, Right-arrow pan display by 1/3 screen\n"
  680. " ^b ^f pan display by 1 character\n"
  681. "(These are the same motion keys as in the package list display.)\n"
  682. "\n"
  683. "Quit:\n"
  684. " Return, Enter select this method and go to its configuration dialogue\n"
  685. " x, X exit without changing or setting up the installation "
  686. "method\n"
  687. "\n"
  688. "Miscellaneous:\n"
  689. " ?, Help, F1 request help\n"
  690. " ^l redraw display\n"
  691. " / search (just return to cancel)\n"
  692. " \\ repeat last search\n"
  693. msgstr ""
  694. "Tasti per lo spostamento:\n"
  695. " n, Cursore-giù p, Cursore-su sposta l'evidenziazione\n"
  696. " N, Pag.-giù, Spazio P, Pag.-su, Backspace scorri la lista di 1 pagina\n"
  697. " ^n ^p scorri la lista di 1 riga\n"
  698. " t, Inizio e, Fine salta in cima/fondo alla "
  699. "lista\n"
  700. " u d scorri le info di 1 pagina\n"
  701. " ^u ^d scorri le info di 1 riga\n"
  702. " B, Cursore-sinistra F, Cursore-destra slitta schermo di 1/3 "
  703. "ampiezza\n"
  704. " ^b ^f slitta schermo di 1 "
  705. "carattere\n"
  706. "(Sono gli stessi tasti di spostamento usati nella lista dei pacchetti.)\n"
  707. "\n"
  708. "Esci:\n"
  709. " Invio seleziona questo metodo e procedi alla sua configurazione\n"
  710. " x, X esci senza cambiare o impostare il metodo di "
  711. "installazione\n"
  712. "\n"
  713. "Varie\n"
  714. " ?, Aiuto, F1 richiedi aiuto\n"
  715. " ^l ridisegna la schermata\n"
  716. " / cerca (basta un Invio per annullarla)\n"
  717. " \\ ripeti l'ultima ricerca\n"
  718. #: dselect/main.cc:63
  719. msgid "Type dselect --help for help."
  720. msgstr "Esegui dselect --help per un aiuto."
  721. #: dselect/main.cc:145
  722. msgid "a"
  723. msgstr "m"
  724. #: dselect/main.cc:145
  725. msgid "[A]ccess"
  726. msgstr "[M]etodo"
  727. #: dselect/main.cc:145
  728. msgid "Choose the access method to use."
  729. msgstr "Scegli il metodo di accesso da usare."
  730. #: dselect/main.cc:146
  731. msgid "u"
  732. msgstr "a"
  733. #: dselect/main.cc:146
  734. msgid "[U]pdate"
  735. msgstr "[A]ggiorna"
  736. #: dselect/main.cc:146
  737. msgid "Update list of available packages, if possible."
  738. msgstr "Aggiorna, se possibile, l'elenco dei pacchetti disponibili."
  739. #: dselect/main.cc:147
  740. msgid "s"
  741. msgstr "s"
  742. #: dselect/main.cc:147
  743. msgid "[S]elect"
  744. msgstr "[S]eleziona"
  745. #: dselect/main.cc:147
  746. msgid "Request which packages you want on your system."
  747. msgstr "Scegli quali pacchetti vuoi nel tuo sistema."
  748. #: dselect/main.cc:148
  749. msgid "i"
  750. msgstr "i"
  751. #: dselect/main.cc:148
  752. msgid "[I]nstall"
  753. msgstr "[I]nstalla"
  754. #: dselect/main.cc:148
  755. msgid "Install and upgrade wanted packages."
  756. msgstr "Installa ed aggiorna i pacchetti scelti."
  757. #: dselect/main.cc:149
  758. msgid "c"
  759. msgstr "c"
  760. #: dselect/main.cc:149
  761. msgid "[C]onfig"
  762. msgstr "[C]onfigura"
  763. #: dselect/main.cc:149
  764. msgid "Configure any packages that are unconfigured."
  765. msgstr "Configura tutti i pacchetti ancora da configurare."
  766. #: dselect/main.cc:150
  767. msgid "r"
  768. msgstr "r"
  769. #: dselect/main.cc:150
  770. msgid "[R]emove"
  771. msgstr "[R]imuovi"
  772. #: dselect/main.cc:150
  773. msgid "Remove unwanted software."
  774. msgstr "Rimuovi il software non voluto."
  775. #: dselect/main.cc:151
  776. msgid "q"
  777. msgstr "t"
  778. #: dselect/main.cc:151
  779. msgid "[Q]uit"
  780. msgstr "[T]ermina"
  781. #: dselect/main.cc:151
  782. msgid "Quit dselect."
  783. msgstr "Esci da dselect."
  784. #: dselect/main.cc:152
  785. msgid "menu"
  786. msgstr "menù"
  787. #: dselect/main.cc:157
  788. #, c-format
  789. msgid "Debian `%s' package handling frontend version %s.\n"
  790. msgstr "Debian `%s' interfaccia per la gestione dei pacchetti versione %s.\n"
  791. #: dselect/main.cc:160
  792. #, fuzzy
  793. msgid ""
  794. "This is free software; see the GNU General Public License version 2 or\n"
  795. "later for copying conditions. There is NO warranty.\n"
  796. msgstr ""
  797. "Questo è software libero; si veda la GNU General Public License versione 2\n"
  798. "o successiva per le condizioni di copia. NON c'è alcuna garanzia.\n"
  799. "Si veda %s --license per il copyright e i dettagli della licenza.\n"
  800. #: dselect/main.cc:169 dselect/main.cc:217
  801. msgid "<standard output>"
  802. msgstr ""
  803. #: dselect/main.cc:180
  804. #, c-format
  805. msgid ""
  806. "Usage: %s [<option> ...] [<action> ...]\n"
  807. "\n"
  808. msgstr ""
  809. "Uso: %s [<opzione> ...] [<azione> ...]\n"
  810. "\n"
  811. #: dselect/main.cc:184
  812. #, fuzzy, c-format
  813. #| msgid ""
  814. #| "Options:\n"
  815. #| " --admindir <directory> Use <directory> instead of %s.\n"
  816. #| " --expert Turn on expert mode.\n"
  817. #| " --debug <file> | -D<file> Turn on debugging, sending output to "
  818. #| "<file>.\n"
  819. #| " --colour | --color screenpart:[foreground],[background][:attr[+attr"
  820. #| "+..]]\n"
  821. #| " Configure screen colours.\n"
  822. #| "\n"
  823. msgid ""
  824. "Options:\n"
  825. " --admindir <directory> Use <directory> instead of %s.\n"
  826. " --expert Turn on expert mode.\n"
  827. " --debug <file> | -D<file> Turn on debugging, sending output to <file>.\n"
  828. " --colour | --color screenpart:[foreground],[background][:attr[+attr+...]]\n"
  829. " Configure screen colours.\n"
  830. "\n"
  831. msgstr ""
  832. "Opzioni:\n"
  833. " --admindir <directory> Usa <directory> invece di %s.\n"
  834. " --expert Abilita il modo esperto.\n"
  835. " --debug <file> | -D<file> Abilita il debugging, mandando l'output a "
  836. "<file>.\n"
  837. " --colour | --color screenpart:[foreground],[background][:attr[+attr+..]]\n"
  838. " Configura i colori dello schermo.\n"
  839. "\n"
  840. #: dselect/main.cc:193
  841. #, fuzzy, c-format
  842. msgid ""
  843. " --help Show this help message.\n"
  844. " --version Show the version.\n"
  845. "\n"
  846. msgstr ""
  847. " --help Mostra questo messaggio di aiuto.\n"
  848. " --version Mostra la versione.\n"
  849. " --license | --licence Mostra la licenza.\n"
  850. "\n"
  851. #: dselect/main.cc:197
  852. #, fuzzy, c-format
  853. #| msgid "Section"
  854. msgid "Actions:\n"
  855. msgstr "Sezione"
  856. #: dselect/main.cc:202
  857. #, c-format
  858. msgid "Screenparts:\n"
  859. msgstr "Settori schermata:\n"
  860. #: dselect/main.cc:207
  861. #, c-format
  862. msgid "Colours:\n"
  863. msgstr "Colori:\n"
  864. #: dselect/main.cc:212
  865. #, c-format
  866. msgid "Attributes:\n"
  867. msgstr "Attributi:\n"
  868. #: dselect/main.cc:232
  869. #, c-format
  870. msgid "couldn't open debug file `%.255s'\n"
  871. msgstr "impossibile aprire il file di debug `%.255s'\n"
  872. #: dselect/main.cc:254
  873. #, fuzzy, c-format
  874. #| msgid "Invalid %s `%s'\n"
  875. msgid "invalid %s '%s'"
  876. msgstr "Elemento non valido per tabella %s: '%s'\n"
  877. #: dselect/main.cc:273
  878. msgid "screen part"
  879. msgstr "settore schermata"
  880. #: dselect/main.cc:279
  881. #, fuzzy
  882. #| msgid "Null colour specification\n"
  883. msgid "null colour specification"
  884. msgstr "Specificato un colore nullo\n"
  885. #: dselect/main.cc:287 dselect/main.cc:292
  886. msgid "colour"
  887. msgstr "colore"
  888. #: dselect/main.cc:300
  889. msgid "colour attribute"
  890. msgstr "attributo colore"
  891. #: dselect/main.cc:334
  892. msgid "Terminal does not appear to support cursor addressing.\n"
  893. msgstr ""
  894. "Il terminale non sembra in grado di gestire il posizionamento del cursore.\n"
  895. #: dselect/main.cc:336
  896. msgid "Terminal does not appear to support highlighting.\n"
  897. msgstr "Il terminale non sembra in grado di gestire l'evidenziazione.\n"
  898. #: dselect/main.cc:338
  899. #, c-format
  900. msgid ""
  901. "Set your TERM variable correctly, use a better terminal,\n"
  902. "or make do with the per-package management tool %s.\n"
  903. msgstr ""
  904. "Imposta correttamente la variabile TERM, utilizza un terminale migliore,\n"
  905. "oppure usa lo strumento di base per la gestione dei pacchetti %s.\n"
  906. #: dselect/main.cc:341
  907. msgid "terminal lacks necessary features, giving up"
  908. msgstr "il terminale manca delle funzionalità necessarie, lascio perdere"
  909. #: dselect/main.cc:422
  910. msgid ""
  911. "\n"
  912. "\n"
  913. "Move around with ^P and ^N, cursor keys, initial letters, or digits;\n"
  914. "Press <enter> to confirm selection. ^L redraws screen.\n"
  915. "\n"
  916. msgstr ""
  917. "\n"
  918. "\n"
  919. "Spostati con ^P e ^N, i tasti cursore, lettera iniziale o numero "
  920. "dell'opzione;\n"
  921. "Premi <invio> per confermare la selezione. ^L ridisegna la schermata.\n"
  922. "\n"
  923. #: dselect/main.cc:427
  924. msgid ""
  925. "Copyright (C) 1994-1996 Ian Jackson.\n"
  926. "Copyright (C) 2000,2001 Wichert Akkerman.\n"
  927. msgstr ""
  928. "Copyright (C) 1994-1996 Ian Jackson.\n"
  929. "Copyright (C) 2000,2001 Wichert Akkerman.\n"
  930. #: dselect/main.cc:433
  931. msgid ""
  932. "\n"
  933. "\n"
  934. "Read-only access: only preview of selections is available!"
  935. msgstr ""
  936. "\n"
  937. "\n"
  938. "Accesso in sola lettura: è possibile solo visionare le selezioni!"
  939. #: dselect/main.cc:452
  940. msgid "failed to getch in main menu"
  941. msgstr "impossibile eseguire getch nel menù principale"
  942. #: dselect/main.cc:535
  943. #, c-format
  944. msgid "unknown action string `%.50s'"
  945. msgstr "stringa di azione sconosciuta `%.50s'"
  946. #: dselect/methlist.cc:73
  947. msgid "dselect - list of access methods"
  948. msgstr "dselect - lista dei metodi di accesso"
  949. #: dselect/methlist.cc:82
  950. #, c-format
  951. msgid "Access method `%s'."
  952. msgstr "Metodo d'accesso `%s'."
  953. #: dselect/methlist.cc:116
  954. msgid "Abbrev."
  955. msgstr "Abbrev."
  956. #: dselect/methlist.cc:117 dselect/pkginfo.cc:110 dselect/pkgtop.cc:293
  957. msgid "Description"
  958. msgstr "Descrizione"
  959. #: dselect/methlist.cc:160 dselect/pkglist.cc:585
  960. msgid "doupdate failed"
  961. msgstr "doupdate fallita"
  962. #: dselect/methlist.cc:163 dselect/pkglist.cc:588
  963. msgid "failed to unblock SIGWINCH"
  964. msgstr "impossibile sbloccare SIGWINCH"
  965. #: dselect/methlist.cc:168 dselect/pkglist.cc:593
  966. msgid "failed to re-block SIGWINCH"
  967. msgstr "impossibile ribloccare SIGWINCH"
  968. #: dselect/methlist.cc:169 dselect/pkglist.cc:595
  969. msgid "getch failed"
  970. msgstr "getch fallita"
  971. #: dselect/methlist.cc:186
  972. #, fuzzy
  973. msgid "Explanation"
  974. msgstr "spiegazioni su "
  975. #: dselect/methlist.cc:196
  976. msgid "No explanation available."
  977. msgstr "Nessuna spiegazione disponibile"
  978. #: dselect/method.cc:67
  979. #, c-format
  980. msgid ""
  981. "\n"
  982. "\n"
  983. "%s: %s\n"
  984. msgstr ""
  985. "\n"
  986. "\n"
  987. "%s: %s\n"
  988. #: dselect/method.cc:70
  989. msgid ""
  990. "\n"
  991. "Press <enter> to continue."
  992. msgstr ""
  993. "\n"
  994. "Premi <invio> per continuare."
  995. #: dselect/method.cc:161
  996. #, c-format
  997. msgid "Press <enter> to continue.\n"
  998. msgstr "Premi <invio> per continuare.\n"
  999. #: dselect/method.cc:162
  1000. #, fuzzy
  1001. msgid "<standard error>"
  1002. msgstr "errore di scrittura su standard error"
  1003. #: dselect/method.cc:165
  1004. msgid "error reading acknowledgement of program failure message"
  1005. msgstr "errore leggendo l'accettazione del messaggio di errore del programma"
  1006. #: dselect/method.cc:196
  1007. msgid "update available list script"
  1008. msgstr "lo script di aggiornamento della disponibilità"
  1009. #: dselect/method.cc:200
  1010. msgid "installation script"
  1011. msgstr "lo script di installazione"
  1012. #: dselect/method.cc:246
  1013. msgid "query/setup script"
  1014. msgstr "lo script di query/setup"
  1015. #: dselect/methparse.cc:53
  1016. #, c-format
  1017. msgid "syntax error in method options file `%.250s' -- %s"
  1018. msgstr "errore di sintassi nel file di opzioni dei metodi `%.250s' -- %s"
  1019. #: dselect/methparse.cc:59
  1020. #, c-format
  1021. msgid "error reading options file `%.250s'"
  1022. msgstr "errore leggendo il file di opzioni `%.250s'"
  1023. #: dselect/methparse.cc:93
  1024. #, c-format
  1025. msgid "unable to read `%.250s' directory for reading methods"
  1026. msgstr "impossibile leggere la directory `%.250s' per leggere i metodi"
  1027. #: dselect/methparse.cc:109
  1028. #, c-format
  1029. msgid "method `%.250s' has name that is too long (%d > %d characters)"
  1030. msgstr "il metodo `%.250s' ha un nome troppo lungo (%d > %d caratteri)"
  1031. #: dselect/methparse.cc:120
  1032. #, c-format
  1033. msgid "unable to access method script `%.250s'"
  1034. msgstr "impossibile accedere allo script di metodo `%.250s'"
  1035. #: dselect/methparse.cc:126
  1036. #, c-format
  1037. msgid "unable to read method options file `%.250s'"
  1038. msgstr "impossibile leggere il file di opzioni dei metodi `%.250s'"
  1039. #: dselect/methparse.cc:150
  1040. msgid "non-digit where digit wanted"
  1041. msgstr "un carattere che non è una cifra dove questa è richiesta"
  1042. #: dselect/methparse.cc:153
  1043. msgid "EOF in index string"
  1044. msgstr "EOF nella stringa di indice"
  1045. #: dselect/methparse.cc:156
  1046. msgid "index string too long"
  1047. msgstr "stringa di indice troppo lunga"
  1048. #: dselect/methparse.cc:159
  1049. msgid "newline before option name start"
  1050. msgstr "a-capo prima dell'inizio del nome dell'opzione"
  1051. #: dselect/methparse.cc:161
  1052. msgid "EOF before option name start"
  1053. msgstr "EOF prima dell'inizio del nome dell'opzione"
  1054. #: dselect/methparse.cc:165
  1055. msgid "nonalpha where option name start wanted"
  1056. msgstr "carattere non alfabetico dove deve cominciare il nome dell'opzione"
  1057. #: dselect/methparse.cc:167
  1058. msgid "non-alphanum in option name"
  1059. msgstr "carattere non alfanumerico nel nome dell'opzione"
  1060. #: dselect/methparse.cc:170
  1061. msgid "EOF in option name"
  1062. msgstr "EOF nel nome dell'opzione"
  1063. #: dselect/methparse.cc:175
  1064. msgid "newline before summary"
  1065. msgstr "a-capo prima del sommario"
  1066. #: dselect/methparse.cc:177
  1067. msgid "EOF before summary"
  1068. msgstr "EOF prima del sommario"
  1069. #: dselect/methparse.cc:183
  1070. msgid "EOF in summary - missing newline"
  1071. msgstr "EOF nel sommario - manca l'a-capo"
  1072. #: dselect/methparse.cc:193
  1073. #, c-format
  1074. msgid "unable to open option description file `%.250s'"
  1075. msgstr "impossibile aprire il file con le descrizioni delle opzioni `%.250s'"
  1076. #: dselect/methparse.cc:197
  1077. #, c-format
  1078. msgid "unable to stat option description file `%.250s'"
  1079. msgstr ""
  1080. "impossibile eseguire stat sul file con le descrizioni delle opzioni `%.250s'"
  1081. #: dselect/methparse.cc:201
  1082. #, c-format
  1083. msgid "failed to read option description file `%.250s'"
  1084. msgstr "impossibile leggere il file con le descrizioni delle opzioni `%.250s'"
  1085. #: dselect/methparse.cc:204
  1086. #, c-format
  1087. msgid "error during read of option description file `%.250s'"
  1088. msgstr "errore leggendo il file con le descrizioni delle opzioni `%.250s'"
  1089. #: dselect/methparse.cc:227
  1090. #, c-format
  1091. msgid "error during read of method options file `%.250s'"
  1092. msgstr "errore leggendo il file di opzioni dei metodi `%.250s'"
  1093. #: dselect/methparse.cc:250
  1094. #, c-format
  1095. msgid "unable to open current option file `%.250s'"
  1096. msgstr "impossibile aprire il file di opzioni corrente `%.250s'"
  1097. #: dselect/methparse.cc:286
  1098. #, c-format
  1099. msgid "unable to write new option to `%.250s'"
  1100. msgstr "impossibile scrivere la nuova opzione in `%.250s'"
  1101. #: dselect/pkgdisplay.cc:36
  1102. msgid "new package"
  1103. msgstr "nuovo"
  1104. #: dselect/pkgdisplay.cc:37
  1105. msgid "install"
  1106. msgstr "installa"
  1107. #: dselect/pkgdisplay.cc:38
  1108. msgid "hold"
  1109. msgstr "blocca"
  1110. #: dselect/pkgdisplay.cc:39
  1111. msgid "remove"
  1112. msgstr "rimuovi"
  1113. #: dselect/pkgdisplay.cc:40
  1114. msgid "purge"
  1115. msgstr "elimina"
  1116. #. TRANSLATORS: The space is a trick to work around gettext which uses
  1117. #. * the empty string to store information about the translation. DO NOT
  1118. #. * CHANGE THAT IN A TRANSLATION! The code really relies on that being
  1119. #. * a single space.
  1120. #: dselect/pkgdisplay.cc:47
  1121. msgid " "
  1122. msgstr " "
  1123. #: dselect/pkgdisplay.cc:48
  1124. msgid "REINSTALL"
  1125. msgstr "REINSTALL"
  1126. #: dselect/pkgdisplay.cc:51
  1127. msgid "not installed"
  1128. msgstr "non installato"
  1129. #: dselect/pkgdisplay.cc:52
  1130. msgid "removed (configs remain)"
  1131. msgstr "rimosso (rimane la config.)"
  1132. #: dselect/pkgdisplay.cc:53
  1133. msgid "half installed"
  1134. msgstr "install. parz."
  1135. #: dselect/pkgdisplay.cc:54
  1136. msgid "unpacked (not set up)"
  1137. msgstr "spacchettato (non conf.)"
  1138. #: dselect/pkgdisplay.cc:55
  1139. msgid "half configured (config failed)"
  1140. msgstr ""
  1141. #: dselect/pkgdisplay.cc:56
  1142. msgid "awaiting trigger processing"
  1143. msgstr ""
  1144. #: dselect/pkgdisplay.cc:57
  1145. msgid "triggered"
  1146. msgstr ""
  1147. #: dselect/pkgdisplay.cc:58
  1148. msgid "installed"
  1149. msgstr "installato"
  1150. #: dselect/pkgdisplay.cc:61
  1151. msgid "Required"
  1152. msgstr "essenziali"
  1153. #: dselect/pkgdisplay.cc:62
  1154. msgid "Important"
  1155. msgstr "importanti"
  1156. #: dselect/pkgdisplay.cc:63
  1157. msgid "Standard"
  1158. msgstr "standard"
  1159. #: dselect/pkgdisplay.cc:64
  1160. msgid "Optional"
  1161. msgstr "opzionali"
  1162. #: dselect/pkgdisplay.cc:65
  1163. msgid "Extra"
  1164. msgstr "extra"
  1165. #: dselect/pkgdisplay.cc:66
  1166. msgid "!Bug!"
  1167. msgstr "!Bug!"
  1168. #: dselect/pkgdisplay.cc:67
  1169. msgid "Unclassified"
  1170. msgstr "non classific."
  1171. #: dselect/pkgdisplay.cc:70
  1172. msgid "suggests"
  1173. msgstr "suggerisce"
  1174. #: dselect/pkgdisplay.cc:71
  1175. msgid "recommends"
  1176. msgstr "raccomanda"
  1177. #: dselect/pkgdisplay.cc:72
  1178. msgid "depends on"
  1179. msgstr "dipende da"
  1180. #: dselect/pkgdisplay.cc:73
  1181. msgid "pre-depends on"
  1182. msgstr "pre-dipende da"
  1183. #: dselect/pkgdisplay.cc:74
  1184. msgid "breaks"
  1185. msgstr ""
  1186. #: dselect/pkgdisplay.cc:75
  1187. msgid "conflicts with"
  1188. msgstr "è in conflitto con"
  1189. #: dselect/pkgdisplay.cc:76
  1190. msgid "provides"
  1191. msgstr "fornisce"
  1192. #: dselect/pkgdisplay.cc:77
  1193. msgid "replaces"
  1194. msgstr "sostituisce"
  1195. #: dselect/pkgdisplay.cc:78
  1196. msgid "enhances"
  1197. msgstr "estende"
  1198. #: dselect/pkgdisplay.cc:81
  1199. msgid "Req"
  1200. msgstr "Ess"
  1201. #: dselect/pkgdisplay.cc:82
  1202. msgid "Imp"
  1203. msgstr "Imp"
  1204. #: dselect/pkgdisplay.cc:83
  1205. msgid "Std"
  1206. msgstr "Std"
  1207. #: dselect/pkgdisplay.cc:84
  1208. msgid "Opt"
  1209. msgstr "Opz"
  1210. #: dselect/pkgdisplay.cc:85
  1211. msgid "Xtr"
  1212. msgstr "Xtr"
  1213. #: dselect/pkgdisplay.cc:86
  1214. msgid "bUG"
  1215. msgstr "bUG"
  1216. #: dselect/pkgdisplay.cc:87
  1217. msgid "?"
  1218. msgstr "?"
  1219. #: dselect/pkgdisplay.cc:95 dselect/pkgdisplay.cc:115
  1220. msgid "Broken"
  1221. msgstr "difettosi"
  1222. #: dselect/pkgdisplay.cc:96
  1223. msgid "New"
  1224. msgstr "nuovi"
  1225. #: dselect/pkgdisplay.cc:97
  1226. msgid "Updated"
  1227. msgstr "da aggiornare"
  1228. #: dselect/pkgdisplay.cc:98
  1229. msgid "Obsolete/local"
  1230. msgstr "obsoleti o locali"
  1231. #: dselect/pkgdisplay.cc:99
  1232. msgid "Up-to-date"
  1233. msgstr "già aggiornati"
  1234. #: dselect/pkgdisplay.cc:100
  1235. msgid "Available"
  1236. msgstr "disponibili"
  1237. #: dselect/pkgdisplay.cc:101 dselect/pkgdisplay.cc:117
  1238. msgid "Removed"
  1239. msgstr "rimossi"
  1240. #: dselect/pkgdisplay.cc:102 dselect/pkgdisplay.cc:111
  1241. msgid "Brokenly installed packages"
  1242. msgstr "Pacchetti installati con difetti"
  1243. #: dselect/pkgdisplay.cc:103
  1244. msgid "Newly available packages"
  1245. msgstr "Nuovi pacchetti disponibili"
  1246. #: dselect/pkgdisplay.cc:104
  1247. msgid "Updated packages (newer version is available)"
  1248. msgstr "Pacchetti aggiornabili (è disponibile una nuova versione)"
  1249. #: dselect/pkgdisplay.cc:105
  1250. msgid "Obsolete and local packages present on system"
  1251. msgstr "Pacchetti obsoleti e locali presenti nel sistema"
  1252. #: dselect/pkgdisplay.cc:106
  1253. msgid "Up to date installed packages"
  1254. msgstr "Pacchetti aggiornati già installati"
  1255. #: dselect/pkgdisplay.cc:107
  1256. msgid "Available packages (not currently installed)"
  1257. msgstr "Pacchetti disponibili (non attualmente installati)"
  1258. #: dselect/pkgdisplay.cc:108
  1259. msgid "Removed and no longer available packages"
  1260. msgstr "Pacchetti rimossi e non più disponibili"
  1261. #: dselect/pkgdisplay.cc:112
  1262. msgid "Installed packages"
  1263. msgstr "Pacchetti installati"
  1264. #: dselect/pkgdisplay.cc:113
  1265. msgid "Removed packages (configuration still present)"
  1266. msgstr "Pacchetti rimossi (la configurazione è ancora presente)"
  1267. #: dselect/pkgdisplay.cc:114
  1268. msgid "Purged packages and those never installed"
  1269. msgstr "Pacchetti eliminati e quelli mai installati"
  1270. #: dselect/pkgdisplay.cc:116
  1271. msgid "Installed"
  1272. msgstr "Installato"
  1273. #: dselect/pkgdisplay.cc:118
  1274. msgid "Purged"
  1275. msgstr "Eliminato"
  1276. #: dselect/pkgdisplay.cc:193
  1277. msgid "dselect - recursive package listing"
  1278. msgstr "dselect - lista ricorsiva dei pacchetti "
  1279. #: dselect/pkgdisplay.cc:195
  1280. msgid "dselect - inspection of package states"
  1281. msgstr "dselect - ispezione dello stato del pacchetto"
  1282. #: dselect/pkgdisplay.cc:196
  1283. msgid "dselect - main package listing"
  1284. msgstr "dselect - lista principale"
  1285. #: dselect/pkgdisplay.cc:204
  1286. msgid " (by section)"
  1287. msgstr " (per sezione)"
  1288. #: dselect/pkgdisplay.cc:207
  1289. msgid " (avail., section)"
  1290. msgstr " (dispon., sezione)"
  1291. #: dselect/pkgdisplay.cc:210
  1292. msgid " (status, section)"
  1293. msgstr " (stato, sezione)"
  1294. #: dselect/pkgdisplay.cc:219
  1295. msgid " (by priority)"
  1296. msgstr " (per priorità)"
  1297. #: dselect/pkgdisplay.cc:222
  1298. msgid " (avail., priority)"
  1299. msgstr " (dispon., priorità)"
  1300. #: dselect/pkgdisplay.cc:225
  1301. msgid " (status, priority)"
  1302. msgstr " (stato, priorità)"
  1303. #: dselect/pkgdisplay.cc:234
  1304. msgid " (alphabetically)"
  1305. msgstr " (alfabeticamente)"
  1306. #: dselect/pkgdisplay.cc:237
  1307. msgid " (by availability)"
  1308. msgstr " (per disponibilità)"
  1309. #: dselect/pkgdisplay.cc:240
  1310. msgid " (by status)"
  1311. msgstr " (per stato)"
  1312. #: dselect/pkgdisplay.cc:255
  1313. msgid " mark:+/=/- terse:v help:?"
  1314. msgstr " marc:+/=/- concisa:v aiuto:?"
  1315. #: dselect/pkgdisplay.cc:256
  1316. msgid " mark:+/=/- verbose:v help:?"
  1317. msgstr " marc:+/=/- estesa:v aiuto:?"
  1318. #: dselect/pkgdisplay.cc:258
  1319. msgid " terse:v help:?"
  1320. msgstr " concisa:v aiuto:?"
  1321. #: dselect/pkgdisplay.cc:259
  1322. msgid " verbose:v help:?"
  1323. msgstr " estesa:v aiuto:?"
  1324. #: dselect/pkginfo.cc:85
  1325. msgid ""
  1326. "The line you have highlighted represents many packages; if you ask to "
  1327. "install, remove, hold, etc. it you will affect all the packages which match "
  1328. "the criterion shown.\n"
  1329. "\n"
  1330. "If you move the highlight to a line for a particular package you will see "
  1331. "information about that package displayed here.\n"
  1332. "You can use `o' and `O' to change the sort order and give yourself the "
  1333. "opportunity to mark packages in different kinds of groups."
  1334. msgstr ""
  1335. "La riga che hai evidenziato rappresenta diversi pacchetti; se ne chiedi "
  1336. "l'installazione, la rimozione, il blocco e così via verranno coinvolti tutti "
  1337. "i pacchetti che corrispondono al criterio mostrato.\n"
  1338. "\n"
  1339. "Se sposti l'evidenziazione su un singolo pacchetto vedrai le informazioni "
  1340. "relative ad esso visualizzate qui.\n"
  1341. "Puoi usare `o' e `O' per cambiare l'ordine di visualizzazione ed avere "
  1342. "l'opportunità di contrassegnare i pacchetti in differenti tipi di "
  1343. "raggruppamento."
  1344. #: dselect/pkginfo.cc:98
  1345. #, fuzzy
  1346. msgid "Interrelationships"
  1347. msgstr "interrelazioni"
  1348. #: dselect/pkginfo.cc:117
  1349. #, fuzzy
  1350. msgid "No description available."
  1351. msgstr "nessuna descrizione disponibile."
  1352. #: dselect/pkginfo.cc:135
  1353. #, fuzzy
  1354. msgid "Installed control file information"
  1355. msgstr "info di controllo installate di "
  1356. #: dselect/pkginfo.cc:151
  1357. #, fuzzy
  1358. msgid "Available control file information"
  1359. msgstr "info di controllo della versione disponibile"
  1360. #: dselect/pkglist.cc:425
  1361. #, fuzzy
  1362. #| msgid "Installed packages"
  1363. msgid "there are no packages"
  1364. msgstr "Pacchetti installati"
  1365. #: dselect/pkglist.cc:519
  1366. msgid "invalid search option given"
  1367. msgstr "specificata opzione di ricerca errata"
  1368. #: dselect/pkglist.cc:534
  1369. msgid "error in regular expression"
  1370. msgstr "errore nell'espressione regolare"
  1371. #: dselect/pkgsublist.cc:111
  1372. msgid " does not appear to be available\n"
  1373. msgstr " non sembra essere disponibile\n"
  1374. #: dselect/pkgsublist.cc:131
  1375. msgid " or "
  1376. msgstr " o "
  1377. #: dselect/pkgtop.cc:58
  1378. msgid "All"
  1379. msgstr "Tutti"
  1380. #: dselect/pkgtop.cc:80
  1381. msgid "All packages"
  1382. msgstr "Tutti i pacchetti"
  1383. #: dselect/pkgtop.cc:84
  1384. #, c-format
  1385. msgid "%s packages without a section"
  1386. msgstr "Pacchetti %s senza una sezione"
  1387. #: dselect/pkgtop.cc:86
  1388. #, c-format
  1389. msgid "%s packages in section %s"
  1390. msgstr "Pacchetti %s nella sezione %s"
  1391. #: dselect/pkgtop.cc:92
  1392. #, c-format
  1393. msgid "%s %s packages"
  1394. msgstr "Pacchetti %2$s %1$s"
  1395. #: dselect/pkgtop.cc:96
  1396. #, c-format
  1397. msgid "%s %s packages without a section"
  1398. msgstr "Pacchetti %2$s %1$s senza una sezione"
  1399. #: dselect/pkgtop.cc:98
  1400. #, c-format
  1401. msgid "%s %s packages in section %s"
  1402. msgstr "Pacchetti %2$s %1$s nella sezione %3$s"
  1403. #: dselect/pkgtop.cc:119
  1404. #, c-format
  1405. msgid "%-*s %s%s%s; %s (was: %s). %s"
  1406. msgstr "%-*s %s%s%s; %s (era: %s). %s"
  1407. #: dselect/pkgtop.cc:265
  1408. msgid "Error"
  1409. msgstr "Errore"
  1410. #: dselect/pkgtop.cc:269
  1411. msgid "Installed?"
  1412. msgstr "Installato?"
  1413. #: dselect/pkgtop.cc:273
  1414. msgid "Old mark"
  1415. msgstr "Precedent."
  1416. #: dselect/pkgtop.cc:277
  1417. msgid "Marked for"
  1418. msgstr "Attualm."
  1419. #: dselect/pkgtop.cc:280
  1420. msgid "EIOM"
  1421. msgstr "EIOM"
  1422. #: dselect/pkgtop.cc:282
  1423. msgid "Section"
  1424. msgstr "Sezione"
  1425. #: dselect/pkgtop.cc:283
  1426. msgid "Priority"
  1427. msgstr "Priorità"
  1428. #: dselect/pkgtop.cc:284
  1429. msgid "Package"
  1430. msgstr "Pacchetto"
  1431. #: dselect/pkgtop.cc:288
  1432. msgid "Inst.ver"
  1433. msgstr "Ver.inst."
  1434. #: dselect/pkgtop.cc:291
  1435. msgid "Avail.ver"
  1436. msgstr "Ver.disp."
  1437. #~ msgid ""
  1438. #~ "Actions:\n"
  1439. #~ " access update select install config remove quit\n"
  1440. #~ "\n"
  1441. #~ msgstr ""
  1442. #~ "Azioni:\n"
  1443. #~ " access update select install config remove quit\n"
  1444. #~ "\n"
  1445. #~ msgid "unable to open new option file `%.250s'"
  1446. #~ msgstr "impossibile aprire il nuovo file di opzioni `%.250s'"
  1447. #~ msgid "unable to close new option file `%.250s'"
  1448. #~ msgstr "impossibile chiudere il nuovo file di opzioni `%.250s'"
  1449. #~ msgid "unable to install new option as `%.250s'"
  1450. #~ msgstr "impossibile installare la nuova opzione come `%.250s'"
  1451. #~ msgid "returned error exit status %d.\n"
  1452. #~ msgstr "ha restituito un codice di errore %d in uscita.\n"
  1453. #~ msgid "was interrupted.\n"
  1454. #~ msgstr "è stato interrotto.\n"
  1455. #~ msgid "was terminated by a signal: %s.\n"
  1456. #~ msgstr "è stato terminato da un segnale: %s.\n"
  1457. #~ msgid "(It left a coredump.)\n"
  1458. #~ msgstr "(Ha lasciato un coredump.)\n"
  1459. #~ msgid "failed with an unknown wait return code %d.\n"
  1460. #~ msgstr "wait fallita con un errore sconosciuto %d.\n"
  1461. #~ msgid "unable to run %.250s process `%.250s'"
  1462. #~ msgstr "impossibile eseguire %.250s in `%.250s'"
  1463. #~ msgid "failed config"
  1464. #~ msgstr "config. fallita"
  1465. #~ msgid "unable to wait for %.250s"
  1466. #~ msgstr "impossibile aspettare la fine dell'esecuzione di %.250s"
  1467. #~ msgid "got wrong child's status - asked for %ld, got %ld"
  1468. #~ msgstr ""
  1469. #~ "ottenuto un codice errato dal sottoprocesso - richiesto %ld, restituito "
  1470. #~ "%ld"
  1471. #~ msgid "Recommended"
  1472. #~ msgstr "raccomandati"
  1473. #~ msgid "Contrib"
  1474. #~ msgstr "contrib"
  1475. #~ msgid "Rec"
  1476. #~ msgstr "Rac"
  1477. #~ msgid "Ctb"
  1478. #~ msgstr "Ctb"
  1479. #~ msgid ""
  1480. #~ "baselist::startdisplay() done ...\n"
  1481. #~ "\n"
  1482. #~ " xmax=%d, ymax=%d;\n"
  1483. #~ "\n"
  1484. #~ " title_height=%d, colheads_height=%d, list_height=%d;\n"
  1485. #~ " thisstate_height=%d, info_height=%d, whatinfo_height=%d;\n"
  1486. #~ "\n"
  1487. #~ " colheads_row=%d, thisstate_row=%d, info_row=%d;\n"
  1488. #~ " whatinfo_row=%d, list_row=%d;\n"
  1489. #~ "\n"
  1490. #~ msgstr ""
  1491. #~ "baselist::startdisplay() done ...\n"
  1492. #~ "\n"
  1493. #~ " xmax=%d, ymax=%d;\n"
  1494. #~ "\n"
  1495. #~ " title_height=%d, colheads_height=%d, list_height=%d;\n"
  1496. #~ " thisstate_height=%d, info_height=%d, whatinfo_height=%d;\n"
  1497. #~ "\n"
  1498. #~ " colheads_row=%d, thisstate_row=%d, info_row=%d;\n"
  1499. #~ " whatinfo_row=%d, list_row=%d;\n"
  1500. #~ "\n"
  1501. #~ msgid "[none]"
  1502. #~ msgstr "[nessuna]"
  1503. #~ msgid "error un-catching signal %d: %s\n"
  1504. #~ msgstr "errore ripristinando il segnale n.%d: %s\n"
  1505. #~ msgid "unable to ignore signal %d before running %.250s"
  1506. #~ msgstr "impossibile ignorare il segnare n.%d prima di lanciare %.250s"
  1507. #~ msgid "(no clientdata)"
  1508. #~ msgstr "(no clientdata)"
  1509. #~ msgid "<null>"
  1510. #~ msgstr "<null>"
  1511. #~ msgid "interrelationships affecting "
  1512. #~ msgstr "interrelazioni relative a "
  1513. #~ msgid "description of "
  1514. #~ msgstr "descrizione di "
  1515. #~ msgid "description"
  1516. #~ msgstr "descrizione"
  1517. #~ msgid "currently installed control info"
  1518. #~ msgstr "info di controllo attualmente installate"
  1519. #~ msgid "available version of control info for "
  1520. #~ msgstr "info di controllo della versione disponibile di "