it_IT.po 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the PACKAGE package.
  4. #
  5. # Translators:
  6. # <signupbox@om.it.eu.org>, 2011.
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: Midnight Commander\n"
  10. "Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
  11. "POT-Creation-Date: 2011-12-09 17:33+0300\n"
  12. "PO-Revision-Date: 2011-10-03 09:31+0000\n"
  13. "Last-Translator: slavazanko <slavazanko@gmail.com>\n"
  14. "Language-Team: Italian (Italy) (http://www.transifex.net/projects/p/mc/team/"
  15. "it_IT/)\n"
  16. "Language: it_IT\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 "Warning: cannot load codepages list"
  22. msgstr "Attenzione: impossibile caricare la lista delle codepage"
  23. msgid "7-bit ASCII"
  24. msgstr "ASCII a 7-bit"
  25. #, c-format
  26. msgid "Cannot translate from %s to %s"
  27. msgstr "Impossibile tradurre da %s a %s"
  28. #, c-format
  29. msgid ""
  30. "File \"%s\" is already being edited.\n"
  31. "User: %s\n"
  32. "Process ID: %d"
  33. msgstr ""
  34. "Il file \"%s\" viene già elaborato da:\n"
  35. "Utente: %s\n"
  36. "ID processo: %d"
  37. msgid "File locked"
  38. msgstr "File bloccato"
  39. msgid "&Grab lock"
  40. msgstr "&Elimina blocco"
  41. msgid "&Ignore lock"
  42. msgstr "&Ignora blocco"
  43. msgid "Search string not found"
  44. msgstr "Stringa di ricerca non trovata"
  45. msgid "Not implemented yet"
  46. msgstr "Non ancora implementato"
  47. msgid "Num of replace tokens not equal to num of found tokens"
  48. msgstr "Num. di token per sostituzione diverso dal num. di token trovati"
  49. #, c-format
  50. msgid "Invalid token number %d"
  51. msgstr "Numero di token %d non valido"
  52. msgid "Normal"
  53. msgstr "Normale"
  54. msgid "&Regular expression"
  55. msgstr "&Regular expression"
  56. msgid "Hexadecimal"
  57. msgstr "Esadecimale"
  58. msgid "Wildcard search"
  59. msgstr "Ricerca con caratteri jolly"
  60. #, c-format
  61. msgid ""
  62. "Unable to load '%s' skin.\n"
  63. "Default skin has been loaded"
  64. msgstr ""
  65. "Impossibile caricare il tema '%s'.\n"
  66. "Viene utilizzato quello predefinito"
  67. #, c-format
  68. msgid ""
  69. "Unable to parse '%s' skin.\n"
  70. "Default skin has been loaded"
  71. msgstr ""
  72. "Impossibile analizzare il tema '%s'.\n"
  73. "Viene caricato quello predefinito"
  74. msgid "Function key 1"
  75. msgstr "Tasto di funzione 1"
  76. msgid "Function key 2"
  77. msgstr "Funzione tasto 2"
  78. msgid "Function key 3"
  79. msgstr "Tasto di funzione 3"
  80. msgid "Function key 4"
  81. msgstr "Tasto di funzione 4"
  82. msgid "Function key 5"
  83. msgstr "Tasto di funzione 5"
  84. msgid "Function key 6"
  85. msgstr "Tasto di funzione 6"
  86. msgid "Function key 7"
  87. msgstr "Tasto di funzione 7"
  88. msgid "Function key 8"
  89. msgstr "Tasto di funzione 8"
  90. msgid "Function key 9"
  91. msgstr "Tasto di funzione 9"
  92. msgid "Function key 10"
  93. msgstr "Tasto di funzione 10"
  94. msgid "Function key 11"
  95. msgstr "Tasto di funzione 11"
  96. msgid "Function key 12"
  97. msgstr "Tasto di funzione 12"
  98. msgid "Function key 13"
  99. msgstr "Tasto di funzione 13"
  100. msgid "Function key 14"
  101. msgstr "Tasto di funzione 14"
  102. msgid "Function key 15"
  103. msgstr "Tasto di funzione 15"
  104. msgid "Function key 16"
  105. msgstr "Tasto di funzione 16"
  106. msgid "Function key 17"
  107. msgstr "Tasto di funzione 17"
  108. msgid "Function key 18"
  109. msgstr "Tasto di funzione 18"
  110. msgid "Function key 19"
  111. msgstr "Tasto di funzione 19"
  112. msgid "Function key 20"
  113. msgstr "Tasto di funzione 20"
  114. msgid "Backspace key"
  115. msgstr "Tasto Backspace"
  116. msgid "End key"
  117. msgstr "Tasto Fine"
  118. msgid "Up arrow key"
  119. msgstr "Tasto Sù"
  120. msgid "Down arrow key"
  121. msgstr "Giù"
  122. msgid "Left arrow key"
  123. msgstr "Tasto Sinistra"
  124. msgid "Right arrow key"
  125. msgstr "Tasto Destra"
  126. msgid "Home key"
  127. msgstr "Tasto Inizio"
  128. msgid "Page Down key"
  129. msgstr "Tasto Pagina giù"
  130. msgid "Page Up key"
  131. msgstr "Tasto Pagina sù"
  132. msgid "Insert key"
  133. msgstr "Tasto Ins"
  134. msgid "Delete key"
  135. msgstr "Tasto Canc"
  136. msgid "Completion/M-tab"
  137. msgstr "Tasto M-Tab"
  138. msgid "+ on keypad"
  139. msgstr "Tasto + su tastierino"
  140. msgid "- on keypad"
  141. msgstr "Tasto - su tastierino"
  142. msgid "Slash on keypad"
  143. msgstr "Tasto / su tastierino"
  144. msgid "* on keypad"
  145. msgstr "Tasto * su tastierino"
  146. msgid "Escape key"
  147. msgstr "Tasto Esc"
  148. msgid "Left arrow keypad"
  149. msgstr "Tasto Sinistra su tastierino"
  150. msgid "Right arrow keypad"
  151. msgstr "Tasto Destra su tastierino"
  152. msgid "Up arrow keypad"
  153. msgstr "Tasto Sù su tastierino"
  154. msgid "Down arrow keypad"
  155. msgstr "Tasto Giù su tastierino"
  156. msgid "Home on keypad"
  157. msgstr "Tasto Inizio su tastierino"
  158. msgid "End on keypad"
  159. msgstr "Tasto Fine su tastierino"
  160. msgid "Page Down keypad"
  161. msgstr "Tasto pag. giù su tastier."
  162. msgid "Page Up keypad"
  163. msgstr "Tasto pag. Sù su tastier."
  164. msgid "Insert on keypad"
  165. msgstr "Tasto Ins su tastierino"
  166. msgid "Delete on keypad"
  167. msgstr "Tasto Del su tastierino"
  168. msgid "Enter on keypad"
  169. msgstr "Tasto Invio su tastierino"
  170. msgid "Function key 21"
  171. msgstr "Tasto Funzione 21"
  172. msgid "Function key 22"
  173. msgstr "Tasto Funzione 22"
  174. msgid "Function key 23"
  175. msgstr "Tasto Funzione 23"
  176. msgid "Function key 24"
  177. msgstr "Tasto Funzione 24"
  178. msgid "A1 key"
  179. msgstr "Tasto A1"
  180. msgid "C1 key"
  181. msgstr "Tasto C1"
  182. msgid "Plus"
  183. msgstr "Più"
  184. msgid "Minus"
  185. msgstr "Meno"
  186. msgid "Asterisk"
  187. msgstr "Asterisco"
  188. msgid "Dot"
  189. msgstr "Punto"
  190. msgid "Less than"
  191. msgstr "Minore"
  192. msgid "Great than"
  193. msgstr "Maggiore"
  194. msgid "Equal"
  195. msgstr "Uguale"
  196. msgid "Comma"
  197. msgstr "Virgola"
  198. msgid "Apostrophe"
  199. msgstr "Apostrofo"
  200. msgid "Colon"
  201. msgstr "Punto"
  202. msgid "Exclamation mark"
  203. msgstr "Punto escl."
  204. msgid "Question mark"
  205. msgstr "Punto interr."
  206. msgid "Ampersand"
  207. msgstr "E commerciale"
  208. msgid "Dollar sign"
  209. msgstr "Dollaro"
  210. msgid "Quotation mark"
  211. msgstr "Virgolette"
  212. msgid "Caret"
  213. msgstr "Segno di omissione"
  214. msgid "Tilda"
  215. msgstr "Tilda"
  216. msgid "Prime"
  217. msgstr "Primo"
  218. msgid "Underline"
  219. msgstr "Sottolinea"
  220. msgid "Understrike"
  221. msgstr "Understrike"
  222. msgid "Pipe"
  223. msgstr "Linea verticale"
  224. msgid "Left parenthesis"
  225. msgstr "Parentesi aperta"
  226. msgid "Right parenthesis"
  227. msgstr "Parentesi chiusa"
  228. msgid "Left bracket"
  229. msgstr "Parent. quadra aperta"
  230. msgid "Right bracket"
  231. msgstr "Parentesi quadra chiusa"
  232. msgid "Left brace"
  233. msgstr "Parentesi graffa aperta"
  234. msgid "Right brace"
  235. msgstr "Parentesi graffa chiusa"
  236. msgid "Enter"
  237. msgstr "Invio"
  238. msgid "Tab key"
  239. msgstr "Tasto Tab"
  240. msgid "Space key"
  241. msgstr "Tasto Spazio"
  242. msgid "Slash key"
  243. msgstr "Tasto Barra"
  244. msgid "Backslash key"
  245. msgstr "Tasto Barra inv."
  246. msgid "Number sign #"
  247. msgstr "Cancelletto"
  248. #. TRANSLATORS: Please translate as in "at sign" (@).
  249. msgid "At sign"
  250. msgstr "Tasto Chiocciola"
  251. msgid "Ctrl"
  252. msgstr "Tasto Ctrl sin."
  253. msgid "Alt"
  254. msgstr "Tasto Alt sin."
  255. msgid "Shift"
  256. msgstr "Tasto Mai/minuscole"
  257. msgid "The TERM environment variable is unset!\n"
  258. msgstr ""
  259. #, c-format
  260. msgid ""
  261. "Screen size %dx%d is not supported.\n"
  262. "Check the TERM environment variable.\n"
  263. msgstr ""
  264. "Risoluzione schermo %d x %d non supportata. Controllare la variabile "
  265. "d'ambiente TERM.\n"
  266. #, c-format
  267. msgid "%s is not a directory\n"
  268. msgstr "%s non è una cartella\n"
  269. #, c-format
  270. msgid "Directory %s is not owned by you\n"
  271. msgstr "Non si è proprietari della cartella %s\n"
  272. #, c-format
  273. msgid "Cannot set correct permissions for directory %s\n"
  274. msgstr "Impossibile impostare le autorizzazioni corrette per la cartella %s\n"
  275. #, c-format
  276. msgid "Cannot create temporary directory %s: %s\n"
  277. msgstr "Impossibile creare la cartella temporanea %s: %s\n"
  278. #, c-format
  279. msgid "Temporary files will be created in %s\n"
  280. msgstr "I file temporanei verrano creati in %s\n"
  281. #, c-format
  282. msgid "Temporary files will not be created\n"
  283. msgstr "I file temporanei non verranno creati\n"
  284. #, c-format
  285. msgid "Press any key to continue..."
  286. msgstr "Premere un tasto per continuare ..."
  287. msgid "Warning"
  288. msgstr "Attenzione!"
  289. msgid "Pipe failed"
  290. msgstr "Pipe fallita"
  291. msgid "Dup failed"
  292. msgstr "Dup fallita"
  293. msgid "Error dup'ing old error pipe"
  294. msgstr "Errore applicando dup su una pipe d'errore"
  295. #, c-format
  296. msgid ""
  297. "Cannot open cpio archive\n"
  298. "%s"
  299. msgstr ""
  300. "Impossibile aprire archivio cpio\n"
  301. "%s"
  302. #, c-format
  303. msgid ""
  304. "Premature end of cpio archive\n"
  305. "%s"
  306. msgstr ""
  307. "Fine prematura dell'archivio cpio\n"
  308. "%s"
  309. #, c-format
  310. msgid ""
  311. "Inconsistent hardlinks of\n"
  312. "%s\n"
  313. "in cpio archive\n"
  314. "%s"
  315. msgstr ""
  316. "Hardlink incoerenti di\n"
  317. "%s\n"
  318. "nell'archivio cpio\n"
  319. "%s"
  320. #, c-format
  321. msgid "%s contains duplicate entries! Skipping!"
  322. msgstr "%s contiene voci duplicate! Saltare!"
  323. #, c-format
  324. msgid ""
  325. "Corrupted cpio header encountered in\n"
  326. "%s"
  327. msgstr ""
  328. "Rilevata intestazione cpio danneggiata in\n"
  329. "%s"
  330. #, c-format
  331. msgid ""
  332. "Unexpected end of file\n"
  333. "%s"
  334. msgstr ""
  335. #, c-format
  336. msgid "Directory cache expired for %s"
  337. msgstr ""
  338. msgid "bytes transferred"
  339. msgstr ""
  340. msgid "Starting linear transfer..."
  341. msgstr ""
  342. msgid "Getting file"
  343. msgstr ""
  344. #, c-format
  345. msgid ""
  346. "Cannot open %s archive\n"
  347. "%s"
  348. msgstr ""
  349. msgid "Inconsistent extfs archive"
  350. msgstr ""
  351. #, c-format
  352. msgid "Warning: cannot open %s directory\n"
  353. msgstr ""
  354. #, c-format
  355. msgid "fish: Disconnecting from %s"
  356. msgstr ""
  357. msgid "fish: Waiting for initial line..."
  358. msgstr ""
  359. msgid "Sorry, we cannot do password authenticated connections for now."
  360. msgstr ""
  361. #, c-format
  362. msgid "fish: Password is required for %s"
  363. msgstr ""
  364. msgid "fish: Sending password..."
  365. msgstr ""
  366. msgid "fish: Sending initial line..."
  367. msgstr ""
  368. msgid "fish: Handshaking version..."
  369. msgstr ""
  370. msgid "fish: Getting host info..."
  371. msgstr ""
  372. msgid "fish: Setting up current directory..."
  373. msgstr ""
  374. #, c-format
  375. msgid "fish: Connected, home %s."
  376. msgstr ""
  377. #, c-format
  378. msgid "fish: Reading directory %s..."
  379. msgstr ""
  380. #, c-format
  381. msgid "%s: done."
  382. msgstr ""
  383. #, c-format
  384. msgid "%s: failure"
  385. msgstr ""
  386. #, c-format
  387. msgid "fish: store %s: sending command..."
  388. msgstr ""
  389. msgid "fish: Local read failed, sending zeros"
  390. msgstr ""
  391. msgid "fish: storing zeros"
  392. msgstr ""
  393. msgid "fish: storing file"
  394. msgstr ""
  395. msgid "Aborting transfer..."
  396. msgstr ""
  397. msgid "Error reported after abort."
  398. msgstr ""
  399. msgid "Aborted transfer would be successful."
  400. msgstr ""
  401. #, c-format
  402. msgid "ftpfs: Disconnecting from %s"
  403. msgstr ""
  404. #, c-format
  405. msgid "FTP: Password required for %s"
  406. msgstr ""
  407. msgid "ftpfs: sending login name"
  408. msgstr ""
  409. msgid "ftpfs: sending user password"
  410. msgstr ""
  411. #, c-format
  412. msgid "FTP: Account required for user %s"
  413. msgstr ""
  414. msgid "Account:"
  415. msgstr ""
  416. msgid "ftpfs: sending user account"
  417. msgstr ""
  418. msgid "ftpfs: logged in"
  419. msgstr ""
  420. #, c-format
  421. msgid "ftpfs: Login incorrect for user %s "
  422. msgstr ""
  423. msgid "ftpfs: Invalid host name."
  424. msgstr ""
  425. #, c-format
  426. msgid "ftpfs: %s"
  427. msgstr ""
  428. #, c-format
  429. msgid "ftpfs: making connection to %s"
  430. msgstr ""
  431. msgid "ftpfs: connection interrupted by user"
  432. msgstr ""
  433. #, c-format
  434. msgid "ftpfs: connection to server failed: %s"
  435. msgstr ""
  436. #, c-format
  437. msgid "Waiting to retry... %d (Control-C to cancel)"
  438. msgstr ""
  439. msgid "ftpfs: invalid address family"
  440. msgstr ""
  441. #, c-format
  442. msgid "ftpfs: could not create socket: %s"
  443. msgstr ""
  444. msgid "ftpfs: could not setup passive mode"
  445. msgstr ""
  446. msgid "ftpfs: aborting transfer."
  447. msgstr ""
  448. #, c-format
  449. msgid "ftpfs: abort error: %s"
  450. msgstr ""
  451. msgid "ftpfs: abort failed"
  452. msgstr ""
  453. msgid "ftpfs: CWD failed."
  454. msgstr ""
  455. msgid "ftpfs: couldn't resolve symlink"
  456. msgstr ""
  457. msgid "Resolving symlink..."
  458. msgstr ""
  459. #, c-format
  460. msgid "ftpfs: Reading FTP directory %s... %s%s"
  461. msgstr ""
  462. msgid "(strict rfc959)"
  463. msgstr ""
  464. msgid "(chdir first)"
  465. msgstr ""
  466. msgid "ftpfs: failed; nowhere to fallback to"
  467. msgstr ""
  468. msgid "ftpfs: storing file"
  469. msgstr ""
  470. msgid ""
  471. "~/.netrc file has incorrect mode\n"
  472. "Remove password or correct mode"
  473. msgstr ""
  474. msgid "Cannot parse:"
  475. msgstr "Impossibile analizzare:"
  476. msgid "More parsing errors will be ignored."
  477. msgstr "Ulteriori errori di analisi verranno ignorati."
  478. #, c-format
  479. msgid "Warning: file %s not found\n"
  480. msgstr ""
  481. #, c-format
  482. msgid ""
  483. "Warning: Invalid line in %s:\n"
  484. "%s\n"
  485. msgstr ""
  486. #, c-format
  487. msgid ""
  488. "Warning: Invalid flag %c in %s:\n"
  489. "%s\n"
  490. msgstr ""
  491. #, c-format
  492. msgid "reconnect to %s failed"
  493. msgstr ""
  494. msgid "Authentication failed"
  495. msgstr ""
  496. #, c-format
  497. msgid "Error %s creating directory %s"
  498. msgstr ""
  499. #, c-format
  500. msgid "Error %s removing directory %s"
  501. msgstr ""
  502. #, c-format
  503. msgid "%s opening remote file %s"
  504. msgstr ""
  505. #, c-format
  506. msgid "%s removing remote file %s"
  507. msgstr ""
  508. #, c-format
  509. msgid "%s renaming files\n"
  510. msgstr ""
  511. #, c-format
  512. msgid ""
  513. "Cannot open tar archive\n"
  514. "%s"
  515. msgstr ""
  516. msgid "Inconsistent tar archive"
  517. msgstr ""
  518. msgid "Unexpected EOF on archive file"
  519. msgstr ""
  520. #, c-format
  521. msgid ""
  522. "%s\n"
  523. "doesn't look like a tar archive."
  524. msgstr ""
  525. msgid "undelfs: error"
  526. msgstr ""
  527. msgid "not enough memory"
  528. msgstr ""
  529. msgid "while allocating block buffer"
  530. msgstr ""
  531. #, c-format
  532. msgid "open_inode_scan: %d"
  533. msgstr ""
  534. #, c-format
  535. msgid "while starting inode scan %d"
  536. msgstr ""
  537. #, c-format
  538. msgid "undelfs: loading deleted files information %d inodes"
  539. msgstr ""
  540. #, c-format
  541. msgid "while calling ext2_block_iterate %d"
  542. msgstr "%d durante la chiamata di ext2_block_iterate"
  543. msgid "no more memory while reallocating array"
  544. msgstr "memoria esaurita riallocando un array"
  545. #, c-format
  546. msgid "while doing inode scan %d"
  547. msgstr "%d durante la scansione di un inode"
  548. #, c-format
  549. msgid "Cannot open file %s"
  550. msgstr "Impossibile aprire il file %s"
  551. msgid "undelfs: reading inode bitmap..."
  552. msgstr "undelfs: leggendo inode bitmap ..."
  553. #, c-format
  554. msgid ""
  555. "Cannot load inode bitmap from:\n"
  556. "%s"
  557. msgstr ""
  558. "Impossibile caricare bitmap inode da:\n"
  559. "%s"
  560. msgid "undelfs: reading block bitmap..."
  561. msgstr "undelfs: leggendo blocco bitmap ..."
  562. #, c-format
  563. msgid ""
  564. "Cannot load block bitmap from:\n"
  565. "%s"
  566. msgstr ""
  567. "Impossibile caricare blocco bitmap da:\n"
  568. "%s"
  569. msgid "vfs_info is not fs!"
  570. msgstr "vfs_info non è fs!"
  571. msgid "You have to chdir to extract files first"
  572. msgstr "Occorre eseguire chdir prima di estrarre i file"
  573. msgid "while iterating over blocks"
  574. msgstr "mentre sto iterando sui blocchi"
  575. #, c-format
  576. msgid "Cannot open file \"%s\""
  577. msgstr "Impossibile aprire il file \"%s\""
  578. msgid "Ext2lib error"
  579. msgstr "Errore Ext2lib"
  580. msgid "Internal error:"
  581. msgstr "Errore interno:"
  582. msgid "Password:"
  583. msgstr "Password:"
  584. msgid "Changes to file lost"
  585. msgstr "Modifiche a file perse"
  586. msgid "Screens"
  587. msgstr "Schermi"
  588. msgid "History"
  589. msgstr "Cronologia"
  590. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  591. msgid "DialogTitle|History cleanup"
  592. msgstr "Cancellazione cronologia"
  593. msgid "Do you want clean this history?"
  594. msgstr "Si vuole cancellare la cronologia?"
  595. msgid "&Yes"
  596. msgstr "&Si"
  597. msgid "&No"
  598. msgstr "&No"
  599. msgid "Background process:"
  600. msgstr "Processi in background:"
  601. msgid "&Cancel"
  602. msgstr "&Cancella"
  603. msgid "&OK"
  604. msgstr "&OK"
  605. msgid "Error"
  606. msgstr "Errore"
  607. msgid "Displays the current version"
  608. msgstr "Visualizza la versione corrente"
  609. msgid "Print data directory"
  610. msgstr "Stampa dati della cartella"
  611. msgid "Print last working directory to specified file"
  612. msgstr "Stampa ultima cartella di lavoro nel file specificato"
  613. msgid "Enables subshell support (default)"
  614. msgstr "Abilita il supporto subshell (predefinito)"
  615. msgid "Disables subshell support"
  616. msgstr "Disabilita supporto subshell"
  617. msgid "Log ftp dialog to specified file"
  618. msgstr "Registrare nel file specificato il dialogo ftp"
  619. msgid "Set debug level"
  620. msgstr "Impostare il livello di debug"
  621. msgid "Launches the file viewer on a file"
  622. msgstr "Visualizzare un file"
  623. msgid "Edits one file"
  624. msgstr "Edita un file"
  625. msgid "Forces xterm features"
  626. msgstr "Forza caratteristiche xterm"
  627. msgid "Tries to use an old highlight mouse tracking"
  628. msgstr ""
  629. msgid "Disable mouse support in text version"
  630. msgstr "Disabilita il supporto del mouse nella versione testo"
  631. msgid "Tries to use termcap instead of terminfo"
  632. msgstr "Cerca di usare termcap invece di terminfo"
  633. msgid "To run on slow terminals"
  634. msgstr "Per eseguire su terminali lenti"
  635. msgid "Use stickchars to draw"
  636. msgstr "Usa stickchars per disegnare"
  637. msgid "Resets soft keys on HP terminals"
  638. msgstr "Resetta i tasti soft su terminali HP"
  639. msgid "Load definitions of key bindings from specified file"
  640. msgstr "Carico definizioni dei tasti da file specificato"
  641. msgid "Requests to run in black and white"
  642. msgstr "Richiesta per l'esecuzione in bianco e nero"
  643. msgid "Request to run in color mode"
  644. msgstr "Richiesta per l'esecuzione in modalità a colori"
  645. msgid "Specifies a color configuration"
  646. msgstr "Specifica una configurazione di colori"
  647. msgid "Show mc with specified skin"
  648. msgstr "Mostra mc con il tema specificato"
  649. #. TRANSLATORS: don't translate keywords
  650. msgid ""
  651. "--colors KEYWORD={FORE},{BACK}\n"
  652. "\n"
  653. "{FORE} and {BACK} can be omitted, and the default will be used\n"
  654. "\n"
  655. " Keywords:\n"
  656. " Global: errors, disabled, reverse, gauge, header\n"
  657. " input, inputmark, inputunchanged, commandlinemark\n"
  658. " bbarhotkey, bbarbutton, statusbar\n"
  659. " File display: normal, selected, marked, markselect\n"
  660. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  661. " errdhotfocus\n"
  662. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  663. " Popup menus: pmenunormal, pmenusel, pmenutitle\n"
  664. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  665. " editlinestate\n"
  666. " Viewer: viewbold, viewunderline, viewselected\n"
  667. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  668. msgstr ""
  669. #. TRANSLATORS: don't translate color names
  670. msgid ""
  671. "Colors:\n"
  672. " black, gray, red, brightred, green, brightgreen, brown,\n"
  673. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  674. " brightcyan, lightgray and white\n"
  675. "\n"
  676. msgstr ""
  677. "Colori: black, gray, red, brightred, green, brightgreen, brown,⏎ \n"
  678. " yellow, blue, brightblue, magenta, brightmagenta, cyan,"
  679. "⏎ \n"
  680. " brightcyan, lightgray and white⏎\n"
  681. msgid "Color options"
  682. msgstr "Opzioni colore"
  683. msgid "+number"
  684. msgstr "+ Numero"
  685. msgid "[this_dir] [other_panel_dir]"
  686. msgstr "[Questa_cartella] [cartella_altro_pannello]"
  687. msgid "Set initial line number for the internal editor"
  688. msgstr "Impostare il numero di riga iniziale per l'editor interno"
  689. msgid ""
  690. "\n"
  691. "Please send any bug reports (including the output of `mc -V')\n"
  692. "as tickets at www.midnight-commander.org\n"
  693. msgstr ""
  694. "\n"
  695. "Si prega di inviare segnalazioni di malfunzionamenti (tra cui l'output di "
  696. "`mc-V ')\n"
  697. "come i ticket a www.midnight-commander.org\n"
  698. #, c-format
  699. msgid "GNU Midnight Commander %s\n"
  700. msgstr "GNU Midnight Commander %s\n"
  701. msgid "No arguments given to the viewer."
  702. msgstr "Non è stato fornito alcun argomento al visualizzatore."
  703. msgid "Two files are required to evoke the diffviewer."
  704. msgstr "Sono necessari due file per evocare la diffviewer."
  705. msgid "Main options"
  706. msgstr "Opzioni principali"
  707. msgid "Terminal options"
  708. msgstr "Opzioni terminale"
  709. msgid "Background process error"
  710. msgstr "Errore di un processo in background"
  711. msgid "Unknown error in child"
  712. msgstr "Errore sconosciuto in figlio"
  713. msgid "Child died unexpectedly"
  714. msgstr "Processo figlio arrestato inaspettatamente"
  715. msgid "Background protocol error"
  716. msgstr "Errore di protocollo in background"
  717. msgid "Reading failed"
  718. msgstr "Lettura fallito"
  719. msgid ""
  720. "Background process sent us a request for more arguments\n"
  721. "than we can handle."
  722. msgstr ""
  723. "Il processo di background ha inviato una richiesta con\n"
  724. "più argomenti di quanti possibile gestire."
  725. msgid "&Dismiss"
  726. msgstr "&Rinuncia"
  727. msgid "All charsets"
  728. msgstr "Tutti i set di caratteri"
  729. msgid "&Whole words"
  730. msgstr "&Parole intere"
  731. msgid "&Backwards"
  732. msgstr "&Indietro"
  733. msgid "Case &sensitive"
  734. msgstr "&MAI/minuscole"
  735. msgid "Enter search string:"
  736. msgstr "Inserire il testo da cercare:"
  737. msgid "Search"
  738. msgstr "Cercare"
  739. msgid "Search is disabled"
  740. msgstr "La ricerca è disabilitata"
  741. #, c-format
  742. msgid ""
  743. "Cannot create temporary diff file\n"
  744. "%s"
  745. msgstr ""
  746. "Impossibile creare il file temporaneo diff\n"
  747. "%s"
  748. #, c-format
  749. msgid ""
  750. "Cannot create backup file\n"
  751. "%s%s\n"
  752. "%s"
  753. msgstr ""
  754. "Impossibile creare il file di backup\n"
  755. "%s %s\n"
  756. "%s"
  757. #, c-format
  758. msgid ""
  759. "Cannot create temporary merge file\n"
  760. "%s"
  761. msgstr ""
  762. "Impossibile creare il file temporaneo di fusione\n"
  763. "%s"
  764. msgid "&Normal"
  765. msgstr "&Normale"
  766. msgid "&Fastest (Assume large files)"
  767. msgstr "&Più veloce (si assumono file di grandi dimensioni)"
  768. msgid "&Minimal (Find a smaller set of change)"
  769. msgstr "&Minimo (Trova un insieme più ridotto di modifiche)"
  770. msgid "Strip &trailing carriage return"
  771. msgstr "&Eliminare a capo in esubero"
  772. msgid "Ignore all &whitespace"
  773. msgstr "&Ignorare tutti gli spazi"
  774. msgid "Ignore &space change"
  775. msgstr "I&gnorare"
  776. msgid "Ignore tab &expansion"
  777. msgstr "Ig&norare espansione tabulatori"
  778. msgid "&Ignore case"
  779. msgstr "Ign&orare MAI/minuscolo"
  780. msgid "Diff extra options"
  781. msgstr "Opzioni addizionali di Diff"
  782. msgid "Diff algorithm"
  783. msgstr "Algoritmo Diff"
  784. msgid "Diff Options"
  785. msgstr "Opzioni Diff"
  786. msgid "Edit"
  787. msgstr "Editare"
  788. msgid "Edit is disabled"
  789. msgstr "Editare disattivato"
  790. msgid "Goto line (left)"
  791. msgstr "Cursore alla linea (a sinistra)"
  792. msgid "Goto line (right)"
  793. msgstr "Cursore alla linea (a destra)"
  794. msgid "Enter line:"
  795. msgstr "Immetere linea:"
  796. msgid "ButtonBar|Help"
  797. msgstr "Aiuto"
  798. msgid "ButtonBar|Save"
  799. msgstr "Salvare"
  800. msgid "ButtonBar|Edit"
  801. msgstr "Editare"
  802. msgid "ButtonBar|Merge"
  803. msgstr "Fondere"
  804. msgid "ButtonBar|Search"
  805. msgstr "Cercare"
  806. msgid "ButtonBar|Options"
  807. msgstr "Opzioni"
  808. msgid "ButtonBar|Quit"
  809. msgstr "Esci"
  810. msgid "Quit"
  811. msgstr "Esci"
  812. msgid "File was modified. Save with exit?"
  813. msgstr "Il file è stato modificato. Salvare e uscire?"
  814. msgid ""
  815. "Midnight Commander is being shut down.\n"
  816. "Save modified file?"
  817. msgstr ""
  818. "Il Midnight Commander è stato chiuso.\n"
  819. "Salvare il file modificato?"
  820. msgid "Diff:"
  821. msgstr "Diff:"
  822. msgid "Two files are needed to compare"
  823. msgstr "Sono necessari due file per il confronto"
  824. msgid "Choose syntax highlighting"
  825. msgstr "Scegli evidenziazione della sintassi"
  826. msgid "< Auto >"
  827. msgstr "<Autom.>"
  828. msgid "< Reload Current Syntax >"
  829. msgstr "<Ricarica la sintassi attuale>"
  830. msgid "About"
  831. msgstr "Circa"
  832. msgid ""
  833. "Copyright (C) 1996-2010 the Free Software Foundation\n"
  834. "\n"
  835. " A user friendly text editor\n"
  836. " written for the Midnight Commander"
  837. msgstr ""
  838. "Copyright (C) 1996-2010 the Free Software Foundation⏎\n"
  839. "\n"
  840. " A user friendly text editor\n"
  841. " written for the Midnight Commander"
  842. #, c-format
  843. msgid "Cannot open %s for reading"
  844. msgstr "Impossibile aprire %s in lettura"
  845. #, c-format
  846. msgid "Error reading %s"
  847. msgstr "Errore di lettura %s"
  848. #, c-format
  849. msgid "Cannot get size/permissions for %s"
  850. msgstr "Impossibile ottenere dimensioni/autorizzazioni per %s"
  851. #, c-format
  852. msgid "\"%s\" is not a regular file"
  853. msgstr "\"%s\" non è un file regolare"
  854. #, c-format
  855. msgid "File \"%s\" is too large"
  856. msgstr "Il file \"%s\" è troppo grande"
  857. msgid "Macro recursion is too deep"
  858. msgstr "La recorsivita' della macro è troppo profonda"
  859. #, c-format
  860. msgid "Error reading from pipe: %s"
  861. msgstr "Errore di lettura da pipe: %s"
  862. #, c-format
  863. msgid "Cannot open pipe for reading: %s"
  864. msgstr "Impossibile aprire la pipe per la lettura: %s"
  865. msgid "File has hard-links. Detach before saving?"
  866. msgstr "Il file è connesso a un hard-link. Disgiungere prima di salvare?"
  867. msgid "The file has been modified in the meantime. Save anyway?"
  868. msgstr "Il file, nel frattempo, è stato modificato. Salvare comunque?"
  869. #, c-format
  870. msgid "Error writing to pipe: %s"
  871. msgstr "Errore di scrittura pipe: %s"
  872. #, c-format
  873. msgid "Cannot open pipe for writing: %s"
  874. msgstr "Non è possibile aprire la pipe in scrittura: %s"
  875. #, c-format
  876. msgid "Cannot open file for writing: %s"
  877. msgstr "Impossibile aprire il file in scrittura: %s"
  878. msgid "The file you are saving is not finished with a newline"
  879. msgstr "Il file che si sta salvando non è finisce con un a capo"
  880. msgid "C&ontinue"
  881. msgstr "C&ontinuare"
  882. msgid "&Do not change"
  883. msgstr "&Non cambiare"
  884. msgid "&Unix format (LF)"
  885. msgstr "Formato &Unix (LF)"
  886. msgid "&Windows/DOS format (CR LF)"
  887. msgstr "Formato &Windows/DOS (CR LF)"
  888. msgid "&Macintosh format (CR)"
  889. msgstr "Formato &Macintosh (CR)"
  890. msgid "Change line breaks to:"
  891. msgstr "Modificare le interruzioni di linea a:"
  892. msgid "Enter file name:"
  893. msgstr "Immettere il nome del file:"
  894. msgid "Save As"
  895. msgstr "Salvare con nome"
  896. msgid "Delete macro"
  897. msgstr "Cancellare macro"
  898. msgid "Cannot open temp file"
  899. msgstr "Impossibile aprire il file temp"
  900. msgid "Cannot open macro file"
  901. msgstr "Impossibile aprire il file di macro"
  902. msgid "Cannot overwrite macro file"
  903. msgstr "Non è possibile sovrascrivere il file di macro"
  904. msgid "Syntax file edit"
  905. msgstr "Editare il file delle sintassi"
  906. msgid "Which syntax file you want to edit?"
  907. msgstr "Quale file di sintassi si desidera modificare?"
  908. msgid "&User"
  909. msgstr "&dell'utente"
  910. msgid "&System Wide"
  911. msgstr "di &tutto il sistema"
  912. msgid "Menu edit"
  913. msgstr "Editare il menù"
  914. msgid "Which menu file do you want to edit?"
  915. msgstr "Quale file del menù si vuole modificare?"
  916. msgid "&Local"
  917. msgstr "&Locale"
  918. msgid "Block is large, you may not be able to undo this action"
  919. msgstr "Il blocco è grande, non sarà possibile annullare questa azione"
  920. msgid "&Quick save"
  921. msgstr "Salvataggio &rapido"
  922. msgid "&Safe save"
  923. msgstr "Salvataggio &sicuro"
  924. msgid "&Do backups with following extension:"
  925. msgstr "&Eseguire copie di backup con la seguente estensione:"
  926. msgid "Check &POSIX new line"
  927. msgstr "Controllare a capo POSIX"
  928. msgid "Edit Save Mode"
  929. msgstr "Modificare Modalità di salvataggio"
  930. msgid "A file already exists with this name"
  931. msgstr "Un file con questo nome esiste già"
  932. msgid "&Overwrite"
  933. msgstr "&Sovrascrivere"
  934. msgid "Save as"
  935. msgstr "Salvare con nome"
  936. msgid "Cannot save file"
  937. msgstr "Impossibile salvare il file"
  938. msgid "Save macro"
  939. msgstr "Salvare macro"
  940. msgid "Press the macro's new hotkey:"
  941. msgstr "Premere il nuovo tasto di avvio rapido macro:"
  942. msgid "Press macro hotkey:"
  943. msgstr "Premere il tasto di avvio rapido macro:"
  944. msgid "Load macro"
  945. msgstr "Caricare macro"
  946. #, c-format
  947. msgid "Confirm save file: \"%s\""
  948. msgstr "Confermare salvataggio del file: \"%s\""
  949. msgid "Save file"
  950. msgstr "Salvare il file"
  951. msgid "&Save"
  952. msgstr "&Salvare"
  953. msgid ""
  954. "Current text was modified without a file save.\n"
  955. "Continue discards these changes"
  956. msgstr ""
  957. "Il testo attuale è stato modificato senza preventivamente salvare il file.\n"
  958. "Continuando, le modifiche andranno perse"
  959. msgid "Load"
  960. msgstr "Caricare"
  961. msgid "Replace"
  962. msgstr "Sostituire"
  963. #, c-format
  964. msgid "%ld replacements made"
  965. msgstr "Eseguite %ld sostituzioni"
  966. msgid "&Cancel quit"
  967. msgstr "&Annullare chiusura"
  968. msgid "This function is not implemented"
  969. msgstr "Questa funzione non è implementata"
  970. msgid "Copy to clipboard"
  971. msgstr "Copia negli appunti"
  972. msgid "Unable to save to file"
  973. msgstr "Impossibile salvare in un file"
  974. msgid "Cut to clipboard"
  975. msgstr "Taglia e copia negli appunti"
  976. msgid "Goto line"
  977. msgstr "Posizionare alla linea"
  978. msgid "Save block"
  979. msgstr "Salvare blocco"
  980. msgid "Insert file"
  981. msgstr "Inserire file"
  982. msgid "Cannot insert file"
  983. msgstr "Impossibile inserire file"
  984. msgid "Sort block"
  985. msgstr "Ordinare blocco"
  986. msgid "You must first highlight a block of text"
  987. msgstr "Prima è necessario selezionare un blocco di testo"
  988. msgid "Run sort"
  989. msgstr "Esecuzione ordinamento"
  990. msgid "Enter sort options (see manpage) separated by whitespace:"
  991. msgstr ""
  992. "Inserire le opzioni di ordinamento (vedere pagina man) separate da spazi:"
  993. msgid "Sort"
  994. msgstr "Ordinare"
  995. msgid "Cannot execute sort command"
  996. msgstr "Impossibile eseguire comando di ordinamento"
  997. #, c-format
  998. msgid "Sort returned non-zero: %s"
  999. msgstr "l'ordinamento ha ritornato un responso diverso da zero:%s"
  1000. msgid "Paste output of external command"
  1001. msgstr "Incollare l'esito di un comando esterno"
  1002. msgid "Enter shell command(s):"
  1003. msgstr "Inserimento di comando(i) shell:"
  1004. msgid "External command"
  1005. msgstr "Comando esterno"
  1006. msgid "Cannot execute command"
  1007. msgstr "Impossibile eseguire il comando"
  1008. msgid "Error creating script:"
  1009. msgstr "Errore nella creazione script:"
  1010. msgid "Error reading script:"
  1011. msgstr "Errore durante la lettura dello script:"
  1012. msgid "Error closing script:"
  1013. msgstr "Errore durante la chiusura dello script:"
  1014. msgid "Script created:"
  1015. msgstr "Script creato:"
  1016. msgid "Process block"
  1017. msgstr "Processare blocco"
  1018. msgid "Error calling program"
  1019. msgstr "Errore di chiamata programma"
  1020. msgid "Copies to"
  1021. msgstr "Copiare in"
  1022. msgid "Subject"
  1023. msgstr "Soggetto"
  1024. msgid "To"
  1025. msgstr "A"
  1026. msgid "mail -s <subject> -c <cc> <to>"
  1027. msgstr "mail -s <soggetto> -C <cc><Destinatario>"
  1028. msgid "Mail"
  1029. msgstr "E-mail"
  1030. msgid "Insert literal"
  1031. msgstr "Inserire lettera"
  1032. msgid "Press any key:"
  1033. msgstr "Premere un tasto qualsiasi:"
  1034. msgid "Execute macro"
  1035. msgstr "Eseguire macro"
  1036. msgid ""
  1037. "Current text was modified without a file save\n"
  1038. "Continue discards these changes"
  1039. msgstr ""
  1040. "Il testo attuale è stato modificato senza salvare preventivamente il file\n"
  1041. "Continuando, le modifiche andranno perse"
  1042. msgid "In se&lection"
  1043. msgstr "In se&lezione"
  1044. msgid "Enter replacement string:"
  1045. msgstr "Inserire stringa di sostituzione:"
  1046. msgid "&Find all"
  1047. msgstr "&Trovare tutti"
  1048. msgid "Cancel"
  1049. msgstr "Annullare"
  1050. msgid ""
  1051. "Current text was modified without a file save.\n"
  1052. "Continue discards these changes."
  1053. msgstr ""
  1054. "Il testo corrente è stato modificato senza il preventivo salvataggio del "
  1055. "file.\n"
  1056. "Continuare elimina ogni modifica apportata."
  1057. msgid "&Skip"
  1058. msgstr "&Ignorare"
  1059. msgid "A&ll"
  1060. msgstr "T&utti"
  1061. msgid "&Replace"
  1062. msgstr "&Sostituire"
  1063. msgid "Replace with:"
  1064. msgstr "Sostituire con:"
  1065. msgid "Confirm replace"
  1066. msgstr "Confermare sostituzione"
  1067. msgid "&Open file..."
  1068. msgstr "&Aprire file..."
  1069. msgid "&New"
  1070. msgstr "&Nuovo"
  1071. msgid "Save &as..."
  1072. msgstr "Salvare come..."
  1073. msgid "&Insert file..."
  1074. msgstr "&Inserire file..."
  1075. msgid "Cop&y to file..."
  1076. msgstr "Cop&iare su file..."
  1077. msgid "&User menu..."
  1078. msgstr "Men&ù utente..."
  1079. msgid "A&bout..."
  1080. msgstr "&Circa..."
  1081. msgid "&Quit"
  1082. msgstr "&Chiudere"
  1083. msgid "&Undo"
  1084. msgstr "&Annullare"
  1085. msgid "&Toggle ins/overw"
  1086. msgstr "Alternare &inserire/sovrascrivere"
  1087. msgid "To&ggle mark"
  1088. msgstr "&Marcare"
  1089. msgid "&Mark columns"
  1090. msgstr "Marcare &colonne"
  1091. msgid "Mark &all"
  1092. msgstr "Marcare &tutte"
  1093. msgid "Unmar&k"
  1094. msgstr "&Eliminare marcatura"
  1095. msgid "Cop&y"
  1096. msgstr "Cop&iare"
  1097. msgid "Mo&ve"
  1098. msgstr "M&uovere"
  1099. msgid "&Delete"
  1100. msgstr "Cance&llare"
  1101. msgid "Co&py to clipfile"
  1102. msgstr "Co&piare in file clip"
  1103. msgid "&Cut to clipfile"
  1104. msgstr "Ta&gliare in file clip"
  1105. msgid "Pa&ste from clipfile"
  1106. msgstr "&Incollare da file clip"
  1107. msgid "&Beginning"
  1108. msgstr "Ini&zio"
  1109. msgid "&End"
  1110. msgstr "&Fine"
  1111. msgid "&Search..."
  1112. msgstr "Ce&rcare..."
  1113. msgid "Search &again"
  1114. msgstr "Ricercare anc&ora"
  1115. msgid "&Replace..."
  1116. msgstr "Sostitui&re ..."
  1117. msgid "&Toggle bookmark"
  1118. msgstr "Modalità &segnalibro"
  1119. msgid "&Next bookmark"
  1120. msgstr "&Prossimo segnalibro"
  1121. msgid "&Prev bookmark"
  1122. msgstr "Se&gnalibro precedente"
  1123. msgid "&Flush bookmark"
  1124. msgstr "E&liminare segnalibro"
  1125. msgid "&Go to line..."
  1126. msgstr "&Posizionamento alla linea..."
  1127. msgid "&Toggle line state"
  1128. msgstr "Alternare stato &della linea"
  1129. msgid "Go to matching &bracket"
  1130. msgstr "Andare alla corrispondente parentesi"
  1131. msgid "Toggle s&yntax highlighting"
  1132. msgstr "&Evidenziazione sintassi"
  1133. msgid "&Find declaration"
  1134. msgstr "&Trovare"
  1135. msgid "Back from &declaration"
  1136. msgstr "Di ritorno da dic&hiarazione"
  1137. msgid "For&ward to declaration"
  1138. msgstr "Trasferire alla dichiarazione"
  1139. msgid "Encod&ing..."
  1140. msgstr "Codi&ficare..."
  1141. msgid "&Refresh screen"
  1142. msgstr "&Aggiornamento schermo"
  1143. msgid "&Start record macro"
  1144. msgstr "&Iniziare registrazione macro"
  1145. msgid "Finis&h record macro..."
  1146. msgstr "&Terminare registrazione macro..."
  1147. msgid "&Execute macro..."
  1148. msgstr "&Esecuzione macro..."
  1149. msgid "Delete macr&o..."
  1150. msgstr "Cance&llazione macro..."
  1151. msgid "'ispell' s&pell check"
  1152. msgstr "Verifica ortografica 'i&spell'"
  1153. msgid "&Mail..."
  1154. msgstr "&Posta..."
  1155. msgid "Insert &literal..."
  1156. msgstr "Inserire &lettera..."
  1157. msgid "Insert &date/time"
  1158. msgstr "Inserire &data/ora"
  1159. msgid "&Format paragraph"
  1160. msgstr "For&mattazione paragrafo paragrafo"
  1161. msgid "&Sort..."
  1162. msgstr "O&rdinare..."
  1163. msgid "&Paste output of..."
  1164. msgstr "&Incolla uscita di..."
  1165. msgid "&External formatter"
  1166. msgstr "&Formattatore esterno"
  1167. msgid "&General..."
  1168. msgstr "&Generale..."
  1169. msgid "Save &mode..."
  1170. msgstr "Modalit&à salvataggio..."
  1171. msgid "Learn &keys..."
  1172. msgstr "Im&postazioni tastiera..."
  1173. msgid "Syntax &highlighting..."
  1174. msgstr "E&videnziazione della sintassi..."
  1175. msgid "S&yntax file"
  1176. msgstr "Fil&e delle sintassi"
  1177. msgid "&Menu file"
  1178. msgstr "File &dei menù"
  1179. msgid "&Save setup"
  1180. msgstr "Impos&tazioni di salvataggio"
  1181. msgid "&File"
  1182. msgstr "&File"
  1183. msgid "&Edit"
  1184. msgstr "&Editare"
  1185. msgid "&Search"
  1186. msgstr "&Ricerca"
  1187. msgid "&Command"
  1188. msgstr "Co&mandi"
  1189. msgid "For&mat"
  1190. msgstr "Form&attazione"
  1191. msgid "&Options"
  1192. msgstr "&Opzioni"
  1193. msgid "None"
  1194. msgstr "Nessuno"
  1195. msgid "Dynamic paragraphing"
  1196. msgstr "Paragrafi dinamici"
  1197. msgid "Type writer wrap"
  1198. msgstr "Giustificazione"
  1199. msgid "Word wrap line length:"
  1200. msgstr "A capo al carattere #: "
  1201. msgid "Cursor beyond end of line"
  1202. msgstr "Cursore oltre la fine della linea"
  1203. msgid "Pers&istent selection"
  1204. msgstr "&Selezione persistente"
  1205. msgid "Synta&x highlighting"
  1206. msgstr "Eviden&ziazione della sintassi"
  1207. msgid "Visible tabs"
  1208. msgstr "Tabulatori visibili"
  1209. msgid "Visible trailing spaces"
  1210. msgstr "Spazi fine-riga visibili"
  1211. msgid "Save file &position"
  1212. msgstr "Salvare il file e la posizione"
  1213. msgid "Confir&m before saving"
  1214. msgstr "&Confermare prima del salvataggio"
  1215. msgid "&Return does autoindent"
  1216. msgstr "&Return genera autoindent"
  1217. msgid "Tab spacing:"
  1218. msgstr "Spaziatura tabulazione: "
  1219. msgid "Fill tabs with &spaces"
  1220. msgstr "Tab/spa&zi"
  1221. msgid "&Backspace through tabs"
  1222. msgstr "Backspace tramite tab"
  1223. msgid "&Fake half tabs"
  1224. msgstr "&Finti mezzi-tabulatori"
  1225. msgid "Wrap mode"
  1226. msgstr "Modalità giustificazione automatica"
  1227. msgid "Editor options"
  1228. msgstr "Opzioni editore"
  1229. msgid "Edit: "
  1230. msgstr "Editare: "
  1231. msgid "ButtonBar|Mark"
  1232. msgstr "Marcare"
  1233. msgid "ButtonBar|Replac"
  1234. msgstr "Sostituire"
  1235. msgid "ButtonBar|Copy"
  1236. msgstr "Copiare"
  1237. msgid "ButtonBar|Move"
  1238. msgstr "Muovere"
  1239. msgid "ButtonBar|Delete"
  1240. msgstr "Cancellare"
  1241. msgid "ButtonBar|PullDn"
  1242. msgstr ""
  1243. msgid "Load syntax file"
  1244. msgstr "Caricare file delle sintassi"
  1245. #, c-format
  1246. msgid ""
  1247. "Cannot open file %s\n"
  1248. "%s"
  1249. msgstr ""
  1250. "Impossibile aprire il file %s\n"
  1251. "%s"
  1252. #, c-format
  1253. msgid "Error in file %s on line %d"
  1254. msgstr "Errore nel file %s alla riga %d"
  1255. msgid ""
  1256. "The Commander can't change to the directory that\n"
  1257. "the subshell claims you are in. Perhaps you have\n"
  1258. "deleted your working directory, or given yourself\n"
  1259. "extra access permissions with the \"su\" command?"
  1260. msgstr ""
  1261. "MC non può aprire la cartella che subshell afferma aperta.\n"
  1262. "Che sia stata cancellata la cartella di lavoro, o che siano stati modificati "
  1263. "i permessi di accesso con il comando \"su\"?"
  1264. msgid "The shell is already running a command"
  1265. msgstr ""
  1266. #, c-format
  1267. msgid "Type `exit' to return to the Midnight Commander"
  1268. msgstr ""
  1269. #, c-format
  1270. msgid "Cannot fetch a local copy of %s"
  1271. msgstr ""
  1272. msgid "&Set"
  1273. msgstr ""
  1274. msgid "S&kip"
  1275. msgstr ""
  1276. msgid "Set &all"
  1277. msgstr ""
  1278. msgid "owner"
  1279. msgstr ""
  1280. msgid "group"
  1281. msgstr ""
  1282. msgid "other"
  1283. msgstr ""
  1284. msgid "On"
  1285. msgstr ""
  1286. msgid "Flag"
  1287. msgstr ""
  1288. msgid "Mode"
  1289. msgstr ""
  1290. #, c-format
  1291. msgid "%6d of %d"
  1292. msgstr ""
  1293. msgid "Chown advanced command"
  1294. msgstr ""
  1295. #, c-format
  1296. msgid ""
  1297. "Cannot chmod \"%s\"\n"
  1298. "%s"
  1299. msgstr ""
  1300. #, c-format
  1301. msgid ""
  1302. "Cannot chown \"%s\"\n"
  1303. "%s"
  1304. msgstr ""
  1305. msgid "&Stop"
  1306. msgstr ""
  1307. msgid "&Resume"
  1308. msgstr ""
  1309. msgid "&Kill"
  1310. msgstr ""
  1311. msgid "&Full file list"
  1312. msgstr ""
  1313. msgid "&Brief file list"
  1314. msgstr ""
  1315. msgid "&Long file list"
  1316. msgstr ""
  1317. msgid "&User defined:"
  1318. msgstr ""
  1319. msgid "Listing mode"
  1320. msgstr ""
  1321. msgid "User &mini status"
  1322. msgstr ""
  1323. msgid "Other 8 bit"
  1324. msgstr ""
  1325. msgid "Display bits"
  1326. msgstr ""
  1327. msgid "Input / display codepage:"
  1328. msgstr ""
  1329. msgid "F&ull 8 bits input"
  1330. msgstr ""
  1331. msgid "&Select"
  1332. msgstr ""
  1333. msgid "Running"
  1334. msgstr ""
  1335. msgid "Stopped"
  1336. msgstr ""
  1337. msgid "&Reverse"
  1338. msgstr ""
  1339. msgid "Case sensi&tive"
  1340. msgstr ""
  1341. msgid "Executable &first"
  1342. msgstr ""
  1343. msgid "Sort order"
  1344. msgstr ""
  1345. msgid "Confirmation"
  1346. msgstr ""
  1347. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix
  1348. #. 2
  1349. msgid "Confirmation|&History cleanup"
  1350. msgstr ""
  1351. msgid "Confirmation|Di&rectory hotlist delete"
  1352. msgstr ""
  1353. msgid "Confirmation|E&xit"
  1354. msgstr ""
  1355. msgid "Confirmation|&Execute"
  1356. msgstr ""
  1357. msgid "Confirmation|O&verwrite"
  1358. msgstr ""
  1359. msgid "Confirmation|&Delete"
  1360. msgstr ""
  1361. msgid "UTF-8 output"
  1362. msgstr ""
  1363. msgid "Full 8 bits output"
  1364. msgstr ""
  1365. msgid "ISO 8859-1"
  1366. msgstr ""
  1367. msgid "7 bits"
  1368. msgstr ""
  1369. msgid "Directory tree"
  1370. msgstr ""
  1371. msgid "Use passive mode over pro&xy"
  1372. msgstr ""
  1373. msgid "Use &passive mode"
  1374. msgstr ""
  1375. msgid "&Use ~/.netrc"
  1376. msgstr ""
  1377. msgid "&Always use ftp proxy"
  1378. msgstr ""
  1379. msgid "sec"
  1380. msgstr ""
  1381. msgid "ftpfs directory cache timeout:"
  1382. msgstr ""
  1383. msgid "ftp anonymous password:"
  1384. msgstr ""
  1385. msgid "Timeout for freeing VFSs:"
  1386. msgstr ""
  1387. msgid "Virtual File System Setting"
  1388. msgstr ""
  1389. msgid "cd"
  1390. msgstr ""
  1391. msgid "Quick cd"
  1392. msgstr ""
  1393. msgid "Symbolic link filename:"
  1394. msgstr ""
  1395. msgid "Existing filename (filename symlink will point to):"
  1396. msgstr ""
  1397. msgid "Symbolic link"
  1398. msgstr ""
  1399. msgid "Background Jobs"
  1400. msgstr ""
  1401. msgid "Domain:"
  1402. msgstr ""
  1403. msgid "Username:"
  1404. msgstr ""
  1405. #, c-format
  1406. msgid "Password for \\\\%s\\%s"
  1407. msgstr ""
  1408. msgid "execute/search by others"
  1409. msgstr ""
  1410. msgid "write by others"
  1411. msgstr ""
  1412. msgid "read by others"
  1413. msgstr ""
  1414. msgid "execute/search by group"
  1415. msgstr ""
  1416. msgid "write by group"
  1417. msgstr ""
  1418. msgid "read by group"
  1419. msgstr ""
  1420. msgid "execute/search by owner"
  1421. msgstr ""
  1422. msgid "write by owner"
  1423. msgstr ""
  1424. msgid "read by owner"
  1425. msgstr ""
  1426. msgid "sticky bit"
  1427. msgstr ""
  1428. msgid "set group ID on execution"
  1429. msgstr ""
  1430. msgid "set user ID on execution"
  1431. msgstr ""
  1432. msgid "Name:"
  1433. msgstr ""
  1434. msgid "Permissions (octal):"
  1435. msgstr ""
  1436. msgid "Owner name:"
  1437. msgstr ""
  1438. msgid "Group name:"
  1439. msgstr ""
  1440. msgid "C&lear marked"
  1441. msgstr ""
  1442. msgid "S&et marked"
  1443. msgstr ""
  1444. msgid "&Marked all"
  1445. msgstr ""
  1446. msgid "Chmod command"
  1447. msgstr ""
  1448. msgid "File"
  1449. msgstr ""
  1450. msgid "Permission"
  1451. msgstr ""
  1452. msgid "Set &users"
  1453. msgstr ""
  1454. msgid "Set &groups"
  1455. msgstr ""
  1456. msgid "Name"
  1457. msgstr ""
  1458. msgid "Owner name"
  1459. msgstr ""
  1460. msgid "Group name"
  1461. msgstr ""
  1462. msgid "Size"
  1463. msgstr ""
  1464. msgid "Chown command"
  1465. msgstr ""
  1466. msgid "<Unknown user>"
  1467. msgstr ""
  1468. msgid "<Unknown group>"
  1469. msgstr ""
  1470. msgid "User name"
  1471. msgstr ""
  1472. msgid "Enter machine name (F1 for details):"
  1473. msgstr ""
  1474. msgid "Files tagged, want to cd?"
  1475. msgstr ""
  1476. msgid "Cannot change directory"
  1477. msgstr ""
  1478. msgid "Filter"
  1479. msgstr ""
  1480. msgid "Set expression for filtering filenames"
  1481. msgstr ""
  1482. msgid "&Using shell patterns"
  1483. msgstr ""
  1484. msgid "&Case sensitive"
  1485. msgstr ""
  1486. msgid "&Files only"
  1487. msgstr ""
  1488. #, c-format
  1489. msgid "Link %s to:"
  1490. msgstr ""
  1491. msgid "Link"
  1492. msgstr ""
  1493. #, c-format
  1494. msgid "link: %s"
  1495. msgstr ""
  1496. #, c-format
  1497. msgid "symlink: %s"
  1498. msgstr ""
  1499. #, c-format
  1500. msgid "Cannot chdir to \"%s\""
  1501. msgstr ""
  1502. msgid "View file"
  1503. msgstr ""
  1504. msgid "Filename:"
  1505. msgstr ""
  1506. msgid "Filtered view"
  1507. msgstr ""
  1508. msgid "Filter command and arguments:"
  1509. msgstr ""
  1510. msgid "Create a new Directory"
  1511. msgstr ""
  1512. msgid "Enter directory name:"
  1513. msgstr ""
  1514. msgid "Select"
  1515. msgstr ""
  1516. msgid "Unselect"
  1517. msgstr ""
  1518. msgid "Extension file edit"
  1519. msgstr ""
  1520. msgid "Which extension file you want to edit?"
  1521. msgstr ""
  1522. msgid "Highlighting groups file edit"
  1523. msgstr ""
  1524. msgid "Which highlighting file you want to edit?"
  1525. msgstr ""
  1526. msgid "Compare directories"
  1527. msgstr ""
  1528. msgid "Select compare method:"
  1529. msgstr ""
  1530. msgid "&Quick"
  1531. msgstr ""
  1532. msgid "&Size only"
  1533. msgstr ""
  1534. msgid "&Thorough"
  1535. msgstr ""
  1536. msgid ""
  1537. "Both panels should be in the listing mode\n"
  1538. "to use this command"
  1539. msgstr ""
  1540. msgid ""
  1541. "Not an xterm or Linux console;\n"
  1542. "the panels cannot be toggled."
  1543. msgstr ""
  1544. #, c-format
  1545. msgid "Symlink `%s' points to:"
  1546. msgstr ""
  1547. msgid "Edit symlink"
  1548. msgstr ""
  1549. #, c-format
  1550. msgid "edit symlink, unable to remove %s: %s"
  1551. msgstr ""
  1552. #, c-format
  1553. msgid "edit symlink: %s"
  1554. msgstr ""
  1555. #, c-format
  1556. msgid "`%s' is not a symbolic link"
  1557. msgstr ""
  1558. msgid "FTP to machine"
  1559. msgstr ""
  1560. msgid "Shell link to machine"
  1561. msgstr ""
  1562. msgid "SMB link to machine"
  1563. msgstr ""
  1564. msgid "Undelete files on an ext2 file system"
  1565. msgstr ""
  1566. msgid ""
  1567. "Enter device (without /dev/) to undelete\n"
  1568. "files on: (F1 for details)"
  1569. msgstr ""
  1570. msgid "Setup"
  1571. msgstr ""
  1572. #, c-format
  1573. msgid "Setup saved to ~/%s"
  1574. msgstr ""
  1575. #, c-format
  1576. msgid "Unable to save setup to ~/%s"
  1577. msgstr ""
  1578. msgid "Cannot execute commands on non-local filesystems"
  1579. msgstr ""
  1580. #, c-format
  1581. msgid ""
  1582. "Cannot chdir to \"%s\"\n"
  1583. "%s"
  1584. msgstr ""
  1585. msgid "Cannot read directory contents"
  1586. msgstr ""
  1587. #, c-format
  1588. msgid ""
  1589. "Cannot create temporary command file\n"
  1590. "%s"
  1591. msgstr ""
  1592. msgid "Parameter"
  1593. msgstr ""
  1594. #, c-format
  1595. msgid " %s%s file error"
  1596. msgstr ""
  1597. #, c-format
  1598. msgid ""
  1599. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1600. "the installation failed. Please fetch a fresh copy from the Midnight "
  1601. "Commander package."
  1602. msgstr ""
  1603. #, c-format
  1604. msgid "~/%s file error"
  1605. msgstr ""
  1606. #, c-format
  1607. msgid ""
  1608. "The format of the ~/%s file has changed with version 3.0. You may either "
  1609. "want to copy it from %smc.ext or use that file as an example of how to write "
  1610. "it."
  1611. msgstr ""
  1612. msgid "DialogTitle|Copy"
  1613. msgstr ""
  1614. msgid "DialogTitle|Move"
  1615. msgstr ""
  1616. msgid "DialogTitle|Delete"
  1617. msgstr ""
  1618. msgid "FileOperation|Copy"
  1619. msgstr ""
  1620. msgid "FileOperation|Move"
  1621. msgstr ""
  1622. msgid "FileOperation|Delete"
  1623. msgstr ""
  1624. #, no-c-format
  1625. msgid "%o %f \"%s\"%m"
  1626. msgstr ""
  1627. #, no-c-format
  1628. msgid "%o %d %f%m"
  1629. msgstr ""
  1630. msgid "file"
  1631. msgstr ""
  1632. msgid "files"
  1633. msgstr ""
  1634. msgid "directory"
  1635. msgstr ""
  1636. msgid "directories"
  1637. msgstr ""
  1638. msgid "files/directories"
  1639. msgstr ""
  1640. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  1641. msgid " with source mask:"
  1642. msgstr ""
  1643. msgid "to:"
  1644. msgstr ""
  1645. #, c-format
  1646. msgid "%s?"
  1647. msgstr ""
  1648. msgid "Cannot make the hardlink"
  1649. msgstr ""
  1650. #, c-format
  1651. msgid ""
  1652. "Cannot read source link \"%s\"\n"
  1653. "%s"
  1654. msgstr ""
  1655. msgid ""
  1656. "Cannot make stable symlinks acrossnon-local filesystems:\n"
  1657. "\n"
  1658. "Option Stable Symlinks will be disabled"
  1659. msgstr ""
  1660. #, c-format
  1661. msgid ""
  1662. "Cannot create target symlink \"%s\"\n"
  1663. "%s"
  1664. msgstr ""
  1665. msgid "&Abort"
  1666. msgstr ""
  1667. msgid "&Retry"
  1668. msgstr ""
  1669. msgid ""
  1670. "\n"
  1671. "Directory not empty.\n"
  1672. "Delete it recursively?"
  1673. msgstr ""
  1674. msgid ""
  1675. "\n"
  1676. "Background process: Directory not empty.\n"
  1677. "Delete it recursively?"
  1678. msgstr ""
  1679. msgid "Delete:"
  1680. msgstr ""
  1681. msgid "Non&e"
  1682. msgstr ""
  1683. #, c-format
  1684. msgid ""
  1685. "Cannot stat file \"%s\"\n"
  1686. "%s"
  1687. msgstr ""
  1688. #, c-format
  1689. msgid ""
  1690. "\"%s\"\n"
  1691. "and\n"
  1692. "\"%s\"\n"
  1693. "are the same file"
  1694. msgstr ""
  1695. #, c-format
  1696. msgid "Cannot overwrite directory \"%s\""
  1697. msgstr ""
  1698. #, c-format
  1699. msgid ""
  1700. "Cannot move file \"%s\" to \"%s\"\n"
  1701. "%s"
  1702. msgstr ""
  1703. #, c-format
  1704. msgid ""
  1705. "Cannot remove file \"%s\"\n"
  1706. "%s"
  1707. msgstr ""
  1708. #, c-format
  1709. msgid ""
  1710. "Cannot delete file \"%s\"\n"
  1711. "%s"
  1712. msgstr ""
  1713. #, c-format
  1714. msgid ""
  1715. "Cannot remove directory \"%s\"\n"
  1716. "%s"
  1717. msgstr ""
  1718. #, c-format
  1719. msgid ""
  1720. "Cannot overwrite directory \"%s\"\n"
  1721. "%s"
  1722. msgstr ""
  1723. #, c-format
  1724. msgid ""
  1725. "Cannot stat source file \"%s\"\n"
  1726. "%s"
  1727. msgstr ""
  1728. #, c-format
  1729. msgid ""
  1730. "Cannot create special file \"%s\"\n"
  1731. "%s"
  1732. msgstr ""
  1733. #, c-format
  1734. msgid ""
  1735. "Cannot chown target file \"%s\"\n"
  1736. "%s"
  1737. msgstr ""
  1738. #, c-format
  1739. msgid ""
  1740. "Cannot chmod target file \"%s\"\n"
  1741. "%s"
  1742. msgstr ""
  1743. #, c-format
  1744. msgid ""
  1745. "Cannot open source file \"%s\"\n"
  1746. "%s"
  1747. msgstr ""
  1748. msgid "Reget failed, about to overwrite file"
  1749. msgstr ""
  1750. #, c-format
  1751. msgid ""
  1752. "Cannot fstat source file \"%s\"\n"
  1753. "%s"
  1754. msgstr ""
  1755. #, c-format
  1756. msgid ""
  1757. "Cannot create target file \"%s\"\n"
  1758. "%s"
  1759. msgstr ""
  1760. #, c-format
  1761. msgid ""
  1762. "Cannot fstat target file \"%s\"\n"
  1763. "%s"
  1764. msgstr ""
  1765. #, c-format
  1766. msgid ""
  1767. "Cannot read source file\"%s\"\n"
  1768. "%s"
  1769. msgstr ""
  1770. #, c-format
  1771. msgid ""
  1772. "Cannot write target file \"%s\"\n"
  1773. "%s"
  1774. msgstr ""
  1775. msgid "(stalled)"
  1776. msgstr ""
  1777. #, c-format
  1778. msgid ""
  1779. "Cannot close source file \"%s\"\n"
  1780. "%s"
  1781. msgstr ""
  1782. #, c-format
  1783. msgid ""
  1784. "Cannot close target file \"%s\"\n"
  1785. "%s"
  1786. msgstr ""
  1787. msgid "Incomplete file was retrieved. Keep it?"
  1788. msgstr ""
  1789. msgid "&Keep"
  1790. msgstr ""
  1791. #, c-format
  1792. msgid ""
  1793. "Cannot stat source directory \"%s\"\n"
  1794. "%s"
  1795. msgstr ""
  1796. #, c-format
  1797. msgid ""
  1798. "Source \"%s\" is not a directory\n"
  1799. "%s"
  1800. msgstr ""
  1801. #, c-format
  1802. msgid ""
  1803. "Cannot copy cyclic symbolic link\n"
  1804. "\"%s\""
  1805. msgstr ""
  1806. #, c-format
  1807. msgid ""
  1808. "Destination \"%s\" must be a directory\n"
  1809. "%s"
  1810. msgstr ""
  1811. #, c-format
  1812. msgid ""
  1813. "Cannot create target directory \"%s\"\n"
  1814. "%s"
  1815. msgstr ""
  1816. #, c-format
  1817. msgid ""
  1818. "Cannot chown target directory \"%s\"\n"
  1819. "%s"
  1820. msgstr ""
  1821. #, c-format
  1822. msgid ""
  1823. "\"%s\"\n"
  1824. "and\n"
  1825. "\"%s\"\n"
  1826. "are the same directory"
  1827. msgstr ""
  1828. #, c-format
  1829. msgid ""
  1830. "Cannot overwrite file \"%s\"\n"
  1831. "%s"
  1832. msgstr ""
  1833. #, c-format
  1834. msgid ""
  1835. "Cannot move directory \"%s\" to \"%s\"\n"
  1836. "%s"
  1837. msgstr ""
  1838. msgid "Directory scanning"
  1839. msgstr ""
  1840. msgid "Cannot operate on \"..\"!"
  1841. msgstr ""
  1842. msgid "Sorry, I could not put the job in background"
  1843. msgstr ""
  1844. #, c-format
  1845. msgid "%d:%02d.%02d"
  1846. msgstr ""
  1847. #, c-format
  1848. msgid "ETA %s"
  1849. msgstr ""
  1850. #, c-format
  1851. msgid "%.2f MB/s"
  1852. msgstr ""
  1853. #, c-format
  1854. msgid "%.2f KB/s"
  1855. msgstr ""
  1856. #, c-format
  1857. msgid "%ld B/s"
  1858. msgstr ""
  1859. msgid "Target file already exists!"
  1860. msgstr ""
  1861. #, c-format
  1862. msgid "Source date: %s, size %llu"
  1863. msgstr ""
  1864. #, c-format
  1865. msgid "Target date: %s, size %llu"
  1866. msgstr ""
  1867. msgid "If &size differs"
  1868. msgstr ""
  1869. msgid "&Update"
  1870. msgstr ""
  1871. msgid "Overwrite all targets?"
  1872. msgstr ""
  1873. msgid "&Reget"
  1874. msgstr ""
  1875. msgid "A&ppend"
  1876. msgstr ""
  1877. msgid "Overwrite this target?"
  1878. msgstr ""
  1879. msgid "File exists"
  1880. msgstr ""
  1881. msgid "Background process: File exists"
  1882. msgstr ""
  1883. #, c-format
  1884. msgid "Files processed: %zu of %zu"
  1885. msgstr ""
  1886. #, c-format
  1887. msgid "Time: %s %s (%s)"
  1888. msgstr ""
  1889. #, c-format
  1890. msgid "Total: %s of %s"
  1891. msgstr ""
  1892. msgid "Source"
  1893. msgstr ""
  1894. msgid "Target"
  1895. msgstr ""
  1896. msgid "Deleting"
  1897. msgstr ""
  1898. msgid "&Background"
  1899. msgstr ""
  1900. msgid "&Stable Symlinks"
  1901. msgstr ""
  1902. msgid "Di&ve into subdir if exists"
  1903. msgstr ""
  1904. msgid "Preserve &attributes"
  1905. msgstr ""
  1906. msgid "Follow &links"
  1907. msgstr ""
  1908. #, c-format
  1909. msgid "Invalid source pattern `%s'"
  1910. msgstr ""
  1911. msgid "&Suspend"
  1912. msgstr ""
  1913. msgid "Con&tinue"
  1914. msgstr ""
  1915. msgid "&Chdir"
  1916. msgstr ""
  1917. msgid "&Again"
  1918. msgstr ""
  1919. msgid "Pane&lize"
  1920. msgstr ""
  1921. msgid "&View - F3"
  1922. msgstr ""
  1923. msgid "&Edit - F4"
  1924. msgstr ""
  1925. #, c-format
  1926. msgid "Found: %ld"
  1927. msgstr ""
  1928. msgid "Malformed regular expression"
  1929. msgstr ""
  1930. msgid "Cas&e sensitive"
  1931. msgstr ""
  1932. msgid "&Find recursively"
  1933. msgstr ""
  1934. msgid "S&kip hidden"
  1935. msgstr ""
  1936. msgid "&All charsets"
  1937. msgstr ""
  1938. msgid "Sea&rch for content"
  1939. msgstr ""
  1940. msgid "Case sens&itive"
  1941. msgstr ""
  1942. msgid "Re&gular expression"
  1943. msgstr ""
  1944. msgid "Fir&st hit"
  1945. msgstr ""
  1946. msgid "A&ll charsets"
  1947. msgstr ""
  1948. msgid "&Tree"
  1949. msgstr ""
  1950. msgid "Find File"
  1951. msgstr ""
  1952. msgid "Content:"
  1953. msgstr ""
  1954. msgid "File name:"
  1955. msgstr ""
  1956. msgid "Start at:"
  1957. msgstr ""
  1958. #, c-format
  1959. msgid "Grepping in %s"
  1960. msgstr ""
  1961. msgid "Finished"
  1962. msgstr ""
  1963. #, c-format
  1964. msgid "Searching %s"
  1965. msgstr ""
  1966. msgid "Searching"
  1967. msgstr ""
  1968. msgid "&Move"
  1969. msgstr ""
  1970. msgid "&Remove"
  1971. msgstr ""
  1972. msgid "&Append"
  1973. msgstr ""
  1974. msgid "&Insert"
  1975. msgstr ""
  1976. msgid "New &entry"
  1977. msgstr ""
  1978. msgid "New &group"
  1979. msgstr ""
  1980. msgid "&Up"
  1981. msgstr ""
  1982. msgid "&Add current"
  1983. msgstr ""
  1984. msgid "&Refresh"
  1985. msgstr ""
  1986. msgid "Fr&ee VFSs now"
  1987. msgstr ""
  1988. msgid "Change &to"
  1989. msgstr ""
  1990. msgid "Subgroup - press ENTER to see list"
  1991. msgstr ""
  1992. msgid "Active VFS directories"
  1993. msgstr ""
  1994. msgid "Directory hotlist"
  1995. msgstr ""
  1996. msgid "Directory path"
  1997. msgstr ""
  1998. msgid "Directory label"
  1999. msgstr ""
  2000. #, c-format
  2001. msgid "Moving %s"
  2002. msgstr ""
  2003. msgid "New hotlist entry"
  2004. msgstr ""
  2005. msgid "Directory label:"
  2006. msgstr ""
  2007. msgid "Directory path:"
  2008. msgstr ""
  2009. msgid "New hotlist group"
  2010. msgstr ""
  2011. msgid "Name of new group:"
  2012. msgstr ""
  2013. msgid "Remove:"
  2014. msgstr ""
  2015. msgid "Are you sure you want to remove this entry?"
  2016. msgstr ""
  2017. msgid ""
  2018. "Group not empty.\n"
  2019. "Remove it?"
  2020. msgstr ""
  2021. msgid "Top level group"
  2022. msgstr ""
  2023. msgid "Hotlist Load"
  2024. msgstr ""
  2025. #, c-format
  2026. msgid ""
  2027. "MC was unable to write ~/%s file,\n"
  2028. "your old hotlist entries were not deleted"
  2029. msgstr ""
  2030. #, c-format
  2031. msgid "Label for \"%s\":"
  2032. msgstr ""
  2033. msgid "Add to hotlist"
  2034. msgstr ""
  2035. msgid "Information"
  2036. msgstr ""
  2037. #, c-format
  2038. msgid "Midnight Commander %s"
  2039. msgstr ""
  2040. #, c-format
  2041. msgid "File: %s"
  2042. msgstr ""
  2043. #, c-format
  2044. msgid "Free nodes: %ld (%ld%%) of %ld"
  2045. msgstr ""
  2046. msgid "No node information"
  2047. msgstr ""
  2048. #, c-format
  2049. msgid "Free space: %s (%d%%) of %s"
  2050. msgstr ""
  2051. msgid "No space information"
  2052. msgstr ""
  2053. #, c-format
  2054. msgid "Type: %s"
  2055. msgstr ""
  2056. msgid "non-local vfs"
  2057. msgstr ""
  2058. #, c-format
  2059. msgid "Device: %s"
  2060. msgstr ""
  2061. #, c-format
  2062. msgid "Filesystem: %s"
  2063. msgstr ""
  2064. #, c-format
  2065. msgid "Accessed: %s"
  2066. msgstr ""
  2067. #, c-format
  2068. msgid "Modified: %s"
  2069. msgstr ""
  2070. #. TRANSLATORS: Time of last status change as in stat(2) man.
  2071. #, c-format
  2072. msgid "Changed: %s"
  2073. msgstr ""
  2074. #, c-format
  2075. msgid "Dev. type: major %lu, minor %lu"
  2076. msgstr ""
  2077. #, c-format
  2078. msgid "Size: %s"
  2079. msgstr ""
  2080. #, c-format
  2081. msgid " (%ld block)"
  2082. msgid_plural " (%ld blocks)"
  2083. msgstr[0] ""
  2084. msgstr[1] ""
  2085. #, c-format
  2086. msgid "Owner: %s/%s"
  2087. msgstr ""
  2088. #, c-format
  2089. msgid "Links: %d"
  2090. msgstr ""
  2091. #, c-format
  2092. msgid "Mode: %s (%04o)"
  2093. msgstr ""
  2094. #, c-format
  2095. msgid "Location: %Xh:%Xh"
  2096. msgstr ""
  2097. msgid "Show free sp&ace"
  2098. msgstr ""
  2099. msgid "&XTerm window title"
  2100. msgstr ""
  2101. msgid "H&intbar visible"
  2102. msgstr ""
  2103. msgid "&Keybar visible"
  2104. msgstr ""
  2105. msgid "Command &prompt"
  2106. msgstr ""
  2107. msgid "Show &mini status"
  2108. msgstr ""
  2109. msgid "Menu&bar visible"
  2110. msgstr ""
  2111. msgid "&Equal split"
  2112. msgstr ""
  2113. msgid "Panel split"
  2114. msgstr ""
  2115. msgid "Console output"
  2116. msgstr ""
  2117. msgid "Other options"
  2118. msgstr ""
  2119. msgid "&Vertical"
  2120. msgstr ""
  2121. msgid "&Horizontal"
  2122. msgstr ""
  2123. msgid "Output lines:"
  2124. msgstr ""
  2125. msgid "Layout"
  2126. msgstr ""
  2127. msgid "File listin&g"
  2128. msgstr ""
  2129. msgid "&Quick view"
  2130. msgstr ""
  2131. msgid "&Info"
  2132. msgstr ""
  2133. msgid "&Listing mode..."
  2134. msgstr ""
  2135. msgid "&Sort order..."
  2136. msgstr ""
  2137. msgid "&Filter..."
  2138. msgstr ""
  2139. msgid "&Encoding..."
  2140. msgstr ""
  2141. msgid "FT&P link..."
  2142. msgstr ""
  2143. msgid "S&hell link..."
  2144. msgstr ""
  2145. msgid "SM&B link..."
  2146. msgstr ""
  2147. msgid "&Rescan"
  2148. msgstr ""
  2149. msgid "&View"
  2150. msgstr ""
  2151. msgid "Vie&w file..."
  2152. msgstr ""
  2153. msgid "&Filtered view"
  2154. msgstr ""
  2155. msgid "&Copy"
  2156. msgstr ""
  2157. msgid "C&hmod"
  2158. msgstr ""
  2159. msgid "&Link"
  2160. msgstr ""
  2161. msgid "&Symlink"
  2162. msgstr ""
  2163. msgid "Relative symlin&k"
  2164. msgstr ""
  2165. msgid "Edit s&ymlink"
  2166. msgstr ""
  2167. msgid "Ch&own"
  2168. msgstr ""
  2169. msgid "&Advanced chown"
  2170. msgstr ""
  2171. msgid "&Rename/Move"
  2172. msgstr ""
  2173. msgid "&Mkdir"
  2174. msgstr ""
  2175. msgid "&Quick cd"
  2176. msgstr ""
  2177. msgid "Select &group"
  2178. msgstr ""
  2179. msgid "U&nselect group"
  2180. msgstr ""
  2181. msgid "Reverse selec&tion"
  2182. msgstr ""
  2183. msgid "E&xit"
  2184. msgstr ""
  2185. msgid "&User menu"
  2186. msgstr ""
  2187. msgid "&Directory tree"
  2188. msgstr ""
  2189. msgid "&Find file"
  2190. msgstr ""
  2191. msgid "S&wap panels"
  2192. msgstr ""
  2193. msgid "Switch &panels on/off"
  2194. msgstr ""
  2195. msgid "&Compare directories"
  2196. msgstr ""
  2197. msgid "&View diff files"
  2198. msgstr ""
  2199. msgid "E&xternal panelize"
  2200. msgstr ""
  2201. msgid "Show directory s&izes"
  2202. msgstr ""
  2203. msgid "Command &history"
  2204. msgstr ""
  2205. msgid "Di&rectory hotlist"
  2206. msgstr ""
  2207. msgid "&Active VFS list"
  2208. msgstr ""
  2209. msgid "&Background jobs"
  2210. msgstr ""
  2211. msgid "Screen lis&t"
  2212. msgstr ""
  2213. msgid "&Undelete files (ext2fs only)"
  2214. msgstr ""
  2215. msgid "&Listing format edit"
  2216. msgstr ""
  2217. msgid "Edit &extension file"
  2218. msgstr ""
  2219. msgid "Edit &menu file"
  2220. msgstr ""
  2221. msgid "Edit hi&ghlighting group file"
  2222. msgstr ""
  2223. msgid "&Configuration..."
  2224. msgstr ""
  2225. msgid "&Layout..."
  2226. msgstr ""
  2227. msgid "&Panel options..."
  2228. msgstr ""
  2229. msgid "C&onfirmation..."
  2230. msgstr ""
  2231. msgid "&Display bits..."
  2232. msgstr ""
  2233. msgid "&Virtual FS..."
  2234. msgstr ""
  2235. msgid "Panels:"
  2236. msgstr ""
  2237. #, c-format
  2238. msgid "You have %zd opened screen. Quit anyway?"
  2239. msgid_plural "You have %zd opened screens. Quit anyway?"
  2240. msgstr[0] ""
  2241. msgstr[1] ""
  2242. msgid "The Midnight Commander"
  2243. msgstr ""
  2244. msgid "Do you really want to quit the Midnight Commander?"
  2245. msgstr ""
  2246. msgid "&Above"
  2247. msgstr ""
  2248. msgid "&Left"
  2249. msgstr ""
  2250. msgid "&Below"
  2251. msgstr ""
  2252. msgid "&Right"
  2253. msgstr ""
  2254. msgid "ButtonBar|Menu"
  2255. msgstr ""
  2256. msgid "ButtonBar|View"
  2257. msgstr ""
  2258. msgid "ButtonBar|RenMov"
  2259. msgstr ""
  2260. msgid "ButtonBar|Mkdir"
  2261. msgstr ""
  2262. msgid "&Never"
  2263. msgstr ""
  2264. msgid "On dum&b terminals"
  2265. msgstr ""
  2266. msgid "Alwa&ys"
  2267. msgstr ""
  2268. msgid "A&uto save setup"
  2269. msgstr ""
  2270. msgid "Sa&fe delete"
  2271. msgstr ""
  2272. msgid "Cd follows lin&ks"
  2273. msgstr ""
  2274. msgid "Rotating d&ash"
  2275. msgstr ""
  2276. msgid "Co&mplete: show all"
  2277. msgstr ""
  2278. msgid "Shell &patterns"
  2279. msgstr ""
  2280. msgid "&Drop down menus"
  2281. msgstr ""
  2282. msgid "Auto m&enus"
  2283. msgstr ""
  2284. msgid "Use internal vie&w"
  2285. msgstr ""
  2286. msgid "Use internal edi&t"
  2287. msgstr ""
  2288. msgid "Pause after run"
  2289. msgstr ""
  2290. msgid "Timeout:"
  2291. msgstr ""
  2292. msgid "S&ingle press"
  2293. msgstr ""
  2294. msgid "Esc key mode"
  2295. msgstr ""
  2296. msgid "Mkdi&r autoname"
  2297. msgstr ""
  2298. msgid "Classic pro&gressbar"
  2299. msgstr ""
  2300. msgid "Compute tota&ls"
  2301. msgstr ""
  2302. msgid "&Verbose operation"
  2303. msgstr ""
  2304. msgid "File operation options"
  2305. msgstr ""
  2306. msgid "Configure options"
  2307. msgstr ""
  2308. msgid "Case &insensitive"
  2309. msgstr ""
  2310. msgid "Case s&ensitive"
  2311. msgstr ""
  2312. msgid "Use panel sort mo&de"
  2313. msgstr ""
  2314. msgid "Quick search"
  2315. msgstr ""
  2316. msgid "&Permissions"
  2317. msgstr ""
  2318. msgid "File &types"
  2319. msgstr ""
  2320. msgid "File highlight"
  2321. msgstr ""
  2322. msgid "&Mouse page scrolling"
  2323. msgstr ""
  2324. msgid "Pa&ge scrolling"
  2325. msgstr ""
  2326. msgid "L&ynx-like motion"
  2327. msgstr ""
  2328. msgid "Navigation"
  2329. msgstr ""
  2330. msgid "A&uto save panels setup"
  2331. msgstr ""
  2332. msgid "Simple s&wap"
  2333. msgstr ""
  2334. msgid "Re&verse files only"
  2335. msgstr ""
  2336. msgid "Ma&rk moves down"
  2337. msgstr ""
  2338. msgid "&Fast dir reload"
  2339. msgstr ""
  2340. msgid "Show &hidden files"
  2341. msgstr ""
  2342. msgid "Show &backup files"
  2343. msgstr ""
  2344. msgid "Mi&x all files"
  2345. msgstr ""
  2346. msgid "Use SI si&ze units"
  2347. msgstr ""
  2348. msgid "Main panel options"
  2349. msgstr ""
  2350. msgid "Panel options"
  2351. msgstr ""
  2352. msgid ""
  2353. "Using the fast reload option may not reflect the exact\n"
  2354. "directory contents. In this case you'll need to do a\n"
  2355. "manual reload of the directory. See the man page for\n"
  2356. "the details."
  2357. msgstr ""
  2358. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2359. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2360. msgid "sort|u"
  2361. msgstr ""
  2362. msgid "&Unsorted"
  2363. msgstr ""
  2364. #. TRANSLATORS: one single character to represent 'name' sort mode
  2365. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2366. msgid "sort|n"
  2367. msgstr ""
  2368. msgid "&Name"
  2369. msgstr ""
  2370. #. TRANSLATORS: one single character to represent 'version' sort mode
  2371. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2372. msgid "sort|v"
  2373. msgstr ""
  2374. msgid "&Version"
  2375. msgstr ""
  2376. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2377. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2378. msgid "sort|e"
  2379. msgstr ""
  2380. msgid "&Extension"
  2381. msgstr ""
  2382. #. TRANSLATORS: one single character to represent 'size' sort mode
  2383. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2384. msgid "sort|s"
  2385. msgstr ""
  2386. msgid "&Size"
  2387. msgstr ""
  2388. msgid "Block Size"
  2389. msgstr ""
  2390. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2391. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2392. msgid "sort|m"
  2393. msgstr ""
  2394. msgid "&Modify time"
  2395. msgstr ""
  2396. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2397. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2398. msgid "sort|a"
  2399. msgstr ""
  2400. msgid "&Access time"
  2401. msgstr ""
  2402. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2403. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2404. msgid "sort|h"
  2405. msgstr ""
  2406. msgid "C&hange time"
  2407. msgstr ""
  2408. msgid "Perm"
  2409. msgstr ""
  2410. msgid "Nl"
  2411. msgstr ""
  2412. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2413. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2414. msgid "sort|i"
  2415. msgstr ""
  2416. msgid "&Inode"
  2417. msgstr ""
  2418. msgid "UID"
  2419. msgstr ""
  2420. msgid "GID"
  2421. msgstr ""
  2422. msgid "Owner"
  2423. msgstr ""
  2424. msgid "Group"
  2425. msgstr ""
  2426. msgid "[dev]"
  2427. msgstr ""
  2428. msgid "UP--DIR"
  2429. msgstr ""
  2430. msgid "SYMLINK"
  2431. msgstr ""
  2432. msgid "SUB-DIR"
  2433. msgstr ""
  2434. msgid "<readlink failed>"
  2435. msgstr ""
  2436. #, c-format
  2437. msgid "%s byte"
  2438. msgid_plural "%s bytes"
  2439. msgstr[0] "%s byte"
  2440. msgstr[1] "%s byte"
  2441. #, c-format
  2442. msgid "%s in %d file"
  2443. msgid_plural "%s in %d files"
  2444. msgstr[0] "%s in %d file"
  2445. msgstr[1] "%s in %d file"
  2446. msgid "Unknown tag on display format:"
  2447. msgstr ""
  2448. msgid "Do you really want to execute?"
  2449. msgstr ""
  2450. msgid "User supplied format looks invalid, reverting to default."
  2451. msgstr ""
  2452. msgid "&Add new"
  2453. msgstr ""
  2454. msgid "External panelize"
  2455. msgstr ""
  2456. msgid "Command"
  2457. msgstr ""
  2458. msgid "Other command"
  2459. msgstr ""
  2460. msgid "Add to external panelize"
  2461. msgstr ""
  2462. msgid "Enter command label:"
  2463. msgstr ""
  2464. msgid "Cannot invoke command."
  2465. msgstr ""
  2466. msgid "Pipe close failed"
  2467. msgstr ""
  2468. msgid "Cannot run external panelize in a non-local directory"
  2469. msgstr ""
  2470. msgid "Find rejects after patching"
  2471. msgstr ""
  2472. msgid "Find *.orig after patching"
  2473. msgstr ""
  2474. msgid "Find SUID and SGID programs"
  2475. msgstr ""
  2476. #, c-format
  2477. msgid ""
  2478. "Cannot open the %s file for writing:\n"
  2479. "%s\n"
  2480. msgstr ""
  2481. #, c-format
  2482. msgid "Copy \"%s\" directory to:"
  2483. msgstr ""
  2484. #, c-format
  2485. msgid "Move \"%s\" directory to:"
  2486. msgstr ""
  2487. #, c-format
  2488. msgid ""
  2489. "Cannot stat the destination\n"
  2490. "%s"
  2491. msgstr ""
  2492. #, c-format
  2493. msgid "Delete %s?"
  2494. msgstr ""
  2495. msgid "ButtonBar|Static"
  2496. msgstr ""
  2497. msgid "ButtonBar|Dynamc"
  2498. msgstr ""
  2499. msgid "ButtonBar|Rescan"
  2500. msgstr ""
  2501. msgid "ButtonBar|Forget"
  2502. msgstr ""
  2503. msgid "ButtonBar|Rmdir"
  2504. msgstr ""
  2505. #, c-format
  2506. msgid ""
  2507. "Cannot write to the %s file:\n"
  2508. "%s\n"
  2509. msgstr ""
  2510. msgid "Debug"
  2511. msgstr ""
  2512. msgid "ERROR:"
  2513. msgstr ""
  2514. msgid "True:"
  2515. msgstr ""
  2516. msgid "False:"
  2517. msgstr ""
  2518. msgid "Warning -- ignoring file"
  2519. msgstr ""
  2520. #, c-format
  2521. msgid ""
  2522. "File %s is not owned by root or you or is world writable.\n"
  2523. "Using it may compromise your security"
  2524. msgstr ""
  2525. msgid "Format error on file Extensions File"
  2526. msgstr ""
  2527. #, c-format
  2528. msgid "The %%var macro has no default"
  2529. msgstr ""
  2530. #, c-format
  2531. msgid "The %%var macro has no variable"
  2532. msgstr ""
  2533. #, c-format
  2534. msgid ""
  2535. "Cannot open file%s\n"
  2536. "%s"
  2537. msgstr ""
  2538. #, c-format
  2539. msgid "No suitable entries found in %s"
  2540. msgstr ""
  2541. msgid "User menu"
  2542. msgstr ""
  2543. msgid "Help file format error\n"
  2544. msgstr ""
  2545. msgid "Internal bug: Double start of link area"
  2546. msgstr ""
  2547. #, c-format
  2548. msgid "Cannot find node %s in help file"
  2549. msgstr ""
  2550. msgid "Help"
  2551. msgstr ""
  2552. msgid "ButtonBar|Index"
  2553. msgstr ""
  2554. msgid "ButtonBar|Prev"
  2555. msgstr ""
  2556. msgid "Learn keys"
  2557. msgstr ""
  2558. msgid "Teach me a key"
  2559. msgstr ""
  2560. #, c-format
  2561. msgid ""
  2562. "Please press the %s\n"
  2563. "and then wait until this message disappears.\n"
  2564. "\n"
  2565. "Then, press it again to see if OK appears\n"
  2566. "next to its button.\n"
  2567. "\n"
  2568. "If you want to escape, press a single Escape key\n"
  2569. "and wait as well."
  2570. msgstr ""
  2571. msgid "Cannot accept this key"
  2572. msgstr ""
  2573. #, c-format
  2574. msgid "You have entered \"%s\""
  2575. msgstr ""
  2576. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2577. msgid "OK"
  2578. msgstr ""
  2579. msgid ""
  2580. "It seems that all your keys already\n"
  2581. "work fine. That's great."
  2582. msgstr ""
  2583. msgid "&Discard"
  2584. msgstr ""
  2585. msgid ""
  2586. "Great! You have a complete terminal database!\n"
  2587. "All your keys work well."
  2588. msgstr ""
  2589. msgid "Press all the keys mentioned here. After you have done it, check"
  2590. msgstr ""
  2591. msgid "which keys are not marked with OK. Press space on the missing"
  2592. msgstr ""
  2593. msgid "key, or click with the mouse to define it. Move around with Tab."
  2594. msgstr ""
  2595. #, c-format
  2596. msgid "Cannot create %s directory"
  2597. msgstr ""
  2598. msgid "Choose codepage"
  2599. msgstr ""
  2600. msgid "- < No translation >"
  2601. msgstr ""
  2602. msgid "%b %e %Y"
  2603. msgstr ""
  2604. msgid "%b %e %H:%M"
  2605. msgstr ""
  2606. #, c-format
  2607. msgid ""
  2608. "Cannot save file %s:\n"
  2609. "%s"
  2610. msgstr ""
  2611. msgid ""
  2612. "GNU Midnight Commander is already\n"
  2613. "running on this terminal.\n"
  2614. "Subshell support will be disabled."
  2615. msgstr ""
  2616. #, c-format
  2617. msgid "Cannot open named pipe %s\n"
  2618. msgstr ""
  2619. msgid "The shell is still active. Quit anyway?"
  2620. msgstr ""
  2621. #, c-format
  2622. msgid "Warning: Cannot change to %s.\n"
  2623. msgstr ""
  2624. msgid "Using the S-Lang library with terminfo database\n"
  2625. msgstr ""
  2626. msgid "Using the ncurses library\n"
  2627. msgstr ""
  2628. msgid "Using the ncursesw library\n"
  2629. msgstr ""
  2630. msgid "With builtin Editor\n"
  2631. msgstr ""
  2632. msgid "With optional subshell support\n"
  2633. msgstr ""
  2634. msgid "With subshell support as default\n"
  2635. msgstr ""
  2636. msgid "With support for background operations\n"
  2637. msgstr ""
  2638. msgid "With mouse support on xterm and Linux console\n"
  2639. msgstr ""
  2640. msgid "With mouse support on xterm\n"
  2641. msgstr ""
  2642. msgid "With support for X11 events\n"
  2643. msgstr ""
  2644. msgid "With internationalization support\n"
  2645. msgstr ""
  2646. msgid "With multiple codepages support\n"
  2647. msgstr ""
  2648. #, c-format
  2649. msgid "Built with GLib %d.%d.%d\n"
  2650. msgstr ""
  2651. #, c-format
  2652. msgid "Virtual File Systems:"
  2653. msgstr ""
  2654. #, c-format
  2655. msgid "Data types:"
  2656. msgstr ""
  2657. msgid "Invalid value"
  2658. msgstr ""
  2659. msgid "Cannot spawn child process"
  2660. msgstr ""
  2661. msgid "Empty output from child filter"
  2662. msgstr ""
  2663. msgid "&Line number (decimal)"
  2664. msgstr ""
  2665. msgid "Pe&rcents"
  2666. msgstr ""
  2667. msgid "&Decimal offset"
  2668. msgstr ""
  2669. msgid "He&xadecimal offset"
  2670. msgstr ""
  2671. msgid "Goto"
  2672. msgstr ""
  2673. msgid "ButtonBar|Ascii"
  2674. msgstr ""
  2675. msgid "ButtonBar|HxSrch"
  2676. msgstr ""
  2677. msgid "ButtonBar|UnWrap"
  2678. msgstr ""
  2679. msgid "ButtonBar|Wrap"
  2680. msgstr ""
  2681. msgid "ButtonBar|Hex"
  2682. msgstr ""
  2683. msgid "ButtonBar|Goto"
  2684. msgstr ""
  2685. msgid "ButtonBar|Raw"
  2686. msgstr ""
  2687. msgid "ButtonBar|Parse"
  2688. msgstr ""
  2689. msgid "ButtonBar|Unform"
  2690. msgstr ""
  2691. msgid "ButtonBar|Format"
  2692. msgstr ""
  2693. #, c-format
  2694. msgid ""
  2695. "Error while closing the file:\n"
  2696. "%s\n"
  2697. "Data may have been written or not"
  2698. msgstr ""
  2699. #, c-format
  2700. msgid ""
  2701. "Cannot save file:\n"
  2702. "%s"
  2703. msgstr ""
  2704. msgid "View: "
  2705. msgstr ""
  2706. #, c-format
  2707. msgid ""
  2708. "Cannot open \"%s\"\n"
  2709. "%s"
  2710. msgstr ""
  2711. #, c-format
  2712. msgid ""
  2713. "Cannot stat \"%s\"\n"
  2714. "%s"
  2715. msgstr ""
  2716. msgid "Cannot view: not a regular file"
  2717. msgstr ""
  2718. msgid "Seeking to search result"
  2719. msgstr ""
  2720. msgid "Search done"
  2721. msgstr ""
  2722. msgid "Continue from beginning?"
  2723. msgstr ""