it.po 88 KB

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