fr.po 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007
  1. # mc fr.po
  2. # Copyright (C) 1998-2002 Free Software Foundation, Inc.
  3. # Vincent Renardias <vincent@ldsol.com>, 1998-2000.
  4. # Thibaut Cousin <Thibaut.Cousin@clermont.in2p3.fr>, 1999.
  5. # Martin Quinson <mquinson@zeppelin-cb.de>, 2000.
  6. # maintainer: Christophe Merlet (RedFox) <christophe@merlet.net>, 2000-2002.
  7. # Emmanuel Trillaud <etrillaud@gmail.com>, 2010
  8. #
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: mc 4.7.0.1\n"
  12. "Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
  13. "POT-Creation-Date: 2010-06-07 21:44+0400\n"
  14. "PO-Revision-Date: 2002-04-30 16:46+0200\n"
  15. "Last-Translator: Emmanuel Trillaud <etrillaud@gmail.com>\n"
  16. "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
  17. "MIME-Version: 1.0\n"
  18. "Content-Type: text/plain; charset=UTF-8\n"
  19. "Content-Transfer-Encoding: 8bit\n"
  20. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  21. #, fuzzy
  22. msgid "Search string not found"
  23. msgstr " Chaîne non trouvée "
  24. # XXX: implémenté est un angliscisme (enfin je crois) mais je l'ai toujours
  25. # entendu utilisé
  26. #, fuzzy
  27. msgid "Not implemented yet"
  28. msgstr "Pas encore implémenté"
  29. #, fuzzy
  30. msgid "Num of replace tokens not equal to num of found tokens"
  31. msgstr "Nombre de jetons remplacés différent de celui des jetons trouvés"
  32. #, fuzzy, c-format
  33. msgid "Invalid token number %d"
  34. msgstr " Nombre de jetons invalide %d "
  35. msgid "Normal"
  36. msgstr "Normal"
  37. msgid "&Regular expression"
  38. msgstr "Expression &régulière"
  39. msgid "Hexadecimal"
  40. msgstr "Hexadécimal"
  41. msgid "Wildcard search"
  42. msgstr ""
  43. #, c-format
  44. msgid ""
  45. "Unable to load '%s' skin.\n"
  46. "Default skin has been loaded"
  47. msgstr ""
  48. "Impossible de charger le thème '%s'.\n"
  49. "Le thème par défaut a été chargé"
  50. # XXX: trad "parser"
  51. #, c-format
  52. msgid ""
  53. "Unable to parse '%s' skin.\n"
  54. "Default skin has been loaded"
  55. msgstr ""
  56. "Impossible d'analyser le thème '%s'.\n"
  57. "Le thème par défaut a été chargé"
  58. # Les 2 espaces après les ":" sont pour l'alignement
  59. msgid "Function key 1"
  60. msgstr "Fonction : F1 "
  61. msgid "Function key 2"
  62. msgstr "Fonction : F2 "
  63. msgid "Function key 3"
  64. msgstr "Fonction : F3 "
  65. msgid "Function key 4"
  66. msgstr "Fonction : F4 "
  67. msgid "Function key 5"
  68. msgstr "Fonction : F5 "
  69. msgid "Function key 6"
  70. msgstr "Fonction : F6 "
  71. msgid "Function key 7"
  72. msgstr "Fonction : F7 "
  73. msgid "Function key 8"
  74. msgstr "Fonction : F8 "
  75. msgid "Function key 9"
  76. msgstr "Fonction : F9 "
  77. msgid "Function key 10"
  78. msgstr "Fonction : F10 "
  79. msgid "Function key 11"
  80. msgstr "Fonction : F11 "
  81. msgid "Function key 12"
  82. msgstr "Fonction : F12 "
  83. msgid "Function key 13"
  84. msgstr "Fonction : F13 "
  85. msgid "Function key 14"
  86. msgstr "Fonction : F14"
  87. msgid "Function key 15"
  88. msgstr "Fonction : F15"
  89. msgid "Function key 16"
  90. msgstr "Fonction : F16"
  91. msgid "Function key 17"
  92. msgstr "Fonction : F17"
  93. msgid "Function key 18"
  94. msgstr "Fonction : F18"
  95. msgid "Function key 19"
  96. msgstr "Fonction : F19"
  97. msgid "Function key 20"
  98. msgstr "Fonction : F20"
  99. msgid "Backspace key"
  100. msgstr "Retour arrière"
  101. msgid "End key"
  102. msgstr "Fin"
  103. msgid "Up arrow key"
  104. msgstr "Flèche en haut"
  105. msgid "Down arrow key"
  106. msgstr "Flèche en bas "
  107. msgid "Left arrow key"
  108. msgstr "Flèche à gauche"
  109. msgid "Right arrow key"
  110. msgstr "Flèche à droite"
  111. msgid "Home key"
  112. msgstr "Origine"
  113. msgid "Page Down key"
  114. msgstr "Page suivante"
  115. # Espace en plus pour l'alignement
  116. msgid "Page Up key"
  117. msgstr "Page précédente "
  118. msgid "Insert key"
  119. msgstr "Insertion"
  120. msgid "Delete key"
  121. msgstr "Effacement"
  122. msgid "Completion/M-tab"
  123. msgstr "Complétion/M-tab"
  124. msgid "+ on keypad"
  125. msgstr "Pavé numérique +"
  126. msgid "- on keypad"
  127. msgstr "Pavé numérique -"
  128. msgid "Slash on keypad"
  129. msgstr "« / » sur pavé numérique"
  130. msgid "* on keypad"
  131. msgstr "Pavé numérique *"
  132. msgid "Escape key"
  133. msgstr "Touche Échappement"
  134. msgid "Left arrow keypad"
  135. msgstr "Flèche gauche (Pavé numérique)"
  136. msgid "Right arrow keypad"
  137. msgstr "Flèche droite (Pavé numérique)"
  138. msgid "Up arrow keypad"
  139. msgstr "Flèche haut (Pavé numérique)"
  140. msgid "Down arrow keypad"
  141. msgstr "Flèche bas (Pavé numérique)"
  142. msgid "Home on keypad"
  143. msgstr "Début de ligne (Pavé numérique)"
  144. msgid "End on keypad"
  145. msgstr "Fin de ligne (Pavé numérique)"
  146. msgid "Page Down keypad"
  147. msgstr "Page suivante (Pavé numérique)"
  148. msgid "Page Up keypad"
  149. msgstr "Page précédente (Pavé numérique)"
  150. msgid "Insert on keypad"
  151. msgstr "« Insér » sur pavé numérique"
  152. msgid "Delete on keypad"
  153. msgstr "« Suppr » sur pavé numérique"
  154. msgid "Enter on keypad"
  155. msgstr "« Entrée » sur pavé numérique"
  156. msgid "Function key 21"
  157. msgstr "Fonction : F21 "
  158. msgid "Function key 22"
  159. msgstr "Fonction : F22 "
  160. msgid "Function key 23"
  161. msgstr "Fonction : F22 "
  162. msgid "Function key 24"
  163. msgstr "Fonction : F22 "
  164. msgid "Plus"
  165. msgstr "Plus"
  166. msgid "Minus"
  167. msgstr "Moins"
  168. msgid "Asterisk"
  169. msgstr "Astérisque"
  170. msgid "Dot"
  171. msgstr "Point"
  172. # XXX : pour quoi pas "moins que"
  173. msgid "Less than"
  174. msgstr "Inférieur à"
  175. msgid "Great than"
  176. msgstr "Supérieur à"
  177. msgid "Equal"
  178. msgstr "Égal"
  179. msgid "Comma"
  180. msgstr "Virgule"
  181. msgid "Apostrophe"
  182. msgstr "Apostrophe"
  183. msgid "Colon"
  184. msgstr "Deux points"
  185. msgid "Exclamation mark"
  186. msgstr "Point d'exclamation"
  187. msgid "Question mark"
  188. msgstr "Point d'interrogation"
  189. msgid "Ampersand"
  190. msgstr "Esperluette"
  191. msgid "Dollar sign"
  192. msgstr "Dollar"
  193. msgid "Quotation mark"
  194. msgstr "Guillemet"
  195. msgid "Caret"
  196. msgstr "Circonflexe"
  197. msgid "Tilda"
  198. msgstr "Tilde"
  199. msgid "Prime"
  200. msgstr "Prime"
  201. msgid "Underline"
  202. msgstr "Souligné"
  203. msgid "Understrike"
  204. msgstr "Souligné"
  205. msgid "Pipe"
  206. msgstr "Tube"
  207. msgid "Enter"
  208. msgstr "Entrée"
  209. msgid "Tab key"
  210. msgstr "Tabulation"
  211. msgid "Space key"
  212. msgstr "Espace"
  213. msgid "Slash key"
  214. msgstr "Barre oblique"
  215. msgid "Backslash key"
  216. msgstr "Barre oblique inversée"
  217. msgid "Number sign #"
  218. msgstr "Croisillon"
  219. msgid "Ctrl"
  220. msgstr "Ctrl"
  221. msgid "Alt"
  222. msgstr "Alt"
  223. msgid "Shift"
  224. msgstr "Maj"
  225. #, c-format
  226. msgid ""
  227. "Screen size %dx%d is not supported.\n"
  228. "Check the TERM environment variable.\n"
  229. msgstr ""
  230. "La taille de l'écran %dx%d n'est pas supportée.\n"
  231. "Vérifiez la variable d'environnement TERM.\n"
  232. #, c-format
  233. msgid "%s is not a directory\n"
  234. msgstr "%s n'est pas un répertoire\n"
  235. #, c-format
  236. msgid "Directory %s is not owned by you\n"
  237. msgstr "Vous n'êtes pas le propriétaire du répertoire %s\n"
  238. #, c-format
  239. msgid "Cannot set correct permissions for directory %s\n"
  240. msgstr "Impossible de régler des droits corrects sur le répertoire %s\n"
  241. #, c-format
  242. msgid "Cannot create temporary directory %s: %s\n"
  243. msgstr " Ne peut créer le répertoire temporaire %s : %s\n"
  244. #, c-format
  245. msgid "Temporary files will be created in %s\n"
  246. msgstr "Les fichiers temporaires seront crées dans %s\n"
  247. #, c-format
  248. msgid "Temporary files will not be created\n"
  249. msgstr "Les fichiers temporaires ne seront pas crées\n"
  250. #, c-format
  251. msgid "Press any key to continue..."
  252. msgstr "Appuyez sur une touche pour continuer..."
  253. msgid "Warning"
  254. msgstr "Attention"
  255. #, fuzzy
  256. msgid "Pipe failed"
  257. msgstr " Échec du tube "
  258. #, fuzzy
  259. msgid "Dup failed"
  260. msgstr " Échec de la duplication "
  261. #, fuzzy
  262. msgid "Error dup'ing old error pipe"
  263. msgstr " Erreur lors de la lecture du tube : %s "
  264. #, c-format
  265. msgid ""
  266. "Cannot open cpio archive\n"
  267. "%s"
  268. msgstr ""
  269. "Ne peut ouvrir l'archive cpio\n"
  270. "%s"
  271. #, c-format
  272. msgid ""
  273. "Premature end of cpio archive\n"
  274. "%s"
  275. msgstr ""
  276. "Fin de l'archive cpio prématuré\n"
  277. "%s"
  278. #, c-format
  279. msgid ""
  280. "Inconsistent hardlinks of\n"
  281. "%s\n"
  282. "in cpio archive\n"
  283. "%s"
  284. msgstr ""
  285. "Lien physique inconsistant de\n"
  286. "%s\n"
  287. "dans l'archive cpio\n"
  288. "%s"
  289. #, c-format
  290. msgid "%s contains duplicate entries! Skipping!"
  291. msgstr "%s contient des entrées dupliquées ! ignore !"
  292. #, c-format
  293. msgid ""
  294. "Corrupted cpio header encountered in\n"
  295. "%s"
  296. msgstr ""
  297. "En-tête cpio corrompu rencontré dans\n"
  298. "%s"
  299. #, c-format
  300. msgid ""
  301. "Unexpected end of file\n"
  302. "%s"
  303. msgstr ""
  304. "Fin de fichier inattendue\n"
  305. "%s"
  306. #, c-format
  307. msgid "Directory cache expired for %s"
  308. msgstr "Répertoire de cache expiré pour %s"
  309. msgid "Starting linear transfer..."
  310. msgstr "Démarrage du transfert linéaire..."
  311. #, c-format
  312. msgid "%s: %s: %s %3d%% (%lu bytes transferred)"
  313. msgstr "%s: %s: %s %3d%% (%lu octets transférés)"
  314. #, c-format
  315. msgid "%s: %s: %s %lu bytes transferred"
  316. msgstr "%s: %s: %s %lu octets transférés"
  317. msgid "Getting file"
  318. msgstr "Obtention du fichier"
  319. #, c-format
  320. msgid ""
  321. "Cannot open %s archive\n"
  322. "%s"
  323. msgstr ""
  324. "Ne peut ouvrir l'archive %s\n"
  325. "%s"
  326. msgid "Inconsistent extfs archive"
  327. msgstr "archive extfs incohérente"
  328. #, c-format
  329. msgid "Warning: cannot open %s directory\n"
  330. msgstr "Avertissement : impossible d'ouvrir le répertoire %s\n"
  331. #, c-format
  332. msgid "fish: Disconnecting from %s"
  333. msgstr "fish : déconnexion de %s"
  334. msgid "fish: Waiting for initial line..."
  335. msgstr "fish : attente de la première ligne..."
  336. msgid "Sorry, we cannot do password authenticated connections for now."
  337. msgstr ""
  338. "Désolé, nous ne pouvons pas faire de connexion authentifiée par mot de passe "
  339. "pour l'instant."
  340. #, fuzzy, c-format
  341. msgid "fish: Password is required for %s"
  342. msgstr " fish : mot de passe requis "
  343. msgid "fish: Sending password..."
  344. msgstr "fish : envoi du mot de passe"
  345. msgid "fish: Sending initial line..."
  346. msgstr "fish : envoie de la ligne initiale..."
  347. msgid "fish: Handshaking version..."
  348. msgstr "fish : vérification des numéros de version..."
  349. msgid "fish: Setting up current directory..."
  350. msgstr "fish: configuration du répertoire courant..."
  351. #, c-format
  352. msgid "fish: Connected, home %s."
  353. msgstr "fish : connecté, home %s."
  354. #, c-format
  355. msgid "fish: Reading directory %s..."
  356. msgstr "fish : lecture du répertoire %s..."
  357. #, c-format
  358. msgid "%s: done."
  359. msgstr "%s : fait."
  360. #, c-format
  361. msgid "%s: failure"
  362. msgstr "%s : grosse erreur"
  363. #, c-format
  364. msgid "fish: store %s: sending command..."
  365. msgstr "fish : store %s : envoie de la commande..."
  366. msgid "fish: Local read failed, sending zeros"
  367. msgstr "fish : Échec de la lecture locale, envoie de zéros"
  368. #, c-format
  369. msgid "fish: storing %s %d (%lu)"
  370. msgstr "fish : stockage %s %d (%lu)"
  371. msgid "zeros"
  372. msgstr "zéro"
  373. msgid "file"
  374. msgstr "fichier"
  375. msgid "Aborting transfer..."
  376. msgstr "Abandon du transfert."
  377. msgid "Error reported after abort."
  378. msgstr "Erreur raportée après l'abandon."
  379. msgid "Aborted transfer would be successful."
  380. msgstr "Le transfert abandonné devrait avoir réussi."
  381. #, c-format
  382. msgid "ftpfs: Disconnecting from %s"
  383. msgstr "FTPfs : déconnexion de %s"
  384. #, fuzzy, c-format
  385. msgid "FTP: Password required for %s"
  386. msgstr " FTP : mot de passe requis "
  387. msgid "ftpfs: sending login name"
  388. msgstr "FTPfs : envoi du nom de connexion"
  389. msgid "ftpfs: sending user password"
  390. msgstr "FTPfs : envoi du mot de passe"
  391. #, c-format
  392. msgid "FTP: Account required for user %s"
  393. msgstr " FTP : compte requis pour l'utilisateur %s"
  394. msgid "Account:"
  395. msgstr "Compte :"
  396. msgid "ftpfs: sending user account"
  397. msgstr "FTPfs : envoie du compte utilisateur"
  398. msgid "ftpfs: logged in"
  399. msgstr "FTPfs : connecté"
  400. #, c-format
  401. msgid "ftpfs: Login incorrect for user %s "
  402. msgstr "FTPfs : login incorrect pour l'utilisateur %s"
  403. msgid "ftpfs: Invalid host name."
  404. msgstr "FTPfs : nom d'hôte invalide."
  405. #, c-format
  406. msgid "ftpfs: %s"
  407. msgstr "FTPfs : %s"
  408. #, c-format
  409. msgid "ftpfs: making connection to %s"
  410. msgstr "FTPfs : établissement de la connexion à %s"
  411. msgid "ftpfs: connection interrupted by user"
  412. msgstr "FTPfs : connexion interrompue par l'utilisateur"
  413. #, c-format
  414. msgid "ftpfs: connection to server failed: %s"
  415. msgstr "FTPfs : connexion au serveur échouée : %s"
  416. #, c-format
  417. msgid "Waiting to retry... %d (Control-C to cancel)"
  418. msgstr "Attente avant de réessayer... %d (Control-C pour annuler)"
  419. msgid "ftpfs: invalid address family"
  420. msgstr "FTPfs : famille d'adresse"
  421. #, c-format
  422. msgid "ftpfs: could not setup passive mode: %s"
  423. msgstr "FTPfs : ne peut configurer le mode passif : %s"
  424. #, c-format
  425. msgid "ftpfs: could not create socket: %s"
  426. msgstr "FTPfs : Ne peut créer une socket : %s "
  427. msgid "ftpfs: could not setup passive mode"
  428. msgstr "FTPfs : ne peut configurer le mode passif"
  429. msgid "ftpfs: aborting transfer."
  430. msgstr "FTPfs : abandon du transfert."
  431. #, c-format
  432. msgid "ftpfs: abort error: %s"
  433. msgstr "FTPfs : erreur d'abandon : %s"
  434. msgid "ftpfs: abort failed"
  435. msgstr "FTPfs : échec de l'abandon"
  436. msgid "ftpfs: CWD failed."
  437. msgstr "FTPfs : échec de CWD."
  438. msgid "ftpfs: couldn't resolve symlink"
  439. msgstr "FTPfs : ne peut résoudre le lien symbolique"
  440. msgid "Resolving symlink..."
  441. msgstr "Résolution du lien symbolique..."
  442. #, c-format
  443. msgid "ftpfs: Reading FTP directory %s... %s%s"
  444. msgstr "FTPfs : lecture du répertoire FTP %s... %s%s"
  445. msgid "(strict rfc959)"
  446. msgstr "(rfc959 stricte)"
  447. msgid "(chdir first)"
  448. msgstr "(chdir d'abord)"
  449. msgid "ftpfs: failed; nowhere to fallback to"
  450. msgstr "FTPfs : échec ; nulle part où retomber"
  451. #, c-format
  452. msgid "ftpfs: storing file %lu (%lu)"
  453. msgstr "ftpfs : stockage du fichier %lu (%lu)"
  454. #, fuzzy
  455. msgid ""
  456. "~/.netrc file has incorrect mode\n"
  457. "Remove password or correct mode"
  458. msgstr ""
  459. "Le fichier ~/.netrc n'a pas un mode correct.\n"
  460. "Enlevez le mot de passe ou corrigez le mode."
  461. #, fuzzy
  462. msgid "MCFS"
  463. msgstr " MCFS "
  464. #, fuzzy
  465. msgid "The server does not support this version"
  466. msgstr " Le serveur ne supporte pas cette version "
  467. #, fuzzy
  468. msgid ""
  469. "The remote server is not running on a system port\n"
  470. "you need a password to log in, but the information may\n"
  471. "not be safe on the remote side. Continue?\n"
  472. msgstr ""
  473. " Le serveur distant ne tourne pas sur un port privilégié. \n"
  474. " Vous devez donner un mot de passe pour entrer, mais cette \n"
  475. " information peut être détournée sur le serveur. Continuer ? \n"
  476. msgid "&Yes"
  477. msgstr "&Oui"
  478. msgid "&No"
  479. msgstr "&Non"
  480. #, fuzzy
  481. msgid "MCFS Password required"
  482. msgstr " Mot de passe MCFS requis "
  483. #, fuzzy
  484. msgid "Invalid password"
  485. msgstr " Mot de passe incorrect "
  486. #, fuzzy, c-format
  487. msgid "Cannot locate hostname: %s"
  488. msgstr " Ne peut localiser la machine : %s "
  489. #, fuzzy, c-format
  490. msgid "Cannot create socket: %s"
  491. msgstr " Ne peut créer une socket : %s "
  492. #, fuzzy, c-format
  493. msgid "Cannot connect to server: %s"
  494. msgstr " Ne peut se connecter au serveur : %s "
  495. #, fuzzy
  496. msgid "Too many open connections"
  497. msgstr " Trop de connexions ouvertes "
  498. #, c-format
  499. msgid "Warning: file %s not found\n"
  500. msgstr "Attention : fichier %s non trouvé\n"
  501. #, c-format
  502. msgid ""
  503. "Warning: Invalid line in %s:\n"
  504. "%s\n"
  505. msgstr ""
  506. "Attention : ligne invalide dans %s :\n"
  507. "%s\n"
  508. #, c-format
  509. msgid ""
  510. "Warning: Invalid flag %c in %s:\n"
  511. "%s\n"
  512. msgstr ""
  513. "Attention : drapeau invalide %c dans %s :\n"
  514. "%s\n"
  515. #, fuzzy, c-format
  516. msgid "reconnect to %s failed"
  517. msgstr ""
  518. " échec de la reconnexion à %s\n"
  519. " "
  520. #, fuzzy
  521. msgid "Authentication failed"
  522. msgstr " Échec de l'authentification "
  523. #, fuzzy, c-format
  524. msgid "Error %s creating directory %s"
  525. msgstr " %s création du répertoire %s "
  526. #, fuzzy, c-format
  527. msgid "Error %s removing directory %s"
  528. msgstr " %s destruction du répertoire %s "
  529. #, fuzzy, c-format
  530. msgid "%s opening remote file %s"
  531. msgstr " %s ouverture du fichier distant %s "
  532. #, fuzzy, c-format
  533. msgid "%s removing remote file %s"
  534. msgstr " %s suppression du fichier distant %s "
  535. #, fuzzy, c-format
  536. msgid "%s renaming files\n"
  537. msgstr " %s changement de noms de fichiers\n"
  538. #, c-format
  539. msgid ""
  540. "Cannot open tar archive\n"
  541. "%s"
  542. msgstr ""
  543. "Ne peut ouvrir l'archive tar\n"
  544. "%s"
  545. msgid "Inconsistent tar archive"
  546. msgstr "Archive tar incohérente"
  547. msgid "Unexpected EOF on archive file"
  548. msgstr "Fin de fichier inattendue sur le fichier archive."
  549. #, fuzzy, c-format
  550. msgid ""
  551. "%s\n"
  552. "doesn't look like a tar archive."
  553. msgstr ""
  554. "Hmm,...\n"
  555. "%s\n"
  556. "ne ressemble pas à une archive tar."
  557. #, fuzzy
  558. msgid "undelfs: error"
  559. msgstr " undelfs : erreur "
  560. #, fuzzy
  561. msgid "not enough memory"
  562. msgstr " pas assez de mémoire "
  563. #, fuzzy
  564. msgid "while allocating block buffer"
  565. msgstr " lors de l'allocation d'un tampon bloc "
  566. #, fuzzy, c-format
  567. msgid "open_inode_scan: %d"
  568. msgstr " open_inode_scan : %d "
  569. #, fuzzy, c-format
  570. msgid "while starting inode scan %d"
  571. msgstr " lors du démarrage du scrutage de l'inode %d "
  572. #, c-format
  573. msgid "undelfs: loading deleted files information %d inodes"
  574. msgstr ""
  575. "undelfs : chargement le l'information de fichiers supprimés de %d inodes"
  576. #, fuzzy, c-format
  577. msgid "while calling ext2_block_iterate %d"
  578. msgstr " lors de l'appel de ext2_block_iterate %d "
  579. #, fuzzy
  580. msgid "no more memory while reallocating array"
  581. msgstr " pas plus de mémoire lors de la ré-allocation du tableau "
  582. #, fuzzy, c-format
  583. msgid "while doing inode scan %d"
  584. msgstr " lors du scrutage de l'i-noeud %d "
  585. #, fuzzy
  586. msgid "Ext2lib error"
  587. msgstr " erreur Ext2lib "
  588. #, fuzzy, c-format
  589. msgid "Cannot open file %s"
  590. msgstr " Ne peut ouvrir le fichier %s "
  591. msgid "undelfs: reading inode bitmap..."
  592. msgstr "undelfs : lecture du bitmap d'i-noeud..."
  593. #, fuzzy, c-format
  594. msgid ""
  595. "Cannot load inode bitmap from:\n"
  596. "%s"
  597. msgstr ""
  598. " Ne peut charger le bitmap d'i-noeud depuis : \n"
  599. " %s \n"
  600. msgid "undelfs: reading block bitmap..."
  601. msgstr "undelfs : lecture du bitmap bloc"
  602. #, fuzzy, c-format
  603. msgid ""
  604. "Cannot load block bitmap from:\n"
  605. "%s"
  606. msgstr ""
  607. " Ne peut charger le bitmap bloc depuis : \n"
  608. " %s \n"
  609. #, fuzzy
  610. msgid "vfs_info is not fs!"
  611. msgstr " vfs_info n'est pas fs ! "
  612. #, fuzzy
  613. msgid "You have to chdir to extract files first"
  614. msgstr ""
  615. " Vous devez changer de répertoire pour extraire les fichier en premier "
  616. #, fuzzy
  617. msgid "while iterating over blocks"
  618. msgstr " lors de l'itération au dessus des blocs "
  619. #, fuzzy, c-format
  620. msgid "Cannot open file \"%s\""
  621. msgstr " Ne peut ouvrir le fichier %s "
  622. msgid "Cannot parse:"
  623. msgstr "Ne peut analyser :"
  624. msgid "More parsing errors will be ignored."
  625. msgstr "Les prochaines erreurs d'analyse seront ignorées."
  626. msgid "Internal error:"
  627. msgstr "Erreur interne :"
  628. msgid "Password:"
  629. msgstr "Mot de passe :"
  630. msgid "Changes to file lost"
  631. msgstr "Les changements au fichier sont perdus"
  632. msgid "&Cancel"
  633. msgstr "&Annuler"
  634. msgid "&Set"
  635. msgstr "&Appliquer"
  636. msgid "S&kip"
  637. msgstr "S&uivant"
  638. msgid "Set &all"
  639. msgstr "&Global"
  640. msgid "owner"
  641. msgstr "propriétaire"
  642. msgid "group"
  643. msgstr "groupe"
  644. msgid "other"
  645. msgstr "autres"
  646. msgid "On"
  647. msgstr "Activé"
  648. msgid "Flag"
  649. msgstr "Drapeau"
  650. msgid "Mode"
  651. msgstr "Mode"
  652. #, c-format
  653. msgid "%6d of %d"
  654. msgstr "%6d sur %d"
  655. #, fuzzy
  656. msgid "Chown advanced command"
  657. msgstr " Commande chown avancée "
  658. # XXX: ajout «»
  659. #, fuzzy, c-format
  660. msgid ""
  661. "Cannot chmod \"%s\"\n"
  662. "%s"
  663. msgstr ""
  664. " Ne peut changer les droits d'accès de %s \n"
  665. " %s "
  666. # XXX: idem
  667. #, fuzzy, c-format
  668. msgid ""
  669. "Cannot chown \"%s\"\n"
  670. "%s"
  671. msgstr ""
  672. " Impossible de modifier l'appartenance de \"%s\" \n"
  673. " %s "
  674. msgid "Displays the current version"
  675. msgstr "Affiche le numéro de la version courante"
  676. msgid "Print data directory"
  677. msgstr "Affiche le répertoire de données"
  678. msgid "Print last working directory to specified file"
  679. msgstr "Écrit le dernier répertoire courant dans le fichier donné"
  680. msgid "Enables subshell support (default)"
  681. msgstr "Active le support des sous-shells (par défaut)"
  682. msgid "Disables subshell support"
  683. msgstr "Désactive le support des sous-shells"
  684. msgid "Log ftp dialog to specified file"
  685. msgstr "Consigne les dialogues FTP dans le fichier spécifié"
  686. msgid "Set debug level"
  687. msgstr "Initialise le niveau de débugage"
  688. msgid "Launches the file viewer on a file"
  689. msgstr "Lance le visionneur de fichiers sur un fichier"
  690. msgid "Edits one file"
  691. msgstr "Édite un fichier"
  692. msgid "Forces xterm features"
  693. msgstr "Force un attribut xterm"
  694. msgid "Disable mouse support in text version"
  695. msgstr "Désactive le support de la souris pour la version texte"
  696. msgid "Tries to use termcap instead of terminfo"
  697. msgstr "Essaie d'utiliser termcap au lieu de terminfo"
  698. msgid "To run on slow terminals"
  699. msgstr "À exécuter sur les terminaux lents"
  700. msgid "Use stickchars to draw"
  701. msgstr "Utiliser les caractères graphiques pour dessiner"
  702. msgid "Resets soft keys on HP terminals"
  703. msgstr "Réinitialiser les « softkeys » sur les terminaux HP"
  704. # XXX: specified file (voir dans tout le ficheir)
  705. msgid "Load definitions of key bindings from specified file"
  706. msgstr "Charge les définitions des raccourcis clavier depuis le fichier donné"
  707. msgid "Requests to run in black and white"
  708. msgstr "Demande à fonctionner en mode noir et blanc"
  709. msgid "Request to run in color mode"
  710. msgstr "Demande à fonctionner en mode couleur"
  711. msgid "Specifies a color configuration"
  712. msgstr "Spécifie une configuration des couleurs"
  713. msgid "Show mc with specified skin"
  714. msgstr "Afficher mc avec le thème donné"
  715. #. TRANSLATORS: don't translate keywords and names of colors
  716. #, fuzzy
  717. msgid ""
  718. "--colors KEYWORD={FORE},{BACK}\n"
  719. "\n"
  720. "{FORE} and {BACK} can be omitted, and the default will be used\n"
  721. "\n"
  722. "Keywords:\n"
  723. " Global: errors, reverse, gauge, viewunderline\n"
  724. " input, inputmark, inputunchanged, commandlinemark\n"
  725. " File display: normal, selected, marked, markselect\n"
  726. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  727. " errdhotfocus\n"
  728. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  729. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  730. " editlinestate\n"
  731. msgstr ""
  732. "--colors MOTCLÉ={premier plan},{arrière-plan}\n"
  733. "\n"
  734. "{premier plan} et {arrière-plan} peuvent être ommis, mais les valeurs par\n"
  735. "défauts seront utilisées.\n"
  736. "\n"
  737. "mots clés :\n"
  738. " Global : errors, reverse, gauge, input, viewunderline\n"
  739. " Affichage fichiers : normal, selected, marked, markselect\n"
  740. " Boîtes de dialogue : dnormal, dfocus, dhotnormal, dhotfocus, "
  741. "errdhotnormal\n"
  742. " errdhotfocus\n"
  743. " Menus : menu, menuhot, menusel, menuhotsel\n"
  744. " Editeur : editnormal, editbold, editmarked, editwhitespace,\n"
  745. " editlinestate\n"
  746. msgid ""
  747. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  748. "\n"
  749. "Colors:\n"
  750. " black, gray, red, brightred, green, brightgreen, brown,\n"
  751. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  752. " brightcyan, lightgray and white\n"
  753. "\n"
  754. msgstr ""
  755. " Aide : helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  756. "\n"
  757. "Couleurs :\n"
  758. " black, gray, red, brightred, green, brightgreen, brown,\n"
  759. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  760. " brightcyan, lightgray and white\n"
  761. "\n"
  762. msgid "Color options"
  763. msgstr "Options de couleur"
  764. msgid "+number"
  765. msgstr "+nombre"
  766. msgid "[this_dir] [other_panel_dir]"
  767. msgstr "[ce_rép] [autre_rép_panneau]"
  768. msgid "Set initial line number for the internal editor"
  769. msgstr "Définit le numéro de ligne initial pour l'éditeur interne"
  770. #, fuzzy
  771. msgid ""
  772. "\n"
  773. "Please send any bug reports (including the output of `mc -V')\n"
  774. "as tickets at www.midnight-commander.org\n"
  775. msgstr ""
  776. "\n"
  777. "Envoyer vos rapports d'anomalies (incluant la sortie de `mc -V')\n"
  778. "à mc-devel@gnome.org\n"
  779. #, c-format
  780. msgid "GNU Midnight Commander %s\n"
  781. msgstr "GNU Midnight Commander %s\n"
  782. msgid "No arguments given to the viewer."
  783. msgstr ""
  784. msgid "There 2 files are required to diffviewer."
  785. msgstr ""
  786. msgid "Main options"
  787. msgstr "Options principales"
  788. msgid "Terminal options"
  789. msgstr "Options du terminal"
  790. #, fuzzy
  791. msgid "Background process error"
  792. msgstr " Erreur dans un processus en tâche de fond "
  793. #, fuzzy
  794. msgid "Unknown error in child"
  795. msgstr " Erreur inconnue dans le processus fils "
  796. #, fuzzy
  797. msgid "Child died unexpectedly"
  798. msgstr " Mort inattendue du processus fils "
  799. #, fuzzy
  800. msgid "Background protocol error"
  801. msgstr " Erreur de protocole de fond "
  802. #, fuzzy
  803. msgid "Reading failed"
  804. msgstr "<échec de readlink>"
  805. #, fuzzy
  806. msgid ""
  807. "Background process sent us a request for more arguments\n"
  808. "than we can handle."
  809. msgstr ""
  810. "Une tâche de fond a passé plus de paramètres que je ne peux en gérer. \n"
  811. msgid "&Full file list"
  812. msgstr "Liste &Complète des fichiers"
  813. msgid "&Brief file list"
  814. msgstr "Liste &Brève des fichiers"
  815. msgid "&Long file list"
  816. msgstr "Liste &Longue des fichiers"
  817. msgid "&User defined:"
  818. msgstr "Définie par l'&Utilisateur :"
  819. msgid "Listing mode"
  820. msgstr "Mode de listage"
  821. #, fuzzy
  822. msgid "User &mini status"
  823. msgstr "&Mini-afficheur d'état utilisateur"
  824. msgid "&OK"
  825. msgstr "&Valider"
  826. msgid "&Reverse"
  827. msgstr "Inve&Rsé"
  828. # XXX: "sensible à la casse"
  829. msgid "Case sensi&tive"
  830. msgstr "Respec&t de la casse "
  831. msgid "Executable &first"
  832. msgstr "Exécutable en &premier"
  833. msgid "Sort order"
  834. msgstr "Ordre de tri"
  835. msgid "Confirmation"
  836. msgstr " Confirmation "
  837. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix
  838. #. 2
  839. msgid "Confirmation|&History cleanup"
  840. msgstr " Confirmation|Nettoyage de l'&Historique"
  841. msgid "Confirmation|&Directory hotlist delete"
  842. msgstr "Confirmation|Suppression du &Répertoire hotlist"
  843. msgid "Confirmation|E&xit"
  844. msgstr " Confirmation|&Quitter"
  845. msgid "Confirmation|&Execute"
  846. msgstr " Confirmation|Exécuter"
  847. msgid "Confirmation|O&verwrite"
  848. msgstr " Confirmation|É&Crasement "
  849. msgid "Confirmation|&Delete"
  850. msgstr " Confirmation|&Supprimer"
  851. msgid "UTF-8 output"
  852. msgstr "Sortie UTF-8"
  853. msgid "Full 8 bits output"
  854. msgstr "Sortie 8 bits"
  855. msgid "ISO 8859-1"
  856. msgstr "ISO 8859-1"
  857. msgid "7 bits"
  858. msgstr "7 bits"
  859. msgid "F&ull 8 bits input"
  860. msgstr "Entrée 8 &bits"
  861. #, fuzzy
  862. msgid "Display bits"
  863. msgstr " Bits d'affichage "
  864. msgid "Other 8 bit"
  865. msgstr "Autre 8 bits"
  866. msgid "Input / display codepage:"
  867. msgstr "Entrée / affichage d'encodage :"
  868. msgid "&Select"
  869. msgstr "&Sélectionner"
  870. #, fuzzy
  871. msgid "Directory tree"
  872. msgstr "&Arborescence des répertoires"
  873. msgid "Use passive mode over pro&xy"
  874. msgstr "Utiliser le mode passif à travers un pro&xy"
  875. msgid "Use &passive mode"
  876. msgstr "Utiliser le mode &passif"
  877. msgid "&Use ~/.netrc"
  878. msgstr "&Utiliser ~/.netrc"
  879. msgid "&Always use ftp proxy"
  880. msgstr "&Toujours utiliser le proxy FTP"
  881. msgid "sec"
  882. msgstr "sec"
  883. msgid "ftpfs directory cache timeout:"
  884. msgstr "Durée de garde du cache FTPfs:"
  885. msgid "ftp anonymous password:"
  886. msgstr "Mot de passe pour FTP anonyme :"
  887. msgid "Timeout for freeing VFSs:"
  888. msgstr "Délai pour libérer les SFVs:"
  889. #, fuzzy
  890. msgid "Virtual File System Setting"
  891. msgstr " Configuration du Système de Fichier Virtuel (VFS) "
  892. msgid "cd"
  893. msgstr "cd"
  894. msgid "Quick cd"
  895. msgstr "Cd rapide"
  896. msgid "Symbolic link filename:"
  897. msgstr "Nom du lien symbolique :"
  898. msgid "Existing filename (filename symlink will point to):"
  899. msgstr "Fichier existant (vers lequel le lien va pointer) :"
  900. msgid "Symbolic link"
  901. msgstr "Lien symbolique"
  902. #, fuzzy
  903. msgid "Running"
  904. msgstr "En cours "
  905. msgid "Stopped"
  906. msgstr "Stoppé"
  907. msgid "&Stop"
  908. msgstr "&Stopper"
  909. msgid "&Resume"
  910. msgstr "&Reprendre"
  911. msgid "&Kill"
  912. msgstr "&Tuer"
  913. msgid "Background Jobs"
  914. msgstr "Processus en tâche de fond"
  915. msgid "Domain:"
  916. msgstr "Domaine : "
  917. msgid "Username:"
  918. msgstr "Nom d'utilisateur : "
  919. #, c-format
  920. msgid "Password for \\\\%s\\%s"
  921. msgstr "Mot de passe pour \\\\%s\\%s"
  922. msgid "7-bit ASCII"
  923. msgstr "ASCII 7 bits"
  924. #, c-format
  925. msgid "Cannot translate from %s to %s"
  926. msgstr "Ne peut converti de %s vers %s"
  927. msgid "execute/search by others"
  928. msgstr "exéc./rech. par les autres"
  929. msgid "write by others"
  930. msgstr "écriture par les autres"
  931. msgid "read by others"
  932. msgstr "lecture par les autres"
  933. msgid "execute/search by group"
  934. msgstr "exécuter/rechercher par le groupe"
  935. msgid "write by group"
  936. msgstr "écriture par le groupe"
  937. msgid "read by group"
  938. msgstr "lecture par le groupe"
  939. msgid "execute/search by owner"
  940. msgstr "exéc./rech. par le propr."
  941. msgid "write by owner"
  942. msgstr "écriture par le propr."
  943. msgid "read by owner"
  944. msgstr "lecture par le propr."
  945. msgid "sticky bit"
  946. msgstr "bit collant (sticky)"
  947. msgid "set group ID on execution"
  948. msgstr "exécuter avec l'ID groupe"
  949. msgid "set user ID on execution"
  950. msgstr "exécuter avec l'ID propr."
  951. msgid "C&lear marked"
  952. msgstr "Supprimer les marqués"
  953. #, fuzzy
  954. msgid "S&et marked"
  955. msgstr "Pos&er marque"
  956. msgid "&Marked all"
  957. msgstr "Tous &Marqués"
  958. msgid "Name"
  959. msgstr "Nom"
  960. msgid "Permissions (Octal)"
  961. msgstr "Permissions (Octal)"
  962. msgid "Owner name"
  963. msgstr "Nom du propriétaire"
  964. msgid "Group name"
  965. msgstr "Nom du groupe"
  966. msgid "Use SPACE to change"
  967. msgstr "Tapez ESPACE pour changer"
  968. msgid "an option, ARROW KEYS"
  969. msgstr "une option, une FLÈCHE pour"
  970. msgid "to move between options"
  971. msgstr "naviguer entre les options,"
  972. msgid "and T or INS to mark"
  973. msgstr "et T ou INSER pour marquer"
  974. msgid "Chmod command"
  975. msgstr "Commande chmod"
  976. msgid "File"
  977. msgstr "Fichier"
  978. msgid "Permission"
  979. msgstr "Permission"
  980. msgid "Set &users"
  981. msgstr "Définir les &utilisateurs"
  982. msgid "Set &groups"
  983. msgstr "Définir les &groupes"
  984. msgid "Size"
  985. msgstr "Taille"
  986. #, fuzzy
  987. msgid "Chown command"
  988. msgstr " Commande chown "
  989. msgid "<Unknown user>"
  990. msgstr "<Utilisateur inconnu>"
  991. msgid "<Unknown group>"
  992. msgstr "<Groupe inconnu>"
  993. #, fuzzy
  994. msgid "User name"
  995. msgstr " Nom d'utilisateur "
  996. msgid "Files tagged, want to cd?"
  997. msgstr "Fichiers marqués, voulez-vous changer de répertoire?"
  998. msgid "Cannot change directory"
  999. msgstr " Ne peut changer de répertoire"
  1000. #, fuzzy
  1001. msgid "View file"
  1002. msgstr " Voir le fichier "
  1003. #, fuzzy
  1004. msgid "Filename:"
  1005. msgstr " Nom du fichier : "
  1006. #, fuzzy
  1007. msgid "Filtered view"
  1008. msgstr "Vue &filtrée "
  1009. #, fuzzy
  1010. msgid "Filter command and arguments:"
  1011. msgstr " Filtre commande et arguments :"
  1012. msgid "Create a new Directory"
  1013. msgstr "Créer un nouveau répertoire"
  1014. #, fuzzy
  1015. msgid "Enter directory name:"
  1016. msgstr " Saisissez le nom du répertoire :"
  1017. #, fuzzy
  1018. msgid "Filter"
  1019. msgstr " Filtre "
  1020. #, fuzzy
  1021. msgid "Set expression for filtering filenames"
  1022. msgstr " Expression pour filtrer les noms des fichiers"
  1023. msgid "&Using shell patterns"
  1024. msgstr "&Utiliser les « shell patterns »"
  1025. # XXX : voir &?
  1026. msgid "&Case sensitive"
  1027. msgstr "Respect de la &Casse "
  1028. msgid "&Files only"
  1029. msgstr "&Fichiers seulement"
  1030. #, fuzzy
  1031. msgid "Select"
  1032. msgstr "&Sélectionner"
  1033. #, fuzzy
  1034. msgid "Unselect"
  1035. msgstr " Désélectionner "
  1036. msgid "Extension file edit"
  1037. msgstr "Éditer les extensions de fichiers"
  1038. #, fuzzy
  1039. msgid "Which extension file you want to edit?"
  1040. msgstr " Quelle extension de fichier voulez-vous éditer ? "
  1041. msgid "&User"
  1042. msgstr "&Utilisateur"
  1043. msgid "&System Wide"
  1044. msgstr "Pour tout le &Système"
  1045. #, fuzzy
  1046. msgid "Menu edit"
  1047. msgstr " Édition du menu"
  1048. #, fuzzy
  1049. msgid "Which menu file do you want to edit?"
  1050. msgstr " Quel fichier de menu voulez-vous éditer ? "
  1051. msgid "&Local"
  1052. msgstr "&Local"
  1053. msgid "Highlighting groups file edit"
  1054. msgstr ""
  1055. # XXX: en surbrillance... trad plus légère
  1056. #, fuzzy
  1057. msgid "Which highlighting file you want to edit?"
  1058. msgstr " Quel fichier en surbrillance voulez-vous éditer ? "
  1059. #, fuzzy
  1060. msgid "Compare directories"
  1061. msgstr "&Comparer des répertoires"
  1062. #, fuzzy
  1063. msgid "Select compare method:"
  1064. msgstr " Sélectionner la méthode de comparaison : "
  1065. msgid "&Quick"
  1066. msgstr "&Rapide"
  1067. msgid "&Size only"
  1068. msgstr "Taille &Seulement"
  1069. msgid "&Thorough"
  1070. msgstr "&Exhaustive"
  1071. #, fuzzy
  1072. msgid ""
  1073. "Both panels should be in the listing mode\n"
  1074. "to use this command"
  1075. msgstr ""
  1076. " Les deux panneaux doivent être en mode liste pour utiliser cette commande "
  1077. #, fuzzy
  1078. msgid ""
  1079. "Not an xterm or Linux console;\n"
  1080. "the panels cannot be toggled."
  1081. msgstr ""
  1082. "Ceci n'est pas un xterm ou une console Linux ;\n"
  1083. "les panneaux ne peuvent être basculés. "
  1084. #, c-format
  1085. msgid "Link %s to:"
  1086. msgstr " lien %s vers : "
  1087. #, fuzzy
  1088. msgid "Link"
  1089. msgstr "&Lien"
  1090. #, fuzzy, c-format
  1091. msgid "link: %s"
  1092. msgstr " lien : %s "
  1093. #, fuzzy, c-format
  1094. msgid "symlink: %s"
  1095. msgstr " lien symbolique : %s "
  1096. #, fuzzy, c-format
  1097. msgid "Symlink `%s' points to:"
  1098. msgstr " Le lien symbolique « %s » pointe vers : "
  1099. #, fuzzy
  1100. msgid "Edit symlink"
  1101. msgstr " Éditer le lien s&ymbolique "
  1102. #, fuzzy, c-format
  1103. msgid "edit symlink, unable to remove %s: %s"
  1104. msgstr " édition de lien symbolique, incapable d'enlever %s : %s "
  1105. #, fuzzy, c-format
  1106. msgid "edit symlink: %s"
  1107. msgstr " éditer le lien symbolique : %s "
  1108. #, c-format
  1109. msgid "`%s' is not a symbolic link"
  1110. msgstr "« %s » n'est pas un lien symbolique"
  1111. #, fuzzy, c-format
  1112. msgid "Cannot chdir to %s"
  1113. msgstr " Impossible d'aller dans le répertoire %s "
  1114. #, fuzzy
  1115. msgid "Enter machine name (F1 for details):"
  1116. msgstr " Saisissez le nom de la machine (F1 pour les détails) : "
  1117. #, fuzzy
  1118. msgid "Link to a remote machine"
  1119. msgstr " Lien vers une machine distante "
  1120. #, fuzzy
  1121. msgid "FTP to machine"
  1122. msgstr " FTP vers une machine "
  1123. #, fuzzy
  1124. msgid "Shell link to machine"
  1125. msgstr " Lien shell vers une machine "
  1126. #, fuzzy
  1127. msgid "SMB link to machine"
  1128. msgstr " Lien SMB vers une machine "
  1129. #, fuzzy
  1130. msgid "Undelete files on an ext2 file system"
  1131. msgstr " Récupération de fichiers effacés sur un système de fichiers ext2"
  1132. #, fuzzy
  1133. msgid ""
  1134. "Enter device (without /dev/) to undelete\n"
  1135. "files on: (F1 for details)"
  1136. msgstr ""
  1137. " Saisissez le périphérique (sans /dev/) sur\n"
  1138. " lequel la récupération doit être faite : (F1 pour les détails)"
  1139. #, fuzzy
  1140. msgid "Setup"
  1141. msgstr " Configuration "
  1142. #, fuzzy, c-format
  1143. msgid "Setup saved to ~/%s"
  1144. msgstr " Configuration enregistrée dans ~/%s"
  1145. #, fuzzy, c-format
  1146. msgid ""
  1147. "Cannot chdir to \"%s\"\n"
  1148. "%s"
  1149. msgstr ""
  1150. " Ne peut aller dans le répertoire « %s »\n"
  1151. " %s "
  1152. #, fuzzy
  1153. msgid "Cannot execute commands on non-local filesystems"
  1154. msgstr " Ne peut exécuter une commande sur un système de fichiers non local"
  1155. #, fuzzy
  1156. msgid "The shell is already running a command"
  1157. msgstr " Le shell est déjà en train d'exécuter une commande "
  1158. msgid "&Dismiss"
  1159. msgstr "&Fermer"
  1160. msgid "All charsets"
  1161. msgstr "Tous les encodages"
  1162. msgid "&Whole words"
  1163. msgstr "&Mots entiers"
  1164. msgid "&Backwards"
  1165. msgstr "Vers le &haut"
  1166. # XXX: "sensible à la casse"
  1167. #, fuzzy
  1168. msgid "Case &sensitive"
  1169. msgstr "Respec&t de la casse "
  1170. #, fuzzy
  1171. msgid "Enter search string:"
  1172. msgstr " Saisissez la chaîne à rechercher :"
  1173. msgid "Search"
  1174. msgstr "Rechercher"
  1175. #, fuzzy
  1176. msgid "Search is disabled"
  1177. msgstr "Rechercher"
  1178. #, fuzzy, c-format
  1179. msgid ""
  1180. "Cannot create temporary diff file\n"
  1181. "%s"
  1182. msgstr ""
  1183. " Ne peut créer un fichier de commandes temporaire \n"
  1184. " %s "
  1185. # idem
  1186. #, fuzzy, c-format
  1187. msgid ""
  1188. "Cannot create backup file\n"
  1189. "%s%s\n"
  1190. "%s"
  1191. msgstr ""
  1192. " Ne peut créer le fichier cible « %s »\n"
  1193. " %s "
  1194. #, fuzzy, c-format
  1195. msgid ""
  1196. "Cannot create temporary merge file\n"
  1197. "%s"
  1198. msgstr ""
  1199. " Ne peut créer un fichier de commandes temporaire \n"
  1200. " %s "
  1201. #, fuzzy
  1202. msgid "&Normal"
  1203. msgstr "Normal"
  1204. msgid "&Fastest (Assume large files)"
  1205. msgstr ""
  1206. msgid "&Minimal (Find a smaller set of change)"
  1207. msgstr ""
  1208. msgid "Strip &trailing carriage return"
  1209. msgstr ""
  1210. msgid "Ignore all &whitespace"
  1211. msgstr ""
  1212. msgid "Ignore &space change"
  1213. msgstr ""
  1214. msgid "Ignore tab &expansion"
  1215. msgstr ""
  1216. # XXX orthographe verrou
  1217. #, fuzzy
  1218. msgid "&Ignore case"
  1219. msgstr "&Ignorer le verrou"
  1220. #, fuzzy
  1221. msgid "Diff extra options"
  1222. msgstr " Autres options "
  1223. msgid "Diff algorithm"
  1224. msgstr ""
  1225. #, fuzzy
  1226. msgid "Diff Options"
  1227. msgstr " Options "
  1228. #, fuzzy
  1229. msgid "Edit"
  1230. msgstr "&Editer"
  1231. #, fuzzy
  1232. msgid "Edit is disabled"
  1233. msgstr "Édition du fichier de &syntaxe"
  1234. #, fuzzy
  1235. msgid "Goto line (left)"
  1236. msgstr " Aller à la ligne "
  1237. #, fuzzy
  1238. msgid "Goto line (right)"
  1239. msgstr " Aller à la ligne "
  1240. #, fuzzy
  1241. msgid "Enter line:"
  1242. msgstr " Saisissez la ligne : "
  1243. msgid "ButtonBar|Help"
  1244. msgstr "ButtonBar|Aide"
  1245. msgid "ButtonBar|Save"
  1246. msgstr "ButtonBar|Enregi"
  1247. msgid "ButtonBar|Edit"
  1248. msgstr "ButtonBar|Édit."
  1249. #, fuzzy
  1250. msgid "ButtonBar|Merge"
  1251. msgstr "ButtonBar|Oublie"
  1252. msgid "ButtonBar|Search"
  1253. msgstr "ButtonBar|Recher"
  1254. #, fuzzy
  1255. msgid "ButtonBar|Options"
  1256. msgstr "ButtonBar|Ligne"
  1257. msgid "ButtonBar|Quit"
  1258. msgstr "ButtonBar|Quit"
  1259. msgid "Quit"
  1260. msgstr "Quitter"
  1261. #, fuzzy
  1262. msgid "File was modified, Save with exit?"
  1263. msgstr " Le fichier a été modifié. Enregistrer et quitter ? "
  1264. msgid "Two files are needed to compare"
  1265. msgstr ""
  1266. msgid "Cannot read directory contents"
  1267. msgstr " Ne peut lire le contenu du répertoire"
  1268. # ###
  1269. # TODO:
  1270. # * Dans ButtonBar|<mot>, seul les 6 1er caractères sont affichés
  1271. # * Signification de msgid_plural msgstr[.] avant d'enleveler le fuzzy l2805
  1272. # * Uniformiser la traduction de "Cannot" : "ne peut pas" ou "Impossible" ou
  1273. # "Echec"
  1274. # * voir traduction de ftpfs (traduit FTPfs pour l'instant), je pense qu'il
  1275. # faut
  1276. # plutôt traduire "ftpfs"
  1277. # * Traduction de 'parser' : 'analyser'
  1278. # ###
  1279. #, fuzzy
  1280. msgid "Choose syntax highlighting"
  1281. msgstr "Choisissez la coloration syntaxique "
  1282. msgid "< Auto >"
  1283. msgstr "< Auto >"
  1284. msgid "< Reload Current Syntax >"
  1285. msgstr "< Recharger la syntaxe courante >"
  1286. #, fuzzy, c-format
  1287. msgid "Cannot open %s for reading"
  1288. msgstr " Échec de l'ouverture de %s en lecture "
  1289. msgid "Error"
  1290. msgstr "Erreur"
  1291. #, fuzzy, c-format
  1292. msgid "Error reading %s"
  1293. msgstr "Erreur à la lecture du script :"
  1294. #, fuzzy, c-format
  1295. msgid "Error reading from pipe: %s"
  1296. msgstr " Erreur lors de la lecture du tube : %s "
  1297. #, fuzzy, c-format
  1298. msgid "Cannot open pipe for reading: %s"
  1299. msgstr " Échec de l'ouverture du tube en lecture : %s "
  1300. #, fuzzy, c-format
  1301. msgid "Cannot get size/permissions for %s"
  1302. msgstr " Impossible d'obtenir la taille/permissions de %s "
  1303. #, fuzzy, c-format
  1304. msgid "\"%s\" is not a regular file"
  1305. msgstr " %s n'est pas un fichier régulier "
  1306. #, fuzzy, c-format
  1307. msgid "File \"%s\" is too large"
  1308. msgstr " Fichier %s trop grand "
  1309. #, fuzzy
  1310. msgid "About"
  1311. msgstr " À propos "
  1312. msgid ""
  1313. "\n"
  1314. " Cooledit v3.11.5\n"
  1315. "\n"
  1316. " Copyright (C) 1996 the Free Software Foundation\n"
  1317. "\n"
  1318. " A user friendly text editor written\n"
  1319. " for the Midnight Commander.\n"
  1320. msgstr ""
  1321. "\n"
  1322. " Cooledit v3.11.5\n"
  1323. "\n"
  1324. " Copyright (C) 1996 the Free Software Foundation\n"
  1325. "\n"
  1326. " Un éditeur de texte convivial écrit\n"
  1327. " pour Midnight Commander.\n"
  1328. msgid "Macro recursion is too deep"
  1329. msgstr "Profondeur de récursion de la macro trop grande"
  1330. # XXX: trad hard-link, detach
  1331. #, fuzzy
  1332. msgid "File has hard-links. Detach before saving?"
  1333. msgstr ""
  1334. "Le fichier a des liens physiques. Supprimer les liens avant de sauvegarder ?"
  1335. msgid "The file has been modified in the meantime. Save anyway?"
  1336. msgstr "Le fichier a été modifié entre temps. Enregistrer quand même ?"
  1337. #, fuzzy, c-format
  1338. msgid "Error writing to pipe: %s"
  1339. msgstr " Erreur lors de l'écriture sur le tube : "
  1340. #, fuzzy, c-format
  1341. msgid "Cannot open pipe for writing: %s"
  1342. msgstr " Impossible d'ouvrir le tube en écriture : "
  1343. #, fuzzy, c-format
  1344. msgid "Cannot open file for writing: %s"
  1345. msgstr "Impossible d'ouvrir le fichier en écriture : %s "
  1346. msgid "&Quick save"
  1347. msgstr "&Enregistrement rapide"
  1348. msgid "&Safe save"
  1349. msgstr "&Enregistrement sûr"
  1350. msgid "&Do backups with following extension:"
  1351. msgstr "&Faire les sauvegardes avec l'extension suivante :"
  1352. msgid "Check &POSIX new line"
  1353. msgstr "Vérifier les nouvelles lignes &POSIX"
  1354. #, fuzzy
  1355. msgid "Edit Save Mode"
  1356. msgstr " Éditer le mode de sauvegarde"
  1357. msgid "The file you are saving is not finished with a newline"
  1358. msgstr ""
  1359. "Le fichier que vous enregistré ne se termine pas par une nouvelle ligne"
  1360. msgid "C&ontinue"
  1361. msgstr "C&ontinuer"
  1362. msgid "&Do not change"
  1363. msgstr "Ne pas &modifier"
  1364. msgid "&Unix format (LF)"
  1365. msgstr "Format &Unix (LF)"
  1366. msgid "&Windows/DOS format (CR LF)"
  1367. msgstr "Format &Windows/DOS (CR LF)"
  1368. msgid "&Macintosh format (CR)"
  1369. msgstr "Format &Macintosh (CR)"
  1370. # XXX : could be better
  1371. msgid "Change line breaks to:"
  1372. msgstr "Changer la césure vers :"
  1373. #, fuzzy
  1374. msgid "Enter file name:"
  1375. msgstr " Saisissez le nom de fichier : "
  1376. #, fuzzy
  1377. msgid "Save As"
  1378. msgstr " Enregistrer sous "
  1379. #, fuzzy
  1380. msgid "A file already exists with this name"
  1381. msgstr " Un fichier portant le même nom existe déjà. "
  1382. msgid "&Overwrite"
  1383. msgstr "É&craser"
  1384. #, fuzzy
  1385. msgid "Save as"
  1386. msgstr "Enregi&strer sous..."
  1387. #, fuzzy
  1388. msgid "Cannot save file"
  1389. msgstr " Impossible d'enregistrer le fichier. "
  1390. #, fuzzy
  1391. msgid "Delete macro"
  1392. msgstr " Effacer la macro "
  1393. #, fuzzy
  1394. msgid "Cannot open temp file"
  1395. msgstr " Impossible d'ouvrir un fichier temporaire "
  1396. #, fuzzy
  1397. msgid "Cannot open macro file"
  1398. msgstr " Impossible d'ouvrir le fichier de macros "
  1399. #, fuzzy
  1400. msgid "Cannot overwrite macro file"
  1401. msgstr " Impossible d'écraser du fichier de macros "
  1402. #, fuzzy
  1403. msgid "Save macro"
  1404. msgstr " Enregistrer macro "
  1405. #, fuzzy
  1406. msgid "Press the macro's new hotkey:"
  1407. msgstr " Pressez sur la touche à assigner à la macro : "
  1408. #, fuzzy
  1409. msgid "Press macro hotkey:"
  1410. msgstr " Pressez la touche raccourci de la macro : "
  1411. #, fuzzy
  1412. msgid "Load macro"
  1413. msgstr " Charger macro "
  1414. #, fuzzy, c-format
  1415. msgid "Confirm save file: \"%s\""
  1416. msgstr " Voulez-vous vraiment enregistrer le fichier ? : "
  1417. #, fuzzy
  1418. msgid "Save file"
  1419. msgstr " Enregistrer le fichier "
  1420. msgid "&Save"
  1421. msgstr "Enregi&Strer"
  1422. #, fuzzy
  1423. msgid ""
  1424. "Current text was modified without a file save.\n"
  1425. "Continue discards these changes"
  1426. msgstr ""
  1427. " Le fichier courant a été modifié mais pas enregistré. \n"
  1428. " Les changements seront perdus si vous continuez. "
  1429. msgid "Syntax file edit"
  1430. msgstr "Édition du fichier de syntaxe"
  1431. #, fuzzy
  1432. msgid "Which syntax file you want to edit?"
  1433. msgstr " Quel fichier de syntaxe voulez-vous éditer ? "
  1434. #, fuzzy
  1435. msgid "Load"
  1436. msgstr " Ouvrir "
  1437. #, fuzzy
  1438. msgid "Block is large, you may not be able to undo this action"
  1439. msgstr ""
  1440. " Le bloc est gros et il est possible que vous ne puissiez pas annuler ce "
  1441. "changement. "
  1442. msgid "Replace"
  1443. msgstr "Remplacer"
  1444. #, fuzzy, c-format
  1445. msgid "%ld replacements made"
  1446. msgstr " %ld remplacements effectués. "
  1447. #, fuzzy
  1448. msgid "File was modified, save with exit?"
  1449. msgstr " Le fichier a été modifié. Enregistrer et quitter ? "
  1450. msgid "&Cancel quit"
  1451. msgstr "&Annuler quitter"
  1452. #, fuzzy
  1453. msgid "This function is not implemented"
  1454. msgstr " Cette fonctionnalité n'est pas implémentée. "
  1455. #, fuzzy
  1456. msgid "Copy to clipboard"
  1457. msgstr " Copier dans le presse-papiers "
  1458. #, fuzzy
  1459. msgid "Unable to save to file"
  1460. msgstr " Incapable d'enregistrer dans un fichier. "
  1461. #, fuzzy
  1462. msgid "Cut to clipboard"
  1463. msgstr " Couper vers le presse-papiers "
  1464. #, fuzzy
  1465. msgid "Goto line"
  1466. msgstr " Aller à la ligne "
  1467. #, fuzzy
  1468. msgid "Save block"
  1469. msgstr " Enregistrer le bloc "
  1470. #, fuzzy
  1471. msgid "Insert file"
  1472. msgstr "&Insérer fichier..."
  1473. #, fuzzy
  1474. msgid "Cannot insert file"
  1475. msgstr " Impossible d'insérer le fichier. "
  1476. #, fuzzy
  1477. msgid "Sort block"
  1478. msgstr " Trier le bloc "
  1479. #, fuzzy
  1480. msgid "You must first highlight a block of text"
  1481. msgstr " You devez d'abord sélectionner un bloc de texte. "
  1482. #, fuzzy
  1483. msgid "Run sort"
  1484. msgstr " Lancer le tri "
  1485. #, fuzzy
  1486. msgid "Enter sort options (see manpage) separated by whitespace:"
  1487. msgstr ""
  1488. " Saisissez les options de tri (cf page de manuel sort(1)) séparées par des "
  1489. "espaces : "
  1490. #, fuzzy
  1491. msgid "Sort"
  1492. msgstr " Trier "
  1493. #, fuzzy
  1494. msgid "Cannot execute sort command"
  1495. msgstr " Erreur lors de l'exécution de la commande de tri "
  1496. #, fuzzy, c-format
  1497. msgid "Sort returned non-zero: %s"
  1498. msgstr " Le code de retour du tri est non nul : "
  1499. msgid "Paste output of external command"
  1500. msgstr "Coller la sortie d'une commande externe"
  1501. msgid "Enter shell command(s):"
  1502. msgstr " Saisissez une commande(s) shell :"
  1503. msgid "External command"
  1504. msgstr "Commande externe"
  1505. msgid "Cannot execute command"
  1506. msgstr "Impossible d'exécuter la commande"
  1507. msgid "Error creating script:"
  1508. msgstr "Erreur à la création du script :"
  1509. msgid "Error reading script:"
  1510. msgstr "Erreur à la lecture du script :"
  1511. msgid "Error closing script:"
  1512. msgstr "Erreur à la fermeture du script :"
  1513. msgid "Script created:"
  1514. msgstr "Script créé :"
  1515. msgid "Process block"
  1516. msgstr "Traitement du bloc"
  1517. #, fuzzy
  1518. msgid "Error calling program"
  1519. msgstr "Erreur à la fermeture du script :"
  1520. #, fuzzy
  1521. msgid "Copies to"
  1522. msgstr " Copier vers"
  1523. #, fuzzy
  1524. msgid "Subject"
  1525. msgstr " Sujet"
  1526. #, fuzzy
  1527. msgid "To"
  1528. msgstr " Vers"
  1529. #, fuzzy
  1530. msgid "mail -s <subject> -c <cc> <to>"
  1531. msgstr " mail -s <sujet> -c <cc> <destinataire>"
  1532. #, fuzzy
  1533. msgid "Mail"
  1534. msgstr " Courriel "
  1535. #, fuzzy
  1536. msgid "Insert literal"
  1537. msgstr "Insérer un &littéral..."
  1538. #, fuzzy
  1539. msgid "Press any key:"
  1540. msgstr " Appuyez sur une touche : "
  1541. #, fuzzy
  1542. msgid "Execute macro"
  1543. msgstr "&Exécuter une macro..."
  1544. #, fuzzy
  1545. msgid ""
  1546. "Current text was modified without a file save\n"
  1547. "Continue discards these changes"
  1548. msgstr ""
  1549. " Le fichier courant a été modifié mais pas enregistré. \n"
  1550. " Les changements seront perdus si vous continuez. "
  1551. msgid "In se&lection"
  1552. msgstr "Dans la sé&lection"
  1553. #, fuzzy
  1554. msgid "Enter replacement string:"
  1555. msgstr " Saisissez la chaîne de remplacement :"
  1556. msgid "&Find all"
  1557. msgstr "&Rechercher tout"
  1558. msgid "Cancel"
  1559. msgstr "Annuler"
  1560. #, fuzzy
  1561. msgid ""
  1562. "Current text was modified without a file save.\n"
  1563. "Continue discards these changes."
  1564. msgstr ""
  1565. " Le fichier courant a été modifié mais pas enregistré. \n"
  1566. " Les changements seront perdus si vous continuez. "
  1567. msgid "&Skip"
  1568. msgstr "&Sauter"
  1569. msgid "A&ll"
  1570. msgstr "&Tous"
  1571. msgid "&Replace"
  1572. msgstr "&Remplacer"
  1573. #, fuzzy
  1574. msgid "Replace with:"
  1575. msgstr " Remplacer par : "
  1576. #, fuzzy
  1577. msgid "Confirm replace"
  1578. msgstr " Confirmer le remplacement "
  1579. #, fuzzy, c-format
  1580. msgid ""
  1581. "File \"%s\" is already being edited.\n"
  1582. "User: %s\n"
  1583. "Process ID: %d"
  1584. msgstr ""
  1585. "Fichier \"%s\" est en cours d'édition\n"
  1586. "Utilisateur: %s\n"
  1587. "ID Processus: %d"
  1588. msgid "File locked"
  1589. msgstr "Fichier vérouillé"
  1590. msgid "&Grab lock"
  1591. msgstr "Acquérir le &verrou"
  1592. # XXX orthographe verrou
  1593. msgid "&Ignore lock"
  1594. msgstr "&Ignorer le verrou"
  1595. msgid "&Open file..."
  1596. msgstr "&Ouvrir un fichier..."
  1597. msgid "&New"
  1598. msgstr "&Nouveau"
  1599. msgid "Save &as..."
  1600. msgstr "Enregi&strer sous..."
  1601. msgid "&Insert file..."
  1602. msgstr "&Insérer fichier..."
  1603. msgid "Cop&y to file..."
  1604. msgstr "Copier vers &fichier..."
  1605. msgid "&User menu..."
  1606. msgstr "Menu &Utilisateur..."
  1607. msgid "A&bout..."
  1608. msgstr "&Présentation..."
  1609. msgid "&Quit"
  1610. msgstr "&Quitter"
  1611. msgid "&Undo"
  1612. msgstr "Ann&uller"
  1613. msgid "&Toggle ins/overw"
  1614. msgstr "&Insertion/écrasement"
  1615. msgid "To&ggle mark"
  1616. msgstr "Ajouter/Supprimer marque"
  1617. msgid "&Mark columns"
  1618. msgstr "&Marquer colonne"
  1619. msgid "Mark &all"
  1620. msgstr "&Marquer tous"
  1621. msgid "Unmar&k"
  1622. msgstr "Enlever la marque"
  1623. msgid "Cop&y"
  1624. msgstr "&Copier"
  1625. msgid "Mo&ve"
  1626. msgstr "&Déplacer"
  1627. msgid "&Delete"
  1628. msgstr "&Effacer"
  1629. # FIXME : translation clipfile
  1630. #, fuzzy
  1631. msgid "Co&py to clipfile"
  1632. msgstr "Copier vers le &fichier..."
  1633. #, fuzzy
  1634. msgid "&Cut to clipfile"
  1635. msgstr "Co&uper vers..."
  1636. #, fuzzy
  1637. msgid "Pa&ste from clipfile"
  1638. msgstr "&coller depuis..."
  1639. msgid "&Beginning"
  1640. msgstr "Dé&But"
  1641. msgid "&End"
  1642. msgstr "&Fin"
  1643. msgid "&Search..."
  1644. msgstr "&Rechercher..."
  1645. msgid "Search &again"
  1646. msgstr "Chercher à nouve&au"
  1647. msgid "&Replace..."
  1648. msgstr "&Remplacer..."
  1649. msgid "&Toggle bookmark"
  1650. msgstr "&Inverser le marque-page"
  1651. msgid "&Next bookmark"
  1652. msgstr "Marque-page suivant"
  1653. msgid "&Prev bookmark"
  1654. msgstr "Marque-page précédent"
  1655. msgid "&Flush bookmark"
  1656. msgstr "Supprimer le marque-page"
  1657. msgid "&Go to line..."
  1658. msgstr "&Aller à la ligne..."
  1659. msgid "&Toggle line state"
  1660. msgstr "I&nverser l'état de la ligne"
  1661. msgid "Go to matching &bracket"
  1662. msgstr "Aller au &crochet correspondant"
  1663. msgid "&Find declaration"
  1664. msgstr "&Trouver la déclaration"
  1665. msgid "Back from &declaration"
  1666. msgstr "Trouver la &déclaration"
  1667. msgid "For&ward to declaration"
  1668. msgstr "Aller à la déclaration"
  1669. msgid "Encod&ing..."
  1670. msgstr "&Encodage..."
  1671. msgid "&Refresh screen"
  1672. msgstr "&Rafraîchir l'écran"
  1673. # XXX problème &
  1674. msgid "&Start record macro"
  1675. msgstr "&Commencer à enregistrer une macro"
  1676. # XXX problème &
  1677. msgid "Finis&h record macro..."
  1678. msgstr "&Achever d'enregistrer la macro..."
  1679. msgid "&Execute macro..."
  1680. msgstr "&Exécuter une macro..."
  1681. msgid "Delete macr&o..."
  1682. msgstr " Effacer la macr&o..."
  1683. msgid "'ispell' s&pell check"
  1684. msgstr "Correction orthographique 'is&pell'"
  1685. # XXX problème &
  1686. msgid "&Mail..."
  1687. msgstr "&Courriel..."
  1688. msgid "Insert &literal..."
  1689. msgstr "Insérer un &littéral..."
  1690. msgid "Insert &date/time"
  1691. msgstr "Insérer &date/heure"
  1692. msgid "&Format paragraph"
  1693. msgstr "Formater le p&aragraphe"
  1694. msgid "&Sort..."
  1695. msgstr "&Tri..."
  1696. msgid "&Paste output of..."
  1697. msgstr "Coller la sortie de..."
  1698. msgid "&External formatter"
  1699. msgstr "Formateur &externe"
  1700. #, fuzzy
  1701. msgid "&General..."
  1702. msgstr "&Général... "
  1703. msgid "Save &mode..."
  1704. msgstr "&mode auvegarde..."
  1705. msgid "Learn &keys..."
  1706. msgstr "Apprendre les &touches..."
  1707. msgid "Syntax &highlighting..."
  1708. msgstr "Coloration synta&Xique"
  1709. msgid "S&yntax file"
  1710. msgstr "Fichier de syntaxe"
  1711. msgid "&Menu file"
  1712. msgstr "Fichier &Menu"
  1713. msgid "&Save setup"
  1714. msgstr "Enregi&Strer la configuration"
  1715. msgid "&File"
  1716. msgstr "&Fichier"
  1717. msgid "&Edit"
  1718. msgstr "&Editer"
  1719. msgid "&Search"
  1720. msgstr "&Rechercher"
  1721. msgid "&Command"
  1722. msgstr "&Commande"
  1723. msgid "For&mat"
  1724. msgstr "For&matter"
  1725. msgid "&Options"
  1726. msgstr "&Options"
  1727. msgid "None"
  1728. msgstr "Aucun"
  1729. msgid "Dynamic paragraphing"
  1730. msgstr "Paragraphage automatique"
  1731. msgid "Type writer wrap"
  1732. msgstr "Césure « machine à écrire »"
  1733. #, fuzzy
  1734. msgid "Word wrap line length:"
  1735. msgstr "Coupure aprés la colonne :"
  1736. msgid "Cursor beyond end of line"
  1737. msgstr "Curseur au-delà de la fin de la ligne"
  1738. msgid "Pers&istent selection"
  1739. msgstr "sélection pers&istante"
  1740. msgid "Synta&x highlighting"
  1741. msgstr "Coloration synta&xique"
  1742. msgid "Visible tabs"
  1743. msgstr "Tabulation visible"
  1744. msgid "Visible trailing spaces"
  1745. msgstr "Espace en fin de ligne visible"
  1746. msgid "Save file &position"
  1747. msgstr "Enregistrer la position dans le fichier"
  1748. msgid "Confir&m before saving"
  1749. msgstr "Confir&Mer avant d'enregistrer"
  1750. msgid "&Return does autoindent"
  1751. msgstr "Auto-&indentation par « Entrée »"
  1752. #, fuzzy
  1753. msgid "Tab spacing:"
  1754. msgstr "Intervalle de tabulation :"
  1755. msgid "Fill tabs with &spaces"
  1756. msgstr "&Convertir les tabulations en espaces"
  1757. msgid "&Backspace through tabs"
  1758. msgstr "&Effacement total des tabulations"
  1759. msgid "&Fake half tabs"
  1760. msgstr "&Fausses demi-tabulations"
  1761. msgid "Wrap mode"
  1762. msgstr "Mode de césure"
  1763. #, fuzzy
  1764. msgid "Editor options"
  1765. msgstr " Options de l'éditeur "
  1766. msgid "ButtonBar|Mark"
  1767. msgstr "ButtonBar|Marque"
  1768. msgid "ButtonBar|Replac"
  1769. msgstr "ButtonBar|Rempla"
  1770. msgid "ButtonBar|Copy"
  1771. msgstr "ButtonBar|Copier"
  1772. msgid "ButtonBar|Move"
  1773. msgstr "ButtonBar|Move"
  1774. msgid "ButtonBar|Delete"
  1775. msgstr "ButtonBar|Suppr"
  1776. #, fuzzy
  1777. msgid "ButtonBar|PullDn"
  1778. msgstr "ButtonBar|PullDn"
  1779. #, fuzzy
  1780. msgid "Load syntax file"
  1781. msgstr " Chargement du fichier de syntaxe "
  1782. #, fuzzy, c-format
  1783. msgid ""
  1784. "Cannot open file %s\n"
  1785. "%s"
  1786. msgstr ""
  1787. " Ne peut ouvrir le fichier %s \n"
  1788. " %s "
  1789. #, fuzzy, c-format
  1790. msgid "Error in file %s on line %d"
  1791. msgstr " Erreur dans le fichier %s à la ligne %d "
  1792. #, fuzzy
  1793. msgid ""
  1794. "The Commander can't change to the directory that\n"
  1795. "the subshell claims you are in. Perhaps you have\n"
  1796. "deleted your working directory, or given yourself\n"
  1797. "extra access permissions with the \"su\" command?"
  1798. msgstr ""
  1799. " Midnight Commander ne peut aller dans le répertoire où \n"
  1800. " le sous-shell prétend que vous êtes. Peut-être avez-vous \n"
  1801. " effacer votre répertoire de travail, ou vous êtes-vous \n"
  1802. " donné des permissions supplémentaires avec la commande « su » ? "
  1803. #, c-format
  1804. msgid "Type `exit' to return to the Midnight Commander"
  1805. msgstr "Tapez « exit » pour retourner à Midnight Commander"
  1806. #, fuzzy, c-format
  1807. msgid "Cannot fetch a local copy of %s"
  1808. msgstr " Ne peut récupérer une copie locale de %s "
  1809. #, fuzzy, c-format
  1810. msgid ""
  1811. "Cannot create temporary command file\n"
  1812. "%s"
  1813. msgstr ""
  1814. " Ne peut créer un fichier de commandes temporaire \n"
  1815. " %s "
  1816. #, fuzzy
  1817. msgid "Parameter"
  1818. msgstr " Paramètre "
  1819. #, c-format
  1820. msgid " %s%s file error"
  1821. msgstr " %s%s erreur de fichier "
  1822. #, fuzzy, c-format
  1823. msgid ""
  1824. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1825. "the installation failed. Please fetch a fresh copy from the Midnight "
  1826. "Commander package."
  1827. msgstr ""
  1828. "Le format du fichier %smc.ext a changé avec la version 3.0. Il semble que "
  1829. "l'installation ait échoué. Récupérez une nouvelle copie depuis le paquet "
  1830. "Midnight Commander."
  1831. #, fuzzy, c-format
  1832. msgid "~/%s file error"
  1833. msgstr " ~/%s erreur de fichier "
  1834. #, fuzzy, c-format
  1835. msgid ""
  1836. "The format of the ~/%s file has changed with version 3.0. You may either "
  1837. "want to copy it from %smc.ext or use that file as an example of how to write "
  1838. "it."
  1839. msgstr ""
  1840. "Le format du fichier ~/%s a changé depuis la version 3.0. Vous pourriez soit "
  1841. "copier %smc.ext ou utiliser ce dernier comme exemple pour l'écrire"
  1842. msgid "DialogTitle|Copy"
  1843. msgstr "TitreDialog|Copie"
  1844. msgid "DialogTitle|Move"
  1845. msgstr "TitreDialog|Déplacer"
  1846. msgid "DialogTitle|Delete"
  1847. msgstr "TitreDialog|Supprimer"
  1848. #, fuzzy
  1849. msgid "Cannot make the hardlink"
  1850. msgstr " Ne peut créer le lien physique "
  1851. #, fuzzy, c-format
  1852. msgid ""
  1853. "Cannot read source link \"%s\"\n"
  1854. "%s"
  1855. msgstr ""
  1856. " Ne peut lire le lien source « %s »\n"
  1857. " \n"
  1858. " %s "
  1859. #, fuzzy
  1860. msgid ""
  1861. "Cannot make stable symlinks acrossnon-local filesystems:\n"
  1862. "\n"
  1863. "Option Stable Symlinks will be disabled"
  1864. msgstr ""
  1865. " Ne peut faire des liens symboliques stables entre des systèmes de fichiers "
  1866. "non-locaux : \n"
  1867. " L'option « Liens symboliques stables » sera désactivée "
  1868. #, fuzzy, c-format
  1869. msgid ""
  1870. "Cannot create target symlink \"%s\"\n"
  1871. "%s"
  1872. msgstr ""
  1873. " Ne peut créer le lien symbolique cible « %s »\n"
  1874. " %s "
  1875. # XXX: Voir &
  1876. msgid "&Abort"
  1877. msgstr "&Interrompre"
  1878. #, fuzzy, c-format
  1879. msgid ""
  1880. "Cannot overwrite directory\"%s\"\n"
  1881. "%s"
  1882. msgstr ""
  1883. " Ne peut écraser le répertoire « %s »\n"
  1884. " %s "
  1885. #, fuzzy, c-format
  1886. msgid ""
  1887. "Cannot stat source file \"%s\"\n"
  1888. "%s"
  1889. msgstr ""
  1890. " Ne peut analyser le fichier source « %s »\n"
  1891. " %s "
  1892. #, fuzzy, c-format
  1893. msgid ""
  1894. "\"%s\"\n"
  1895. "and\n"
  1896. "\"%s\"\n"
  1897. "are the same file"
  1898. msgstr ""
  1899. " « %s » \n"
  1900. " et \n"
  1901. "« %s » \n"
  1902. "sont le même fichier "
  1903. # XXX traduction de \"
  1904. #, fuzzy, c-format
  1905. msgid ""
  1906. "Cannot create special file \"%s\"\n"
  1907. "%s"
  1908. msgstr ""
  1909. " Ne peut créer le fichier spécial « %s »\n"
  1910. " %s "
  1911. #, fuzzy, c-format
  1912. msgid ""
  1913. "Cannot chown target file \"%s\"\n"
  1914. "%s"
  1915. msgstr ""
  1916. " Ne peut modifier l'appartenance du fichier cible « %s »\n"
  1917. " %s "
  1918. # XXX trad \"
  1919. #, fuzzy, c-format
  1920. msgid ""
  1921. "Cannot chmod target file \"%s\"\n"
  1922. "%s"
  1923. msgstr ""
  1924. " Ne peut modifier les permissions du fichier cible « %s »\n"
  1925. " %s "
  1926. # idem
  1927. #, fuzzy, c-format
  1928. msgid ""
  1929. "Cannot open source file \"%s\"\n"
  1930. "%s"
  1931. msgstr ""
  1932. " Ne peut ouvrir le fichier source « %s »\n"
  1933. " %s "
  1934. #, fuzzy
  1935. msgid "Reget failed, about to overwrite file"
  1936. msgstr " Ne peut réobtenir le fichier. Je vais écraser le fichier "
  1937. # idem
  1938. #, fuzzy, c-format
  1939. msgid ""
  1940. "Cannot fstat source file \"%s\"\n"
  1941. "%s"
  1942. msgstr ""
  1943. " Ne peut exécuter fstat sur le fichier source « %s »\n"
  1944. " %s "
  1945. # idem
  1946. #, fuzzy, c-format
  1947. msgid ""
  1948. "Cannot create target file \"%s\"\n"
  1949. "%s"
  1950. msgstr ""
  1951. " Ne peut créer le fichier cible « %s »\n"
  1952. " %s "
  1953. # XXX idem
  1954. #, fuzzy, c-format
  1955. msgid ""
  1956. "Cannot fstat target file \"%s\"\n"
  1957. "%s"
  1958. msgstr ""
  1959. " Ne peut exécuter fstat sur le fichier cible « %s »\n"
  1960. " %s "
  1961. # XXX idem
  1962. #, fuzzy, c-format
  1963. msgid ""
  1964. "Cannot read source file\"%s\"\n"
  1965. "%s"
  1966. msgstr ""
  1967. " Ne peut lire le fichier source « %s »\n"
  1968. " %s "
  1969. # XXX idem
  1970. #, fuzzy, c-format
  1971. msgid ""
  1972. "Cannot write target file \"%s\"\n"
  1973. "%s"
  1974. msgstr ""
  1975. " Ne peut écrire le fichier cible « %s »\n"
  1976. " %s "
  1977. msgid "(stalled)"
  1978. msgstr "(calé)"
  1979. # XXX idem
  1980. #, fuzzy, c-format
  1981. msgid ""
  1982. "Cannot close source file \"%s\"\n"
  1983. "%s"
  1984. msgstr ""
  1985. " Ne peut fermer le fichier source « %s »\n"
  1986. " %s "
  1987. # XXX idem
  1988. #, fuzzy, c-format
  1989. msgid ""
  1990. "Cannot close target file \"%s\"\n"
  1991. "%s"
  1992. msgstr ""
  1993. " Ne peut fermer le fichier cible « %s »\n"
  1994. " %s "
  1995. # XXX supprimer "quand même"
  1996. msgid "Incomplete file was retrieved. Keep it?"
  1997. msgstr "Le fichier récupéré est incomplet. Le conserver quand même ?"
  1998. # XXX trad &
  1999. msgid "&Keep"
  2000. msgstr "C&onserver"
  2001. # XXX trad \"
  2002. #, fuzzy, c-format
  2003. msgid ""
  2004. "Cannot stat source directory \"%s\"\n"
  2005. "%s"
  2006. msgstr ""
  2007. " Ne peut accéder au répertoire source « %s »\n"
  2008. " %s "
  2009. # XXX trad \"
  2010. #, fuzzy, c-format
  2011. msgid ""
  2012. "Source \"%s\" is not a directory\n"
  2013. "%s"
  2014. msgstr " Le répertoire source « %s » n'en est pas un %s "
  2015. #, fuzzy, c-format
  2016. msgid ""
  2017. "Cannot copy cyclic symbolic link\n"
  2018. "\"%s\""
  2019. msgstr ""
  2020. " Ne peut copier un lien symbolique cyclique \n"
  2021. " « %s » "
  2022. # XXX trad \"
  2023. #, fuzzy, c-format
  2024. msgid ""
  2025. "Destination \"%s\" must be a directory\n"
  2026. "%s"
  2027. msgstr ""
  2028. " La destination « %s » doit être un répertoire \n"
  2029. " %s "
  2030. # XXX trad \"
  2031. #, fuzzy, c-format
  2032. msgid ""
  2033. "Cannot create target directory \"%s\"\n"
  2034. "%s"
  2035. msgstr ""
  2036. " Ne peut créer le répertoire cible « %s » \n"
  2037. " %s "
  2038. # XXX trad \"
  2039. #, fuzzy, c-format
  2040. msgid ""
  2041. "Cannot chown target directory \"%s\"\n"
  2042. "%s"
  2043. msgstr ""
  2044. " Ne peut modifier l'appartenance du répertoire cible « %s » \n"
  2045. " %s "
  2046. # XXX trad \"
  2047. #, fuzzy, c-format
  2048. msgid ""
  2049. "Cannot stat file \"%s\"\n"
  2050. "%s"
  2051. msgstr ""
  2052. " Ne peut accéder à « %s »\n"
  2053. " %s "
  2054. #, fuzzy, c-format
  2055. msgid "Cannot overwrite directory \"%s\""
  2056. msgstr " Ne peut écraser le répertoire « %s » %s "
  2057. # XXX trad \"
  2058. #, fuzzy, c-format
  2059. msgid ""
  2060. "Cannot move file \"%s\" to \"%s\"\n"
  2061. "%s"
  2062. msgstr ""
  2063. " Ne peut déplacer le fichier « %s » vers « %s » \n"
  2064. " %s "
  2065. # XXX trad \"
  2066. #, fuzzy, c-format
  2067. msgid ""
  2068. "Cannot remove file \"%s\"\n"
  2069. "%s"
  2070. msgstr ""
  2071. " Ne peut supprimer le fichier « %s »\n"
  2072. " %s "
  2073. #, fuzzy, c-format
  2074. msgid ""
  2075. "\"%s\"\n"
  2076. "and\n"
  2077. "\"%s\"\n"
  2078. "are the same directory"
  2079. msgstr ""
  2080. " « %s » \n"
  2081. "et \n"
  2082. "« %s » \n"
  2083. "sont le même répertoire "
  2084. #, fuzzy, c-format
  2085. msgid ""
  2086. "Cannot overwrite directory \"%s\"\n"
  2087. "%s"
  2088. msgstr ""
  2089. " Ne peut écraser le répertoire « %s »\n"
  2090. " %s "
  2091. #, fuzzy, c-format
  2092. msgid ""
  2093. "Cannot overwrite file \"%s\"\n"
  2094. "%s"
  2095. msgstr " Ne peut écraser le fichier « %s » %s "
  2096. #, fuzzy, c-format
  2097. msgid ""
  2098. "Cannot move directory \"%s\" to \"%s\"\n"
  2099. "%s"
  2100. msgstr ""
  2101. " Ne peut déplacer le répertoire « %s » dans « %s » \n"
  2102. " %s "
  2103. #, fuzzy, c-format
  2104. msgid ""
  2105. "Cannot delete file \"%s\"\n"
  2106. "%s"
  2107. msgstr ""
  2108. " Ne peut supprimer le fichier « %s »\n"
  2109. " %s "
  2110. #, fuzzy, c-format
  2111. msgid ""
  2112. "Cannot remove directory \"%s\"\n"
  2113. "%s"
  2114. msgstr ""
  2115. " Ne peut supprimer le répertoire « %s »\n"
  2116. " %s "
  2117. msgid "Directory scanning"
  2118. msgstr "Analyse du répertoire"
  2119. msgid "FileOperation|Copy"
  2120. msgstr "FileOperation|Copie"
  2121. msgid "FileOperation|Move"
  2122. msgstr "FileOperation|Déplace"
  2123. msgid "FileOperation|Delete"
  2124. msgstr "FileOperation|Supprime"
  2125. #, no-c-format
  2126. msgid "%o %f \"%s\"%m"
  2127. msgstr "%o %f \"%s\"%m"
  2128. #, no-c-format
  2129. msgid "%o %d %f%m"
  2130. msgstr "%o %d %f%m"
  2131. msgid "files"
  2132. msgstr "fichiers"
  2133. msgid "directory"
  2134. msgstr "répertoire"
  2135. msgid "directories"
  2136. msgstr "répertoires"
  2137. msgid "files/directories"
  2138. msgstr "fichiers/répertoires"
  2139. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  2140. msgid " with source mask:"
  2141. msgstr " avec masque source :"
  2142. msgid "to:"
  2143. msgstr "vers :"
  2144. #, c-format
  2145. msgid "%s?"
  2146. msgstr "%s?"
  2147. # XXX : trad \"
  2148. #, fuzzy
  2149. msgid "Cannot operate on \"..\"!"
  2150. msgstr " Ne peut opérer sur « .. » ! "
  2151. #, fuzzy
  2152. msgid "Sorry, I could not put the job in background"
  2153. msgstr " Désolé, je ne peux pas passer le processus en tâche de fond "
  2154. msgid "&Retry"
  2155. msgstr "&Ré-essayer"
  2156. #, fuzzy
  2157. msgid ""
  2158. "\n"
  2159. "Directory not empty.\n"
  2160. "Delete it recursively?"
  2161. msgstr ""
  2162. "\n"
  2163. " Le répertoire n'est pas vide. \n"
  2164. " L'effacer récursivement ?"
  2165. #, fuzzy
  2166. msgid ""
  2167. "\n"
  2168. "Background process: Directory not empty.\n"
  2169. "Delete it recursively?"
  2170. msgstr ""
  2171. "\n"
  2172. " Processus en tâche de fond : le répertoire n'est pas vide \n"
  2173. " L'effacer récursivement ?"
  2174. #, fuzzy
  2175. msgid "Delete:"
  2176. msgstr "Effacer"
  2177. msgid "Non&e"
  2178. msgstr "&Aucun"
  2179. #, fuzzy, c-format
  2180. msgid "%d:%02d.%02d"
  2181. msgstr "ETA %d:%02d.%02d"
  2182. #, c-format
  2183. msgid "ETA %s"
  2184. msgstr "ETA %s"
  2185. #, c-format
  2186. msgid "%.2f MB/s"
  2187. msgstr "%.2f Mo/s"
  2188. #, c-format
  2189. msgid "%.2f KB/s"
  2190. msgstr "%.2f Ko/s"
  2191. #, c-format
  2192. msgid "%ld B/s"
  2193. msgstr "%ld o/s"
  2194. #, c-format
  2195. msgid "Files processed: %llu of %llu"
  2196. msgstr "Fichiers traités: %llu sur %llu"
  2197. #, c-format
  2198. msgid "Time: %s %s (%s)"
  2199. msgstr "Temps : %s %s (%s)"
  2200. #, fuzzy, c-format
  2201. msgid "Total: %s of %s"
  2202. msgstr " Total: %s sur %s "
  2203. msgid "Source"
  2204. msgstr "Source"
  2205. msgid "Target"
  2206. msgstr "Cible"
  2207. msgid "Deleting"
  2208. msgstr "Effacement"
  2209. msgid "Target file already exists!"
  2210. msgstr "Le fichier cible existe déjà !"
  2211. # FIXME : trad Source date
  2212. #, c-format
  2213. msgid "Source date: %s, size %llu"
  2214. msgstr "Date de la source : %s, taille %llu"
  2215. #, c-format
  2216. msgid "Target date: %s, size %llu"
  2217. msgstr "Date de la cible : %s, taille %llu"
  2218. #, c-format
  2219. msgid "Source date: %s, size %u"
  2220. msgstr "Date de la source : %s, taille %u"
  2221. #, c-format
  2222. msgid "Target date: %s, size %u"
  2223. msgstr "Date de la cible : %s, taille %u"
  2224. # XXX &.
  2225. msgid "If &size differs"
  2226. msgstr "&Si la taille diffère"
  2227. msgid "&Update"
  2228. msgstr "M-à-jo&Ur"
  2229. msgid "Overwrite all targets?"
  2230. msgstr "Écrase toutes cibles ?"
  2231. msgid "&Reget"
  2232. msgstr "&Réobtenir"
  2233. msgid "A&ppend"
  2234. msgstr "a&Joute"
  2235. msgid "Overwrite this target?"
  2236. msgstr "Écraser cette cible ?"
  2237. #, fuzzy
  2238. msgid "File exists"
  2239. msgstr " Le fichier existe "
  2240. #, fuzzy
  2241. msgid "Background process: File exists"
  2242. msgstr "Processus en tâche de fond : le fichier existe "
  2243. msgid "&Background"
  2244. msgstr "&Fond"
  2245. msgid "&Stable Symlinks"
  2246. msgstr "Lien symboliques &stables"
  2247. #, fuzzy
  2248. msgid "Di&ve into subdir if exists"
  2249. msgstr "&Parcourir les sous-répertoires s'ils existent"
  2250. #, fuzzy
  2251. msgid "Preserve &attributes"
  2252. msgstr "préserver les &Attributs"
  2253. #, fuzzy
  2254. msgid "Follow &links"
  2255. msgstr "suivre les &Liens"
  2256. #, c-format
  2257. msgid "Invalid source pattern `%s'"
  2258. msgstr "Motif source invalide « %s »"
  2259. msgid "&Suspend"
  2260. msgstr "&Suspendre"
  2261. msgid "Con&tinue"
  2262. msgstr "Con&tinuer"
  2263. msgid "&Chdir"
  2264. msgstr "&Changer de répertoire"
  2265. msgid "&Again"
  2266. msgstr "e&Ncore"
  2267. msgid "Pane&lize"
  2268. msgstr "Mettre en &panneau"
  2269. msgid "&View - F3"
  2270. msgstr "&Voir - F3"
  2271. msgid "&Edit - F4"
  2272. msgstr "É&diter - F4"
  2273. #, c-format
  2274. msgid "Found: %ld"
  2275. msgstr "Trouvé : %ld"
  2276. #, fuzzy
  2277. msgid "Malformed regular expression"
  2278. msgstr " Expression régulière mal formée "
  2279. msgid "Cas&e sensitive"
  2280. msgstr "Sensible la ca&sse "
  2281. msgid "&Find recursively"
  2282. msgstr "Recherche récursive"
  2283. msgid "S&kip hidden"
  2284. msgstr ""
  2285. msgid "&All charsets"
  2286. msgstr "&Tout les encodages"
  2287. msgid "Case sens&itive"
  2288. msgstr "Respec&t de la casse"
  2289. msgid "Re&gular expression"
  2290. msgstr "Expression ré&gulière"
  2291. msgid "Fir&st hit"
  2292. msgstr "Première occurence"
  2293. msgid "All cha&rsets"
  2294. msgstr "Tous les encodages"
  2295. msgid "&Tree"
  2296. msgstr "&Arborescence"
  2297. msgid "Find File"
  2298. msgstr "Recherche de fichier"
  2299. msgid "Content:"
  2300. msgstr "Contenu :"
  2301. msgid "File name:"
  2302. msgstr "Nom du fichier :"
  2303. msgid "Start at:"
  2304. msgstr "Commencer à :"
  2305. #, c-format
  2306. msgid "Grepping in %s"
  2307. msgstr "Recherche dans %s"
  2308. msgid "Finished"
  2309. msgstr "Terminé"
  2310. #, c-format
  2311. msgid "Searching %s"
  2312. msgstr "Recherche %s"
  2313. msgid "Searching"
  2314. msgstr "Recherche en cours"
  2315. #, fuzzy
  2316. msgid "Help file format error\n"
  2317. msgstr " Erreur de format de fichier d'aide\n"
  2318. #, fuzzy
  2319. msgid "Internal bug: Double start of link area"
  2320. msgstr " Bug interne : Double start of link area "
  2321. #, fuzzy, c-format
  2322. msgid "Cannot find node %s in help file"
  2323. msgstr " Ne peut trouver le noeud %s dans le fichier d'aide "
  2324. msgid "Help"
  2325. msgstr "Aide"
  2326. msgid "ButtonBar|Index"
  2327. msgstr "ButtonBar|Index"
  2328. msgid "ButtonBar|Prev"
  2329. msgstr "ButtonBar|Préc"
  2330. msgid "&Move"
  2331. msgstr "Déplacer"
  2332. msgid "&Remove"
  2333. msgstr "&Supprimer"
  2334. msgid "&Append"
  2335. msgstr "&Ajouter"
  2336. msgid "&Insert"
  2337. msgstr "&Insérer"
  2338. #, fuzzy
  2339. msgid "New &entry"
  2340. msgstr "Nouvelle &Entrée"
  2341. #, fuzzy
  2342. msgid "New &group"
  2343. msgstr "Nouveau &Groupe"
  2344. msgid "&Up"
  2345. msgstr "&Haut"
  2346. msgid "&Add current"
  2347. msgstr "A&jouter courant"
  2348. msgid "&Refresh"
  2349. msgstr "&Rafraichir"
  2350. msgid "Fr&ee VFSs now"
  2351. msgstr "Désalou&er VFSs"
  2352. #, fuzzy
  2353. msgid "Change &to"
  2354. msgstr "&Changer en"
  2355. msgid "Subgroup - press ENTER to see list"
  2356. msgstr "Sous-groupe - tapez Entrée pour voir la liste"
  2357. msgid "Active VFS directories"
  2358. msgstr "Répertoires VFS actifs"
  2359. msgid "Directory hotlist"
  2360. msgstr "Répertoire hotlist"
  2361. msgid "Directory path"
  2362. msgstr "Chemin du répertoire"
  2363. msgid "Directory label"
  2364. msgstr "Label du répertoire"
  2365. # XXX améliorer trad Moving
  2366. #, c-format
  2367. msgid "Moving %s"
  2368. msgstr "Déplacement de %s"
  2369. msgid "New hotlist entry"
  2370. msgstr "Nouvelle entrée hotlist"
  2371. #, fuzzy
  2372. msgid "Directory label:"
  2373. msgstr "Label du répertoire"
  2374. #, fuzzy
  2375. msgid "Directory path:"
  2376. msgstr "Chemin du répertoire"
  2377. #, fuzzy
  2378. msgid "New hotlist group"
  2379. msgstr " Nouveau groupe hotlist "
  2380. #, fuzzy
  2381. msgid "Name of new group:"
  2382. msgstr "Nom du nouveau groupe"
  2383. #, c-format
  2384. msgid "Label for \"%s\":"
  2385. msgstr "Étiquette pour « %s » :"
  2386. #, fuzzy
  2387. msgid "Add to hotlist"
  2388. msgstr " Ajouter à la hotlist "
  2389. #, fuzzy
  2390. msgid "Remove:"
  2391. msgstr " Enlever : "
  2392. #, fuzzy
  2393. msgid "Are you sure you want to remove this entry?"
  2394. msgstr ""
  2395. "\n"
  2396. "Êtes-vous sûr de vouloir supprimer cette entrée ?"
  2397. #, fuzzy
  2398. msgid ""
  2399. "Group not empty.\n"
  2400. "Remove it?"
  2401. msgstr ""
  2402. "\n"
  2403. " Groupe non vide.\n"
  2404. " L'enlever quand même ?"
  2405. #, fuzzy
  2406. msgid "Top level group"
  2407. msgstr " Groupe de premier niveau "
  2408. #, fuzzy
  2409. msgid "Hotlist Load"
  2410. msgstr " Charger la hotlist "
  2411. #, fuzzy, c-format
  2412. msgid ""
  2413. "MC was unable to write ~/%s file,\n"
  2414. "your old hotlist entries were not deleted"
  2415. msgstr ""
  2416. "MC n'a pu écrire dans le fichier ~/%s, les entrées de votre ancienne hotlist "
  2417. "ont été conservées"
  2418. #, fuzzy
  2419. msgid "Information"
  2420. msgstr " Information "
  2421. #, c-format
  2422. msgid "Midnight Commander %s"
  2423. msgstr "Midnight Commander %s"
  2424. #, c-format
  2425. msgid "File: %s"
  2426. msgstr "Fichier : %s"
  2427. #, fuzzy, c-format
  2428. msgid "Free nodes: %ld (%ld%%) of %ld"
  2429. msgstr "Noeuds libres : %d (%d%%) sur %d"
  2430. msgid "No node information"
  2431. msgstr "Pas d'information sur les I-noeuds"
  2432. #, c-format
  2433. msgid "Free space: %s (%d%%) of %s"
  2434. msgstr "Espace libre : %s (%d%%) sur %s"
  2435. msgid "No space information"
  2436. msgstr "Pas d'information sur l'espace"
  2437. #, fuzzy, c-format
  2438. msgid "Type: %s"
  2439. msgstr "Type: %s "
  2440. msgid "non-local vfs"
  2441. msgstr "VFS non local"
  2442. #, c-format
  2443. msgid "Device: %s"
  2444. msgstr "Périphérique : %s"
  2445. #, c-format
  2446. msgid "Filesystem: %s"
  2447. msgstr "Système de fichiers : %s"
  2448. #, c-format
  2449. msgid "Accessed: %s"
  2450. msgstr "Accédé : %s"
  2451. #, c-format
  2452. msgid "Modified: %s"
  2453. msgstr "Modifié : %s"
  2454. #. TRANSLATORS: Time of last status change as in stat(2) man.
  2455. #, fuzzy, c-format
  2456. msgid "Changed: %s"
  2457. msgstr "&Changer en"
  2458. #, c-format
  2459. msgid "Dev. type: major %lu, minor %lu"
  2460. msgstr "Type périph. : majeur %lu, mineur %lu"
  2461. #, c-format
  2462. msgid "Size: %s"
  2463. msgstr "Taille : %s"
  2464. #, c-format
  2465. msgid " (%ld block)"
  2466. msgid_plural " (%ld blocks)"
  2467. msgstr[0] " (%ld bloc)"
  2468. msgstr[1] " (%ld blocs)"
  2469. #, c-format
  2470. msgid "Owner: %s/%s"
  2471. msgstr "Propriétaire : %s/%s"
  2472. #, c-format
  2473. msgid "Links: %d"
  2474. msgstr "Liens : %d"
  2475. #, c-format
  2476. msgid "Mode: %s (%04o)"
  2477. msgstr "Mode : %s (%04o)"
  2478. #, c-format
  2479. msgid "Location: %Xh:%Xh"
  2480. msgstr "Emplacement : %Xh:%Xh"
  2481. msgid "&Vertical"
  2482. msgstr "&Vertical"
  2483. msgid "&Horizontal"
  2484. msgstr "&Horizontal"
  2485. #, fuzzy
  2486. msgid "Show free sp&ace"
  2487. msgstr "&afficher espace libre"
  2488. #, fuzzy
  2489. msgid "&XTerm window title"
  2490. msgstr "Barre de titre de la fenêtre &Xterm"
  2491. #, fuzzy
  2492. msgid "H&intbar visible"
  2493. msgstr "Barre d'astuce v&isible"
  2494. msgid "&Keybar visible"
  2495. msgstr "Barre de &touches visibles"
  2496. #, fuzzy
  2497. msgid "Command &prompt"
  2498. msgstr "Invite de &commande"
  2499. #, fuzzy
  2500. msgid "Show &mini status"
  2501. msgstr "&Mini-afficheur d'état"
  2502. #, fuzzy
  2503. msgid "Menu&bar visible"
  2504. msgstr "&Barre de menus visible"
  2505. msgid "&Equal split"
  2506. msgstr "Séparer en d&eux parties égales"
  2507. #, fuzzy
  2508. msgid "Panel split"
  2509. msgstr " Séparation du panneau "
  2510. msgid "Console output"
  2511. msgstr ""
  2512. #, fuzzy
  2513. msgid "Other options"
  2514. msgstr " Autres options "
  2515. #, fuzzy
  2516. msgid "Output lines:"
  2517. msgstr "Lignes de sortie"
  2518. msgid "Layout"
  2519. msgstr "Présentation"
  2520. msgid "Learn keys"
  2521. msgstr "Apprentissage des touches"
  2522. #, fuzzy
  2523. msgid "Teach me a key"
  2524. msgstr " Apprenez-moi une touche "
  2525. #, c-format
  2526. msgid ""
  2527. "Please press the %s\n"
  2528. "and then wait until this message disappears.\n"
  2529. "\n"
  2530. "Then, press it again to see if OK appears\n"
  2531. "next to its button.\n"
  2532. "\n"
  2533. "If you want to escape, press a single Escape key\n"
  2534. "and wait as well."
  2535. msgstr ""
  2536. "Appuyez sur « %s »\n"
  2537. "et attendez la disparition de ce message.\n"
  2538. "\n"
  2539. "Ensuite, appuyez à nouveau pour voir « Vu » s'afficher\n"
  2540. "à l'emplacement prévu.\n"
  2541. "\n"
  2542. "Pour annuler, appuyez sur la touche Échappement\n"
  2543. "jusqu'à la disparition de ce panneau."
  2544. #, fuzzy
  2545. msgid "Cannot accept this key"
  2546. msgstr "Touche incorrecte"
  2547. #, fuzzy, c-format
  2548. msgid "You have entered \"%s\""
  2549. msgstr " Vous avez entré « %s »"
  2550. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2551. msgid "OK"
  2552. msgstr "Vu"
  2553. msgid ""
  2554. "It seems that all your keys already\n"
  2555. "work fine. That's great."
  2556. msgstr ""
  2557. "Toutes les touches sont déjà\n"
  2558. "configurées. Bravo !"
  2559. msgid "&Discard"
  2560. msgstr "&Annuler"
  2561. msgid ""
  2562. "Great! You have a complete terminal database!\n"
  2563. "All your keys work well."
  2564. msgstr ""
  2565. "Bravo ! Votre configuration est correcte !\n"
  2566. "Toutes les touches sont définies."
  2567. msgid "Press all the keys mentioned here. After you have done it, check"
  2568. msgstr "Essayez toutes les touches citées ici. Vérifiez ensuite qu'elles"
  2569. msgid "which keys are not marked with OK. Press space on the missing"
  2570. msgstr "ont toutes ont été marquées « Vu ». Appuyez sur « espace » en"
  2571. msgid "key, or click with the mouse to define it. Move around with Tab."
  2572. msgstr "face des touches manquantes, ou cliquez dessus pour la définir."
  2573. #, fuzzy
  2574. msgid "The Midnight Commander"
  2575. msgstr " Midnight Commander "
  2576. #, fuzzy
  2577. msgid "Do you really want to quit the Midnight Commander?"
  2578. msgstr " Voulez-vous vraiment quitter Midnight Commander ? "
  2579. #, fuzzy
  2580. msgid "File listin&g"
  2581. msgstr "Liste &Complète des fichiers"
  2582. msgid "&Quick view"
  2583. msgstr "Vue &rapide "
  2584. msgid "&Info"
  2585. msgstr "&Info"
  2586. msgid "&Listing mode..."
  2587. msgstr "&Mode de listage..."
  2588. msgid "&Sort order..."
  2589. msgstr "&Ordre de tri..."
  2590. msgid "&Filter..."
  2591. msgstr "&Filtre..."
  2592. msgid "&Encoding..."
  2593. msgstr "&Encodage..."
  2594. msgid "&Network link..."
  2595. msgstr "Lien ré&Seau..."
  2596. msgid "FT&P link..."
  2597. msgstr "Lien FT&P..."
  2598. msgid "S&hell link..."
  2599. msgstr "Lien S&hell..."
  2600. msgid "SM&B link..."
  2601. msgstr "Lien SM&B..."
  2602. msgid "&Rescan"
  2603. msgstr "&Rafraîchir"
  2604. msgid "&View"
  2605. msgstr "&Voir"
  2606. msgid "Vie&w file..."
  2607. msgstr " V&oir le fichier "
  2608. msgid "&Filtered view"
  2609. msgstr "Vue &filtrée "
  2610. msgid "&Copy"
  2611. msgstr "&Copier"
  2612. msgid "C&hmod"
  2613. msgstr "C&hmod"
  2614. msgid "&Link"
  2615. msgstr "&Lien"
  2616. #, fuzzy
  2617. msgid "&Symlink"
  2618. msgstr "Lien &symbolique"
  2619. #, fuzzy
  2620. msgid "Relative symlin&k"
  2621. msgstr "Résolution du lien symbolique..."
  2622. msgid "Edit s&ymlink"
  2623. msgstr " Éditer le lien s&ymbolique "
  2624. msgid "Ch&own"
  2625. msgstr "Ch&own"
  2626. msgid "&Advanced chown"
  2627. msgstr "chown &Avancé"
  2628. msgid "&Rename/Move"
  2629. msgstr "&Renommer/Déplacer"
  2630. msgid "&Mkdir"
  2631. msgstr "&Mkdir"
  2632. msgid "&Quick cd"
  2633. msgstr "Cd &rapide"
  2634. msgid "Select &group"
  2635. msgstr "Sélectionner les &groupes"
  2636. msgid "U&nselect group"
  2637. msgstr "Désélectio&nner les groups "
  2638. msgid "Reverse selec&tion"
  2639. msgstr "Inverser sélec&tion"
  2640. msgid "E&xit"
  2641. msgstr "&Quitter"
  2642. msgid "&User menu"
  2643. msgstr "Menu &utilisateur"
  2644. msgid "&Directory tree"
  2645. msgstr "&Arborescence des répertoires"
  2646. msgid "&Find file"
  2647. msgstr "Recherche de &fichier"
  2648. msgid "S&wap panels"
  2649. msgstr "Échang&er les panneaux"
  2650. msgid "Switch &panels on/off"
  2651. msgstr "Inverser &Panneaux on/off"
  2652. msgid "&Compare directories"
  2653. msgstr "&Comparer des répertoires"
  2654. #, fuzzy
  2655. msgid "&View diff files"
  2656. msgstr " Voir le fichier "
  2657. # XXX: trad panelize
  2658. #, fuzzy
  2659. msgid "E&xternal panelize"
  2660. msgstr "Pannneau e&xterne"
  2661. msgid "Show directory s&izes"
  2662. msgstr "Aff&Icher la taille des rép."
  2663. msgid "Command &history"
  2664. msgstr "&Historique des commandes"
  2665. msgid "Di&rectory hotlist"
  2666. msgstr "Répe&rtoire hotlist"
  2667. msgid "&Active VFS list"
  2668. msgstr "Liste des VFS &actifs"
  2669. msgid "&Background jobs"
  2670. msgstr "&Processus en tâche de fond"
  2671. msgid "&Undelete files (ext2fs only)"
  2672. msgstr "Réc&up. de fichiers (ext2fs seul)"
  2673. msgid "&Listing format edit"
  2674. msgstr "Édition du format de &liste"
  2675. msgid "Edit &extension file"
  2676. msgstr "Édition des &extensions de fichier"
  2677. msgid "Edit &menu file"
  2678. msgstr "Édition du fichier de &Menu"
  2679. msgid "Edit hi&ghlighting group file"
  2680. msgstr ""
  2681. msgid "&Configuration..."
  2682. msgstr "&Configuration..."
  2683. msgid "&Layout..."
  2684. msgstr "&Présentation..."
  2685. #, fuzzy
  2686. msgid "&Panel options..."
  2687. msgstr " Options du panneau "
  2688. msgid "C&onfirmation..."
  2689. msgstr "C&onfirmation..."
  2690. msgid "&Display bits..."
  2691. msgstr "&Bits d'affichage..."
  2692. msgid "&Virtual FS..."
  2693. msgstr "Système de Fichiers &Virtuel (VFS)..."
  2694. msgid "&Above"
  2695. msgstr "&Au-dessus"
  2696. msgid "&Left"
  2697. msgstr "&Gauche"
  2698. msgid "&Below"
  2699. msgstr "&En-dessous"
  2700. msgid "&Right"
  2701. msgstr "&Droite"
  2702. msgid "ButtonBar|Menu"
  2703. msgstr "ButtonBar|Menu"
  2704. msgid "ButtonBar|View"
  2705. msgstr "ButtonBar|Vue"
  2706. msgid "ButtonBar|RenMov"
  2707. msgstr ""
  2708. msgid "ButtonBar|Mkdir"
  2709. msgstr "ButtonBar|CréRep"
  2710. msgid "The TERM environment variable is unset!\n"
  2711. msgstr "La variable d'environnement TERM n'est pas définie !\n"
  2712. #, c-format
  2713. msgid "Cannot create %s directory"
  2714. msgstr "Ne peut créer le répertoire %s"
  2715. msgid "&Never"
  2716. msgstr "&Jamais"
  2717. #, fuzzy
  2718. msgid "On dum&b terminals"
  2719. msgstr "&Sur terminaux stupides"
  2720. msgid "Alwa&ys"
  2721. msgstr "&Toujours"
  2722. #, fuzzy
  2723. msgid "A&uto save setup"
  2724. msgstr "&Auto-enreg. des réglages"
  2725. #, fuzzy
  2726. msgid "Sa&fe delete"
  2727. msgstr "E&Ffacement sûr"
  2728. #, fuzzy
  2729. msgid "Cd follows lin&ks"
  2730. msgstr "cd &suit les liens"
  2731. #, fuzzy
  2732. msgid "Rotating d&ash"
  2733. msgstr "&Trait tournant (attente)"
  2734. #, fuzzy
  2735. msgid "Co&mplete: show all"
  2736. msgstr "co&Mplet : tout montrer"
  2737. #, fuzzy
  2738. msgid "Shell &patterns"
  2739. msgstr "&Motifs shell"
  2740. msgid "&Drop down menus"
  2741. msgstr "&Dérouler les menus"
  2742. #, fuzzy
  2743. msgid "Auto m&enus"
  2744. msgstr "M&Enus autos"
  2745. #, fuzzy
  2746. msgid "Use internal vie&w"
  2747. msgstr "&Utiliser la vue interne"
  2748. #, fuzzy
  2749. msgid "Use internal edi&t"
  2750. msgstr "&Utiliser l'éditeur interne"
  2751. #, fuzzy
  2752. msgid "Pause after run"
  2753. msgstr " Pause après l'exécution..."
  2754. #, fuzzy
  2755. msgid "Timeout:"
  2756. msgstr "Date de modif."
  2757. #, fuzzy
  2758. msgid "S&ingle press"
  2759. msgstr "Types de &fichiers"
  2760. #, fuzzy
  2761. msgid "Esc key mode"
  2762. msgstr "Touche Échappement"
  2763. msgid "Mkdi&r autoname"
  2764. msgstr ""
  2765. msgid "Classic pro&gressbar"
  2766. msgstr ""
  2767. #, fuzzy
  2768. msgid "Compute tota&ls"
  2769. msgstr "Calculer les totaux"
  2770. msgid "&Verbose operation"
  2771. msgstr "&Opérations bavardes"
  2772. #, fuzzy
  2773. msgid "File operation options"
  2774. msgstr "FileOperation|Copie"
  2775. msgid "Configure options"
  2776. msgstr "Configurer les options"
  2777. # XXX: "sensible à la casse"
  2778. #, fuzzy
  2779. msgid "Case &insensitive"
  2780. msgstr "Respec&t de la casse "
  2781. # XXX: "sensible à la casse"
  2782. #, fuzzy
  2783. msgid "Case s&ensitive"
  2784. msgstr "Respec&t de la casse "
  2785. #, fuzzy
  2786. msgid "Use panel sort mo&de"
  2787. msgstr "Utiliser le mode &passif"
  2788. #, fuzzy
  2789. msgid "Quick search"
  2790. msgstr "Cd rapide"
  2791. #, fuzzy
  2792. msgid "&Permissions"
  2793. msgstr "Permission"
  2794. #, fuzzy
  2795. msgid "File &types"
  2796. msgstr "Types de &fichiers"
  2797. #, fuzzy
  2798. msgid "File highlight"
  2799. msgstr "Sélection... "
  2800. msgid "&Mouse page scrolling"
  2801. msgstr ""
  2802. msgid "Pa&ge scrolling"
  2803. msgstr ""
  2804. msgid "L&ynx-like motion"
  2805. msgstr "Mouvement à la L&ynx"
  2806. msgid "Navigation"
  2807. msgstr ""
  2808. #, fuzzy
  2809. msgid "A&uto save panels setup"
  2810. msgstr "&Auto-enreg. des réglages"
  2811. #, fuzzy
  2812. msgid "Re&verse files only"
  2813. msgstr "&Fichiers seulement"
  2814. #, fuzzy
  2815. msgid "Ma&rk moves down"
  2816. msgstr "Déplacer les marques vers le &Bas"
  2817. msgid "&Fast dir reload"
  2818. msgstr "&Rechargement rapide des répertoires"
  2819. #, fuzzy
  2820. msgid "Show &hidden files"
  2821. msgstr "Afficher les fic. &Cachés"
  2822. #, fuzzy
  2823. msgid "Show &backup files"
  2824. msgstr "Afficher les fic. de &Sauvegarde"
  2825. #, fuzzy
  2826. msgid "Mi&x all files"
  2827. msgstr "&Mélanger tous les fichiers"
  2828. msgid "Use SI si&ze units"
  2829. msgstr "Utiliser les &unités de taille SI"
  2830. #, fuzzy
  2831. msgid "Main panel options"
  2832. msgstr "Options principales"
  2833. #, fuzzy
  2834. msgid "Panel options"
  2835. msgstr " Options du panneau "
  2836. #, fuzzy
  2837. msgid ""
  2838. "Using the fast reload option may not reflect the exact\n"
  2839. "directory contents. In this case you'll need to do a\n"
  2840. "manual reload of the directory. See the man page for\n"
  2841. "the details."
  2842. msgstr ""
  2843. " Si vous utilisez le chargement rapide, le contenu \n"
  2844. " des répertoires peut ne pas être totalement correct. \n"
  2845. " Dans ce cas vous devrez procéder à un rafraîchissement \n"
  2846. " manuel du répertoire. Voir la page de manuel pour les \n"
  2847. " détails."
  2848. msgid "&Add new"
  2849. msgstr "&Ajouter un nouveau"
  2850. msgid "External panelize"
  2851. msgstr "Pannneau externe"
  2852. msgid "Command"
  2853. msgstr "Commande"
  2854. msgid "Other command"
  2855. msgstr "Autre commande"
  2856. #, fuzzy
  2857. msgid "Add to external panelize"
  2858. msgstr " Ajouter au panneau externe "
  2859. #, fuzzy
  2860. msgid "Enter command label:"
  2861. msgstr " Saisissez un nom pour la commande :"
  2862. #, fuzzy
  2863. msgid "Cannot run external panelize in a non-local directory"
  2864. msgstr ""
  2865. " Ne peut utiliser un panneau externe lorsque connecté sur un répertoire non "
  2866. "local "
  2867. msgid "Find rejects after patching"
  2868. msgstr "Trouver les déchets de patches"
  2869. msgid "Find *.orig after patching"
  2870. msgstr "Rechercher les *.orig après un patch"
  2871. msgid "Find SUID and SGID programs"
  2872. msgstr "Rechercher les programmes SUID et SGID"
  2873. msgid "Cannot invoke command."
  2874. msgstr "Ne peut invoquer la commande."
  2875. msgid "Pipe close failed"
  2876. msgstr "Ne peut fermer un tube"
  2877. msgid "[dev]"
  2878. msgstr "[dev]"
  2879. msgid "UP--DIR"
  2880. msgstr "RÉP-SUP"
  2881. msgid "SYMLINK"
  2882. msgstr "SYMLINK"
  2883. msgid "SUB-DIR"
  2884. msgstr "SOUS-RÉP"
  2885. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2886. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2887. msgid "sort|u"
  2888. msgstr "sort|m"
  2889. msgid "&Unsorted"
  2890. msgstr "&Non Trié"
  2891. #. TRANSLATORS: one single character to represent 'name' sort mode
  2892. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2893. msgid "sort|n"
  2894. msgstr "sort|n"
  2895. msgid "&Name"
  2896. msgstr "&Nom"
  2897. #. TRANSLATORS: one single character to represent 'version' sort mode
  2898. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2899. msgid "sort|v"
  2900. msgstr "sort|v"
  2901. msgid "&Version"
  2902. msgstr "&Version"
  2903. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2904. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2905. msgid "sort|e"
  2906. msgstr "sort|e"
  2907. msgid "&Extension"
  2908. msgstr "&Extension"
  2909. #. TRANSLATORS: one single character to represent 'size' sort mode
  2910. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2911. msgid "sort|s"
  2912. msgstr "sort|t"
  2913. msgid "&Size"
  2914. msgstr "&Taille"
  2915. msgid "Block Size"
  2916. msgstr " Taille de block"
  2917. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2918. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2919. msgid "sort|m"
  2920. msgstr "sort|m"
  2921. msgid "&Modify time"
  2922. msgstr "Date de &Modification"
  2923. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2924. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2925. msgid "sort|a"
  2926. msgstr "sort|a"
  2927. msgid "&Access time"
  2928. msgstr "Date d'&Accès"
  2929. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2930. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2931. msgid "sort|h"
  2932. msgstr "sort|c"
  2933. #, fuzzy
  2934. msgid "C&hange time"
  2935. msgstr "Date de &Changement"
  2936. msgid "Perm"
  2937. msgstr "Perm"
  2938. msgid "Nl"
  2939. msgstr "Nl"
  2940. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2941. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2942. msgid "sort|i"
  2943. msgstr "sort|i"
  2944. msgid "&Inode"
  2945. msgstr "&I-noeud"
  2946. msgid "UID"
  2947. msgstr "UID"
  2948. msgid "GID"
  2949. msgstr "GID"
  2950. msgid "Owner"
  2951. msgstr "Propriétaire"
  2952. msgid "Group"
  2953. msgstr "Groupe"
  2954. msgid "<readlink failed>"
  2955. msgstr "<échec de readlink>"
  2956. # XXX: traduit, reste à vérifier la signification de msgit
  2957. #, c-format
  2958. msgid "%s byte"
  2959. msgid_plural "%s bytes"
  2960. msgstr[0] "%s octet"
  2961. msgstr[1] "%s octets"
  2962. # XXX: idem
  2963. #, c-format
  2964. msgid "%s in %d file"
  2965. msgid_plural "%s in %d files"
  2966. msgstr[0] " %s octets dans %d fichier"
  2967. msgstr[1] " %s octets dans %d fichiers"
  2968. #, fuzzy
  2969. msgid "Unknown tag on display format:"
  2970. msgstr "Balise inconnue dans le format d'affichage :"
  2971. msgid "User supplied format looks invalid, reverting to default."
  2972. msgstr ""
  2973. "Le format fourni par l'utilisateur semble invalide, retourner aux valeurs "
  2974. "par défaut."
  2975. #, fuzzy
  2976. msgid "Do you really want to execute?"
  2977. msgstr " Voulez-vous vraiment exécuter ? "
  2978. #, fuzzy, c-format
  2979. msgid "Cannot chdir to \"%s\""
  2980. msgstr " Impossible d'aller dans le répertoire %s "
  2981. # XXX: trad codepage
  2982. msgid "Choose codepage"
  2983. msgstr "Choisissez un encodage"
  2984. msgid "- < No translation >"
  2985. msgstr "- < Pas de conversion >"
  2986. msgid "%b %e %Y"
  2987. msgstr "%e %b %Y"
  2988. msgid "%b %e %H:%M"
  2989. msgstr "%e %b %H:%M"
  2990. #, c-format
  2991. msgid ""
  2992. "Cannot save file %s:\n"
  2993. "%s"
  2994. msgstr ""
  2995. "Impossible d'enregistrer le fichier %s : \n"
  2996. "%s"
  2997. msgid ""
  2998. "GNU Midnight Commander is already\n"
  2999. "running on this terminal.\n"
  3000. "Subshell support will be disabled."
  3001. msgstr ""
  3002. "GNU Midnight Commander est\n"
  3003. "en cour d'exécution sur ce terminal.\n"
  3004. "Support pour les sous-shells sera supprimé."
  3005. #, c-format
  3006. msgid "Cannot open named pipe %s\n"
  3007. msgstr "Ne peut ouvrir le tube nommé %s\n"
  3008. #, fuzzy
  3009. msgid "The shell is still active. Quit anyway?"
  3010. msgstr " Le shell est encore actif. Quitter quand même ? "
  3011. #, c-format
  3012. msgid "Warning: Cannot change to %s.\n"
  3013. msgstr "Attention : ne peut aller à %s.\n"
  3014. msgid "With builtin Editor\n"
  3015. msgstr "Avec l'éditeur intégré\n"
  3016. msgid "Using system-installed S-Lang library"
  3017. msgstr "Utilise la bibliothèque S-Lang installée dans le système"
  3018. msgid "with terminfo database"
  3019. msgstr "avec la base de données terminfo"
  3020. msgid "Using the ncurses library"
  3021. msgstr "Utilise la bibliothèque ncurses"
  3022. msgid "Using the ncursesw library"
  3023. msgstr "Utilise la bibliothèque ncursesw"
  3024. msgid "With optional subshell support"
  3025. msgstr "Avec le support optionnel des sous-shells"
  3026. msgid "With subshell support as default"
  3027. msgstr "Avec le support des sous-shells par défaut"
  3028. msgid "With support for background operations\n"
  3029. msgstr "Avec le support des opérations en tâche de fond\n"
  3030. msgid "With mouse support on xterm and Linux console\n"
  3031. msgstr "Avec support de la souris pour xterm et la console Linux\n"
  3032. msgid "With mouse support on xterm\n"
  3033. msgstr "Avec support de la souris pour xterm\n"
  3034. msgid "With support for X11 events\n"
  3035. msgstr "Avec le support des événements X11\n"
  3036. msgid "With internationalization support\n"
  3037. msgstr "Avec le support de l'internationalisation\n"
  3038. msgid "With multiple codepages support\n"
  3039. msgstr "Avec le support de plusieurs codepages\n"
  3040. #, fuzzy, c-format
  3041. msgid "Virtual File Systems:"
  3042. msgstr "Système de Fichier Virtuel (VFS) :"
  3043. #, c-format
  3044. msgid "Data types:"
  3045. msgstr ""
  3046. #, c-format
  3047. msgid ""
  3048. "Cannot open the %s file for writing:\n"
  3049. "%s\n"
  3050. msgstr ""
  3051. "Ne peut ouvrir le fichier %s en écriture :\n"
  3052. "%s\n"
  3053. #, c-format
  3054. msgid "Copy \"%s\" directory to:"
  3055. msgstr "Copier le répertoire « %s » dans :"
  3056. #, c-format
  3057. msgid "Move \"%s\" directory to:"
  3058. msgstr "Déplacer le répertoire « %s » dans :"
  3059. #, fuzzy, c-format
  3060. msgid ""
  3061. "Cannot stat the destination\n"
  3062. "%s"
  3063. msgstr ""
  3064. "Ne peut accéder à la destination \n"
  3065. " %s "
  3066. #, fuzzy, c-format
  3067. msgid "Delete %s?"
  3068. msgstr " Effacer %s ? "
  3069. msgid "ButtonBar|Static"
  3070. msgstr "ButtonBar|Statiq"
  3071. msgid "ButtonBar|Dynamc"
  3072. msgstr "ButtonBar|Dynamq"
  3073. msgid "ButtonBar|Rescan"
  3074. msgstr "ButtonBar|Raffra"
  3075. msgid "ButtonBar|Forget"
  3076. msgstr "ButtonBar|Oublie"
  3077. msgid "ButtonBar|Rmdir"
  3078. msgstr "ButtonBar|SupRep"
  3079. #, c-format
  3080. msgid ""
  3081. "Cannot write to the %s file:\n"
  3082. "%s\n"
  3083. msgstr ""
  3084. "Ne peut écrire dans le fichier %s :\n"
  3085. "%s\n"
  3086. #, fuzzy
  3087. msgid "Format error on file Extensions File"
  3088. msgstr " Erreur de format dans le fichier d'extensions de fichier "
  3089. #, fuzzy, c-format
  3090. msgid "The %%var macro has no default"
  3091. msgstr " La macro %%var n'a pas de défaut "
  3092. #, fuzzy, c-format
  3093. msgid "The %%var macro has no variable"
  3094. msgstr " La macro %%var n'a pas de variable "
  3095. #, fuzzy
  3096. msgid "Debug"
  3097. msgstr " Débogage "
  3098. #, fuzzy
  3099. msgid "ERROR:"
  3100. msgstr " ERREUR : "
  3101. #, fuzzy
  3102. msgid "True:"
  3103. msgstr " Vrai : "
  3104. #, fuzzy
  3105. msgid "False:"
  3106. msgstr " Faux : "
  3107. #, fuzzy
  3108. msgid "Warning -- ignoring file"
  3109. msgstr " Avertissement -- fichier ignoré "
  3110. #, c-format
  3111. msgid ""
  3112. "File %s is not owned by root or you or is world writable.\n"
  3113. "Using it may compromise your security"
  3114. msgstr ""
  3115. "Le fichier %s n'appartient ni à vous ni au root ou tout le monde peux y "
  3116. "écrire.\n"
  3117. "Son utilisation peut compromettre la sécurité du système"
  3118. #, fuzzy, c-format
  3119. msgid ""
  3120. "Cannot open file%s\n"
  3121. "%s"
  3122. msgstr ""
  3123. " Ne peut ouvrir le fichier %s \n"
  3124. " %s "
  3125. #, fuzzy, c-format
  3126. msgid "No suitable entries found in %s"
  3127. msgstr " Aucune entrée appropriée trouvé dans %s "
  3128. #, fuzzy
  3129. msgid "User menu"
  3130. msgstr "Menu &utilisateur"
  3131. msgid "Invalid value"
  3132. msgstr "valeur invalide "
  3133. #, fuzzy
  3134. msgid "Cannot spawn child process"
  3135. msgstr " Ne peut créer un processus fils "
  3136. msgid "Empty output from child filter"
  3137. msgstr ""
  3138. msgid "&Line number (decimal)"
  3139. msgstr "&Numéro de ligne (décimal)"
  3140. msgid "Pe&rcents"
  3141. msgstr "Pou&rcents"
  3142. msgid "&Decimal offset"
  3143. msgstr ""
  3144. #, fuzzy
  3145. msgid "He&xadecimal offset"
  3146. msgstr "Hexadecimal"
  3147. msgid "Goto"
  3148. msgstr "Aller à"
  3149. msgid "ButtonBar|Ascii"
  3150. msgstr "ButtonBar|Ascii"
  3151. msgid "ButtonBar|HxSrch"
  3152. msgstr ""
  3153. msgid "ButtonBar|UnWrap"
  3154. msgstr ""
  3155. msgid "ButtonBar|Wrap"
  3156. msgstr ""
  3157. msgid "ButtonBar|Hex"
  3158. msgstr "ButtonBar|Hex"
  3159. msgid "ButtonBar|Goto"
  3160. msgstr "ButtonBar|All. à"
  3161. msgid "ButtonBar|Raw"
  3162. msgstr "ButtonBar|Brut"
  3163. msgid "ButtonBar|Parse"
  3164. msgstr ""
  3165. msgid "ButtonBar|Unform"
  3166. msgstr ""
  3167. msgid "ButtonBar|Format"
  3168. msgstr "ButtonBar|Format"
  3169. #, fuzzy, c-format
  3170. msgid ""
  3171. "Error while closing the file:\n"
  3172. "%s\n"
  3173. "Data may have been written or not"
  3174. msgstr ""
  3175. " Erreur à la fermeture du fichier : \n"
  3176. " %s \n"
  3177. " Les données pourraient ne pas avoir été écrites. "
  3178. #, fuzzy, c-format
  3179. msgid ""
  3180. "Cannot save file:\n"
  3181. "%s"
  3182. msgstr ""
  3183. "Impossible d'enregistrer le fichier %s : \n"
  3184. "%s"
  3185. #, fuzzy, c-format
  3186. msgid ""
  3187. "Cannot open \"%s\"\n"
  3188. "%s"
  3189. msgstr ""
  3190. " Ne peut ouvrir « %s »\n"
  3191. " %s "
  3192. #, fuzzy, c-format
  3193. msgid ""
  3194. "Cannot stat \"%s\"\n"
  3195. "%s"
  3196. msgstr ""
  3197. " Ne peut analyser « %s »\n"
  3198. " %s "
  3199. #, fuzzy
  3200. msgid "Cannot view: not a regular file"
  3201. msgstr " Visualisation impossible : ce n'est pas un fichier régulier "
  3202. msgid "Seeking to search result"
  3203. msgstr ""
  3204. #, fuzzy
  3205. msgid "Search done"
  3206. msgstr "Rechercher"
  3207. msgid "Continue from begining?"
  3208. msgstr "Recommencer depuis le début"
  3209. #, fuzzy
  3210. msgid "History"
  3211. msgstr " Historique "
  3212. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  3213. #, fuzzy
  3214. msgid "DialogTitle|History cleanup"
  3215. msgstr "TitreDialog|Copie"
  3216. msgid "Do you want clean this history?"
  3217. msgstr "Voulez-vous supprimer cet historique"
  3218. msgid "Background process:"
  3219. msgstr "Processus en tâche de fond :"
  3220. #~ msgid " Permission "
  3221. #~ msgstr " Permission "
  3222. #~ msgid " File "
  3223. #~ msgstr " Fichier "
  3224. #~ msgid " Name "
  3225. #~ msgstr " Nom "
  3226. #~ msgid " Owner name "
  3227. #~ msgstr " Nom du propr. "
  3228. #~ msgid " Group name "
  3229. #~ msgstr " Nom du groupe "
  3230. #~ msgid " Size "
  3231. #~ msgstr " Taille "
  3232. #~ msgid " Confirmation "
  3233. #~ msgstr " Confirmation "
  3234. #~ msgid " Filtered view "
  3235. #~ msgstr " Vue filtrée "
  3236. #~ msgid " Select "
  3237. #~ msgstr " Sélectionner "
  3238. #~ msgid " Compare directories "
  3239. #~ msgstr " Comparer des répertoires "
  3240. #~ msgid " Link "
  3241. #~ msgstr " Lien "
  3242. #~ msgid " Edit symlink "
  3243. #~ msgstr " Éditer le lien symbolique "
  3244. #~ msgid "case &Sensitive"
  3245. #~ msgstr "Re&Spect de la casse"
  3246. #~ msgid " Replace "
  3247. #~ msgstr " Remplacer "
  3248. #~ msgid " Error "
  3249. #~ msgstr "Erreur "
  3250. #~ msgid " Insert File "
  3251. #~ msgstr " Insérer un fichier "
  3252. #~ msgid " Insert Literal "
  3253. #~ msgstr " Insérer un littéral "
  3254. #~ msgid " Execute Macro "
  3255. #~ msgstr " Exécuter macro "
  3256. # XXX trad \"
  3257. #~ msgid " Cannot overwrite directory `%s' "
  3258. #~ msgstr " Ne peut écraser le répertoire « %s » "
  3259. #~ msgid " to:"
  3260. #~ msgstr " vers :"
  3261. #~ msgid " Delete: "
  3262. #~ msgstr " Effacer : "
  3263. #~ msgid " Directory path "
  3264. #~ msgstr " Chemin du répertoire "
  3265. #~ msgid " Directory label "
  3266. #~ msgstr " Label du répertoire "
  3267. #~ msgid "File: %s"
  3268. #~ msgstr "Fichier : %s"
  3269. #~ msgid "pe&Rmissions"
  3270. #~ msgstr "pe&Rmissions"
  3271. #~ msgid " User menu "
  3272. #~ msgstr " Menu utilisateur "
  3273. #~ msgid ""
  3274. #~ " Cannot save file: \n"
  3275. #~ " %s "
  3276. #~ msgstr ""
  3277. #~ "Impossible d'enregistrer le fichier : \n"
  3278. #~ " %s "
  3279. #~ msgid "Status: %s"
  3280. #~ msgstr "Status : %s"
  3281. #~ msgid "Count"
  3282. #~ msgstr "Compter"
  3283. #~ msgid "Bytes"
  3284. #~ msgstr "Octets"
  3285. #~ msgid " confirm &Exit "
  3286. #~ msgstr " confirmer &Quitter "
  3287. #~ msgid " confirm e&Xecute "
  3288. #~ msgstr " confirmer l'e&Xécution "
  3289. #~ msgid " confirm &Delete "
  3290. #~ msgstr " confirmer l'e&Ffacement "
  3291. #~ msgid ""
  3292. #~ " The current line number is %lld.\n"
  3293. #~ " Enter the new line number:"
  3294. #~ msgstr ""
  3295. #~ " Le numéro de la ligne courante est %lld.\n"
  3296. #~ " Saisissez le nouveau numéro de ligne :"
  3297. #~ msgid ""
  3298. #~ " The current address is %s.\n"
  3299. #~ " Enter the new address:"
  3300. #~ msgstr ""
  3301. #~ " L'adresse courante est %s.\n"
  3302. #~ " Saisissez la nouvelle adresse :"
  3303. #~ msgid " Goto Address "
  3304. #~ msgstr " Aller à l'adresse "
  3305. #~ msgid "Offset 0x%08lx"
  3306. #~ msgstr "Décalage 0x%08lx"
  3307. #~ msgid "Line %lu Col %lu"
  3308. #~ msgstr "Ligne %lu Col %lu"
  3309. #~ msgid "%s bytes"
  3310. #~ msgstr "%s octets"
  3311. #~ msgid ">= %s bytes"
  3312. #~ msgstr ">= %s octets"
  3313. #~ msgid "File: None"
  3314. #~ msgstr "Fichier : aucun"
  3315. #~ msgid "Do backups -->"
  3316. #~ msgstr "Faire des sauvegardes -->"
  3317. #~ msgid "Extension:"
  3318. #~ msgstr "Extension :"
  3319. #~ msgid "&New C-n"
  3320. #~ msgstr "&Nouveau C-n"
  3321. #~ msgid "&Save F2"
  3322. #~ msgstr "&Enregistrer F2"
  3323. #~ msgid "Save &as... F12"
  3324. #~ msgstr "Enregistrer &sous... F12"
  3325. #~ msgid "A&bout... "
  3326. #~ msgstr "À &propos..."
  3327. #~ msgid "&Quit F10"
  3328. #~ msgstr "&Quitter F10"
  3329. #~ msgid "&New C-x k"
  3330. #~ msgstr "&Nouveau C-x k"
  3331. #~ msgid "Copy to &file... "
  3332. #~ msgstr "Copier vers le &fichier..."
  3333. #~ msgid "&Toggle mark F3"
  3334. #~ msgstr "&Inverser la marque F3"
  3335. #~ msgid "Mar&k columns S-F3"
  3336. #~ msgstr "&Marquer les colonnes S-F3"
  3337. #~ msgid "&Copy F5"
  3338. #~ msgstr "&Copier F5"
  3339. #~ msgid "&Move F6"
  3340. #~ msgstr "&Déplacer F6"
  3341. #~ msgid "&Delete F8"
  3342. #~ msgstr "&Supprimer F8"
  3343. #~ msgid "&Next bookmark M-j"
  3344. #~ msgstr "&Nouveau C-n"
  3345. #~ msgid "&Undo C-u"
  3346. #~ msgstr "Ann&uler C-u"
  3347. #~ msgid "&Beginning C-PgUp"
  3348. #~ msgstr "Dé&But C-PgUp"
  3349. #~ msgid "&End C-PgDn"
  3350. #~ msgstr "&Fin C-PgDn"
  3351. #~ msgid "C&opy to clipfile M-w"
  3352. #~ msgstr "&Aller à la ligne... M-l"
  3353. #~ msgid "C&ut to clipfile C-w"
  3354. #~ msgstr "&Aller à la ligne... M-l"
  3355. #~ msgid "Toggle bookmar&k "
  3356. #~ msgstr "&Inverser la marque F3"
  3357. #~ msgid "&Next bookmark "
  3358. #~ msgstr "&Nouveau C-n"
  3359. #~ msgid "Pre&v bookmark "
  3360. #~ msgstr "&Trier... M-t"
  3361. #~ msgid "&Flush bookmark "
  3362. #~ msgstr "C&ourrier..."
  3363. #~ msgid "&Search... F7"
  3364. #~ msgstr "Rechercher... F7"
  3365. #~ msgid "&Replace... F4"
  3366. #~ msgstr "&Remplacer... F4"
  3367. #~ msgid "&Go to line... M-l"
  3368. #~ msgstr "&Aller à la ligne... M-l"
  3369. #~ msgid "Encod&ing... M-e"
  3370. #~ msgstr "&Trier... M-t"
  3371. #~ msgid "Delete macr&o... "
  3372. #~ msgstr "Effacer la macr&O..."
  3373. #~ msgid "Sor&t... M-t"
  3374. #~ msgstr "&Trier... M-t"
  3375. #~ msgid "&Mail... "
  3376. #~ msgstr "C&ourrier..."
  3377. #~ msgid "&Execute macro... C-x e, KEY"
  3378. #~ msgstr "&Exécuter la macro... C-x e, TOUCHE"
  3379. #~ msgid "'ispell' s&pell check M-$"
  3380. #~ msgstr "Correction orthographique 'is&Pell' M-$"
  3381. #~ msgid "Save setu&p"
  3382. #~ msgstr "Enregi&strer la configuration"
  3383. #~ msgid " Edit "
  3384. #~ msgstr " Édition "
  3385. #~ msgid " Sear/Repl "
  3386. #~ msgstr " Cherch/Rempl "
  3387. #~ msgid " Command "
  3388. #~ msgstr " Commande "
  3389. #~ msgid "Intuitive"
  3390. #~ msgstr "Intuitif"
  3391. #~ msgid "Emacs"
  3392. #~ msgstr "Emacs"
  3393. #~ msgid "User-defined"
  3394. #~ msgstr "Définie par l'&Utilisateur :"
  3395. #~ msgid "Key emulation"
  3396. #~ msgstr "Émulation de touches"
  3397. #~ msgid "Save"
  3398. #~ msgstr "Enregistrer"
  3399. #~ msgid "Mark"
  3400. #~ msgstr "Marquer"
  3401. #~ msgid "Replac"
  3402. #~ msgstr "Remplacer"
  3403. #~ msgid "PullDn"
  3404. #~ msgstr "Menu déroulant"
  3405. #~ msgid " Copy "
  3406. #~ msgstr " Copier "
  3407. #~ msgid " Move "
  3408. #~ msgstr " Déplacer "
  3409. #~ msgid " Delete "
  3410. #~ msgstr " Effacer "
  3411. #~ msgid "1Copy"
  3412. #~ msgstr "1Copier"
  3413. #~ msgid "1Move"
  3414. #~ msgstr "1Déplacer"
  3415. #~ msgid "1Delete"
  3416. #~ msgstr "1Effacer"
  3417. #~ msgid "Index"
  3418. #~ msgstr "Index"
  3419. #~ msgid "Prev"
  3420. #~ msgstr "Précédent"
  3421. #~ msgid "&Quick view C-x q"
  3422. #~ msgstr "&Vue rapide C-x q"
  3423. #~ msgid "&Info C-x i"
  3424. #~ msgstr "&Info C-x i"
  3425. #~ msgid "&Rescan C-r"
  3426. #~ msgstr "&Rafraîchir C-r"
  3427. #~ msgid "&View F3"
  3428. #~ msgstr "&Vue F3"
  3429. #~ msgid "Vie&w file... "
  3430. #~ msgstr "Voi&r fichier..."
  3431. #~ msgid "&Filtered view M-!"
  3432. #~ msgstr "Vue &Filtrée M-!"
  3433. #~ msgid "&Edit F4"
  3434. #~ msgstr "É&diter F4"
  3435. #~ msgid "&Copy F5"
  3436. #~ msgstr "&Copier F5"
  3437. #~ msgid "c&Hmod C-x c"
  3438. #~ msgstr "c&Hmod C-x c"
  3439. #~ msgid "&Link C-x l"
  3440. #~ msgstr "&Lien C-x l"
  3441. #~ msgid "&SymLink C-x s"
  3442. #~ msgstr "Lien &Symbolique C-x s"
  3443. #~ msgid "edit s&Ymlink C-x C-s"
  3444. #~ msgstr "Éditer lien s&Ymb C-x C-s"
  3445. #~ msgid "ch&Own C-x o"
  3446. #~ msgstr "ch&Own C-x o"
  3447. #~ msgid "&Rename/Move F6"
  3448. #~ msgstr "&Renommer/déplacer F6"
  3449. #~ msgid "&Mkdir F7"
  3450. #~ msgstr "&Créer un répertoire F7"
  3451. #~ msgid "&Delete F8"
  3452. #~ msgstr "&Supprimer F8"
  3453. #~ msgid "&Quick cd M-c"
  3454. #~ msgstr "cd r&apide M-c"
  3455. #~ msgid "select &Group M-+"
  3456. #~ msgstr "Sélectionner &Groupe M-+"
  3457. #~ msgid "u&Nselect group M-\\"
  3458. #~ msgstr "Désélect&. groupe M-\\"
  3459. #~ msgid "e&Xit F10"
  3460. #~ msgstr "Q&uitter F10"
  3461. #~ msgid "&User menu F2"
  3462. #~ msgstr "Menu &Utilisateur F2"
  3463. #~ msgid "&Find file M-?"
  3464. #~ msgstr "Rechercher &Fichier M-?"
  3465. #~ msgid "s&Wap panels C-u"
  3466. #~ msgstr "Echanger pannea&Ux C-u"
  3467. #~ msgid "&Compare directories C-x d"
  3468. #~ msgstr "&Comparer répertoires C-x d"
  3469. #~ msgid "e&Xternal panelize C-x !"
  3470. #~ msgstr "Mise en panneau e&Xterne C-x !"
  3471. #~ msgid "Command &history M-h"
  3472. #~ msgstr " Historique des commandes "
  3473. #~ msgid "di&Rectory hotlist C-\\"
  3474. #~ msgstr "&Répertoire hotlist C-\\"
  3475. #~ msgid "&Background jobs C-x j"
  3476. #~ msgstr "&Tâches de fond C-x j"
  3477. #~ msgid "learn &Keys..."
  3478. #~ msgstr "Apprendre les &touches..."
  3479. #~ msgid " &File "
  3480. #~ msgstr " &Fichier "
  3481. #~ msgid " &Command "
  3482. #~ msgstr " &Commande "
  3483. #~ msgid "Menu"
  3484. #~ msgstr "Menu"
  3485. #~ msgid "n"
  3486. #~ msgstr "Activé"
  3487. #~ msgid "Extension"
  3488. #~ msgstr "Extension :"
  3489. #~ msgid "ATime"
  3490. #~ msgstr "Date d'acc."
  3491. #~ msgid "CTime"
  3492. #~ msgstr "Date de créa."
  3493. #~ msgid "Inode"
  3494. #~ msgstr "I-noeud"
  3495. #~ msgid "RenMov"
  3496. #~ msgstr "RenDép"
  3497. #~ msgid "Static"
  3498. #~ msgstr "Statique"
  3499. #~ msgid "Dynamc"
  3500. #~ msgstr "Dynamique"
  3501. #~ msgid "Forget"
  3502. #~ msgstr "Oublier"
  3503. #~ msgid "Rmdir"
  3504. #~ msgstr "Rmdir"
  3505. #~ msgid "bind: Unknown command: `%s'"
  3506. #~ msgstr " Commande chown "
  3507. #~ msgid "%s: Unknown command: `%s'"
  3508. #~ msgstr " Commande chown "
  3509. #~ msgid "%s:%d: unknown command `%s'"
  3510. #~ msgstr " Commande chown "
  3511. #~ msgid "%s not found!"
  3512. #~ msgstr "Attention : fichier %s non trouvé\n"
  3513. #~ msgid "NumLock on keypad"
  3514. #~ msgstr "NumLock sur pavé numérique"
  3515. #~ msgid " Emacs key: "
  3516. #~ msgstr " Touches Emacs : "
  3517. #~ msgid " %d items found, %d bookmarks added "
  3518. #~ msgstr " %d découvertes faites, %d signets ajoutés "
  3519. #~ msgid "Displays this help message"
  3520. #~ msgstr "Affiche ce message d'aide"
  3521. #~ msgid "Displays a help screen on how to change the color scheme"
  3522. #~ msgstr ""
  3523. #~ "Affiche un écran d'aide sur la façon de changer les styles de couleur"
  3524. #~ msgid "unknown option"
  3525. #~ msgstr "<Groupe inconnu>"
  3526. #~ msgid "Show this help message"
  3527. #~ msgstr "Affiche ce message d'aide"
  3528. #~ msgid "Display brief usage message"
  3529. #~ msgstr "Affiche ce bref message d'aide"
  3530. #~ msgid "Usage:"
  3531. #~ msgstr "Nom d'utilisateur :"
  3532. #~ msgid "pro&Mpt on replace"
  3533. #~ msgstr "C&onfirmation avant remplacement"
  3534. #~ msgid "replace &All"
  3535. #~ msgstr "Tout rempl&acer"
  3536. #~ msgid "O&ne"
  3537. #~ msgstr "&Un"
  3538. #~ msgid "%b %d %H:%M"
  3539. #~ msgstr "%e %b %H:%M"
  3540. #~ msgid "%b %d %Y"
  3541. #~ msgstr "%e %b %Y"
  3542. #~ msgid " The current address is 0x%08"
  3543. #~ msgstr ""
  3544. #~ " L'adresse courante est 0x%lx.\n"
  3545. #~ " Saisissez la nouvelle adresse :"
  3546. #~ msgid "scanf &Expression"
  3547. #~ msgstr "&Expression scanf"
  3548. #~ msgid " Enter replacement argument order eg. 3,2,1,4 "
  3549. #~ msgstr " Saisissez l'ordre des arguments (ex. : 3,2,1,4) "
  3550. #~ msgid ""
  3551. #~ " Invalid regular expression, or scanf expression with too many "
  3552. #~ "conversions "
  3553. #~ msgstr ""
  3554. #~ " Expression régulière invalide, ou expression scanf avec trop de "
  3555. #~ "conversions "
  3556. #~ msgid " Error in replacement format string. "
  3557. #~ msgstr " Erreur dans la chaîne de format de remplacement. "
  3558. #~ msgid " Replacement too long. "
  3559. #~ msgstr " Saisissez la chaîne de remplacement :"
  3560. #~ msgid "&Copy F5"
  3561. #~ msgstr "&Copier F5"
  3562. #~ msgid "&Delete F8"
  3563. #~ msgstr "&Supprimer F8"
  3564. #~ msgid " The command history is empty "
  3565. #~ msgstr " L'historique des commandes est vide "
  3566. #~ msgid "Edit edi&tor menu file"
  3567. #~ msgstr "Édition de l'édi&teur de menu"
  3568. #~ msgid ""
  3569. #~ "To use this feature select your codepage in\n"
  3570. #~ "Setup / Display Bits dialog!\n"
  3571. #~ "Do not forget to save options."
  3572. #~ msgstr ""
  3573. #~ "Pour utiliser cette fonctionnalité, sélectionnez\n"
  3574. #~ "votre codepage dans la boîte de dialogue Réglages\n"
  3575. #~ "/ Affichage des bits !\n"
  3576. #~ "N'oubliez pas d'enregistrer les options."
  3577. #~ msgid "Invalid hex search expression"
  3578. #~ msgstr "Expression de recherche hex invalide"
  3579. #~ msgid " Invalid regular expression "
  3580. #~ msgstr " Expression régulière invalide "
  3581. #~ msgid " Enter regexp:"
  3582. #~ msgstr " Saisissez l'expression régulière :"
  3583. #~ msgid "Using included S-Lang library"
  3584. #~ msgstr "Utilise la bibliothèque S-Lang incluse"
  3585. #~ msgid "with termcap database"
  3586. #~ msgstr "avec la base de données termcap"
  3587. #~ msgid "&Home"
  3588. #~ msgstr "Répertoire &personnel"
  3589. #~ msgid "&Type"
  3590. #~ msgstr "&Type"
  3591. #~ msgid "N&GID"
  3592. #~ msgstr "N&GID"
  3593. #~ msgid "N&UID"
  3594. #~ msgstr "N&UID"
  3595. #~ msgid "&Owner"
  3596. #~ msgstr "Pr&Opriétaire"
  3597. #~ msgid "&Group"
  3598. #~ msgstr "&Groupe"
  3599. #~ msgid "MC was unable to write ~/"
  3600. #~ msgstr "MC n'a pas pu écrire le fichier ~/"
  3601. #~ msgid " (%ld blocks)"
  3602. #~ msgstr " (%ld blocs)"
  3603. #~ msgid " Notice "
  3604. #~ msgstr " Note "
  3605. #~ msgid ""
  3606. #~ " The Midnight Commander configuration files \n"
  3607. #~ " are now stored in the ~/.mc directory, the \n"
  3608. #~ " files have been moved now\n"
  3609. #~ msgstr ""
  3610. #~ " Les fichers de configuration de Midnight Commander \n"
  3611. #~ " sont désormais stockés dans le répertoire ~/.mc, \n"
  3612. #~ " les fichiers ont été déplacés\n"
  3613. #~ msgid "%s bytes in %d files"
  3614. #~ msgstr " %s octets dans %d fichiers"
  3615. #~ msgid " Cannot open file for reading: "
  3616. #~ msgstr " Échec lors de l'ouverture du fichier en lecture : "
  3617. #~ msgid " Not an ordinary file: "
  3618. #~ msgstr " Ce n'est pas un fichier ordinaire : "
  3619. #~ msgid "Format of the "
  3620. #~ msgstr "Format du "
  3621. #~ msgid ""
  3622. #~ " file has changed\n"
  3623. #~ "with version 3.0. You may want either to\n"
  3624. #~ "copy it from "
  3625. #~ msgstr ""
  3626. #~ "Ce fichier a changé avec la version 3.0.\n"
  3627. #~ "Vous pouvez soit le copier depuis "
  3628. #~ msgid ""
  3629. #~ "mc.ext or use that\n"
  3630. #~ "file as an example of how to write it.\n"
  3631. #~ msgstr "mc.ext, soit utiliser ce fichier comme modèle.\n"
  3632. #~ msgid "mc.ext will be used for this moment."
  3633. #~ msgstr "mc.ext sera utilisé pour l'instant."
  3634. #~ msgid " Cannot open file "
  3635. #~ msgstr " Ne peut ouvrir le fichier "
  3636. #~ msgid "Col %d"
  3637. #~ msgstr "Col %d"
  3638. #~ msgid " [grow]"
  3639. #~ msgstr " [augm.]"
  3640. #~ msgid "Ascii"
  3641. #~ msgstr "Ascii"
  3642. #~ msgid "Hex"
  3643. #~ msgstr "Hexa"
  3644. #~ msgid "Line"
  3645. #~ msgstr "Ligne"
  3646. #~ msgid "RxSrch"
  3647. #~ msgstr "Chercher ExpReg"
  3648. #~ msgid "EdHex"
  3649. #~ msgstr "EdHexa"
  3650. #~ msgid "EdText"
  3651. #~ msgstr "EdTexte"
  3652. #~ msgid "UnWrap"
  3653. #~ msgstr "Pas de césure"
  3654. #~ msgid "Wrap"
  3655. #~ msgstr "Césure"
  3656. #~ msgid "HxSrch"
  3657. #~ msgstr "RechHx"
  3658. #~ msgid "Raw"
  3659. #~ msgstr "Brut"
  3660. #~ msgid "Parse"
  3661. #~ msgstr "Analyser"
  3662. #~ msgid "Unform"
  3663. #~ msgstr "Déformat"
  3664. #~ msgid "User menu available only in mcedit invoked from mc"
  3665. #~ msgstr ""
  3666. #~ "Le menu utilisateur n'est disponible que si mcedit est invoqué depuis mc"
  3667. #~ msgid " Socket source routing setup "
  3668. #~ msgstr " Configuration du routage à la source "
  3669. #~ msgid " Enter host name to use as a source routing hop: "
  3670. #~ msgstr ""
  3671. #~ " Saisissez le nom de l'hôte à utiliser comme noeud de routage à la "
  3672. #~ "source : "
  3673. #~ msgid " Host name "
  3674. #~ msgstr " Nom de l'hôte "
  3675. #~ msgid " Error while looking up IP address "
  3676. #~ msgstr " Erreur lors de la recherche de l'adresse IP "
  3677. #~ msgid ""
  3678. #~ "\n"
  3679. #~ "\n"
  3680. #~ "\n"
  3681. #~ "refresh stack underflow!\n"
  3682. #~ "\n"
  3683. #~ "\n"
  3684. #~ msgstr ""
  3685. #~ "\n"
  3686. #~ "\n"
  3687. #~ "\n"
  3688. #~ "pile de rafraîchissement vide !\n"
  3689. #~ "\n"
  3690. #~ "\n"
  3691. #~ msgid " Listing format edit "
  3692. #~ msgstr " Édition du format de liste "
  3693. #~ msgid " New mode is \"%s\" "
  3694. #~ msgstr " Le nouveau mode est « %s » "
  3695. #~ msgid "&Drive... M-d"
  3696. #~ msgstr "&Lecteur... M-d"
  3697. #~ msgid "Use to debug the background code"
  3698. #~ msgstr "Utilisez ceci pour débuguer du code en tâche de fond"
  3699. #~ msgid "Force subshell execution"
  3700. #~ msgstr "exécuter avec l'ID propr."
  3701. #~ msgid " No action taken "
  3702. #~ msgstr " Aucune action effectuée "
  3703. #~ msgid " Cannot set source routing (%s)"
  3704. #~ msgstr " Ne peut définir le routage par la source (%s)"