it.po 84 KB

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