it.po 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140
  1. # The Midnight Commander italian translation
  2. # Copyright (C) 1998-2012 Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the Midnight Commander package.
  4. # Translators:
  5. # Giuliano Natali <diaolin@diaolin.com>, 1998.
  6. # Marco Ciampa <ciampix@libero.it>, 1999-2010,2012.
  7. # Slava Zanko <slavazanko@gmail.com>, 2011.
  8. msgid ""
  9. msgstr ""
  10. "Project-Id-Version: Midnight Commander\n"
  11. "Report-Msgid-Bugs-To: \n"
  12. "POT-Creation-Date: 2012-05-21 20:31+0200\n"
  13. "PO-Revision-Date: 2012-05-21 20:33+0200\n"
  14. "Last-Translator: Marco Ciampa <ciampix@libero.it>\n"
  15. "Language-Team: Italian (http://www.transifex.net/projects/p/mc/language/"
  16. "it/), tp@linux.it\n"
  17. "Language: it\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=UTF-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "Plural-Forms: nplurals=2; plural=(n != 1)\n"
  22. msgid "Warning: cannot load codepages list"
  23. msgstr "Attenzione: impossibile caricare l'elenco delle codepage"
  24. msgid "7-bit ASCII"
  25. msgstr "7-bit ASCII"
  26. #, c-format
  27. msgid "Cannot translate from %s to %s"
  28. msgstr "Impossibile tradurre da %s a %s"
  29. msgid "Event system already initialized"
  30. msgstr "Sistema di gestione eventi già inizializzato"
  31. msgid "Failed to initialize event system"
  32. msgstr "Fallita l'inizializzazione del sistema di gestione eventi"
  33. msgid "Event system not initialized"
  34. msgstr "Sistema di gestione eventi non inizializzato"
  35. msgid "Check input data! Some of parameters are NULL!"
  36. msgstr "Controllare i dati in ingresso! Alcuni parametri sono NULL!"
  37. #, c-format
  38. msgid "Unable to create group '%s' for events!"
  39. msgstr "Impossibile creare il gruppo \"%s\" per gli eventi!"
  40. #, c-format
  41. msgid "Unable to create event '%s'!"
  42. msgstr "Impossibile creare l'evento \"%s\"!"
  43. #, c-format
  44. msgid ""
  45. "File \"%s\" is already being edited.\n"
  46. "User: %s\n"
  47. "Process ID: %d"
  48. msgstr ""
  49. "Il file \"%s\" è già stato modificato\n"
  50. "Utente: %s\n"
  51. "ID Processo: %d"
  52. msgid "File locked"
  53. msgstr "File bloccato da lock"
  54. msgid "&Grab lock"
  55. msgstr "&Cattura lock"
  56. msgid "&Ignore lock"
  57. msgstr "&Ignora lock"
  58. #, c-format
  59. msgid "Cannot create %s directory"
  60. msgstr "Impossibile creare la directory %s"
  61. msgid "FATAL: not a directory:"
  62. msgstr "FATALE: non è una directory:"
  63. #, c-format
  64. msgid "An error occured while migrating user settings: %s"
  65. msgstr ""
  66. "Si è verificato un errore durante la migrazione delle impostazioni "
  67. "dell'utente: %s"
  68. #, c-format
  69. msgid ""
  70. "Your old settings were migrated from %s\n"
  71. "to Freedesktop recommended dirs.\n"
  72. "To get more info, please visit\n"
  73. "http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  74. msgstr ""
  75. "Le vecchie impostazioni sono state migrate da %s\n"
  76. "alle cartelle raccomandate da Freedesktop.\n"
  77. "Per avere ulteriori informazioni, consultare\n"
  78. "http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  79. #, c-format
  80. msgid ""
  81. "Your old settings were migrated from %s\n"
  82. "to %s\n"
  83. msgstr ""
  84. "Le vecchie impostazioni sono state migrate da %s\n"
  85. "a %s\n"
  86. msgid "Search string not found"
  87. msgstr " Stringa cercata non trovata "
  88. msgid "Not implemented yet"
  89. msgstr " Non ancora implementato "
  90. msgid "Num of replace tokens not equal to num of found tokens"
  91. msgstr "Numero di rimpiazzi diverso dalle voci trovate"
  92. #, c-format
  93. msgid "Invalid token number %d"
  94. msgstr " Numero token non valido %d "
  95. msgid "Regular expression error"
  96. msgstr "Errore espressione regolare"
  97. msgid "&Normal"
  98. msgstr "&Normale"
  99. msgid "Re&gular expression"
  100. msgstr "Espressione re&golare"
  101. msgid "He&xadecimal"
  102. msgstr "Esadecimale"
  103. msgid "Wil&dcard search"
  104. msgstr "Ricerca tipo &jolly"
  105. #, c-format
  106. msgid ""
  107. "Unable to load '%s' skin.\n"
  108. "Default skin has been loaded"
  109. msgstr ""
  110. "Impossibile caricare il tema \"%s\".\n"
  111. "È stato caricato il tema predefinito"
  112. #, c-format
  113. msgid ""
  114. "Unable to parse '%s' skin.\n"
  115. "Default skin has been loaded"
  116. msgstr ""
  117. "Impossibile analizzare il tema \"%s\".\n"
  118. "È stato caricato il tema predefinito"
  119. #, c-format
  120. msgid ""
  121. "Unable to use '%s' skin with 256 colors support\n"
  122. "on non-256 colors terminal.\n"
  123. "Default skin has been loaded"
  124. msgstr ""
  125. "Impossibile usare il tema \"%s\" con supporto a 256\n"
  126. "colori su terminale non a 256 colori.\n"
  127. "È stato caricato il tema predefinito"
  128. msgid "Function key 1"
  129. msgstr "Tasto funzione 1"
  130. msgid "Function key 2"
  131. msgstr "Tasto funzione 2"
  132. msgid "Function key 3"
  133. msgstr "Tasto funzione 3"
  134. msgid "Function key 4"
  135. msgstr "Tasto funzione 4"
  136. msgid "Function key 5"
  137. msgstr "Tasto funzione 5"
  138. msgid "Function key 6"
  139. msgstr "Tasto funzione 6"
  140. msgid "Function key 7"
  141. msgstr "Tasto funzione 7"
  142. msgid "Function key 8"
  143. msgstr "Tasto funzione 8"
  144. msgid "Function key 9"
  145. msgstr "Tasto funzione 9"
  146. msgid "Function key 10"
  147. msgstr "Tasto funzione 10"
  148. msgid "Function key 11"
  149. msgstr "Tasto funzione 11"
  150. msgid "Function key 12"
  151. msgstr "Tasto funzione 12"
  152. msgid "Function key 13"
  153. msgstr "Tasto funzione 13"
  154. msgid "Function key 14"
  155. msgstr "Tasto funzione 14"
  156. msgid "Function key 15"
  157. msgstr "Tasto funzione 15"
  158. msgid "Function key 16"
  159. msgstr "Tasto funzione 16"
  160. msgid "Function key 17"
  161. msgstr "Tasto funzione 17"
  162. msgid "Function key 18"
  163. msgstr "Tasto funzione 18"
  164. msgid "Function key 19"
  165. msgstr "Tasto funzione 19"
  166. msgid "Function key 20"
  167. msgstr "Tasto funzione 20"
  168. msgid "Backspace key"
  169. msgstr "Tasto Backspace "
  170. msgid "End key"
  171. msgstr "Tasto fine "
  172. msgid "Up arrow key"
  173. msgstr "Freccia su "
  174. msgid "Down arrow key"
  175. msgstr "Freccia giù "
  176. msgid "Left arrow key"
  177. msgstr "Freccia sinistra "
  178. msgid "Right arrow key"
  179. msgstr "Freccia destra "
  180. msgid "Home key"
  181. msgstr "Tasto inizio "
  182. msgid "Page Down key"
  183. msgstr "Tasto pagina giù "
  184. msgid "Page Up key"
  185. msgstr "Tasto pagina su "
  186. msgid "Insert key"
  187. msgstr "Tasto Ins "
  188. msgid "Delete key"
  189. msgstr "Tasto Canc "
  190. msgid "Completion/M-tab"
  191. msgstr "Completam./M-Tab "
  192. msgid "Back Tabulation S-tab"
  193. msgstr "Tabul. indietro S-tab"
  194. msgid "+ on keypad"
  195. msgstr "+ sul tastierino "
  196. msgid "- on keypad"
  197. msgstr "- sul tastierino "
  198. msgid "Slash on keypad"
  199. msgstr "/ sul tastierino "
  200. msgid "* on keypad"
  201. msgstr "* sul tastierino "
  202. msgid "Escape key"
  203. msgstr "Tasto escape "
  204. msgid "Left arrow keypad"
  205. msgstr "Freccia a sinistra sul tastierino"
  206. msgid "Right arrow keypad"
  207. msgstr "Freccia a destra sul tastierino"
  208. msgid "Up arrow keypad"
  209. msgstr "Freccia su sul tastierino"
  210. msgid "Down arrow keypad"
  211. msgstr "Freccia giù sul tastierino"
  212. msgid "Home on keypad"
  213. msgstr "Inizio sul tastierino"
  214. msgid "End on keypad"
  215. msgstr "Fine sul tastierino"
  216. msgid "Page Down keypad"
  217. msgstr "Pagina giù sul tastierino"
  218. msgid "Page Up keypad"
  219. msgstr "Pagina su sul tastierino"
  220. msgid "Insert on keypad"
  221. msgstr "Ins sul tastierino"
  222. msgid "Delete on keypad"
  223. msgstr "Canc sul tastierino"
  224. msgid "Enter on keypad"
  225. msgstr "Invio sul tastierino"
  226. msgid "Function key 21"
  227. msgstr "Tasto funzione 21"
  228. msgid "Function key 22"
  229. msgstr "Tasto funzione 22"
  230. msgid "Function key 23"
  231. msgstr "Tasto funzione 23"
  232. msgid "Function key 24"
  233. msgstr "Tasto funzione 24"
  234. msgid "A1 key"
  235. msgstr "Tasto A1"
  236. msgid "C1 key"
  237. msgstr "Tasto C1"
  238. msgid "Plus"
  239. msgstr "Più"
  240. msgid "Minus"
  241. msgstr "Meno"
  242. msgid "Asterisk"
  243. msgstr "Asterisco"
  244. msgid "Dot"
  245. msgstr "Punto"
  246. msgid "Less than"
  247. msgstr "Minore"
  248. msgid "Great than"
  249. msgstr "Maggiore"
  250. msgid "Equal"
  251. msgstr "Uguale"
  252. msgid "Comma"
  253. msgstr "Virgola"
  254. msgid "Apostrophe"
  255. msgstr "Apostrofo"
  256. msgid "Colon"
  257. msgstr "Duepunti"
  258. msgid "Exclamation mark"
  259. msgstr "Punto esclamativo"
  260. msgid "Question mark"
  261. msgstr "Punto interrogativo"
  262. msgid "Ampersand"
  263. msgstr "E commerciale"
  264. msgid "Dollar sign"
  265. msgstr "Dollaro"
  266. msgid "Quotation mark"
  267. msgstr "Virgolette"
  268. msgid "Percent sign"
  269. msgstr "Simbolo percento"
  270. msgid "Caret"
  271. msgstr "Circonflesso"
  272. msgid "Tilda"
  273. msgstr "Tilde"
  274. msgid "Prime"
  275. msgstr "Primo"
  276. msgid "Underline"
  277. msgstr "Sottolineato"
  278. msgid "Understrike"
  279. msgstr "Sottolineato"
  280. msgid "Pipe"
  281. msgstr "Barra verticale"
  282. msgid "Left parenthesis"
  283. msgstr "Parentesi sinistra"
  284. msgid "Right parenthesis"
  285. msgstr "Parentesi destra"
  286. msgid "Left bracket"
  287. msgstr "Parentesi quadra sinistra"
  288. msgid "Right bracket"
  289. msgstr "Parentesi quadra destra"
  290. msgid "Left brace"
  291. msgstr "Parentesi graffa sinistra"
  292. msgid "Right brace"
  293. msgstr "Parentesi graffa destra"
  294. msgid "Enter"
  295. msgstr "Invio"
  296. msgid "Tab key"
  297. msgstr "Tabulatore"
  298. msgid "Space key"
  299. msgstr "Barra spazio"
  300. msgid "Slash key"
  301. msgstr "Fratto"
  302. msgid "Backslash key"
  303. msgstr "Canc. a sinista"
  304. msgid "Number sign #"
  305. msgstr "Cancelletto"
  306. #. TRANSLATORS: Please translate as in "at sign" (@).
  307. msgid "At sign"
  308. msgstr "Chiocciola"
  309. msgid "Ctrl"
  310. msgstr "Ctrl"
  311. msgid "Alt"
  312. msgstr "Alt"
  313. msgid "Shift"
  314. msgstr "Maiusc"
  315. msgid "The TERM environment variable is unset!\n"
  316. msgstr "La variabile TERM non è definita!\n"
  317. #, c-format
  318. msgid ""
  319. "Screen size %dx%d is not supported.\n"
  320. "Check the TERM environment variable.\n"
  321. msgstr ""
  322. "Schermo di dimensione %dx%d non supportato.\n"
  323. "Controllare la variabile ambiente TERM.\n"
  324. msgid "Warning"
  325. msgstr "Attenzione"
  326. msgid "Pipe failed"
  327. msgstr "Pipe fallita"
  328. msgid "Dup failed"
  329. msgstr "Dup fallita"
  330. msgid "Error dup'ing old error pipe"
  331. msgstr "Errore facendo il dup della vecchia pipe errori"
  332. #, c-format
  333. msgid "Directory cache expired for %s"
  334. msgstr "Cache dir scaduta per %s"
  335. msgid "bytes transferred"
  336. msgstr "byte trasferiti"
  337. msgid "Starting linear transfer..."
  338. msgstr "Inizio trasferimento lineare..."
  339. msgid "Getting file"
  340. msgstr "Ottenuto file "
  341. msgid "Changes to file lost"
  342. msgstr "Cambiamenti al file persi"
  343. #, c-format
  344. msgid "%s is not a directory\n"
  345. msgstr "%s non è una directory\n"
  346. #, c-format
  347. msgid "Directory %s is not owned by you\n"
  348. msgstr "La directory %s non è di Vostra proprietà\n"
  349. #, c-format
  350. msgid "Cannot set correct permissions for directory %s\n"
  351. msgstr "Impossibile impostare correttamente i permessi per la directory %s\n"
  352. #, c-format
  353. msgid "Cannot create temporary directory %s: %s\n"
  354. msgstr "Non posso creare la directory temporanea %s: %s\n"
  355. #, c-format
  356. msgid "Temporary files will be created in %s\n"
  357. msgstr "I file temporanei verranno creati in %s\n"
  358. #, c-format
  359. msgid "Temporary files will not be created\n"
  360. msgstr "I file temporanei non verranno creati\n"
  361. #, c-format
  362. msgid "Press any key to continue..."
  363. msgstr "Premi un tasto per continuare..."
  364. msgid "Cannot parse:"
  365. msgstr "Non riesco ad analizzare:"
  366. msgid "More parsing errors will be ignored."
  367. msgstr "Più errori di analisi saranno ignorati."
  368. msgid "Internal error:"
  369. msgstr " Errore interno:"
  370. msgid "Password:"
  371. msgstr "Password:"
  372. msgid "Screens"
  373. msgstr "Schemi"
  374. msgid "History"
  375. msgstr "Cronologia"
  376. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  377. msgid "DialogTitle|History cleanup"
  378. msgstr "Cancellazione cronologia"
  379. msgid "Do you want clean this history?"
  380. msgstr "Cancellare questa cronologia?"
  381. msgid "&Yes"
  382. msgstr " &Si"
  383. msgid "&No"
  384. msgstr "&No"
  385. msgid "Background process:"
  386. msgstr "Processo in background:"
  387. msgid "&Cancel"
  388. msgstr "&Annulla"
  389. msgid "&OK"
  390. msgstr "&OK"
  391. msgid "Error"
  392. msgstr "Errore"
  393. msgid "Displays the current version"
  394. msgstr "Visualizza la versione corrente"
  395. msgid "Print data directory"
  396. msgstr "Stampa dati directory"
  397. msgid "Print extended info about used data directories"
  398. msgstr "Stampa le info estese sull'uso dati delle directory"
  399. msgid "Print configure options"
  400. msgstr "Stampa le opzioni di configurazione"
  401. msgid "Print last working directory to specified file"
  402. msgstr "Stampa l'ultima directory corrente nel file specificato"
  403. msgid "Enables subshell support (default)"
  404. msgstr "Abilita il supporto subshell (predefinito)"
  405. msgid "Disables subshell support"
  406. msgstr "Disabilita il supporto delle subshell"
  407. msgid "Log ftp dialog to specified file"
  408. msgstr "Annota i messaggi dell'ftp in un file specificato"
  409. msgid "Set debug level"
  410. msgstr "Imposta livello di debug"
  411. msgid "Launches the file viewer on a file"
  412. msgstr "Esegue il visualizzatore per un file"
  413. msgid "Edits one file"
  414. msgstr "Modifica un file"
  415. msgid "Forces xterm features"
  416. msgstr "Forza il comportamento xterm"
  417. msgid "Disable X11 support"
  418. msgstr "Disabilita il supporto X11"
  419. msgid "Tries to use an old highlight mouse tracking"
  420. msgstr "Prova ad usare la vecchia modalità di evidenziazione del mouse"
  421. msgid "Disable mouse support in text version"
  422. msgstr "Disabilita il supporto del mouse nella modalità testo"
  423. msgid "Tries to use termcap instead of terminfo"
  424. msgstr "Prova a usare termcap invece di terminfo"
  425. msgid "To run on slow terminals"
  426. msgstr "Per funzionare su terminali lenti"
  427. msgid "Use stickchars to draw"
  428. msgstr "Usa caratteri semigrafici"
  429. msgid "Resets soft keys on HP terminals"
  430. msgstr "Ripristina i tasti soft nei terminali HP"
  431. msgid "Load definitions of key bindings from specified file"
  432. msgstr "Carica le definizioni delle associazioni di tasti dal file specificato"
  433. msgid "Don't load definitions of key bindings from file, use defaults"
  434. msgstr ""
  435. "Impossibile caricare le assegnazioni dei tasti da file, usa le predefinite"
  436. msgid "Requests to run in black and white"
  437. msgstr "Richiede l'esecuzione in bianco e nero"
  438. msgid "Request to run in color mode"
  439. msgstr "Richiede l'esecuzione a colori"
  440. msgid "Specifies a color configuration"
  441. msgstr "Specifica la configurazione dei colori"
  442. msgid "Show mc with specified skin"
  443. msgstr "Mostra mc con il tema specificato"
  444. #. TRANSLATORS: don't translate keywords
  445. msgid ""
  446. "--colors KEYWORD={FORE},{BACK},{ATTR}:KEYWORD2=...\n"
  447. "\n"
  448. "{FORE}, {BACK} and {ATTR} can be omitted, and the default will be used\n"
  449. "\n"
  450. " Keywords:\n"
  451. " Global: errors, disabled, reverse, gauge, header\n"
  452. " input, inputmark, inputunchanged, commandlinemark\n"
  453. " bbarhotkey, bbarbutton, statusbar\n"
  454. " File display: normal, selected, marked, markselect\n"
  455. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  456. " errdhotfocus\n"
  457. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  458. " Popup menus: pmenunormal, pmenusel, pmenutitle\n"
  459. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  460. " editlinestate\n"
  461. " Viewer: viewbold, viewunderline, viewselected\n"
  462. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  463. msgstr ""
  464. "--colors PCHIAVE1={PRIMOP},{SFONDO},{ATTRIB}:PCHIAVE2=...\n"
  465. "\n"
  466. "{PRIMOP}, {SFONDO} e {ATTR} si possono omettere, nel caso usa il "
  467. "predefinito\n"
  468. "\n"
  469. " Parole chiave:\n"
  470. " Globali: errors, disabled, reverse, gauge, header\n"
  471. " input, inputmark, inputunchanged, commandlinemark\n"
  472. " bbarhotkey, bbarbutton, statusbar\n"
  473. " Fines. file: normal, selected, marked, markselect\n"
  474. " Fin. dialog.: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  475. " errdhotfocus\n"
  476. " Menu: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  477. " Menu scomp.: pmenunormal, pmenusel, pmenutitle\n"
  478. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  479. " editlinestate\n"
  480. " Visualiz.: viewbold, viewunderline, viewselected\n"
  481. " Aiuto: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  482. #. TRANSLATORS: don't translate color names and attributes
  483. msgid ""
  484. "Standard Colors:\n"
  485. " black, gray, red, brightred, green, brightgreen, brown,\n"
  486. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  487. " brightcyan, lightgray and white\n"
  488. "\n"
  489. "Extended colors, when 256 colors are available:\n"
  490. " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
  491. "\n"
  492. "Attributes:\n"
  493. " bold, underline, reverse, blink; append more with '+'\n"
  494. msgstr ""
  495. "Colori standard:\n"
  496. " black, gray, red, brightred, green, brightgreen, brown,\n"
  497. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  498. " brightcyan, lightgray e white\n"
  499. "\n"
  500. "Colori estesi, quando sono disponibili 256 colori:\n"
  501. " da color16 a color255, o da rgb000 a rgb555 e da gray0 a gray23\n"
  502. "\n"
  503. "Attributi:\n"
  504. " bold, underline, reverse, blink; aggiungerne altri con \"+\"\n"
  505. msgid "Color options"
  506. msgstr "Opzioni colore"
  507. msgid "+number"
  508. msgstr "+numero"
  509. msgid "[this_dir] [other_panel_dir]"
  510. msgstr "[questa_dir] [dir_altro_pannello]"
  511. msgid "Set initial line number for the internal editor"
  512. msgstr "Imposta numero di riga iniziale per l'editor interno"
  513. msgid ""
  514. "\n"
  515. "Please send any bug reports (including the output of `mc -V')\n"
  516. "as tickets at www.midnight-commander.org\n"
  517. msgstr ""
  518. "\n"
  519. "Spedire il rapporti bug (inclusivi del risultato di \"mc -V\")\n"
  520. "come ticket a www.midnight-commander.org\n"
  521. #, c-format
  522. msgid "GNU Midnight Commander %s\n"
  523. msgstr "Midnight Commander GNU %s\n"
  524. msgid "Main options"
  525. msgstr "Molte opzioni"
  526. msgid "Terminal options"
  527. msgstr "Opzioni terminale"
  528. msgid "Arguments parse error!"
  529. msgstr "Errore di analisi argomenti!"
  530. msgid "No arguments given to the viewer."
  531. msgstr "Nessun argomento fornito al visualizzatore"
  532. msgid "Two files are required to evoke the diffviewer."
  533. msgstr "Sono necessari due file nell'esecuzione del visualizzatore diff."
  534. msgid "Background process error"
  535. msgstr "Errore del processo in background"
  536. msgid "Unknown error in child"
  537. msgstr "Errore sconosciuto nel processo figlio "
  538. msgid "Child died unexpectedly"
  539. msgstr "Il processo figlio è uscito prematuramente"
  540. msgid "Background protocol error"
  541. msgstr "Errore del protocollo in background "
  542. msgid "Reading failed"
  543. msgstr "Lettura fallita"
  544. msgid ""
  545. "Background process sent us a request for more arguments\n"
  546. "than we can handle."
  547. msgstr ""
  548. "Il processo in background ha richiesto più argomenti di\n"
  549. "quelli gestibili."
  550. msgid "&Dismiss"
  551. msgstr "&Chiudi"
  552. msgid "&All charsets"
  553. msgstr "Tutti i c&aratteri"
  554. msgid "&Whole words"
  555. msgstr "&Parole intere"
  556. msgid "&Backwards"
  557. msgstr "&Indietro"
  558. msgid "Cas&e sensitive"
  559. msgstr "Distingui le maiuscul&e"
  560. msgid "Enter search string:"
  561. msgstr "Inserire la stringa di ricerca:"
  562. msgid "Search"
  563. msgstr "Cerca"
  564. msgid "Search is disabled"
  565. msgstr "Ricerca disabilitata"
  566. #, c-format
  567. msgid ""
  568. "Cannot create temporary diff file\n"
  569. "%s"
  570. msgstr ""
  571. "Impossibile creare file diff temporaneo\n"
  572. "%s"
  573. #, c-format
  574. msgid ""
  575. "Cannot create backup file\n"
  576. "%s%s\n"
  577. "%s"
  578. msgstr ""
  579. "Impossibile creare il file di backup\n"
  580. "%s%s\n"
  581. "%s"
  582. #, c-format
  583. msgid ""
  584. "Cannot create temporary merge file\n"
  585. "%s"
  586. msgstr ""
  587. "Impossibile creare il file fusione temporaneo\n"
  588. "%s"
  589. msgid "&Fastest (Assume large files)"
  590. msgstr "&Più veloce (assume file grandi)"
  591. msgid "&Minimal (Find a smaller set of change)"
  592. msgstr "&Minima (trova insiemi di cambiamenti più piccoli)"
  593. msgid "Strip &trailing carriage return"
  594. msgstr "Elimina il ri&torno a capo in coda"
  595. msgid "Ignore all &whitespace"
  596. msgstr "Ignora tutti gli spa&zi bianchi"
  597. msgid "Ignore &space change"
  598. msgstr "Ignora il cambiamento di &spazi"
  599. msgid "Ignore tab &expansion"
  600. msgstr "Ignora l'&espanzione di tab"
  601. msgid "&Ignore case"
  602. msgstr "&Ignora maiuscole"
  603. msgid "Diff extra options"
  604. msgstr "Opzioni diff extra"
  605. msgid "Diff algorithm"
  606. msgstr "Algoritmo diff"
  607. msgid "Diff Options"
  608. msgstr "Opzioni diff"
  609. msgid "Edit"
  610. msgstr "Modifica"
  611. msgid "Edit is disabled"
  612. msgstr "Modifica è disabilitato"
  613. msgid "Goto line (left)"
  614. msgstr "Vai alla riga (sinistro)"
  615. msgid "Goto line (right)"
  616. msgstr "Vai alla riga (destro)"
  617. msgid "Enter line:"
  618. msgstr "Inserire la riga:"
  619. msgid "ButtonBar|Help"
  620. msgstr "Aiuto"
  621. msgid "ButtonBar|Save"
  622. msgstr "Salva"
  623. msgid "ButtonBar|Edit"
  624. msgstr "Modif"
  625. msgid "ButtonBar|Merge"
  626. msgstr "Fondi"
  627. msgid "ButtonBar|Search"
  628. msgstr "Cerca"
  629. msgid "ButtonBar|Options"
  630. msgstr "Opzioni"
  631. msgid "ButtonBar|Quit"
  632. msgstr "Esci"
  633. msgid "Quit"
  634. msgstr "Esci"
  635. msgid "File was modified. Save with exit?"
  636. msgstr "Il file è stato modificato. Lo salvo uscendo?"
  637. msgid ""
  638. "Midnight Commander is being shut down.\n"
  639. "Save modified file?"
  640. msgstr ""
  641. "Midnight Commander si sta chiudendo.\n"
  642. "Salvare il file modificato?"
  643. msgid "Diff:"
  644. msgstr "Diff:"
  645. #, c-format
  646. msgid "\"%s\" is a directory"
  647. msgstr "%s è una directory"
  648. #, c-format
  649. msgid ""
  650. "Cannot stat \"%s\"\n"
  651. "%s"
  652. msgstr ""
  653. "Impossibile ottenere info dal file \"%s\"\n"
  654. "%s"
  655. msgid "Diff viewer: invalid mode"
  656. msgstr "Visualizzatore diff: modalità non valida"
  657. msgid "Two files are needed to compare"
  658. msgstr "Per il confronto servono due file"
  659. msgid "Choose syntax highlighting"
  660. msgstr "Scegli la sintassi evidenziata"
  661. msgid "< Auto >"
  662. msgstr "< Auto >"
  663. msgid "< Reload Current Syntax >"
  664. msgstr "< Ricarica la sintassi corrente >"
  665. msgid "About"
  666. msgstr "Informazioni"
  667. msgid ""
  668. "Copyright (C) 1996-2010 the Free Software Foundation\n"
  669. "\n"
  670. " A user friendly text editor\n"
  671. " written for the Midnight Commander"
  672. msgstr ""
  673. "Copyright (C) 1996-2012 the Free Software Foundation\n"
  674. "\n"
  675. " Un semplice editor di testo\n"
  676. " scritto per il Midnight Commander"
  677. #, c-format
  678. msgid "Cannot open %s for reading"
  679. msgstr "Impossibile aprire %s in lettura"
  680. #, c-format
  681. msgid "Error reading %s"
  682. msgstr "Errore leggendo %s"
  683. #, c-format
  684. msgid "Cannot get size/permissions for %s"
  685. msgstr "Impossibile ottenere dimensioni/permessi per %s"
  686. #, c-format
  687. msgid "\"%s\" is not a regular file"
  688. msgstr "\"%s\" non è un file normale"
  689. #, c-format
  690. msgid "File \"%s\" is too large"
  691. msgstr "Il file \"%s\" è troppo grande"
  692. #, c-format
  693. msgid "Error reading from pipe: %s"
  694. msgstr "Errore leggendo dalla pipe: %s"
  695. #, c-format
  696. msgid "Cannot open pipe for reading: %s"
  697. msgstr "Impossibile aprire la pipe in lettura: %s"
  698. msgid "File has hard-links. Detach before saving?"
  699. msgstr "Il file ha collegamenti (link) hard. Scollegarli prima di salvare?"
  700. msgid "The file has been modified in the meantime. Save anyway?"
  701. msgstr "Il file è stato modificato nel frattempo. Salvare comunque?"
  702. #, c-format
  703. msgid "Error writing to pipe: %s"
  704. msgstr "Errore scrivendo sulla pipe: %s"
  705. #, c-format
  706. msgid "Cannot open pipe for writing: %s"
  707. msgstr "Impossibile aprire la pipe in scrittura: %s"
  708. #, c-format
  709. msgid "Cannot open file for writing: %s"
  710. msgstr "Impossibile aprire il file in scrittura: %s"
  711. msgid "The file you are saving is not finished with a newline"
  712. msgstr "Il file che si sta salvando non termina con un ritorno a capo"
  713. msgid "C&ontinue"
  714. msgstr "C&ontinua"
  715. msgid "&Do not change"
  716. msgstr "&Non cambiare"
  717. msgid "&Unix format (LF)"
  718. msgstr "Fromato &Unix (LF)"
  719. msgid "&Windows/DOS format (CR LF)"
  720. msgstr "Formato DOS/&Windows (CR LF)"
  721. msgid "&Macintosh format (CR)"
  722. msgstr "Formato &Macintosh (CR)"
  723. msgid "Change line breaks to:"
  724. msgstr "Cambia ritorno a capo a:"
  725. msgid "Enter file name:"
  726. msgstr "Inserire nome file:"
  727. msgid "Save As"
  728. msgstr "Salva come"
  729. msgid "Syntax file edit"
  730. msgstr "Modifica il file sintassi"
  731. msgid "Which syntax file you want to edit?"
  732. msgstr "Quale file della sintassi vuoi modificare?"
  733. msgid "&User"
  734. msgstr "&Utente"
  735. msgid "&System Wide"
  736. msgstr "di &Sistema"
  737. msgid "Menu edit"
  738. msgstr "Modifica menu"
  739. msgid "Which menu file do you want to edit?"
  740. msgstr "Quale file menu vuoi modificare?"
  741. msgid "&Local"
  742. msgstr "&Locale"
  743. msgid "Block is large, you may not be able to undo this action"
  744. msgstr "Il blocco è grande, potresti non riuscire ad annullare l'azione."
  745. msgid "&Quick save"
  746. msgstr "Salva &veloce"
  747. msgid "&Safe save"
  748. msgstr "&Salva sicuro"
  749. msgid "&Do backups with following extension:"
  750. msgstr "Esegue i bac&kup con le seguenti estensioni:"
  751. msgid "Check &POSIX new line"
  752. msgstr "Controllo nuova linea &POSIX"
  753. msgid "Edit Save Mode"
  754. msgstr "Modifica modalità salvataggio"
  755. msgid "Save as"
  756. msgstr "Sal&va come"
  757. msgid "Cannot save: destination is not a regular file"
  758. msgstr "Impossibile salvare: la destinazione non è un normale file"
  759. msgid "A file already exists with this name"
  760. msgstr "Un file con lo stesso nome esiste già"
  761. msgid "&Overwrite"
  762. msgstr "S&ovrascrivi"
  763. msgid "Cannot save file"
  764. msgstr "Impossibile salvare il file"
  765. msgid "Delete macro"
  766. msgstr "Elimina macro"
  767. msgid "Press macro hotkey:"
  768. msgstr "Premere tasto macro:"
  769. msgid "Macro not deleted"
  770. msgstr "Macro non cancellata"
  771. msgid "Save macro"
  772. msgstr "Salva macro"
  773. msgid "Press the macro's new hotkey:"
  774. msgstr "Premi nuovo tasto veloce macro:"
  775. msgid "Repeat last commands"
  776. msgstr "Ripeti l'ultimo comando"
  777. msgid "Repeat times:"
  778. msgstr "Numero ripetizioni:"
  779. #, c-format
  780. msgid "Confirm save file: \"%s\""
  781. msgstr "Conferma salvataggio file: \"%s\""
  782. msgid "Save file"
  783. msgstr "Salva file"
  784. msgid "&Save"
  785. msgstr "&Salva"
  786. msgid ""
  787. "Current text was modified without a file save.\n"
  788. "Continue discards these changes"
  789. msgstr ""
  790. "Il testo corrente è stato modificato senza salvare.\n"
  791. "Continuando si perdono tutte le modifiche."
  792. msgid "Load"
  793. msgstr "Carica"
  794. msgid "Replace"
  795. msgstr "Sostituisci"
  796. #, c-format
  797. msgid "%ld replacements made"
  798. msgstr "Eseguite %ld sostituzioni"
  799. msgid "&Cancel quit"
  800. msgstr "Annulla l'us&cita"
  801. msgid "This function is not implemented"
  802. msgstr "Questa funzione non è stata implementata"
  803. msgid "Copy to clipboard"
  804. msgstr "Copia negli appunti"
  805. msgid "Unable to save to file"
  806. msgstr "Impossibile salvare su file"
  807. msgid "Cut to clipboard"
  808. msgstr "Taglia negli appunti"
  809. msgid "Goto line"
  810. msgstr "Vai alla riga"
  811. msgid "Save block"
  812. msgstr "Salva il blocco"
  813. msgid "Insert file"
  814. msgstr "Inserisci file"
  815. msgid "Cannot insert file"
  816. msgstr "Impossibile inserire il file"
  817. msgid "Sort block"
  818. msgstr "Ordina il blocco"
  819. msgid "You must first highlight a block of text"
  820. msgstr "Selezionare prima una parte di testo"
  821. msgid "Run sort"
  822. msgstr "Esegui ordinamento"
  823. msgid "Enter sort options (see manpage) separated by whitespace:"
  824. msgstr "Inserisci opzioni di ordinamento (vedi man sort) separate da spazi:"
  825. msgid "Sort"
  826. msgstr "Ordina"
  827. msgid "Cannot execute sort command"
  828. msgstr "Impossibile eseguire il comando sort"
  829. #, c-format
  830. msgid "Sort returned non-zero: %s"
  831. msgstr "Il comando sort è uscito con valore non-zero: %s"
  832. msgid "Paste output of external command"
  833. msgstr "Incolla l'uscita del comando esterno"
  834. msgid "Enter shell command(s):"
  835. msgstr "Inserire comandi shell:"
  836. msgid "External command"
  837. msgstr "Comando esterno"
  838. msgid "Cannot execute command"
  839. msgstr "Impossibile eseguire il comando"
  840. msgid "Copies to"
  841. msgstr "Copie a"
  842. msgid "Subject"
  843. msgstr "Soggetto"
  844. msgid "To"
  845. msgstr "A"
  846. msgid "mail -s <subject> -c <cc> <to>"
  847. msgstr "mail -s <soggetto> -c <cc> <a>"
  848. msgid "Mail"
  849. msgstr "Posta"
  850. msgid "Insert literal"
  851. msgstr "Inserisci letteralmente"
  852. msgid "Press any key:"
  853. msgstr "Premere un tasto:"
  854. msgid ""
  855. "Current text was modified without a file save\n"
  856. "Continue discards these changes"
  857. msgstr ""
  858. "Il testo corrente è stato modificato senza salvare\n"
  859. "Continuando si perdono tutte le modifiche."
  860. msgid "In se&lection"
  861. msgstr "In se&lezione"
  862. msgid "Enter replacement string:"
  863. msgstr "Inserire stringa di sostituzione:"
  864. msgid "&Find all"
  865. msgstr "Tro&va tutti"
  866. msgid "Cancel"
  867. msgstr "Annulla"
  868. msgid ""
  869. "Current text was modified without a file save.\n"
  870. "Continue discards these changes."
  871. msgstr ""
  872. "Il testo corrente è stato modificato senza salvare.\n"
  873. "Continuando si perdono tutte le modifiche."
  874. msgid "&Skip"
  875. msgstr "&Salta"
  876. msgid "A&ll"
  877. msgstr "&Tutti"
  878. msgid "&Replace"
  879. msgstr "&Sostituisci"
  880. msgid "Replace with:"
  881. msgstr "Sostituisci con:"
  882. msgid "Confirm replace"
  883. msgstr "Conferma sostituzione"
  884. msgid "&Open file..."
  885. msgstr "&Apri file..."
  886. msgid "&New"
  887. msgstr "&Nuovo"
  888. msgid "Save &as..."
  889. msgstr "Sal&va come..."
  890. msgid "&Insert file..."
  891. msgstr "&Inserisci file..."
  892. msgid "Cop&y to file..."
  893. msgstr "&Copia su file..."
  894. msgid "&User menu..."
  895. msgstr "&Menu utente..."
  896. msgid "A&bout..."
  897. msgstr "Informa&zioni..."
  898. msgid "&Quit"
  899. msgstr "&Uscita"
  900. msgid "&Undo"
  901. msgstr "Ann&ulla"
  902. msgid "&Redo"
  903. msgstr "&Rifà"
  904. msgid "&Toggle ins/overw"
  905. msgstr "Inserisci/so&vrascrivi"
  906. msgid "To&ggle mark"
  907. msgstr "Commu&ta la selezione"
  908. msgid "&Mark columns"
  909. msgstr "Seleziona le co&lonne"
  910. msgid "Mark &all"
  911. msgstr "Selezion&a tutto"
  912. msgid "Unmar&k"
  913. msgstr "&Deseleziona"
  914. msgid "Cop&y"
  915. msgstr "&Copia"
  916. msgid "Mo&ve"
  917. msgstr "&Sposta"
  918. msgid "&Delete"
  919. msgstr "&Elimina"
  920. msgid "Co&py to clipfile"
  921. msgstr "Co&pia su file appunti"
  922. msgid "&Cut to clipfile"
  923. msgstr "Ta&glia su file appunti"
  924. msgid "Pa&ste from clipfile"
  925. msgstr "I&ncolla da file appunti"
  926. msgid "&Beginning"
  927. msgstr "&Inizio"
  928. msgid "&End"
  929. msgstr "&Fine"
  930. msgid "&Search..."
  931. msgstr "&Cerca..."
  932. msgid "Search &again"
  933. msgstr "Ripeti cerc&a"
  934. msgid "&Replace..."
  935. msgstr "&Sostituisci..."
  936. msgid "&Toggle bookmark"
  937. msgstr "&Metti/togli segnalibro"
  938. msgid "&Next bookmark"
  939. msgstr "Segnalibro &successivo"
  940. msgid "&Prev bookmark"
  941. msgstr "Segnalibro &precedente"
  942. msgid "&Flush bookmarks"
  943. msgstr "Abband&ona segnalibri"
  944. msgid "&Go to line..."
  945. msgstr "Vai alla ri&ga..."
  946. msgid "&Toggle line state"
  947. msgstr "Commuta la riga di s&tato"
  948. msgid "Go to matching &bracket"
  949. msgstr "Vai alla parentesi &relativa"
  950. msgid "Toggle s&yntax highlighting"
  951. msgstr "Commuta l'evidenziazione della sintassi"
  952. msgid "&Find declaration"
  953. msgstr "Trova la dichiara&zione"
  954. msgid "Back from &declaration"
  955. msgstr "Torna dalla &dichiarazione"
  956. msgid "For&ward to declaration"
  957. msgstr "A&vanti alla dichiarazione"
  958. msgid "Encod&ing..."
  959. msgstr "Cod&ifica..."
  960. msgid "&Refresh screen"
  961. msgstr "Aggiorna lo sc&hermo"
  962. msgid "&Start/Stop record macro"
  963. msgstr "Avvio/&stop registrazione macro"
  964. msgid "Delete macr&o..."
  965. msgstr "Elimina macr&o..."
  966. msgid "Record/Repeat &actions"
  967. msgstr "Registra/ripeti le &azioni"
  968. msgid "'ispell' s&pell check"
  969. msgstr "Controllo ortogra&fia"
  970. msgid "&Mail..."
  971. msgstr "&Posta..."
  972. msgid "Insert &literal..."
  973. msgstr "Inserisci &letteralmente"
  974. msgid "Insert &date/time"
  975. msgstr "Inserisci &data/ora"
  976. msgid "&Format paragraph"
  977. msgstr "&Formatta paragrafo"
  978. msgid "&Sort..."
  979. msgstr "&Ordina..."
  980. msgid "&Paste output of..."
  981. msgstr "&Incolla l'uscita di..."
  982. msgid "&External formatter"
  983. msgstr "Formattatore &esterno"
  984. msgid "&General..."
  985. msgstr "&Generale... "
  986. msgid "Save &mode..."
  987. msgstr "&Modalità salvataggio..."
  988. msgid "Learn &keys..."
  989. msgstr "&Impara tasti..."
  990. msgid "Syntax &highlighting..."
  991. msgstr "Sintassi &evidenziata..."
  992. msgid "S&yntax file"
  993. msgstr "File s&intassi"
  994. msgid "&Menu file"
  995. msgstr "File &menu"
  996. msgid "&Save setup"
  997. msgstr "&Salva configurazione"
  998. msgid "&File"
  999. msgstr "&File"
  1000. msgid "&Edit"
  1001. msgstr "&Modifica"
  1002. msgid "&Search"
  1003. msgstr "Ce&rca"
  1004. msgid "&Command"
  1005. msgstr "&Comandi"
  1006. msgid "For&mat"
  1007. msgstr "For&mato"
  1008. msgid "&Options"
  1009. msgstr "&Opzioni"
  1010. msgid "None"
  1011. msgstr "Niente"
  1012. msgid "Dynamic paragraphing"
  1013. msgstr "Paragrafi dinamici"
  1014. msgid "Type writer wrap"
  1015. msgstr "A capo automatico"
  1016. msgid "Word wrap line length:"
  1017. msgstr "Auto a capo colonna: "
  1018. msgid "&Group undo"
  1019. msgstr "Annullamento di &gruppo"
  1020. msgid "Cursor beyond end of line"
  1021. msgstr "Cursore oltre la fine riga"
  1022. msgid "Pers&istent selection"
  1023. msgstr "Selezione pers&istente"
  1024. msgid "Synta&x highlighting"
  1025. msgstr "Sintassi &evidenziata"
  1026. msgid "Visible tabs"
  1027. msgstr "Tab visibili"
  1028. msgid "Visible trailing spaces"
  1029. msgstr "Spazi finali visibili"
  1030. msgid "Save file &position"
  1031. msgstr "Salva &posizione file"
  1032. msgid "Confir&m before saving"
  1033. msgstr "Confer&ma prima di salvare"
  1034. msgid "&Return does autoindent"
  1035. msgstr "Invio a&utoindenta"
  1036. msgid "Tab spacing:"
  1037. msgstr "Spaziatura tab: "
  1038. msgid "Fill tabs with &spaces"
  1039. msgstr "&Riempie i tabulatori di spazi"
  1040. msgid "&Backspace through tabs"
  1041. msgstr "&Backspace attraverso i tab"
  1042. msgid "&Fake half tabs"
  1043. msgstr "&Imbroglia i mezzi tab"
  1044. msgid "Wrap mode"
  1045. msgstr "Modalità a capo"
  1046. msgid "Editor options"
  1047. msgstr "Opzioni editor"
  1048. msgid "Edit: "
  1049. msgstr "Modifica:"
  1050. msgid "ButtonBar|Mark"
  1051. msgstr "Marca"
  1052. msgid "ButtonBar|Replac"
  1053. msgstr "Rimpz"
  1054. msgid "ButtonBar|Copy"
  1055. msgstr "Copia"
  1056. msgid "ButtonBar|Move"
  1057. msgstr "Sposta"
  1058. msgid "ButtonBar|Delete"
  1059. msgstr "Elimin"
  1060. msgid "ButtonBar|PullDn"
  1061. msgstr "AprMen"
  1062. msgid "Load syntax file"
  1063. msgstr "Carica file sintassi"
  1064. #, c-format
  1065. msgid ""
  1066. "Cannot open file %s\n"
  1067. "%s"
  1068. msgstr ""
  1069. "Impossibile aprire il file %s\n"
  1070. "%s"
  1071. #, c-format
  1072. msgid "Error in file %s on line %d"
  1073. msgstr "Errore nel file %s alla riga %d"
  1074. msgid ""
  1075. "The Commander can't change to the directory that\n"
  1076. "the subshell claims you are in. Perhaps you have\n"
  1077. "deleted your working directory, or given yourself\n"
  1078. "extra access permissions with the \"su\" command?"
  1079. msgstr ""
  1080. "Midnight Commander non può entrare nella directory dalla\n"
  1081. "quale la subshell dichiara di operare. Forse è stata\n"
  1082. "eliminata la directory in questione o vi si è entrati \n"
  1083. "usando il comando \"su\"?"
  1084. msgid "The shell is already running a command"
  1085. msgstr "La shell sta già eseguendo un comando"
  1086. #, c-format
  1087. msgid "Type `exit' to return to the Midnight Commander"
  1088. msgstr "Premi `exit' per tornare a Midnight Commander"
  1089. #, c-format
  1090. msgid "Cannot fetch a local copy of %s"
  1091. msgstr "Impossibile ricevere una copia locale di %s"
  1092. msgid "&Set"
  1093. msgstr "&Imposta"
  1094. msgid "S&kip"
  1095. msgstr "&Salta"
  1096. msgid "Set &all"
  1097. msgstr "Im. &tut."
  1098. msgid "owner"
  1099. msgstr "propr."
  1100. msgid "group"
  1101. msgstr "gruppo"
  1102. msgid "other"
  1103. msgstr "altri"
  1104. msgid "On"
  1105. msgstr "Su"
  1106. msgid "Flag"
  1107. msgstr "Flag"
  1108. msgid "Mode"
  1109. msgstr "Modo"
  1110. #, c-format
  1111. msgid "%6d of %d"
  1112. msgstr "%6d di %d"
  1113. msgid "Chown advanced command"
  1114. msgstr "Comando chown avanzato"
  1115. #, c-format
  1116. msgid ""
  1117. "Cannot chmod \"%s\"\n"
  1118. "%s"
  1119. msgstr ""
  1120. "Impossibile eseguire chmod su \"%s\"\n"
  1121. "%s"
  1122. #, c-format
  1123. msgid ""
  1124. "Cannot chown \"%s\"\n"
  1125. "%s"
  1126. msgstr ""
  1127. "Impossibile eseguire chown su \"%s\"\n"
  1128. "%s"
  1129. msgid "&Stop"
  1130. msgstr "&Pausa"
  1131. msgid "&Resume"
  1132. msgstr "&Continua"
  1133. msgid "&Kill"
  1134. msgstr "&Ferma"
  1135. msgid "&Full file list"
  1136. msgstr "Lista &completa"
  1137. msgid "&Brief file list"
  1138. msgstr "Lista &breve"
  1139. msgid "&Long file list"
  1140. msgstr "Lista &lunga"
  1141. msgid "&User defined:"
  1142. msgstr "&Definita dall'utente:"
  1143. msgid "Listing mode"
  1144. msgstr "Modalità lista"
  1145. msgid "User &mini status"
  1146. msgstr "&Mini stato utente"
  1147. msgid "Other 8 bit"
  1148. msgstr "Altre a 8 bit"
  1149. msgid "Display bits"
  1150. msgstr "Mostra i bit"
  1151. msgid "Input / display codepage:"
  1152. msgstr "Ingresso / mostra codepage:"
  1153. msgid "F&ull 8 bits input"
  1154. msgstr "&Ingresso a 8 bit completo"
  1155. msgid "&Select"
  1156. msgstr "&Seleziona"
  1157. msgid "Running"
  1158. msgstr "Attivo "
  1159. msgid "Stopped"
  1160. msgstr "Sospeso "
  1161. msgid "&Reverse"
  1162. msgstr "Inve&rso"
  1163. msgid "Case sensi&tive"
  1164. msgstr "Dis&tingui le maiuscole"
  1165. msgid "Executable &first"
  1166. msgstr "Eseguibili &prima"
  1167. msgid "Sort order"
  1168. msgstr "Modalità di ordinamento"
  1169. msgid "Confirmation"
  1170. msgstr "Conferma"
  1171. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix
  1172. #. 2
  1173. msgid "Confirmation|&History cleanup"
  1174. msgstr "Cancellazione &cronologia"
  1175. msgid "Confirmation|Di&rectory hotlist delete"
  1176. msgstr "Confirmation|Elimina Di&r di uso frequente"
  1177. msgid "Confirmation|E&xit"
  1178. msgstr "E&sci"
  1179. msgid "Confirmation|&Execute"
  1180. msgstr "&Esegui"
  1181. msgid "Confirmation|O&verwrite"
  1182. msgstr "So&vrascrivi"
  1183. msgid "Confirmation|&Delete"
  1184. msgstr "E&limina"
  1185. msgid "UTF-8 output"
  1186. msgstr "Uscita UTF-8"
  1187. msgid "Full 8 bits output"
  1188. msgstr "Uscita a 8 bit completa"
  1189. msgid "ISO 8859-1"
  1190. msgstr "ISO 8859-1"
  1191. msgid "7 bits"
  1192. msgstr "7 bit"
  1193. msgid "Directory tree"
  1194. msgstr "Albero directory"
  1195. msgid "Use passive mode over pro&xy"
  1196. msgstr "Usa modalità passiva su pro&xy"
  1197. msgid "Use &passive mode"
  1198. msgstr "Usa modalità &passiva"
  1199. msgid "&Use ~/.netrc"
  1200. msgstr "&Usa ~/.netrc"
  1201. msgid "&Always use ftp proxy"
  1202. msgstr "Usa &sempre ftp proxy"
  1203. msgid "sec"
  1204. msgstr "sec"
  1205. msgid "ftpfs directory cache timeout:"
  1206. msgstr "Scadenza cache directory ftpfs:"
  1207. msgid "ftp anonymous password:"
  1208. msgstr "Password ftp anonimo:"
  1209. msgid "Timeout for freeing VFSs:"
  1210. msgstr "Cadenza svuotamento dei VFS:"
  1211. msgid "Virtual File System Setting"
  1212. msgstr "Impostazioni File System Virtuale"
  1213. msgid "cd"
  1214. msgstr "cd"
  1215. msgid "Quick cd"
  1216. msgstr "Cambia dir rapido "
  1217. msgid "Symbolic link filename:"
  1218. msgstr "Nome del collegamento simbolico:"
  1219. msgid "Existing filename (filename symlink will point to):"
  1220. msgstr "Nome file esistente (sul quale punta il coll. simbolico):"
  1221. msgid "Symbolic link"
  1222. msgstr "Collegamento simbolico"
  1223. msgid "Background Jobs"
  1224. msgstr "Processi in background"
  1225. msgid "Domain:"
  1226. msgstr "Dominio:"
  1227. msgid "Username:"
  1228. msgstr "Nome utente:"
  1229. #, c-format
  1230. msgid "Password for \\\\%s\\%s"
  1231. msgstr "Password per \\\\%s\\%s"
  1232. msgid "execute/search by others"
  1233. msgstr "esecuzione (altri)"
  1234. msgid "write by others"
  1235. msgstr "scrittura (altri)"
  1236. msgid "read by others"
  1237. msgstr "lettura (altri)"
  1238. msgid "execute/search by group"
  1239. msgstr "esecuzione (gruppo)"
  1240. msgid "write by group"
  1241. msgstr "scrittura (gruppo)"
  1242. msgid "read by group"
  1243. msgstr "lettura (gruppo)"
  1244. msgid "execute/search by owner"
  1245. msgstr "esecuzione (propriet.)"
  1246. msgid "write by owner"
  1247. msgstr "scrittura (propriet.)"
  1248. msgid "read by owner"
  1249. msgstr "lettura (propriet.)"
  1250. msgid "sticky bit"
  1251. msgstr "bit sticky"
  1252. msgid "set group ID on execution"
  1253. msgstr "imposta GID"
  1254. msgid "set user ID on execution"
  1255. msgstr "imposta UID"
  1256. msgid "Name:"
  1257. msgstr "Nome:"
  1258. msgid "Permissions (octal):"
  1259. msgstr "Permessi (ottale):"
  1260. msgid "Owner name:"
  1261. msgstr "Nome propr.:"
  1262. msgid "Group name:"
  1263. msgstr "Nome gruppo:"
  1264. msgid "C&lear marked"
  1265. msgstr "&Canc. marc."
  1266. msgid "S&et marked"
  1267. msgstr "&Imp. marc."
  1268. msgid "&Marked all"
  1269. msgstr "M&od. tut."
  1270. msgid "Chmod command"
  1271. msgstr "Permessi"
  1272. msgid "File"
  1273. msgstr "File"
  1274. msgid "Permission"
  1275. msgstr "Permessi"
  1276. msgid "Set &users"
  1277. msgstr "Imposta &utenti"
  1278. msgid "Set &groups"
  1279. msgstr "Imposta &gruppi"
  1280. msgid "Name"
  1281. msgstr "Nome"
  1282. msgid "Owner name"
  1283. msgstr "Nome proprietario"
  1284. msgid "Group name"
  1285. msgstr "Nome gruppo"
  1286. msgid "Size"
  1287. msgstr "Dimensione"
  1288. msgid "Chown command"
  1289. msgstr "Proprietario"
  1290. msgid "<Unknown user>"
  1291. msgstr "<Utente ignoto>"
  1292. msgid "<Unknown group>"
  1293. msgstr "<Gruppo ignoto>"
  1294. msgid "User name"
  1295. msgstr "Nome utente"
  1296. msgid "Enter machine name (F1 for details):"
  1297. msgstr "Inserire il nome macchina (F1 per i dettagli):"
  1298. msgid "Files tagged, want to cd?"
  1299. msgstr " File selezionati, cambio directory?"
  1300. msgid "Cannot change directory"
  1301. msgstr "Non posso cambiare directory"
  1302. msgid "Filter"
  1303. msgstr "Filtro"
  1304. msgid "Set expression for filtering filenames"
  1305. msgstr "Imposta l'espressione per filtrare i nomi dei file"
  1306. msgid "&Using shell patterns"
  1307. msgstr "&Usa i modelli della shell"
  1308. msgid "&Case sensitive"
  1309. msgstr "Distingui le maius&cole"
  1310. msgid "&Files only"
  1311. msgstr "Solo &file"
  1312. #, c-format
  1313. msgid "Link %s to:"
  1314. msgstr "Collega %s a:"
  1315. msgid "Link"
  1316. msgstr "Collegamento"
  1317. #, c-format
  1318. msgid "link: %s"
  1319. msgstr "collegamento: %s"
  1320. #, c-format
  1321. msgid "symlink: %s"
  1322. msgstr "colleg. simb.: %s"
  1323. #, c-format
  1324. msgid "Cannot chdir to \"%s\""
  1325. msgstr "Impossibile entrare in \"%s\""
  1326. msgid "View file"
  1327. msgstr "Mostra file"
  1328. msgid "Filename:"
  1329. msgstr "Nomefile:"
  1330. msgid "Filtered view"
  1331. msgstr "Vista filtrata"
  1332. msgid "Filter command and arguments:"
  1333. msgstr "Comando e argomenti del filtro:"
  1334. msgid "Create a new Directory"
  1335. msgstr "Crea una nuova directory"
  1336. msgid "Enter directory name:"
  1337. msgstr "Inserire nome directory:"
  1338. msgid "Select"
  1339. msgstr "Seleziona"
  1340. msgid "Unselect"
  1341. msgstr "Deseleziona"
  1342. msgid "Extension file edit"
  1343. msgstr "Modifica file delle estensioni"
  1344. msgid "Which extension file you want to edit?"
  1345. msgstr "Quale file delle estensioni vuoi modificare?"
  1346. msgid "Highlighting groups file edit"
  1347. msgstr "Modifica file gruppi di evidenziazione"
  1348. msgid "Which highlighting file you want to edit?"
  1349. msgstr "Quale file di evidenziazione vuoi modificare?"
  1350. msgid "Compare directories"
  1351. msgstr "Confronta directory"
  1352. msgid "Select compare method:"
  1353. msgstr "Seleziona metodo di confronto:"
  1354. msgid "&Quick"
  1355. msgstr "&Rapido"
  1356. msgid "&Size only"
  1357. msgstr "&Solo dimensione"
  1358. msgid "&Thorough"
  1359. msgstr "&Completo"
  1360. msgid ""
  1361. "Both panels should be in the listing mode\n"
  1362. "to use this command"
  1363. msgstr ""
  1364. "Entrambi i pannelli devono essere in\n"
  1365. "modalità lista per usare questo comando"
  1366. msgid ""
  1367. "Not an xterm or Linux console;\n"
  1368. "the panels cannot be toggled."
  1369. msgstr ""
  1370. "Non è né un xterm né una console; \n"
  1371. "i pannelli non possono essere nascosti."
  1372. #, c-format
  1373. msgid "Symlink `%s' points to:"
  1374. msgstr "Il colleg. simb. \"%s\" punta a:"
  1375. msgid "Edit symlink"
  1376. msgstr "Modifica coll. simb."
  1377. #, c-format
  1378. msgid "edit symlink, unable to remove %s: %s"
  1379. msgstr "modifica collegamento simb., impossibile rimuovere %s: %s"
  1380. #, c-format
  1381. msgid "edit symlink: %s"
  1382. msgstr "modifica del collegamento simb.: %s"
  1383. #, c-format
  1384. msgid "`%s' is not a symbolic link"
  1385. msgstr "\"%s\" non è un collegamento simbolico"
  1386. msgid "FTP to machine"
  1387. msgstr "Connessione FTP"
  1388. msgid "Shell link to machine"
  1389. msgstr "Connessione shell"
  1390. msgid "SMB link to machine"
  1391. msgstr "Connessione SMB"
  1392. msgid "Undelete files on an ext2 file system"
  1393. msgstr "Ripristina file da un filesystem ext2"
  1394. msgid ""
  1395. "Enter device (without /dev/) to undelete\n"
  1396. "files on: (F1 for details)"
  1397. msgstr ""
  1398. "Inserire il nome del dispositivo (senza /dev/) dal quale\n"
  1399. "volete ripristinare i file: (F1 per i dettagli)"
  1400. msgid "Setup"
  1401. msgstr "Configurazione"
  1402. #, c-format
  1403. msgid "Setup saved to %s"
  1404. msgstr "Impostazioni salvate su %s"
  1405. #, c-format
  1406. msgid "Unable to save setup to %s"
  1407. msgstr "Impossibile salvare le impostazioni su %s"
  1408. msgid "Cannot execute commands on non-local filesystems"
  1409. msgstr "Impossibile eseguire comandi su filesystem non locali"
  1410. #, c-format
  1411. msgid ""
  1412. "Cannot chdir to \"%s\"\n"
  1413. "%s"
  1414. msgstr ""
  1415. "Non posso entrare in \"%s\"\n"
  1416. "%s"
  1417. msgid "Cannot read directory contents"
  1418. msgstr "Impossibile leggere il contenuto della directory"
  1419. msgid "Parameter"
  1420. msgstr "Parametro"
  1421. #, c-format
  1422. msgid ""
  1423. "Cannot create temporary command file\n"
  1424. "%s"
  1425. msgstr ""
  1426. "Non posso creare file comandi temporaneo \n"
  1427. "%s"
  1428. #, c-format
  1429. msgid " %s%s file error"
  1430. msgstr " errore nel file %s%s "
  1431. #, c-format
  1432. msgid ""
  1433. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1434. "the installation failed. Please fetch a fresh copy from the Midnight "
  1435. "Commander package."
  1436. msgstr ""
  1437. "Il formato del file %smc.ext è cambiato con la versione 3.0. Sembra che "
  1438. "l'installazione sia fallita. Procurarsi una versione più aggiornata del "
  1439. "Midnight Commander."
  1440. #, c-format
  1441. msgid "%s file error"
  1442. msgstr "Errore file %s"
  1443. #, c-format
  1444. msgid ""
  1445. "The format of the %s file has changed with version 3.0. You may either want "
  1446. "to copy it from %smc.ext or use that file as an example of how to write it."
  1447. msgstr ""
  1448. "Il formato del file %s è cambiato con la versione 3.0. È possibile sia "
  1449. "copiarlo da %smc.ext o usare quel file come esempio per scriverne uno nuovo."
  1450. msgid "DialogTitle|Copy"
  1451. msgstr "Copia"
  1452. msgid "DialogTitle|Move"
  1453. msgstr "Sposta"
  1454. msgid "DialogTitle|Delete"
  1455. msgstr "Elimina"
  1456. msgid "FileOperation|Copy"
  1457. msgstr "Copia"
  1458. msgid "FileOperation|Move"
  1459. msgstr "Sposta"
  1460. msgid "FileOperation|Delete"
  1461. msgstr "Elimina"
  1462. #, no-c-format
  1463. msgid "%o %f \"%s\"%m"
  1464. msgstr "%o %f \"%s\"%m"
  1465. #, no-c-format
  1466. msgid "%o %d %f%m"
  1467. msgstr "%o %d %f%m"
  1468. msgid "file"
  1469. msgstr "file"
  1470. msgid "files"
  1471. msgstr "file"
  1472. msgid "directory"
  1473. msgstr "directory"
  1474. msgid "directories"
  1475. msgstr "directory"
  1476. msgid "files/directories"
  1477. msgstr "file/directory"
  1478. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  1479. msgid " with source mask:"
  1480. msgstr " con maschera sorgente:"
  1481. msgid "to:"
  1482. msgstr "a:"
  1483. #, c-format
  1484. msgid "%s?"
  1485. msgstr "%s?"
  1486. msgid "Cannot make the hardlink"
  1487. msgstr "Impossibile creare il coll. fisico"
  1488. #, c-format
  1489. msgid ""
  1490. "Cannot read source link \"%s\"\n"
  1491. "%s"
  1492. msgstr ""
  1493. "Non posso leggere il collegamento sorgente \"%s\"\n"
  1494. "%s"
  1495. msgid ""
  1496. "Cannot make stable symlinks acrossnon-local filesystems:\n"
  1497. "\n"
  1498. "Option Stable Symlinks will be disabled"
  1499. msgstr ""
  1500. "Non posso creare coll. simbolici stabili su un filesystem non locale \n"
  1501. "\n"
  1502. "L'opzione coll. simbolici stabili sarà disabilitata"
  1503. #, c-format
  1504. msgid ""
  1505. "Cannot create target symlink \"%s\"\n"
  1506. "%s"
  1507. msgstr ""
  1508. "Impossibile creare collegamento simb. destinazione \"%s\"\n"
  1509. "%s"
  1510. msgid "&Abort"
  1511. msgstr "&Annulla"
  1512. msgid "Ski&p all"
  1513. msgstr "Salta tutti"
  1514. msgid "&Retry"
  1515. msgstr "&Riprova"
  1516. msgid ""
  1517. "\n"
  1518. "Directory not empty.\n"
  1519. "Delete it recursively?"
  1520. msgstr ""
  1521. "\n"
  1522. "La directory non è vuota.\n"
  1523. "Eliminarla ricorsivamente?"
  1524. msgid ""
  1525. "\n"
  1526. "Background process: Directory not empty.\n"
  1527. "Delete it recursively?"
  1528. msgstr ""
  1529. "\n"
  1530. "Processo in background: la directory non è vuota. \n"
  1531. "Eliminarla ricorsivamente? "
  1532. msgid "Delete:"
  1533. msgstr "Elimina:"
  1534. msgid "Non&e"
  1535. msgstr "Nessun&o"
  1536. #, c-format
  1537. msgid ""
  1538. "Cannot stat file \"%s\"\n"
  1539. "%s"
  1540. msgstr ""
  1541. "Impossibile ottenere info sul file \"%s\"\n"
  1542. "%s"
  1543. #, c-format
  1544. msgid ""
  1545. "\"%s\"\n"
  1546. "and\n"
  1547. "\"%s\"\n"
  1548. "are the same file"
  1549. msgstr ""
  1550. "\"%s\"\n"
  1551. "e\n"
  1552. "\"%s\"\n"
  1553. "sono lo stesso file"
  1554. #, c-format
  1555. msgid "Cannot overwrite directory \"%s\""
  1556. msgstr "Impossibile sovrascrivere la directory \"%s\""
  1557. #, c-format
  1558. msgid ""
  1559. "Cannot move file \"%s\" to \"%s\"\n"
  1560. "%s"
  1561. msgstr ""
  1562. "Impossibile spostare il file \"%s\" in \"%s\" \n"
  1563. "%s"
  1564. #, c-format
  1565. msgid ""
  1566. "Cannot remove file \"%s\"\n"
  1567. "%s"
  1568. msgstr ""
  1569. "Impossibile rimuovere il file \"%s\"\n"
  1570. "%s"
  1571. #, c-format
  1572. msgid ""
  1573. "Cannot delete file \"%s\"\n"
  1574. "%s"
  1575. msgstr ""
  1576. "Impossibile eliminare il file \"%s\"\n"
  1577. "%s"
  1578. #, c-format
  1579. msgid ""
  1580. "Cannot remove directory \"%s\"\n"
  1581. "%s"
  1582. msgstr ""
  1583. "Impossibile cancellare la directory \"%s\"\n"
  1584. "%s"
  1585. #, c-format
  1586. msgid ""
  1587. "Cannot overwrite directory \"%s\"\n"
  1588. "%s"
  1589. msgstr ""
  1590. "Impossibile sovrascrivere la directory \"%s\"\n"
  1591. "%s"
  1592. #, c-format
  1593. msgid ""
  1594. "Cannot stat source file \"%s\"\n"
  1595. "%s"
  1596. msgstr ""
  1597. "Impossibile ottenere info sul file sorgente \"%s\"\n"
  1598. "%s"
  1599. #, c-format
  1600. msgid ""
  1601. "Cannot create special file \"%s\"\n"
  1602. "%s"
  1603. msgstr ""
  1604. "Impossibile creare il file speciale \"%s\"\n"
  1605. "%s"
  1606. #, c-format
  1607. msgid ""
  1608. "Cannot chown target file \"%s\"\n"
  1609. "%s"
  1610. msgstr ""
  1611. "Non posso cambiare il proprietario del file destinazione: \"%s\"\n"
  1612. "%s"
  1613. #, c-format
  1614. msgid ""
  1615. "Cannot chmod target file \"%s\"\n"
  1616. "%s"
  1617. msgstr ""
  1618. "Non posso cambiare i permessi del file destinazione \"%s\"\n"
  1619. "%s"
  1620. #, c-format
  1621. msgid ""
  1622. "Cannot open source file \"%s\"\n"
  1623. "%s"
  1624. msgstr ""
  1625. "Non posso aprire il file sorgente \"%s\"\n"
  1626. "%s"
  1627. msgid "Reget failed, about to overwrite file"
  1628. msgstr "Reget fallito, riscrittura file"
  1629. #, c-format
  1630. msgid ""
  1631. "Cannot fstat source file \"%s\"\n"
  1632. "%s"
  1633. msgstr ""
  1634. "Impossibile ottenere info sul file sorgente: \"%s\"\n"
  1635. "%s"
  1636. #, c-format
  1637. msgid ""
  1638. "Cannot create target file \"%s\"\n"
  1639. "%s"
  1640. msgstr ""
  1641. "Non posso creare il file destinazione \"%s\"\n"
  1642. "%s"
  1643. #, c-format
  1644. msgid ""
  1645. "Cannot fstat target file \"%s\"\n"
  1646. "%s"
  1647. msgstr ""
  1648. "Impossibile ottenere info sul file destinazione \"%s\"\n"
  1649. "%s"
  1650. #, c-format
  1651. msgid ""
  1652. "Cannot preallocate space for target file \"%s\"\n"
  1653. "%s"
  1654. msgstr ""
  1655. "Impossibile preallocare lo spazio per il file obiettivo \"%s\"\n"
  1656. "%s"
  1657. #, c-format
  1658. msgid ""
  1659. "Cannot read source file\"%s\"\n"
  1660. "%s"
  1661. msgstr ""
  1662. "Impossibile leggere il file sorgente \"%s\"\n"
  1663. "%s"
  1664. #, c-format
  1665. msgid ""
  1666. "Cannot write target file \"%s\"\n"
  1667. "%s"
  1668. msgstr ""
  1669. "Non posso scrivere il file destinazione \"%s\"\n"
  1670. "%s"
  1671. msgid "(stalled)"
  1672. msgstr "(in attesa)"
  1673. #, c-format
  1674. msgid ""
  1675. "Cannot close source file \"%s\"\n"
  1676. "%s"
  1677. msgstr ""
  1678. "Non posso chiudere il file sorgente \"%s\"\n"
  1679. "%s"
  1680. #, c-format
  1681. msgid ""
  1682. "Cannot close target file \"%s\"\n"
  1683. "%s"
  1684. msgstr ""
  1685. "Impossibile chiudere il file destinazione \"%s\"\n"
  1686. "%s"
  1687. msgid "Incomplete file was retrieved. Keep it?"
  1688. msgstr "Il file recuperato è incompleto. Lo vuoi tenere?"
  1689. msgid "&Keep"
  1690. msgstr "&Mantieni"
  1691. #, c-format
  1692. msgid ""
  1693. "Cannot stat source directory \"%s\"\n"
  1694. "%s"
  1695. msgstr ""
  1696. "Impossibile ottenere info sulla directory sorgente \"%s\"\n"
  1697. "%s"
  1698. #, c-format
  1699. msgid ""
  1700. "Source \"%s\" is not a directory\n"
  1701. "%s"
  1702. msgstr ""
  1703. "La sorgente \"%s\" non è una directory\n"
  1704. "%s"
  1705. #, c-format
  1706. msgid ""
  1707. "Cannot copy cyclic symbolic link\n"
  1708. "\"%s\""
  1709. msgstr ""
  1710. "Impossibile copiare un collegamento simbolico ciclico\n"
  1711. "\"%s\""
  1712. #, c-format
  1713. msgid ""
  1714. "Destination \"%s\" must be a directory\n"
  1715. "%s"
  1716. msgstr ""
  1717. "La destinazione \"%s\" deve essere una directory\n"
  1718. "%s"
  1719. #, c-format
  1720. msgid ""
  1721. "Cannot create target directory \"%s\"\n"
  1722. "%s"
  1723. msgstr ""
  1724. "Non posso creare la directory destinazione \"%s\"\n"
  1725. "%s"
  1726. #, c-format
  1727. msgid ""
  1728. "Cannot chown target directory \"%s\"\n"
  1729. "%s"
  1730. msgstr ""
  1731. "Impossibile cambiare proprietario della directory destinazione \"%s\"\n"
  1732. "%s"
  1733. #, c-format
  1734. msgid ""
  1735. "\"%s\"\n"
  1736. "and\n"
  1737. "\"%s\"\n"
  1738. "are the same directory"
  1739. msgstr ""
  1740. "\"%s\"\n"
  1741. "e\n"
  1742. "\"%s\"\n"
  1743. "sono la stessa directory"
  1744. #, c-format
  1745. msgid ""
  1746. "Cannot overwrite file \"%s\"\n"
  1747. "%s"
  1748. msgstr ""
  1749. "Impossibile sovrascrivere il file \"%s\"\n"
  1750. "%s"
  1751. #, c-format
  1752. msgid ""
  1753. "Cannot move directory \"%s\" to \"%s\"\n"
  1754. "%s"
  1755. msgstr ""
  1756. "Impossibile spostare la directory \"%s\" in \"%s\"\n"
  1757. "%s"
  1758. msgid "Directory scanning"
  1759. msgstr "Scansione directory"
  1760. msgid "Cannot operate on \"..\"!"
  1761. msgstr "Impossibile operare su \"..\"!"
  1762. msgid "Sorry, I could not put the job in background"
  1763. msgstr "Spiacente, non posso mettere il programma in background"
  1764. #, c-format
  1765. msgid "%d:%02d.%02d"
  1766. msgstr "%d:%02d.%02d"
  1767. #, c-format
  1768. msgid "ETA %s"
  1769. msgstr "ETA %s"
  1770. #, c-format
  1771. msgid "%.2f MB/s"
  1772. msgstr "%.2f MB/s"
  1773. #, c-format
  1774. msgid "%.2f KB/s"
  1775. msgstr "%.2f KB/s"
  1776. #, c-format
  1777. msgid "%ld B/s"
  1778. msgstr "%ld B/s"
  1779. msgid "Target file already exists!"
  1780. msgstr " Il file obiettivo esiste già!"
  1781. #, c-format
  1782. msgid "Source date: %s, size %llu"
  1783. msgstr "Data sorgen.: %s, dim. %llu"
  1784. #, c-format
  1785. msgid "Target date: %s, size %llu"
  1786. msgstr "Data destin.: %s, dim. %llu"
  1787. msgid "If &size differs"
  1788. msgstr "Solo se la dimensione è &diversa"
  1789. msgid "&Update"
  1790. msgstr "&Aggiorna"
  1791. msgid "Overwrite all targets?"
  1792. msgstr "Sovrascrivo tutto?"
  1793. msgid "&Reget"
  1794. msgstr "&Riprendi"
  1795. msgid "A&ppend"
  1796. msgstr "Atta&cca"
  1797. msgid "Overwrite this target?"
  1798. msgstr "Sovrascrivo questo file?"
  1799. msgid "File exists"
  1800. msgstr "Il file esiste"
  1801. msgid "Background process: File exists"
  1802. msgstr "Processo in background: il file esiste"
  1803. #, c-format
  1804. msgid "Files processed: %zu/%zu"
  1805. msgstr "File elaborati: %zu/%zu"
  1806. #, c-format
  1807. msgid "Files processed: %zu"
  1808. msgstr "File elaborati: %zu"
  1809. #, c-format
  1810. msgid "Time: %s %s"
  1811. msgstr "Tempo: %s %s"
  1812. #, c-format
  1813. msgid "Time: %s %s (%s)"
  1814. msgstr "Tempo: %s %s (%s)"
  1815. #, c-format
  1816. msgid "Time: %s"
  1817. msgstr "Tempo: %s"
  1818. #, c-format
  1819. msgid "Time: %s (%s)"
  1820. msgstr "Tempo: %s (%s)"
  1821. #, c-format
  1822. msgid " Total: %s "
  1823. msgstr " Totale: %s "
  1824. #, c-format
  1825. msgid " Total: %s/%s "
  1826. msgstr " Totale: %s/%s "
  1827. msgid "Source"
  1828. msgstr "Sorgente"
  1829. msgid "Target"
  1830. msgstr "Destinaz"
  1831. msgid "Deleting"
  1832. msgstr "Sto eliminando"
  1833. msgid "&Background"
  1834. msgstr "&Background"
  1835. msgid "&Stable Symlinks"
  1836. msgstr "Link simbolici &stabili"
  1837. msgid "Di&ve into subdir if exists"
  1838. msgstr "Entra nella sub&dir se esiste"
  1839. msgid "Preserve &attributes"
  1840. msgstr "Conserva gli &attributi"
  1841. msgid "Follow &links"
  1842. msgstr "Segui i co&llegamenti"
  1843. #, c-format
  1844. msgid "Invalid source pattern `%s'"
  1845. msgstr "Modello sorgente non valido \"%s\""
  1846. msgid "&Suspend"
  1847. msgstr "&Sospende"
  1848. msgid "Con&tinue"
  1849. msgstr "Con&tinua"
  1850. msgid "&Chdir"
  1851. msgstr "&CambiaDir"
  1852. msgid "&Again"
  1853. msgstr "&Ripete"
  1854. msgid "Pane&lize"
  1855. msgstr "&Pannellizza"
  1856. msgid "&View - F3"
  1857. msgstr "&Visualizza - F3"
  1858. msgid "&Edit - F4"
  1859. msgstr "&Modifica - F4"
  1860. #, c-format
  1861. msgid "Found: %ld"
  1862. msgstr "Trovato: %ld"
  1863. msgid "Malformed regular expression"
  1864. msgstr "Espressione regolare malformata"
  1865. msgid "&Find recursively"
  1866. msgstr "&Trova ricorsivamente"
  1867. msgid "S&kip hidden"
  1868. msgstr "Salta i &nascosti"
  1869. msgid "Sea&rch for content"
  1870. msgstr "Rice&rca del contenuto"
  1871. msgid "Case sens&itive"
  1872. msgstr "Distingue le mai&uscole"
  1873. msgid "Fir&st hit"
  1874. msgstr "&Primo colpo"
  1875. msgid "A&ll charsets"
  1876. msgstr "Tutti i caratteri"
  1877. msgid "&Tree"
  1878. msgstr "A&lbero"
  1879. msgid "Find File"
  1880. msgstr " Trova file "
  1881. msgid "Content:"
  1882. msgstr "Contenuto:"
  1883. msgid "File name:"
  1884. msgstr "Nome file:"
  1885. msgid "Ena&ble ignore directories:"
  1886. msgstr "A&bilita ignora le directory:"
  1887. msgid "Start at:"
  1888. msgstr "Inizia da:"
  1889. #, c-format
  1890. msgid "Grepping in %s"
  1891. msgstr "Cercando in %s"
  1892. msgid "Finished"
  1893. msgstr "Terminato"
  1894. #, c-format
  1895. msgid "Finished (ignored %zd directory)"
  1896. msgid_plural "Finished (ignored %zd directories)"
  1897. msgstr[0] "Finito (ignorata %zd directory)"
  1898. msgstr[1] "Finito (ignorate %zd directory)"
  1899. #, c-format
  1900. msgid "Searching %s"
  1901. msgstr "Cercando %s"
  1902. msgid "Searching"
  1903. msgstr "Cercando"
  1904. msgid "&Move"
  1905. msgstr "&Sposta"
  1906. msgid "&Remove"
  1907. msgstr "Elimina"
  1908. msgid "&Append"
  1909. msgstr "&Appendi"
  1910. msgid "&Insert"
  1911. msgstr "&Inserisci"
  1912. msgid "New &entry"
  1913. msgstr "Nuova voc&e"
  1914. msgid "New &group"
  1915. msgstr "Nuovo &gruppo"
  1916. msgid "&Up"
  1917. msgstr "S&u"
  1918. msgid "&Add current"
  1919. msgstr "Aggiungi &corrente"
  1920. msgid "&Refresh"
  1921. msgstr "&Rinfresco"
  1922. msgid "Fr&ee VFSs now"
  1923. msgstr "Libera i &VFS"
  1924. msgid "Change &to"
  1925. msgstr "Cambia a"
  1926. msgid "Subgroup - press ENTER to see list"
  1927. msgstr "Sottogruppo - premi INVIO per vedere la lista"
  1928. msgid "Active VFS directories"
  1929. msgstr "Directory virtuali attive"
  1930. msgid "Directory hotlist"
  1931. msgstr "Directory di uso frequente"
  1932. msgid "Directory path"
  1933. msgstr "Percorso directory"
  1934. msgid "Directory label"
  1935. msgstr "Etichetta directory"
  1936. #, c-format
  1937. msgid "Moving %s"
  1938. msgstr "Sto spostando %s"
  1939. msgid "New hotlist entry"
  1940. msgstr "Nuova voce per le favorite"
  1941. msgid "Directory label:"
  1942. msgstr "Etichetta directory:"
  1943. msgid "Directory path:"
  1944. msgstr "Percorso directory:"
  1945. msgid "New hotlist group"
  1946. msgstr "Nuovo gruppo favorite"
  1947. msgid "Name of new group:"
  1948. msgstr "Nome del nuovo gruppo:"
  1949. #, c-format
  1950. msgid "Are you sure you want to remove entry \"%s\"?"
  1951. msgstr "Sicuro di voler cancellare la voce \"%s\"?"
  1952. #, c-format
  1953. msgid ""
  1954. "Group \"%s\" is not empty.\n"
  1955. "Remove it?"
  1956. msgstr ""
  1957. "Il gruppo \"%s\" non è vuoto.\n"
  1958. "Rimuoverlo comunque?"
  1959. msgid "Top level group"
  1960. msgstr "Gruppo principale"
  1961. msgid "Hotlist Load"
  1962. msgstr "Carica favorite"
  1963. #, c-format
  1964. msgid ""
  1965. "MC was unable to write %s file,\n"
  1966. "your old hotlist entries were not deleted"
  1967. msgstr ""
  1968. "MC non è stato in grado di scrivere sul file %s,\n"
  1969. "il vecchio elenco di voci favorite non è stato eliminato"
  1970. #, c-format
  1971. msgid "Label for \"%s\":"
  1972. msgstr "Etichetta per `%s':"
  1973. msgid "Add to hotlist"
  1974. msgstr "Aggiungi alle favorite"
  1975. msgid "Information"
  1976. msgstr "Informazioni"
  1977. #, c-format
  1978. msgid "Midnight Commander %s"
  1979. msgstr "Midnight Commander %s"
  1980. #, c-format
  1981. msgid "File: %s"
  1982. msgstr "File: %s"
  1983. msgid "No node information"
  1984. msgstr "Nessuna info sui nodi"
  1985. msgid "Free nodes:"
  1986. msgstr "Nodi liberi:"
  1987. msgid "No space information"
  1988. msgstr "Nessuna info sullo spazio"
  1989. #, c-format
  1990. msgid "Free space: %s/%s (%d%%)"
  1991. msgstr "Spazio libero: %s/%s (%d%%)"
  1992. #, c-format
  1993. msgid "Type: %s"
  1994. msgstr "Tipo: %s"
  1995. msgid "non-local vfs"
  1996. msgstr "vfs non-locale"
  1997. #, c-format
  1998. msgid "Device: %s"
  1999. msgstr "Periferica: %s"
  2000. #, c-format
  2001. msgid "Filesystem: %s"
  2002. msgstr "Filesystem: %s"
  2003. #, c-format
  2004. msgid "Accessed: %s"
  2005. msgstr "Aperto: %s"
  2006. #, c-format
  2007. msgid "Modified: %s"
  2008. msgstr "Modificato: %s"
  2009. #. TRANSLATORS: Time of last status change as in stat(2) man.
  2010. #, c-format
  2011. msgid "Changed: %s"
  2012. msgstr "Cambiato: %s"
  2013. #, c-format
  2014. msgid "Dev. type: major %lu, minor %lu"
  2015. msgstr "Tipo dis.: major %lu, minor %lu"
  2016. #, c-format
  2017. msgid "Size: %s"
  2018. msgstr "Dimensione: %s"
  2019. #, c-format
  2020. msgid " (%ld block)"
  2021. msgid_plural " (%ld blocks)"
  2022. msgstr[0] " (%ld blocco)"
  2023. msgstr[1] " (%ld blocchi)"
  2024. #, c-format
  2025. msgid "Owner: %s/%s"
  2026. msgstr "Proprietà: %s/%s"
  2027. #, c-format
  2028. msgid "Links: %d"
  2029. msgstr "Collegamenti: %d"
  2030. #, c-format
  2031. msgid "Mode: %s (%04o)"
  2032. msgstr "Permessi: %s (%04o)"
  2033. #, c-format
  2034. msgid "Location: %Xh:%Xh"
  2035. msgstr "Posizione: %Xh:%Xh"
  2036. msgid "Show free sp&ace"
  2037. msgstr "Mostra lo spa&zio libero"
  2038. msgid "&XTerm window title"
  2039. msgstr "Titolo finestra &xterm"
  2040. msgid "H&intbar visible"
  2041. msgstr "Mostra s&uggerimenti"
  2042. msgid "&Keybar visible"
  2043. msgstr "Mostra tasti &funzione"
  2044. msgid "Command &prompt"
  2045. msgstr "&Riga di comando"
  2046. msgid "Menu&bar visible"
  2047. msgstr "Mostra &barra menu "
  2048. msgid "&Equal split"
  2049. msgstr "&Divisione schermo uguale"
  2050. msgid "Panel split"
  2051. msgstr "Divisione pannello"
  2052. msgid "Console output"
  2053. msgstr "Risultato a console"
  2054. msgid "Other options"
  2055. msgstr "Altre opzioni"
  2056. msgid "&Vertical"
  2057. msgstr "&Verticale"
  2058. msgid "&Horizontal"
  2059. msgstr "Orizzontal&e"
  2060. msgid "Output lines:"
  2061. msgstr "Righe d'uscita:"
  2062. msgid "Layout"
  2063. msgstr "Aspetto"
  2064. msgid "File listin&g"
  2065. msgstr "&Elenco file"
  2066. msgid "&Quick view"
  2067. msgstr "&Vista veloce"
  2068. msgid "&Info"
  2069. msgstr "&Info"
  2070. msgid "&Listing mode..."
  2071. msgstr "&Modalità lista..."
  2072. msgid "&Sort order..."
  2073. msgstr "&Ordina per..."
  2074. msgid "&Filter..."
  2075. msgstr "&Filtro"
  2076. msgid "&Encoding..."
  2077. msgstr "&Codifica..."
  2078. msgid "FT&P link..."
  2079. msgstr "Connessione FT&P..."
  2080. msgid "S&hell link..."
  2081. msgstr "Connessione S&hell..."
  2082. msgid "SM&B link..."
  2083. msgstr "Connessione SM&B..."
  2084. msgid "Paneli&ze"
  2085. msgstr "Pannelli&zza"
  2086. msgid "&Rescan"
  2087. msgstr "&Ricarica"
  2088. msgid "&View"
  2089. msgstr "&Vista"
  2090. msgid "Vie&w file..."
  2091. msgstr "Vis&ta file..."
  2092. msgid "&Filtered view"
  2093. msgstr "Vista &filtrata"
  2094. msgid "&Copy"
  2095. msgstr "&Copia"
  2096. msgid "C&hmod"
  2097. msgstr "&Permessi"
  2098. msgid "&Link"
  2099. msgstr "Col&legamento"
  2100. msgid "&Symlink"
  2101. msgstr "Coll. &simb."
  2102. msgid "Relative symlin&k"
  2103. msgstr "Colleg. simb. &relativo"
  2104. msgid "Edit s&ymlink"
  2105. msgstr "Mo&difica coll. simb."
  2106. msgid "Ch&own"
  2107. msgstr "Pr&oprietario"
  2108. msgid "&Advanced chown"
  2109. msgstr "Proprietario &avanzato"
  2110. msgid "&Rename/Move"
  2111. msgstr "Rinomina&/Sposta"
  2112. msgid "&Mkdir"
  2113. msgstr "Crea director&y"
  2114. msgid "&Quick cd"
  2115. msgstr "Cam&bia dir rapido"
  2116. msgid "Select &group"
  2117. msgstr "Seleziona &gruppo"
  2118. msgid "U&nselect group"
  2119. msgstr "Deselezio&na gruppo"
  2120. msgid "&Invert selection"
  2121. msgstr "&Inverti selezione"
  2122. msgid "E&xit"
  2123. msgstr "Esc&i"
  2124. msgid "&User menu"
  2125. msgstr "Menu &utente"
  2126. msgid "&Directory tree"
  2127. msgstr "&Albero directory"
  2128. msgid "&Find file"
  2129. msgstr "Trova &file"
  2130. msgid "S&wap panels"
  2131. msgstr "&Scambia pannelli"
  2132. msgid "Switch &panels on/off"
  2133. msgstr "Commuta &pannelli"
  2134. msgid "&Compare directories"
  2135. msgstr "&Confronta directory"
  2136. msgid "C&ompare files"
  2137. msgstr "C&onfronta file"
  2138. msgid "E&xternal panelize"
  2139. msgstr "Pannelliz&za esternamente"
  2140. msgid "Show directory s&izes"
  2141. msgstr "Mostra dimensione d&irectory"
  2142. msgid "Command &history"
  2143. msgstr "Cro&nologia comandi"
  2144. msgid "Di&rectory hotlist"
  2145. msgstr "&Directory di uso frequente"
  2146. msgid "&Active VFS list"
  2147. msgstr "Lista &VFS attivi"
  2148. msgid "&Background jobs"
  2149. msgstr "Processi in &background"
  2150. msgid "Screen lis&t"
  2151. msgstr "Elenco schermi"
  2152. msgid "&Undelete files (ext2fs only)"
  2153. msgstr "&Ripristina file (solo ext2fs)"
  2154. msgid "&Listing format edit"
  2155. msgstr "Modifica formato &lista"
  2156. msgid "Edit &extension file"
  2157. msgstr "Modifica file &estensioni"
  2158. msgid "Edit &menu file"
  2159. msgstr "Modifica file &menu"
  2160. msgid "Edit hi&ghlighting group file"
  2161. msgstr "Modifica file &gruppo di evidenziazione"
  2162. msgid "&Configuration..."
  2163. msgstr "&Configurazione..."
  2164. msgid "&Layout..."
  2165. msgstr "&Aspetto..."
  2166. msgid "&Panel options..."
  2167. msgstr "Opzioni &pannello..."
  2168. msgid "C&onfirmation..."
  2169. msgstr "C&onferme..."
  2170. msgid "&Display bits..."
  2171. msgstr "&Mostra bit..."
  2172. msgid "&Virtual FS..."
  2173. msgstr "FS &virtuale..."
  2174. msgid "Panels:"
  2175. msgstr "Pannelli:"
  2176. #, c-format
  2177. msgid "You have %zd opened screen. Quit anyway?"
  2178. msgid_plural "You have %zd opened screens. Quit anyway?"
  2179. msgstr[0] "È stato aperto %zd schermo. Uscire comunque?"
  2180. msgstr[1] "Sono stati aperti %zd schermi. Uscire comunque?"
  2181. msgid "The Midnight Commander"
  2182. msgstr "Il Midnight Commander"
  2183. msgid "Do you really want to quit the Midnight Commander?"
  2184. msgstr "Vuoi veramente uscire dal Midnight Commander?"
  2185. msgid "&Above"
  2186. msgstr "Sopr&a"
  2187. msgid "&Left"
  2188. msgstr "&Sinistra"
  2189. msgid "&Below"
  2190. msgstr "&Sotto"
  2191. msgid "&Right"
  2192. msgstr "&Destra"
  2193. msgid "ButtonBar|Menu"
  2194. msgstr "Menu"
  2195. msgid "ButtonBar|View"
  2196. msgstr "Mostra"
  2197. msgid "ButtonBar|RenMov"
  2198. msgstr "RinSpo"
  2199. msgid "ButtonBar|Mkdir"
  2200. msgstr "CreDir"
  2201. msgid "Memory exhausted!"
  2202. msgstr "Memoria esaurita!"
  2203. msgid "&Never"
  2204. msgstr "Mai (&J)"
  2205. msgid "On dum&b terminals"
  2206. msgstr "Su terminali stupidi (&Q)"
  2207. msgid "Alwa&ys"
  2208. msgstr "Sempre (&W)"
  2209. msgid "A&uto save setup"
  2210. msgstr "Autosalva &configurazione"
  2211. msgid "Sa&fe delete"
  2212. msgstr "Cance&llazione sicura"
  2213. msgid "Cd follows lin&ks"
  2214. msgstr "Cd seg&ue i collegamenti"
  2215. msgid "Rotating d&ash"
  2216. msgstr "&Barre che girano"
  2217. msgid "Co&mplete: show all"
  2218. msgstr "Completa: visuali&zza tutto"
  2219. msgid "Shell &patterns"
  2220. msgstr "Modelli della s&hell"
  2221. msgid "&Drop down menus"
  2222. msgstr "&Rilascia menu a cascata"
  2223. msgid "Auto m&enus"
  2224. msgstr "&Menu automatici"
  2225. msgid "Use internal vie&w"
  2226. msgstr "Usa &visualizzatore interno"
  2227. msgid "Use internal edi&t"
  2228. msgstr "Usa &editor interno"
  2229. msgid "Pause after run"
  2230. msgstr " Pausa dopo l'esecuzione"
  2231. msgid "Timeout:"
  2232. msgstr "Timeout:"
  2233. msgid "S&ingle press"
  2234. msgstr "Pressione s&ingola"
  2235. msgid "Esc key mode"
  2236. msgstr "Modalità tasto esc"
  2237. msgid "Preallocate &space"
  2238. msgstr "&Spazio preallocato"
  2239. msgid "Mkdi&r autoname"
  2240. msgstr "Nomi automatici m&kdir"
  2241. msgid "Classic pro&gressbar"
  2242. msgstr "Barra pro&gressiva classica"
  2243. msgid "Compute tota&ls"
  2244. msgstr "Calcola i &totali"
  2245. msgid "&Verbose operation"
  2246. msgstr "Operazioni &prolisse"
  2247. msgid "File operation options"
  2248. msgstr "Opzioni operazioni sui file"
  2249. msgid "Configure options"
  2250. msgstr "Configura opzioni"
  2251. msgid "Case &insensitive"
  2252. msgstr "Non distinguere le ma&iuscole"
  2253. msgid "Case s&ensitive"
  2254. msgstr "Distingui le maiuscol&e"
  2255. msgid "Use panel sort mo&de"
  2256. msgstr "Mo&dalità ordinamento pannelli "
  2257. msgid "Quick search"
  2258. msgstr "Ricerca rapida"
  2259. msgid "&Permissions"
  2260. msgstr "&Permessi"
  2261. msgid "File &types"
  2262. msgstr "&Tipo di file"
  2263. msgid "File highlight"
  2264. msgstr "Evidenziazione file"
  2265. msgid "&Mouse page scrolling"
  2266. msgstr "Scorrimento pagine &mouse"
  2267. msgid "Pa&ge scrolling"
  2268. msgstr "Scorrimento pa&gine"
  2269. msgid "L&ynx-like motion"
  2270. msgstr "Navigazione stile Lyn&x"
  2271. msgid "Navigation"
  2272. msgstr "Navigazione"
  2273. msgid "A&uto save panels setup"
  2274. msgstr "Autosalva config. pannel&li"
  2275. msgid "Simple s&wap"
  2276. msgstr "Semplica scambio"
  2277. msgid "Re&verse files only"
  2278. msgstr "Solo file in&versi"
  2279. msgid "Ma&rk moves down"
  2280. msgstr "Cu&rsore in basso selezionando"
  2281. msgid "&Fast dir reload"
  2282. msgstr "Aggiornam. rapido director&y"
  2283. msgid "Show &hidden files"
  2284. msgstr "Mostra i file &nascosti"
  2285. msgid "Show &backup files"
  2286. msgstr "Mostra i file di &backup"
  2287. msgid "Mi&x all files"
  2288. msgstr "Mes&cola tutti i file"
  2289. msgid "Use SI si&ze units"
  2290. msgstr "Usa le &unità SI"
  2291. msgid "Show mi&ni-status"
  2292. msgstr "Mostra mi&ni stato"
  2293. msgid "Panel options"
  2294. msgstr "Opzioni pannello"
  2295. msgid ""
  2296. "Using the fast reload option may not reflect the exact\n"
  2297. "directory contents. In this case you'll need to do a\n"
  2298. "manual reload of the directory. See the man page for\n"
  2299. "the details."
  2300. msgstr ""
  2301. "Usando l'opzione di aggiornamento rapido potrebbe causare\n"
  2302. "la visualizzazione di contenuti della directory non reali.\n"
  2303. "In tal caso, usare il comando di ricarica manuale per\n"
  2304. "forzare l'aggiornamento della visualizzazione.\n"
  2305. "Vedere le pagine man per i dettagli."
  2306. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2307. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2308. msgid "sort|u"
  2309. msgstr "s"
  2310. msgid "&Unsorted"
  2311. msgstr "&Senza ordine"
  2312. #. TRANSLATORS: one single character to represent 'name' sort mode
  2313. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2314. msgid "sort|n"
  2315. msgstr "n"
  2316. msgid "&Name"
  2317. msgstr "&Nome"
  2318. #. TRANSLATORS: one single character to represent 'version' sort mode
  2319. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2320. msgid "sort|v"
  2321. msgstr "v"
  2322. msgid "&Version"
  2323. msgstr "&Versione"
  2324. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2325. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2326. msgid "sort|e"
  2327. msgstr "e"
  2328. msgid "&Extension"
  2329. msgstr "&Estensione"
  2330. #. TRANSLATORS: one single character to represent 'size' sort mode
  2331. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2332. msgid "sort|s"
  2333. msgstr "d"
  2334. msgid "&Size"
  2335. msgstr "&Dimensione"
  2336. msgid "Block Size"
  2337. msgstr "Dimensione blocco"
  2338. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2339. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2340. msgid "sort|m"
  2341. msgstr "m"
  2342. msgid "&Modify time"
  2343. msgstr "Data di &modifica"
  2344. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2345. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2346. msgid "sort|a"
  2347. msgstr "a"
  2348. msgid "&Access time"
  2349. msgstr "Data di access&o"
  2350. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2351. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2352. msgid "sort|h"
  2353. msgstr "c"
  2354. msgid "C&hange time"
  2355. msgstr "Data &cambiamento"
  2356. msgid "Perm"
  2357. msgstr "Perm"
  2358. msgid "Nl"
  2359. msgstr "Nl"
  2360. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2361. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2362. msgid "sort|i"
  2363. msgstr "i"
  2364. msgid "&Inode"
  2365. msgstr "&Inode"
  2366. msgid "UID"
  2367. msgstr "UID"
  2368. msgid "GID"
  2369. msgstr "GID"
  2370. msgid "Owner"
  2371. msgstr "Proprietario"
  2372. msgid "Group"
  2373. msgstr "Gruppo"
  2374. msgid "[dev]"
  2375. msgstr "[dis]"
  2376. msgid "UP--DIR"
  2377. msgstr "UP--DIR"
  2378. msgid "SYMLINK"
  2379. msgstr "SYMLINK"
  2380. msgid "SUB-DIR"
  2381. msgstr "SUB-DIR"
  2382. msgid "<readlink failed>"
  2383. msgstr "<readlink fallito>"
  2384. #, c-format
  2385. msgid "%s byte"
  2386. msgid_plural "%s bytes"
  2387. msgstr[0] "%s byte"
  2388. msgstr[1] "%s byte"
  2389. #, c-format
  2390. msgid "%s in %d file"
  2391. msgid_plural "%s in %d files"
  2392. msgstr[0] " %s byte in %d file"
  2393. msgstr[1] " %s byte in %d file"
  2394. msgid "Panelize"
  2395. msgstr "Pannellizza"
  2396. msgid "Unknown tag on display format:"
  2397. msgstr "Codice sconosciuto per tale formato:"
  2398. msgid "Do you really want to execute?"
  2399. msgstr "Vuoi veramente eseguirlo?"
  2400. msgid "User supplied format looks invalid, reverting to default."
  2401. msgstr "Il formato utente fornito è errato, uso il default."
  2402. msgid "&Add new"
  2403. msgstr "Aggiungi &nuovo"
  2404. msgid "External panelize"
  2405. msgstr "Pannello esterno"
  2406. msgid "Command"
  2407. msgstr "Comando"
  2408. msgid "Other command"
  2409. msgstr "Altro comando"
  2410. msgid "Add to external panelize"
  2411. msgstr "Aggiungi al pannello esterno"
  2412. msgid "Enter command label:"
  2413. msgstr "Etichetta per il comando:"
  2414. msgid "Cannot invoke command."
  2415. msgstr "Impossibile eseguire comando."
  2416. msgid "Pipe close failed"
  2417. msgstr "Chiusura pipe fallita"
  2418. msgid "Cannot run external panelize in a non-local directory"
  2419. msgstr "Impossibile eseguire il pannello esterno su directory non-locali"
  2420. msgid "Modified git files"
  2421. msgstr "File git modificati"
  2422. msgid "Find rejects after patching"
  2423. msgstr "Trova respinti dopo il patching"
  2424. msgid "Find *.orig after patching"
  2425. msgstr "Trova *.orig dopo il patching"
  2426. msgid "Find SUID and SGID programs"
  2427. msgstr "Trova programmi con settaggio SUID e SGID"
  2428. #, c-format
  2429. msgid ""
  2430. "Cannot open the %s file for writing:\n"
  2431. "%s\n"
  2432. msgstr ""
  2433. "Non posso aprire il file `%s' in scrittura:\n"
  2434. "%s\n"
  2435. #, c-format
  2436. msgid "Copy \"%s\" directory to:"
  2437. msgstr "Copia la directory `%s' su:"
  2438. #, c-format
  2439. msgid "Move \"%s\" directory to:"
  2440. msgstr "Muovi la directory `%s' su:"
  2441. #, c-format
  2442. msgid ""
  2443. "Cannot stat the destination\n"
  2444. "%s"
  2445. msgstr ""
  2446. "Impossibile ottenere info sulla destinazione\n"
  2447. "%s"
  2448. #, c-format
  2449. msgid "Delete %s?"
  2450. msgstr "Elimino %s?"
  2451. msgid "ButtonBar|Static"
  2452. msgstr "Statica"
  2453. msgid "ButtonBar|Dynamc"
  2454. msgstr "Dinamica"
  2455. msgid "ButtonBar|Rescan"
  2456. msgstr "Riscansiona"
  2457. msgid "ButtonBar|Forget"
  2458. msgstr "Dimentica"
  2459. msgid "ButtonBar|Rmdir"
  2460. msgstr "Rmdir"
  2461. #, c-format
  2462. msgid ""
  2463. "Cannot write to the %s file:\n"
  2464. "%s\n"
  2465. msgstr ""
  2466. "Non posso scrivere sul file `%s':\n"
  2467. "%s\n"
  2468. msgid "Debug"
  2469. msgstr "Debug"
  2470. msgid "ERROR:"
  2471. msgstr "ERRORE:"
  2472. msgid "True:"
  2473. msgstr "Vero:"
  2474. msgid "False:"
  2475. msgstr "Falso:"
  2476. msgid "Error calling program"
  2477. msgstr "Errore durante la chiamata del programma:"
  2478. msgid "Warning -- ignoring file"
  2479. msgstr "Attenzione -- file ignorato"
  2480. #, c-format
  2481. msgid ""
  2482. "File %s is not owned by root or you or is world writable.\n"
  2483. "Using it may compromise your security"
  2484. msgstr ""
  2485. " Il file `%s' non appartiene a root o a Voi o è scrivibile da tutti\n"
  2486. " Il suo uso potrebbe compromettere la Vostra sicurezza."
  2487. msgid "Format error on file Extensions File"
  2488. msgstr "Errore formato nel file estensioni"
  2489. #, c-format
  2490. msgid "The %%var macro has no default"
  2491. msgstr "La macro %%var non ha valore predefinito"
  2492. #, c-format
  2493. msgid "The %%var macro has no variable"
  2494. msgstr "Le macro %%var non ha variabile"
  2495. #, c-format
  2496. msgid ""
  2497. "Cannot open file%s\n"
  2498. "%s"
  2499. msgstr ""
  2500. "Impossibile aprire il file %s\n"
  2501. "%s"
  2502. #, c-format
  2503. msgid "No suitable entries found in %s"
  2504. msgstr "Non trovo voci appropriate in %s"
  2505. msgid "User menu"
  2506. msgstr "Menu utente"
  2507. msgid "Help file format error\n"
  2508. msgstr "Errore nel formato file della guida\n"
  2509. msgid "Internal bug: Double start of link area"
  2510. msgstr "Errore interno: doppio inizio di area collegamento"
  2511. #, c-format
  2512. msgid "Cannot find node %s in help file"
  2513. msgstr "Non trovo il nodo %s nel file d'aiuto"
  2514. msgid "Help"
  2515. msgstr "Aiuto"
  2516. msgid "ButtonBar|Index"
  2517. msgstr "Indice"
  2518. msgid "ButtonBar|Prev"
  2519. msgstr "Prec"
  2520. msgid "Learn keys"
  2521. msgstr "Impara tasti"
  2522. msgid "Teach me a key"
  2523. msgstr "Impara un tasto"
  2524. #, c-format
  2525. msgid ""
  2526. "Please press the %s\n"
  2527. "and then wait until this message disappears.\n"
  2528. "\n"
  2529. "Then, press it again to see if OK appears\n"
  2530. "next to its button.\n"
  2531. "\n"
  2532. "If you want to escape, press a single Escape key\n"
  2533. "and wait as well."
  2534. msgstr ""
  2535. "Premi il tasto %s\n"
  2536. "e attendi finchè questo messaggio sparisce.\n"
  2537. "\n"
  2538. "Poi, premi nuovamente il tasto e controlla se la scritta \"OK\" appare\n"
  2539. "dopo il testo riguardante il tasto stesso \n"
  2540. "\n"
  2541. "Se vuoi uscire, premi il tasto ESC una volta\n"
  2542. "e attendi."
  2543. msgid "Cannot accept this key"
  2544. msgstr "Impossibile accettare questo tasto"
  2545. #, c-format
  2546. msgid "You have entered \"%s\""
  2547. msgstr "Hai inserito \"%s\""
  2548. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2549. msgid "OK"
  2550. msgstr "OK"
  2551. msgid ""
  2552. "It seems that all your keys already\n"
  2553. "work fine. That's great."
  2554. msgstr ""
  2555. "Pare che tutti i tasti siano già \n"
  2556. "configurati correttamente. Ottimo!"
  2557. msgid "&Discard"
  2558. msgstr "&Annulla"
  2559. msgid ""
  2560. "Great! You have a complete terminal database!\n"
  2561. "All your keys work well."
  2562. msgstr ""
  2563. "Meraviglioso! Hai un database dei terminali completo\n"
  2564. "Tutti i tasti sono configurati e funzionano correttamente."
  2565. msgid "Press all the keys mentioned here. After you have done it, check"
  2566. msgstr "Premere tutti i tasti riportati. Una volta fatto, controllare"
  2567. msgid "which keys are not marked with OK. Press space on the missing"
  2568. msgstr "quali tasti non sono OK. Premere la barra spazio sui tasti"
  2569. msgid "key, or click with the mouse to define it. Move around with Tab."
  2570. msgstr "mancanti, o usare il mouse per ridefinirli. Spostarsi con il Tab."
  2571. #, c-format
  2572. msgid ""
  2573. "Failed to run:\n"
  2574. "%s\n"
  2575. msgstr ""
  2576. "Esecuzione fallita:\n"
  2577. "%s\n"
  2578. msgid "Home directory path is not absolute"
  2579. msgstr "Il percorso della directory home non è assoluto"
  2580. #, c-format
  2581. msgid ""
  2582. "\n"
  2583. "Failed while close:\n"
  2584. "%s\n"
  2585. msgstr ""
  2586. "\n"
  2587. "Fallita la chiusura:\n"
  2588. "%s\n"
  2589. msgid "Choose codepage"
  2590. msgstr "Scegli la codepage"
  2591. msgid "- < No translation >"
  2592. msgstr "- < Non tradotto >"
  2593. msgid "%b %e %Y"
  2594. msgstr "%b %e %Y"
  2595. msgid "%b %e %H:%M"
  2596. msgstr "%b %e %H:%M"
  2597. #, c-format
  2598. msgid ""
  2599. "Cannot save file %s:\n"
  2600. "%s"
  2601. msgstr ""
  2602. " Impossibile salvare il file %s:\n"
  2603. "%s"
  2604. msgid ""
  2605. "GNU Midnight Commander is already\n"
  2606. "running on this terminal.\n"
  2607. "Subshell support will be disabled."
  2608. msgstr ""
  2609. "GNU Midnight Commander è già in funzione su\n"
  2610. "questo terminale.\n"
  2611. "Il supporto alla subshell verrà disabilitato."
  2612. #, c-format
  2613. msgid "Cannot open named pipe %s\n"
  2614. msgstr "Non posso aprire la pipe %s\n"
  2615. msgid "The shell is still active. Quit anyway?"
  2616. msgstr "La shell è ancora attiva. Esco comunque?"
  2617. #, c-format
  2618. msgid "Warning: Cannot change to %s.\n"
  2619. msgstr "Attenzione: non posso entrare su %s.\n"
  2620. msgid "Using the S-Lang library with terminfo database\n"
  2621. msgstr "Uso della libreria S-Lang con il database terminfo\n"
  2622. msgid "Using the ncurses library\n"
  2623. msgstr "Uso della libreria ncurses\n"
  2624. msgid "Using the ncursesw library\n"
  2625. msgstr "Uso della libreria ncursesw\n"
  2626. msgid "With builtin Editor\n"
  2627. msgstr "Con editor integrato\n"
  2628. msgid "With optional subshell support\n"
  2629. msgstr "Con supporto opzionale subshell\n"
  2630. msgid "With subshell support as default\n"
  2631. msgstr "Con supporto subshell predefinito\n"
  2632. msgid "With support for background operations\n"
  2633. msgstr "Con supporto per processi in background\n"
  2634. msgid "With mouse support on xterm and Linux console\n"
  2635. msgstr "Con supporto del mouse in xterm e in console Linux\n"
  2636. msgid "With mouse support on xterm\n"
  2637. msgstr "Con supporto del mouse in xterm\n"
  2638. msgid "With support for X11 events\n"
  2639. msgstr "Con supporto per eventi X11\n"
  2640. msgid "With internationalization support\n"
  2641. msgstr "Con supporto internazionale\n"
  2642. msgid "With multiple codepages support\n"
  2643. msgstr "Con supporto codepages multiple\n"
  2644. #, c-format
  2645. msgid "Built with GLib %d.%d.%d\n"
  2646. msgstr "Creato con GLib %d.%d.%d\n"
  2647. #, c-format
  2648. msgid "Virtual File Systems:"
  2649. msgstr "File System Virtuali:"
  2650. #, c-format
  2651. msgid "Data types:"
  2652. msgstr "Tipo dati:"
  2653. msgid "Root directory:"
  2654. msgstr "Directory radice:"
  2655. msgid "System data"
  2656. msgstr "Dati di sistema"
  2657. msgid "Config directory:"
  2658. msgstr "Directory di configurazione:"
  2659. msgid "Data directory:"
  2660. msgstr "Directory dei dati:"
  2661. msgid "VFS plugins and scripts:"
  2662. msgstr "Plugin e script VFS:"
  2663. msgid "User data"
  2664. msgstr "Dati utente"
  2665. msgid "Cache directory:"
  2666. msgstr "Directory della cache:"
  2667. #, c-format
  2668. msgid ""
  2669. "Cannot open cpio archive\n"
  2670. "%s"
  2671. msgstr ""
  2672. "Non posso aprire l'archivio cpio\n"
  2673. "%s"
  2674. #, c-format
  2675. msgid ""
  2676. "Premature end of cpio archive\n"
  2677. "%s"
  2678. msgstr ""
  2679. "Fine prematura di un archivio cpio\n"
  2680. "%s"
  2681. #, c-format
  2682. msgid ""
  2683. "Inconsistent hardlinks of\n"
  2684. "%s\n"
  2685. "in cpio archive\n"
  2686. "%s"
  2687. msgstr ""
  2688. "Collegamenti fisici inconsistenti di\n"
  2689. "%s\n"
  2690. "in archivio cpio\n"
  2691. "%s"
  2692. #, c-format
  2693. msgid "%s contains duplicate entries! Skipping!"
  2694. msgstr "%s contiene voci duplicate! Saltato!"
  2695. #, c-format
  2696. msgid ""
  2697. "Corrupted cpio header encountered in\n"
  2698. "%s"
  2699. msgstr ""
  2700. "Trovata intestazione cpio rovinata in\n"
  2701. "%s"
  2702. #, c-format
  2703. msgid ""
  2704. "Unexpected end of file\n"
  2705. "%s"
  2706. msgstr ""
  2707. "Inattesa fine del file\n"
  2708. "%s"
  2709. #, c-format
  2710. msgid ""
  2711. "Cannot open %s archive\n"
  2712. "%s"
  2713. msgstr ""
  2714. "Non posso aprire l'archivio %s\n"
  2715. "%s"
  2716. msgid "Inconsistent extfs archive"
  2717. msgstr "Archivio extfs inconsistente"
  2718. #, c-format
  2719. msgid "Warning: cannot open %s directory\n"
  2720. msgstr "Attenzione: impossibile aprire la directory %s\n"
  2721. #, c-format
  2722. msgid "fish: Disconnecting from %s"
  2723. msgstr "fish: disconnessione da %s"
  2724. msgid "fish: Waiting for initial line..."
  2725. msgstr "fish: attesa riga iniziale..."
  2726. msgid "Sorry, we cannot do password authenticated connections for now."
  2727. msgstr "Spiacente, non posso fare connessioni autenticate per adesso."
  2728. #, c-format
  2729. msgid "fish: Password is required for %s"
  2730. msgstr "fish: password richiesta per %s"
  2731. msgid "fish: Sending password..."
  2732. msgstr "fish: spedizione password..."
  2733. msgid "fish: Sending initial line..."
  2734. msgstr "fish: spedizione riga iniziale..."
  2735. msgid "fish: Handshaking version..."
  2736. msgstr "fish: versione handshaking..."
  2737. msgid "fish: Getting host info..."
  2738. msgstr "fish: ricezione info host..."
  2739. #, c-format
  2740. msgid "fish: Reading directory %s..."
  2741. msgstr "fish: lettura directory FTP %s..."
  2742. #, c-format
  2743. msgid "%s: done."
  2744. msgstr "%s: fatto."
  2745. #, c-format
  2746. msgid "%s: failure"
  2747. msgstr "%s: errore"
  2748. #, c-format
  2749. msgid "fish: store %s: sending command..."
  2750. msgstr "fish: memorizza %s: spedizione comando..."
  2751. msgid "fish: Local read failed, sending zeros"
  2752. msgstr "fish: lettura locale fallita, spedizione zeri"
  2753. msgid "fish: storing zeros"
  2754. msgstr "fish: memorizzazione zeri"
  2755. msgid "fish: storing file"
  2756. msgstr "fish: memorizzazione file"
  2757. msgid "Aborting transfer..."
  2758. msgstr "Interruzione trasferimento..."
  2759. msgid "Error reported after abort."
  2760. msgstr "Errori dopo l'interruzione."
  2761. msgid "Aborted transfer would be successful."
  2762. msgstr "L'interruzione trasferimento sarebbe riuscita."
  2763. #, c-format
  2764. msgid "ftpfs: Disconnecting from %s"
  2765. msgstr "ftpfs: disconnessione da %s"
  2766. #, c-format
  2767. msgid "FTP: Password required for %s"
  2768. msgstr " FTP: password richiesta per %s"
  2769. msgid "ftpfs: sending login name"
  2770. msgstr "ftpfs: spedizione nome utente"
  2771. msgid "ftpfs: sending user password"
  2772. msgstr "ftpfs: spedizione password utente"
  2773. #, c-format
  2774. msgid "FTP: Account required for user %s"
  2775. msgstr "FTP: si richiede un account per l'utente %s"
  2776. msgid "Account:"
  2777. msgstr "Account:"
  2778. msgid "ftpfs: sending user account"
  2779. msgstr "ftpfs: spedizione account utente"
  2780. msgid "ftpfs: logged in"
  2781. msgstr "ftpfs: connessione effettuata"
  2782. #, c-format
  2783. msgid "ftpfs: Login incorrect for user %s "
  2784. msgstr "ftpfs: login errato per utente %s "
  2785. msgid "ftpfs: Invalid host name."
  2786. msgstr "ftpfs: nome host non valido."
  2787. #, c-format
  2788. msgid "ftpfs: %s"
  2789. msgstr "ftpfs: %s"
  2790. #, c-format
  2791. msgid "ftpfs: making connection to %s"
  2792. msgstr "ftpfs: mi sto connettendo a %s"
  2793. msgid "ftpfs: connection interrupted by user"
  2794. msgstr "ftpfs: connessione interrotta dall'utente"
  2795. #, c-format
  2796. msgid "ftpfs: connection to server failed: %s"
  2797. msgstr "ftpfs: connessione al server fallita: %s"
  2798. #, c-format
  2799. msgid "Waiting to retry... %d (Control-G to cancel)"
  2800. msgstr "In attesa di risposta... %d (Ctrl-G per annullare)"
  2801. msgid "ftpfs: invalid address family"
  2802. msgstr "ftpfs: famiglia di indirizzi non valida"
  2803. #, c-format
  2804. msgid "ftpfs: could not create socket: %s"
  2805. msgstr "ftpfs: impossibile creare il socket: %s"
  2806. msgid "ftpfs: could not setup passive mode"
  2807. msgstr "ftpfs: non è possibile impostare la modalità passiva"
  2808. msgid "ftpfs: aborting transfer."
  2809. msgstr "ftpfs: interruzione del trasferimento."
  2810. #, c-format
  2811. msgid "ftpfs: abort error: %s"
  2812. msgstr "ftpfs: errore di interruzione: %s"
  2813. msgid "ftpfs: abort failed"
  2814. msgstr "ftpfs: interruzione fallita"
  2815. msgid "ftpfs: CWD failed."
  2816. msgstr "ftpfs: CWD fallito."
  2817. msgid "ftpfs: couldn't resolve symlink"
  2818. msgstr "ftpfs: non posso risolvere i collegamenti simbolici"
  2819. msgid "Resolving symlink..."
  2820. msgstr "Sto risolvendo il collegamenti simbolici..."
  2821. #, c-format
  2822. msgid "ftpfs: Reading FTP directory %s... %s%s"
  2823. msgstr "ftpfs: lettura directory FTP %s... %s%s"
  2824. msgid "(strict rfc959)"
  2825. msgstr "(strettamente rfc959)"
  2826. msgid "(chdir first)"
  2827. msgstr "(antepone chdir)"
  2828. msgid "ftpfs: failed; nowhere to fallback to"
  2829. msgstr "ftpfs: fallito; non so dove rileggere"
  2830. msgid "ftpfs: storing file"
  2831. msgstr "ftpfs: memorizzazione file"
  2832. msgid ""
  2833. "~/.netrc file has incorrect mode\n"
  2834. "Remove password or correct mode"
  2835. msgstr ""
  2836. "il file ~/.netrc è impostato male.\n"
  2837. "Rimuovere la password o correggere i permessi."
  2838. #, c-format
  2839. msgid "%s: Warning: file %s not found\n"
  2840. msgstr "%s: Attenzione: file %s non trovato\n"
  2841. #, c-format
  2842. msgid ""
  2843. "Warning: Invalid line in %s:\n"
  2844. "%s\n"
  2845. msgstr ""
  2846. "Attenzione: riga non valida in %s:\n"
  2847. "%s\n"
  2848. #, c-format
  2849. msgid ""
  2850. "Warning: Invalid flag %c in %s:\n"
  2851. "%s\n"
  2852. msgstr ""
  2853. "Attenzione: flag %c non valida in %s:\n"
  2854. "%s\n"
  2855. #, c-format
  2856. msgid "reconnect to %s failed"
  2857. msgstr "riconnessione a %s fallita"
  2858. msgid "Authentication failed"
  2859. msgstr "Autenticazione fallita"
  2860. #, c-format
  2861. msgid "Error %s creating directory %s"
  2862. msgstr "Errore %s nella creazione directory %s"
  2863. #, c-format
  2864. msgid "Error %s removing directory %s"
  2865. msgstr "Errore %s nella rimozione directory %s"
  2866. #, c-format
  2867. msgid "%s opening remote file %s"
  2868. msgstr "%s durante l'apertura del file remoto %s"
  2869. #, c-format
  2870. msgid "%s removing remote file %s"
  2871. msgstr "%s durante la rimozione del file remoto %s"
  2872. #, c-format
  2873. msgid "%s renaming files\n"
  2874. msgstr "%s durante la rinomina file\n"
  2875. #, c-format
  2876. msgid ""
  2877. "Cannot open tar archive\n"
  2878. "%s"
  2879. msgstr ""
  2880. "Non posso aprire l'archivio tar\n"
  2881. "%s"
  2882. msgid "Inconsistent tar archive"
  2883. msgstr "Archivio tar inconsistente"
  2884. msgid "Unexpected EOF on archive file"
  2885. msgstr "Inatteso EOF in file archivio"
  2886. #, c-format
  2887. msgid ""
  2888. "%s\n"
  2889. "doesn't look like a tar archive."
  2890. msgstr ""
  2891. "%s\n"
  2892. "non sembra un archivio tar."
  2893. msgid "undelfs: error"
  2894. msgstr "undelfs: errore"
  2895. msgid "not enough memory"
  2896. msgstr "memoria insufficente"
  2897. msgid "while allocating block buffer"
  2898. msgstr "durante l'allocazione buffer blocchi"
  2899. #, c-format
  2900. msgid "open_inode_scan: %d"
  2901. msgstr "open_inode_scan: %d"
  2902. #, c-format
  2903. msgid "while starting inode scan %d"
  2904. msgstr "durante inizio scansione inode %d"
  2905. #, c-format
  2906. msgid "undelfs: loading deleted files information %d inodes"
  2907. msgstr "undelfs: caricamento informazioni file eliminati %d inode"
  2908. #, c-format
  2909. msgid "while calling ext2_block_iterate %d"
  2910. msgstr "durante la chiamata ext2_block_iterate %d"
  2911. msgid "no more memory while reallocating array"
  2912. msgstr "memoria esaurita durante riallocazione array"
  2913. #, c-format
  2914. msgid "while doing inode scan %d"
  2915. msgstr "durante scansione inode %d"
  2916. #, c-format
  2917. msgid "Cannot open file %s"
  2918. msgstr "Impossibile aprire il file %s"
  2919. msgid "undelfs: reading inode bitmap..."
  2920. msgstr "undelfs: lettura bitmap inode..."
  2921. #, c-format
  2922. msgid ""
  2923. "Cannot load inode bitmap from:\n"
  2924. "%s"
  2925. msgstr ""
  2926. "Impossibile caricare bitmap inode da:\n"
  2927. "%s"
  2928. msgid "undelfs: reading block bitmap..."
  2929. msgstr "undelfs: lettura bitmap blocchi..."
  2930. #, c-format
  2931. msgid ""
  2932. "Cannot load block bitmap from:\n"
  2933. "%s"
  2934. msgstr ""
  2935. "Impossibile caricare bitmap blocchi da:\n"
  2936. "%s"
  2937. msgid "vfs_info is not fs!"
  2938. msgstr "vfs_info non è un fs!"
  2939. msgid "You have to chdir to extract files first"
  2940. msgstr "Devi prima fare chdir per estrarre i file"
  2941. msgid "while iterating over blocks"
  2942. msgstr "durante l'iterazione sui blocchi"
  2943. #, c-format
  2944. msgid "Cannot open file \"%s\""
  2945. msgstr "Impossibile aprire il file \"%s\""
  2946. msgid "Ext2lib error"
  2947. msgstr "Errore ext2lib"
  2948. msgid "Invalid value"
  2949. msgstr "Valore non valido"
  2950. msgid "Cannot spawn child process"
  2951. msgstr "Impossibile spawn del processo figlio"
  2952. msgid "Empty output from child filter"
  2953. msgstr "Risultato vuoto da filtro figlio"
  2954. msgid "&Line number (decimal)"
  2955. msgstr "Numero di &linea (decimale)"
  2956. msgid "Pe&rcents"
  2957. msgstr "Pe%rcentuale"
  2958. msgid "&Decimal offset"
  2959. msgstr "Cifre &decimali"
  2960. msgid "He&xadecimal offset"
  2961. msgstr "Cifre e&sadecimali"
  2962. msgid "Goto"
  2963. msgstr "Vai a"
  2964. msgid "ButtonBar|Ascii"
  2965. msgstr "Testo"
  2966. msgid "ButtonBar|HxSrch"
  2967. msgstr "CercE"
  2968. msgid "ButtonBar|UnWrap"
  2969. msgstr "NoACapo"
  2970. msgid "ButtonBar|Wrap"
  2971. msgstr "ACapo"
  2972. msgid "ButtonBar|Hex"
  2973. msgstr "Esadec"
  2974. msgid "ButtonBar|Goto"
  2975. msgstr "Vai.."
  2976. msgid "ButtonBar|Raw"
  2977. msgstr "Normale"
  2978. msgid "ButtonBar|Parse"
  2979. msgstr "Filtrat"
  2980. msgid "ButtonBar|Unform"
  2981. msgstr "NonForm"
  2982. msgid "ButtonBar|Format"
  2983. msgstr "Formatt"
  2984. #, c-format
  2985. msgid ""
  2986. "Error while closing the file:\n"
  2987. "%s\n"
  2988. "Data may have been written or not"
  2989. msgstr ""
  2990. "Errore durante la chiusura del file:\n"
  2991. "%s\n"
  2992. "I dati potrebbero non essere stati scritti."
  2993. #, c-format
  2994. msgid ""
  2995. "Cannot save file:\n"
  2996. "%s"
  2997. msgstr ""
  2998. "Impossibile salvare il file:\n"
  2999. "%s"
  3000. msgid "View: "
  3001. msgstr "Mostra: "
  3002. #, c-format
  3003. msgid ""
  3004. "Cannot open \"%s\"\n"
  3005. "%s"
  3006. msgstr ""
  3007. "Impossibile aprire il file \"%s\"\n"
  3008. "%s"
  3009. msgid "Cannot view: not a regular file"
  3010. msgstr "Visualizzazione impossibile: non è un semplice file"
  3011. msgid "Seeking to search result"
  3012. msgstr "In fase di ricerca"
  3013. msgid "Search done"
  3014. msgstr "Ricerca conclusa"
  3015. msgid "Continue from beginning?"
  3016. msgstr "Continuare dall'inizio?"