fr.po 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the PACKAGE package.
  4. #
  5. # Translators:
  6. # Slava Zanko <slavazanko@gmail.com>, 2011.
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: Midnight Commander\n"
  10. "Report-Msgid-Bugs-To: http://www.midnight-commander.org/report\n"
  11. "POT-Creation-Date: 2011-07-09 17:00+0400\n"
  12. "PO-Revision-Date: 2011-07-10 00:32+0000\n"
  13. "Last-Translator: slavazanko <slavazanko@gmail.com>\n"
  14. "Language-Team: French (http://www.transifex.net/projects/p/mc/team/fr/)\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Language: fr\n"
  19. "Plural-Forms: nplurals=2; plural=(n > 1)\n"
  20. msgid "Warning: cannot load codepages list"
  21. msgstr ""
  22. msgid "7-bit ASCII"
  23. msgstr "ASCII 7 bits"
  24. #, c-format
  25. msgid "Cannot translate from %s to %s"
  26. msgstr "Ne peut converti de %s vers %s"
  27. msgid "Event system already initialized"
  28. msgstr ""
  29. msgid "Failed to initialize event system"
  30. msgstr ""
  31. msgid "Event system not initialized"
  32. msgstr ""
  33. msgid "Check input data! Some of parameters are NULL!"
  34. msgstr ""
  35. #, c-format
  36. msgid "Unable to create group '%s' for events!"
  37. msgstr ""
  38. #, c-format
  39. msgid "Unable to create event '%s'!"
  40. msgstr ""
  41. #, c-format
  42. msgid ""
  43. "File \"%s\" is already being edited.\n"
  44. "User: %s\n"
  45. "Process ID: %d"
  46. msgstr ""
  47. "Fichier \"%s\" est en cours d'édition\n"
  48. "Utilisateur: %s\n"
  49. "ID Processus: %d"
  50. msgid "File locked"
  51. msgstr "Fichier vérouillé"
  52. msgid "&Grab lock"
  53. msgstr "Acquérir le &verrou"
  54. msgid "&Ignore lock"
  55. msgstr "&Ignorer le verrou"
  56. #, c-format
  57. msgid "Cannot create %s directory"
  58. msgstr "Ne peut créer le répertoire %s"
  59. #, c-format
  60. msgid "An error occured while migrating user settings: %s"
  61. msgstr ""
  62. #, c-format
  63. msgid ""
  64. "Your old settings were migrated from %s\n"
  65. "to Freedesktop recommended dirs.\n"
  66. "To get more info, please visit\n"
  67. "http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  68. msgstr ""
  69. msgid "Search string not found"
  70. msgstr " Chaîne non trouvée "
  71. msgid "Not implemented yet"
  72. msgstr "Pas encore implémenté"
  73. msgid "Num of replace tokens not equal to num of found tokens"
  74. msgstr "Nombre de jetons remplacés différent de celui des jetons trouvés"
  75. #, c-format
  76. msgid "Invalid token number %d"
  77. msgstr " Nombre de jetons invalide %d "
  78. msgid "Regular expression error"
  79. msgstr ""
  80. msgid "Normal"
  81. msgstr "Normal"
  82. msgid "&Regular expression"
  83. msgstr "Expression &régulière"
  84. msgid "Hexadecimal"
  85. msgstr "Hexadécimal"
  86. msgid "Wildcard search"
  87. msgstr ""
  88. #, c-format
  89. msgid ""
  90. "Unable to load '%s' skin.\n"
  91. "Default skin has been loaded"
  92. msgstr ""
  93. "Impossible de charger le thème '%s'.\n"
  94. "Le thème par défaut a été chargé"
  95. #, c-format
  96. msgid ""
  97. "Unable to parse '%s' skin.\n"
  98. "Default skin has been loaded"
  99. msgstr ""
  100. "Impossible d'analyser le thème '%s'.\n"
  101. "Le thème par défaut a été chargé"
  102. #, c-format
  103. msgid ""
  104. "Unable to use '%s' skin with 256 colors support\n"
  105. "on non-256 colors terminal.\n"
  106. "Default skin has been loaded"
  107. msgstr ""
  108. msgid "Function key 1"
  109. msgstr "Fonction : F1 "
  110. msgid "Function key 2"
  111. msgstr "Fonction : F2 "
  112. msgid "Function key 3"
  113. msgstr "Fonction : F3 "
  114. msgid "Function key 4"
  115. msgstr "Fonction : F4 "
  116. msgid "Function key 5"
  117. msgstr "Fonction : F5 "
  118. msgid "Function key 6"
  119. msgstr "Fonction : F6 "
  120. msgid "Function key 7"
  121. msgstr "Fonction : F7 "
  122. msgid "Function key 8"
  123. msgstr "Fonction : F8 "
  124. msgid "Function key 9"
  125. msgstr "Fonction : F9 "
  126. msgid "Function key 10"
  127. msgstr "Fonction : F10 "
  128. msgid "Function key 11"
  129. msgstr "Fonction : F11 "
  130. msgid "Function key 12"
  131. msgstr "Fonction : F12 "
  132. msgid "Function key 13"
  133. msgstr "Fonction : F13 "
  134. msgid "Function key 14"
  135. msgstr "Fonction : F14"
  136. msgid "Function key 15"
  137. msgstr "Fonction : F15"
  138. msgid "Function key 16"
  139. msgstr "Fonction : F16"
  140. msgid "Function key 17"
  141. msgstr "Fonction : F17"
  142. msgid "Function key 18"
  143. msgstr "Fonction : F18"
  144. msgid "Function key 19"
  145. msgstr "Fonction : F19"
  146. msgid "Function key 20"
  147. msgstr "Fonction : F20"
  148. msgid "Backspace key"
  149. msgstr "Retour arrière"
  150. msgid "End key"
  151. msgstr "Fin"
  152. msgid "Up arrow key"
  153. msgstr "Flèche en haut"
  154. msgid "Down arrow key"
  155. msgstr "Flèche en bas "
  156. msgid "Left arrow key"
  157. msgstr "Flèche à gauche"
  158. msgid "Right arrow key"
  159. msgstr "Flèche à droite"
  160. msgid "Home key"
  161. msgstr "Origine"
  162. msgid "Page Down key"
  163. msgstr "Page suivante"
  164. msgid "Page Up key"
  165. msgstr "Page précédente "
  166. msgid "Insert key"
  167. msgstr "Insertion"
  168. msgid "Delete key"
  169. msgstr "Effacement"
  170. msgid "Completion/M-tab"
  171. msgstr "Complétion/M-tab"
  172. msgid "+ on keypad"
  173. msgstr "Pavé numérique +"
  174. msgid "- on keypad"
  175. msgstr "Pavé numérique -"
  176. msgid "Slash on keypad"
  177. msgstr "« / » sur pavé numérique"
  178. msgid "* on keypad"
  179. msgstr "Pavé numérique *"
  180. msgid "Escape key"
  181. msgstr "Touche Échappement"
  182. msgid "Left arrow keypad"
  183. msgstr "Flèche gauche (Pavé numérique)"
  184. msgid "Right arrow keypad"
  185. msgstr "Flèche droite (Pavé numérique)"
  186. msgid "Up arrow keypad"
  187. msgstr "Flèche haut (Pavé numérique)"
  188. msgid "Down arrow keypad"
  189. msgstr "Flèche bas (Pavé numérique)"
  190. msgid "Home on keypad"
  191. msgstr "Début de ligne (Pavé numérique)"
  192. msgid "End on keypad"
  193. msgstr "Fin de ligne (Pavé numérique)"
  194. msgid "Page Down keypad"
  195. msgstr "Page suivante (Pavé numérique)"
  196. msgid "Page Up keypad"
  197. msgstr "Page précédente (Pavé numérique)"
  198. msgid "Insert on keypad"
  199. msgstr "« Insér » sur pavé numérique"
  200. msgid "Delete on keypad"
  201. msgstr "« Suppr » sur pavé numérique"
  202. msgid "Enter on keypad"
  203. msgstr "« Entrée » sur pavé numérique"
  204. msgid "Function key 21"
  205. msgstr "Fonction : F21 "
  206. msgid "Function key 22"
  207. msgstr "Fonction : F22 "
  208. msgid "Function key 23"
  209. msgstr "Fonction : F22 "
  210. msgid "Function key 24"
  211. msgstr "Fonction : F22 "
  212. msgid "A1 key"
  213. msgstr "Touche A1"
  214. msgid "C1 key"
  215. msgstr "Touche C1"
  216. msgid "Plus"
  217. msgstr "Plus"
  218. msgid "Minus"
  219. msgstr "Moins"
  220. msgid "Asterisk"
  221. msgstr "Astérisque"
  222. msgid "Dot"
  223. msgstr "Point"
  224. msgid "Less than"
  225. msgstr "Inférieur à"
  226. msgid "Great than"
  227. msgstr "Supérieur à"
  228. msgid "Equal"
  229. msgstr "Égal"
  230. msgid "Comma"
  231. msgstr "Virgule"
  232. msgid "Apostrophe"
  233. msgstr "Apostrophe"
  234. msgid "Colon"
  235. msgstr "Deux points"
  236. msgid "Exclamation mark"
  237. msgstr "Point d'exclamation"
  238. msgid "Question mark"
  239. msgstr "Point d'interrogation"
  240. msgid "Ampersand"
  241. msgstr "Esperluette"
  242. msgid "Dollar sign"
  243. msgstr "Dollar"
  244. msgid "Quotation mark"
  245. msgstr "Guillemet"
  246. msgid "Caret"
  247. msgstr "Circonflexe"
  248. msgid "Tilda"
  249. msgstr "Tilde"
  250. msgid "Prime"
  251. msgstr "Prime"
  252. msgid "Underline"
  253. msgstr "Souligné"
  254. msgid "Understrike"
  255. msgstr "Souligné"
  256. msgid "Pipe"
  257. msgstr "Tube"
  258. msgid "Left parenthesis"
  259. msgstr "parenthèse gauche"
  260. msgid "Right parenthesis"
  261. msgstr "parenthèse droite"
  262. msgid "Left bracket"
  263. msgstr "crochet gauche"
  264. msgid "Right bracket"
  265. msgstr "crochet droite"
  266. msgid "Left brace"
  267. msgstr "accolade gauche"
  268. msgid "Right brace"
  269. msgstr "accolade droite"
  270. msgid "Enter"
  271. msgstr "Entrée"
  272. msgid "Tab key"
  273. msgstr "Tabulation"
  274. msgid "Space key"
  275. msgstr "Espace"
  276. msgid "Slash key"
  277. msgstr "Barre oblique"
  278. msgid "Backslash key"
  279. msgstr "Barre oblique inversée"
  280. msgid "Number sign #"
  281. msgstr "Croisillon"
  282. #. TRANSLATORS: Please translate as in "at sign" (@).
  283. msgid "At sign"
  284. msgstr ""
  285. msgid "Ctrl"
  286. msgstr "Ctrl"
  287. msgid "Alt"
  288. msgstr "Alt"
  289. msgid "Shift"
  290. msgstr "Maj"
  291. #, c-format
  292. msgid ""
  293. "Screen size %dx%d is not supported.\n"
  294. "Check the TERM environment variable.\n"
  295. msgstr ""
  296. "La taille de l'écran %dx%d n'est pas supportée.\n"
  297. "Vérifiez la variable d'environnement TERM.\n"
  298. #, c-format
  299. msgid "%s is not a directory\n"
  300. msgstr "%s n'est pas un répertoire\n"
  301. #, c-format
  302. msgid "Directory %s is not owned by you\n"
  303. msgstr "Vous n'êtes pas le propriétaire du répertoire %s\n"
  304. #, c-format
  305. msgid "Cannot set correct permissions for directory %s\n"
  306. msgstr "Impossible de régler des droits corrects sur le répertoire %s\n"
  307. #, c-format
  308. msgid "Cannot create temporary directory %s: %s\n"
  309. msgstr " Ne peut créer le répertoire temporaire %s : %s\n"
  310. #, c-format
  311. msgid "Temporary files will be created in %s\n"
  312. msgstr "Les fichiers temporaires seront crées dans %s\n"
  313. #, c-format
  314. msgid "Temporary files will not be created\n"
  315. msgstr "Les fichiers temporaires ne seront pas crées\n"
  316. #, c-format
  317. msgid "Press any key to continue..."
  318. msgstr "Appuyez sur une touche pour continuer..."
  319. msgid "Warning"
  320. msgstr "Attention"
  321. msgid "Pipe failed"
  322. msgstr " Échec du tube "
  323. msgid "Dup failed"
  324. msgstr " Échec de dup "
  325. msgid "Error dup'ing old error pipe"
  326. msgstr ""
  327. #, c-format
  328. msgid "Directory cache expired for %s"
  329. msgstr "Répertoire de cache expiré pour %s"
  330. msgid "bytes transferred"
  331. msgstr ""
  332. msgid "Starting linear transfer..."
  333. msgstr "Démarrage du transfert linéaire..."
  334. msgid "Getting file"
  335. msgstr "Obtention du fichier"
  336. msgid "Changes to file lost"
  337. msgstr "Les changements au fichier sont perdus"
  338. msgid "Cannot parse:"
  339. msgstr "Ne peut analyser :"
  340. msgid "More parsing errors will be ignored."
  341. msgstr "Les prochaines erreurs d'analyse seront ignorées."
  342. msgid "Internal error:"
  343. msgstr "Erreur interne :"
  344. msgid "Password:"
  345. msgstr "Mot de passe :"
  346. msgid "Screens"
  347. msgstr ""
  348. msgid "History"
  349. msgstr ""
  350. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  351. msgid "DialogTitle|History cleanup"
  352. msgstr ""
  353. msgid "Do you want clean this history?"
  354. msgstr "Voulez-vous supprimer cet historique"
  355. msgid "&Yes"
  356. msgstr "&Oui"
  357. msgid "&No"
  358. msgstr "&Non"
  359. msgid "Background process:"
  360. msgstr "Processus en tâche de fond :"
  361. msgid "&Cancel"
  362. msgstr "&Annuler"
  363. msgid "&OK"
  364. msgstr "&Valider"
  365. msgid "Error"
  366. msgstr "Erreur"
  367. msgid "Displays the current version"
  368. msgstr "Affiche le numéro de la version courante"
  369. msgid "Print data directory"
  370. msgstr "Affiche le répertoire de données"
  371. msgid "Print extended info about used data directories"
  372. msgstr ""
  373. msgid "Print configure options"
  374. msgstr ""
  375. msgid "Print last working directory to specified file"
  376. msgstr "Écrit le dernier répertoire courant dans le fichier donné"
  377. msgid "Enables subshell support (default)"
  378. msgstr "Active le support des sous-shells (par défaut)"
  379. msgid "Disables subshell support"
  380. msgstr "Désactive le support des sous-shells"
  381. msgid "Log ftp dialog to specified file"
  382. msgstr "Consigne les dialogues FTP dans le fichier spécifié"
  383. msgid "Set debug level"
  384. msgstr "Initialise le niveau de débugage"
  385. msgid "Launches the file viewer on a file"
  386. msgstr "Lance le visionneur de fichiers sur un fichier"
  387. msgid "Edits one file"
  388. msgstr "Édite un fichier"
  389. msgid "Forces xterm features"
  390. msgstr "Force un attribut xterm"
  391. msgid "Disable mouse support in text version"
  392. msgstr "Désactive le support de la souris pour la version texte"
  393. msgid "Tries to use termcap instead of terminfo"
  394. msgstr "Essaie d'utiliser termcap au lieu de terminfo"
  395. msgid "To run on slow terminals"
  396. msgstr "À exécuter sur les terminaux lents"
  397. msgid "Use stickchars to draw"
  398. msgstr "Utiliser les caractères graphiques pour dessiner"
  399. msgid "Resets soft keys on HP terminals"
  400. msgstr "Réinitialiser les « softkeys » sur les terminaux HP"
  401. msgid "Load definitions of key bindings from specified file"
  402. msgstr "Charge les définitions des raccourcis clavier depuis le fichier donné"
  403. msgid "Don't load definitions of key bindings from file, use defaults"
  404. msgstr ""
  405. msgid "Requests to run in black and white"
  406. msgstr "Demande à fonctionner en mode noir et blanc"
  407. msgid "Request to run in color mode"
  408. msgstr "Demande à fonctionner en mode couleur"
  409. msgid "Specifies a color configuration"
  410. msgstr "Spécifie une configuration des couleurs"
  411. msgid "Show mc with specified skin"
  412. msgstr "Afficher mc avec le thème donné"
  413. #. TRANSLATORS: don't translate keywords
  414. msgid ""
  415. "--colors KEYWORD={FORE},{BACK},{ATTR}:KEYWORD2=...\n"
  416. "\n"
  417. "{FORE}, {BACK} and {ATTR} can be omitted, and the default will be used\n"
  418. "\n"
  419. " Keywords:\n"
  420. " Global: errors, disabled, reverse, gauge, header\n"
  421. " input, inputmark, inputunchanged, commandlinemark\n"
  422. " bbarhotkey, bbarbutton, statusbar\n"
  423. " File display: normal, selected, marked, markselect\n"
  424. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  425. " errdhotfocus\n"
  426. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  427. " Popup menus: pmenunormal, pmenusel, pmenutitle\n"
  428. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  429. " editlinestate\n"
  430. " Viewer: viewbold, viewunderline, viewselected\n"
  431. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  432. msgstr ""
  433. #. TRANSLATORS: don't translate color names and attributes
  434. msgid ""
  435. "Standard Colors:\n"
  436. " black, gray, red, brightred, green, brightgreen, brown,\n"
  437. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  438. " brightcyan, lightgray and white\n"
  439. "\n"
  440. "Extended colors, when 256 colors are available:\n"
  441. " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
  442. "\n"
  443. "Attributes:\n"
  444. " bold, underline, reverse, blink; append more with '+'\n"
  445. msgstr ""
  446. msgid "Color options"
  447. msgstr "Options de couleur"
  448. msgid "+number"
  449. msgstr "+nombre"
  450. msgid "[this_dir] [other_panel_dir]"
  451. msgstr "[ce_rép] [autre_rép_panneau]"
  452. msgid "Set initial line number for the internal editor"
  453. msgstr "Définit le numéro de ligne initial pour l'éditeur interne"
  454. msgid ""
  455. "\n"
  456. "Please send any bug reports (including the output of `mc -V')\n"
  457. "as tickets at www.midnight-commander.org\n"
  458. msgstr ""
  459. "\n"
  460. "Envoyer vos rapports d'anomalies (incluant la sortie de `mc -V')\n"
  461. "comme ticket de www.midnight-commander.org\n"
  462. #, c-format
  463. msgid "GNU Midnight Commander %s\n"
  464. msgstr "GNU Midnight Commander %s\n"
  465. msgid "No arguments given to the viewer."
  466. msgstr ""
  467. msgid "Two files are required to evoke the diffviewer."
  468. msgstr ""
  469. msgid "Main options"
  470. msgstr "Options principales"
  471. msgid "Terminal options"
  472. msgstr "Options du terminal"
  473. msgid "Background process error"
  474. msgstr " Erreur dans un processus en tâche de fond"
  475. msgid "Unknown error in child"
  476. msgstr " Erreur inconnue dans le processus fils"
  477. msgid "Child died unexpectedly"
  478. msgstr " Fin inattendue du processus fils"
  479. msgid "Background protocol error"
  480. msgstr " Erreur de protocole en tmache de fond"
  481. msgid "Reading failed"
  482. msgstr "Echec de lecture"
  483. msgid ""
  484. "Background process sent us a request for more arguments\n"
  485. "than we can handle."
  486. msgstr ""
  487. "Une tâche de fond a passé plus de paramètres\n"
  488. "que je ne peux en gérer."
  489. msgid "&Dismiss"
  490. msgstr "&Fermer"
  491. msgid "All charsets"
  492. msgstr "Tous les encodages"
  493. msgid "&Whole words"
  494. msgstr "&Mots entiers"
  495. msgid "&Backwards"
  496. msgstr "Vers le &haut"
  497. msgid "Case &sensitive"
  498. msgstr "Respec&t de la casse "
  499. msgid "Enter search string:"
  500. msgstr " Saisissez la chaîne à rechercher :"
  501. msgid "Search"
  502. msgstr "Rechercher"
  503. msgid "Search is disabled"
  504. msgstr "Recherche désactivée"
  505. #, c-format
  506. msgid ""
  507. "Cannot create temporary diff file\n"
  508. "%s"
  509. msgstr ""
  510. #, c-format
  511. msgid ""
  512. "Cannot create backup file\n"
  513. "%s%s\n"
  514. "%s"
  515. msgstr ""
  516. #, c-format
  517. msgid ""
  518. "Cannot create temporary merge file\n"
  519. "%s"
  520. msgstr ""
  521. msgid "&Normal"
  522. msgstr "&Normal"
  523. msgid "&Fastest (Assume large files)"
  524. msgstr ""
  525. msgid "&Minimal (Find a smaller set of change)"
  526. msgstr ""
  527. msgid "Strip &trailing carriage return"
  528. msgstr ""
  529. msgid "Ignore all &whitespace"
  530. msgstr ""
  531. msgid "Ignore &space change"
  532. msgstr ""
  533. msgid "Ignore tab &expansion"
  534. msgstr ""
  535. msgid "&Ignore case"
  536. msgstr "&Ignorer la casse"
  537. msgid "Diff extra options"
  538. msgstr ""
  539. msgid "Diff algorithm"
  540. msgstr ""
  541. msgid "Diff Options"
  542. msgstr " Options de diff"
  543. msgid "Edit"
  544. msgstr ""
  545. msgid "Edit is disabled"
  546. msgstr ""
  547. msgid "Goto line (left)"
  548. msgstr ""
  549. msgid "Goto line (right)"
  550. msgstr ""
  551. msgid "Enter line:"
  552. msgstr ""
  553. msgid "ButtonBar|Help"
  554. msgstr "ButtonBar|Aide"
  555. msgid "ButtonBar|Save"
  556. msgstr "ButtonBar|Enregi"
  557. msgid "ButtonBar|Edit"
  558. msgstr "ButtonBar|Édit."
  559. msgid "ButtonBar|Merge"
  560. msgstr ""
  561. msgid "ButtonBar|Search"
  562. msgstr "ButtonBar|Recher"
  563. msgid "ButtonBar|Options"
  564. msgstr ""
  565. msgid "ButtonBar|Quit"
  566. msgstr "ButtonBar|Quit"
  567. msgid "Quit"
  568. msgstr "Quitter"
  569. msgid "File was modified. Save with exit?"
  570. msgstr ""
  571. msgid ""
  572. "Midnight Commander is being shut down.\n"
  573. "Save modified file?"
  574. msgstr ""
  575. msgid "Diff:"
  576. msgstr ""
  577. msgid "Two files are needed to compare"
  578. msgstr ""
  579. msgid "Choose syntax highlighting"
  580. msgstr ""
  581. msgid "< Auto >"
  582. msgstr "< Auto >"
  583. msgid "< Reload Current Syntax >"
  584. msgstr "< Recharger la syntaxe courante >"
  585. msgid "About"
  586. msgstr ""
  587. msgid ""
  588. "Copyright (C) 1996-2010 the Free Software Foundation\n"
  589. "\n"
  590. " A user friendly text editor\n"
  591. " written for the Midnight Commander"
  592. msgstr ""
  593. #, c-format
  594. msgid "Cannot open %s for reading"
  595. msgstr ""
  596. #, c-format
  597. msgid "Error reading %s"
  598. msgstr ""
  599. #, c-format
  600. msgid "Cannot get size/permissions for %s"
  601. msgstr ""
  602. #, c-format
  603. msgid "\"%s\" is not a regular file"
  604. msgstr ""
  605. #, c-format
  606. msgid "File \"%s\" is too large"
  607. msgstr ""
  608. #, c-format
  609. msgid "Error reading from pipe: %s"
  610. msgstr ""
  611. #, c-format
  612. msgid "Cannot open pipe for reading: %s"
  613. msgstr ""
  614. msgid "File has hard-links. Detach before saving?"
  615. msgstr ""
  616. msgid "The file has been modified in the meantime. Save anyway?"
  617. msgstr "Le fichier a été modifié entre temps. Enregistrer quand même ?"
  618. #, c-format
  619. msgid "Error writing to pipe: %s"
  620. msgstr ""
  621. #, c-format
  622. msgid "Cannot open pipe for writing: %s"
  623. msgstr ""
  624. #, c-format
  625. msgid "Cannot open file for writing: %s"
  626. msgstr ""
  627. msgid "The file you are saving is not finished with a newline"
  628. msgstr ""
  629. "Le fichier que vous enregistré ne se termine pas par une nouvelle ligne"
  630. msgid "C&ontinue"
  631. msgstr "C&ontinuer"
  632. msgid "&Do not change"
  633. msgstr "Ne pas &modifier"
  634. msgid "&Unix format (LF)"
  635. msgstr "Format &Unix (LF)"
  636. msgid "&Windows/DOS format (CR LF)"
  637. msgstr "Format &Windows/DOS (CR LF)"
  638. msgid "&Macintosh format (CR)"
  639. msgstr "Format &Macintosh (CR)"
  640. msgid "Change line breaks to:"
  641. msgstr "Changer la césure vers :"
  642. msgid "Enter file name:"
  643. msgstr ""
  644. msgid "Save As"
  645. msgstr ""
  646. msgid "Syntax file edit"
  647. msgstr "Édition du fichier de syntaxe"
  648. msgid "Which syntax file you want to edit?"
  649. msgstr ""
  650. msgid "&User"
  651. msgstr "&Utilisateur"
  652. msgid "&System Wide"
  653. msgstr "Pour tout le &Système"
  654. msgid "Menu edit"
  655. msgstr " Édition du menu"
  656. msgid "Which menu file do you want to edit?"
  657. msgstr " Quel fichier de menu voulez-vous éditer ? "
  658. msgid "&Local"
  659. msgstr "&Local"
  660. msgid "Block is large, you may not be able to undo this action"
  661. msgstr ""
  662. msgid "&Quick save"
  663. msgstr "&Enregistrement rapide"
  664. msgid "&Safe save"
  665. msgstr "&Enregistrement sûr"
  666. msgid "&Do backups with following extension:"
  667. msgstr "&Faire les sauvegardes avec l'extension suivante :"
  668. msgid "Check &POSIX new line"
  669. msgstr "Vérifier les nouvelles lignes &POSIX"
  670. msgid "Edit Save Mode"
  671. msgstr ""
  672. msgid "A file already exists with this name"
  673. msgstr ""
  674. msgid "&Overwrite"
  675. msgstr "É&craser"
  676. msgid "Save as"
  677. msgstr ""
  678. msgid "Cannot save file"
  679. msgstr ""
  680. msgid "Delete macro"
  681. msgstr ""
  682. msgid "Press macro hotkey:"
  683. msgstr ""
  684. msgid "Macro not deleted"
  685. msgstr ""
  686. msgid "Save macro"
  687. msgstr ""
  688. msgid "Press the macro's new hotkey:"
  689. msgstr ""
  690. msgid "Repeat last commands"
  691. msgstr ""
  692. msgid "Repeat times:"
  693. msgstr ""
  694. #, c-format
  695. msgid "Confirm save file: \"%s\""
  696. msgstr ""
  697. msgid "Save file"
  698. msgstr ""
  699. msgid "&Save"
  700. msgstr "Enregi&Strer"
  701. msgid ""
  702. "Current text was modified without a file save.\n"
  703. "Continue discards these changes"
  704. msgstr ""
  705. msgid "Load"
  706. msgstr ""
  707. msgid "Replace"
  708. msgstr "Remplacer"
  709. #, c-format
  710. msgid "%ld replacements made"
  711. msgstr ""
  712. msgid "&Cancel quit"
  713. msgstr "&Annuler quitter"
  714. msgid "This function is not implemented"
  715. msgstr ""
  716. msgid "Copy to clipboard"
  717. msgstr ""
  718. msgid "Unable to save to file"
  719. msgstr ""
  720. msgid "Cut to clipboard"
  721. msgstr ""
  722. msgid "Goto line"
  723. msgstr ""
  724. msgid "Save block"
  725. msgstr ""
  726. msgid "Insert file"
  727. msgstr "Insérer fichier"
  728. msgid "Cannot insert file"
  729. msgstr "Impossible d'insérer le fichier"
  730. msgid "Sort block"
  731. msgstr "Trier le bloc"
  732. msgid "You must first highlight a block of text"
  733. msgstr "Vous devez d'abord sélectionner un bloc de texte"
  734. msgid "Run sort"
  735. msgstr " Lancer le tri"
  736. msgid "Enter sort options (see manpage) separated by whitespace:"
  737. msgstr ""
  738. " Saisissez les options de tri (cf page de manuel) séparées par des espaces :"
  739. msgid "Sort"
  740. msgstr " Trier"
  741. msgid "Cannot execute sort command"
  742. msgstr "Impossible d'exécuter de la commande de tri "
  743. #, c-format
  744. msgid "Sort returned non-zero: %s"
  745. msgstr " Le code de retour du tri est non nul : %s"
  746. msgid "Paste output of external command"
  747. msgstr "Coller la sortie d'une commande externe"
  748. msgid "Enter shell command(s):"
  749. msgstr " Saisissez une commande(s) shell :"
  750. msgid "External command"
  751. msgstr "Commande externe"
  752. msgid "Cannot execute command"
  753. msgstr "Impossible d'exécuter la commande"
  754. msgid "Copies to"
  755. msgstr "Copier vers"
  756. msgid "Subject"
  757. msgstr "Sujet"
  758. msgid "To"
  759. msgstr "A"
  760. msgid "mail -s <subject> -c <cc> <to>"
  761. msgstr ""
  762. msgid "Mail"
  763. msgstr " Courriel"
  764. msgid "Insert literal"
  765. msgstr "Insérer un littéral"
  766. msgid "Press any key:"
  767. msgstr " Appuyez sur une touche :"
  768. msgid ""
  769. "Current text was modified without a file save\n"
  770. "Continue discards these changes"
  771. msgstr ""
  772. " Le fichier courant a été modifié mais pas enregistré\n"
  773. " Les changements seront perdus si vous continuez"
  774. msgid "In se&lection"
  775. msgstr "Dans la sé&lection"
  776. msgid "Enter replacement string:"
  777. msgstr ""
  778. msgid "&Find all"
  779. msgstr "&Rechercher tout"
  780. msgid "Cancel"
  781. msgstr "Annuler"
  782. msgid ""
  783. "Current text was modified without a file save.\n"
  784. "Continue discards these changes."
  785. msgstr ""
  786. msgid "&Skip"
  787. msgstr "&Sauter"
  788. msgid "A&ll"
  789. msgstr "&Tous"
  790. msgid "&Replace"
  791. msgstr "&Remplacer"
  792. msgid "Replace with:"
  793. msgstr "Remplacer par : "
  794. msgid "Confirm replace"
  795. msgstr "Confirmer le remplacement"
  796. msgid "&Open file..."
  797. msgstr "&Ouvrir un fichier..."
  798. msgid "&New"
  799. msgstr "&Nouveau"
  800. msgid "Save &as..."
  801. msgstr "Enregi&strer sous..."
  802. msgid "&Insert file..."
  803. msgstr "&Insérer fichier..."
  804. msgid "Cop&y to file..."
  805. msgstr "Copier vers &fichier..."
  806. msgid "&User menu..."
  807. msgstr "Menu &Utilisateur..."
  808. msgid "A&bout..."
  809. msgstr "&Présentation..."
  810. msgid "&Quit"
  811. msgstr "&Quitter"
  812. msgid "&Undo"
  813. msgstr "Ann&uller"
  814. msgid "&Redo"
  815. msgstr ""
  816. msgid "&Toggle ins/overw"
  817. msgstr "&Insertion/écrasement"
  818. msgid "To&ggle mark"
  819. msgstr "Ajouter/Supprimer marque"
  820. msgid "&Mark columns"
  821. msgstr "&Marquer colonne"
  822. msgid "Mark &all"
  823. msgstr "&Marquer tous"
  824. msgid "Unmar&k"
  825. msgstr "Enlever la marque"
  826. msgid "Cop&y"
  827. msgstr "&Copier"
  828. msgid "Mo&ve"
  829. msgstr "&Déplacer"
  830. msgid "&Delete"
  831. msgstr "&Effacer"
  832. msgid "Co&py to clipfile"
  833. msgstr "Copier vers le &fichier"
  834. msgid "&Cut to clipfile"
  835. msgstr ""
  836. msgid "Pa&ste from clipfile"
  837. msgstr ""
  838. msgid "&Beginning"
  839. msgstr "Dé&But"
  840. msgid "&End"
  841. msgstr "&Fin"
  842. msgid "&Search..."
  843. msgstr "&Rechercher..."
  844. msgid "Search &again"
  845. msgstr "Chercher à nouve&au"
  846. msgid "&Replace..."
  847. msgstr "&Remplacer..."
  848. msgid "&Toggle bookmark"
  849. msgstr "&Inverser le marque-page"
  850. msgid "&Next bookmark"
  851. msgstr "Marque-page suivant"
  852. msgid "&Prev bookmark"
  853. msgstr "Marque-page précédent"
  854. msgid "&Flush bookmarks"
  855. msgstr ""
  856. msgid "&Go to line..."
  857. msgstr "&Aller à la ligne..."
  858. msgid "&Toggle line state"
  859. msgstr "I&nverser l'état de la ligne"
  860. msgid "Go to matching &bracket"
  861. msgstr "Aller au &crochet correspondant"
  862. msgid "Toggle s&yntax highlighting"
  863. msgstr ""
  864. msgid "&Find declaration"
  865. msgstr "&Trouver la déclaration"
  866. msgid "Back from &declaration"
  867. msgstr "Trouver la &déclaration"
  868. msgid "For&ward to declaration"
  869. msgstr "Aller à la déclaration"
  870. msgid "Encod&ing..."
  871. msgstr "&Encodage..."
  872. msgid "&Refresh screen"
  873. msgstr "&Rafraîchir l'écran"
  874. msgid "&Start/Stop record macro"
  875. msgstr ""
  876. msgid "Delete macr&o..."
  877. msgstr " Effacer la macr&o..."
  878. msgid "Record/Repeat &actions"
  879. msgstr ""
  880. msgid "'ispell' s&pell check"
  881. msgstr "Correction orthographique 'is&pell'"
  882. msgid "&Mail..."
  883. msgstr "&Courriel..."
  884. msgid "Insert &literal..."
  885. msgstr "Insérer un &littéral..."
  886. msgid "Insert &date/time"
  887. msgstr "Insérer &date/heure"
  888. msgid "&Format paragraph"
  889. msgstr "Formater le p&aragraphe"
  890. msgid "&Sort..."
  891. msgstr "&Tri..."
  892. msgid "&Paste output of..."
  893. msgstr "Coller la sortie de..."
  894. msgid "&External formatter"
  895. msgstr "Formateur &externe"
  896. msgid "&General..."
  897. msgstr ""
  898. msgid "Save &mode..."
  899. msgstr "&mode auvegarde..."
  900. msgid "Learn &keys..."
  901. msgstr "Apprendre les &touches..."
  902. msgid "Syntax &highlighting..."
  903. msgstr "Coloration synta&Xique"
  904. msgid "S&yntax file"
  905. msgstr "Fichier de syntaxe"
  906. msgid "&Menu file"
  907. msgstr "Fichier &Menu"
  908. msgid "&Save setup"
  909. msgstr "Enregi&Strer la configuration"
  910. msgid "&File"
  911. msgstr "&Fichier"
  912. msgid "&Edit"
  913. msgstr "&Editer"
  914. msgid "&Search"
  915. msgstr "&Rechercher"
  916. msgid "&Command"
  917. msgstr "&Commande"
  918. msgid "For&mat"
  919. msgstr "For&matter"
  920. msgid "&Options"
  921. msgstr "&Options"
  922. msgid "None"
  923. msgstr "Aucun"
  924. msgid "Dynamic paragraphing"
  925. msgstr "Paragraphage automatique"
  926. msgid "Type writer wrap"
  927. msgstr "Césure « machine à écrire »"
  928. msgid "Word wrap line length:"
  929. msgstr ""
  930. msgid "&Group undo"
  931. msgstr ""
  932. msgid "Cursor beyond end of line"
  933. msgstr "Curseur au-delà de la fin de la ligne"
  934. msgid "Pers&istent selection"
  935. msgstr "sélection pers&istante"
  936. msgid "Synta&x highlighting"
  937. msgstr "Coloration synta&xique"
  938. msgid "Visible tabs"
  939. msgstr "Tabulation visible"
  940. msgid "Visible trailing spaces"
  941. msgstr "Espace en fin de ligne visible"
  942. msgid "Save file &position"
  943. msgstr "Enregistrer la position dans le fichier"
  944. msgid "Confir&m before saving"
  945. msgstr "Confir&Mer avant d'enregistrer"
  946. msgid "&Return does autoindent"
  947. msgstr "Auto-&indentation par « Entrée »"
  948. msgid "Tab spacing:"
  949. msgstr ""
  950. msgid "Fill tabs with &spaces"
  951. msgstr "&Convertir les tabulations en espaces"
  952. msgid "&Backspace through tabs"
  953. msgstr "&Effacement total des tabulations"
  954. msgid "&Fake half tabs"
  955. msgstr "&Fausses demi-tabulations"
  956. msgid "Wrap mode"
  957. msgstr "Mode de césure"
  958. msgid "Editor options"
  959. msgstr ""
  960. msgid "Edit: "
  961. msgstr ""
  962. msgid "ButtonBar|Mark"
  963. msgstr "ButtonBar|Marque"
  964. msgid "ButtonBar|Replac"
  965. msgstr "ButtonBar|Rempla"
  966. msgid "ButtonBar|Copy"
  967. msgstr "ButtonBar|Copier"
  968. msgid "ButtonBar|Move"
  969. msgstr "ButtonBar|Move"
  970. msgid "ButtonBar|Delete"
  971. msgstr "ButtonBar|Suppr"
  972. msgid "ButtonBar|PullDn"
  973. msgstr ""
  974. msgid "Load syntax file"
  975. msgstr ""
  976. #, c-format
  977. msgid ""
  978. "Cannot open file %s\n"
  979. "%s"
  980. msgstr ""
  981. #, c-format
  982. msgid "Error in file %s on line %d"
  983. msgstr ""
  984. msgid ""
  985. "The Commander can't change to the directory that\n"
  986. "the subshell claims you are in. Perhaps you have\n"
  987. "deleted your working directory, or given yourself\n"
  988. "extra access permissions with the \"su\" command?"
  989. msgstr ""
  990. msgid "The shell is already running a command"
  991. msgstr " Le shell est déjà en train d'exécuter une commande "
  992. #, c-format
  993. msgid "Type `exit' to return to the Midnight Commander"
  994. msgstr "Tapez « exit » pour retourner à Midnight Commander"
  995. #, c-format
  996. msgid "Cannot fetch a local copy of %s"
  997. msgstr "Impossible de récupérer une copie locale de %s "
  998. msgid "&Set"
  999. msgstr "&Appliquer"
  1000. msgid "S&kip"
  1001. msgstr "S&uivant"
  1002. msgid "Set &all"
  1003. msgstr "&Global"
  1004. msgid "owner"
  1005. msgstr "propriétaire"
  1006. msgid "group"
  1007. msgstr "groupe"
  1008. msgid "other"
  1009. msgstr "autres"
  1010. msgid "On"
  1011. msgstr "Activé"
  1012. msgid "Flag"
  1013. msgstr "Drapeau"
  1014. msgid "Mode"
  1015. msgstr "Mode"
  1016. #, c-format
  1017. msgid "%6d of %d"
  1018. msgstr "%6d sur %d"
  1019. msgid "Chown advanced command"
  1020. msgstr " Commande chown avancée"
  1021. #, c-format
  1022. msgid ""
  1023. "Cannot chmod \"%s\"\n"
  1024. "%s"
  1025. msgstr ""
  1026. " Ne peut changer les droits d'accès de \"%s\" \n"
  1027. "%s "
  1028. #, c-format
  1029. msgid ""
  1030. "Cannot chown \"%s\"\n"
  1031. "%s"
  1032. msgstr ""
  1033. " Impossible de modifier l'appartenance de \"%s\" \n"
  1034. "%s "
  1035. msgid "&Stop"
  1036. msgstr "&Stopper"
  1037. msgid "&Resume"
  1038. msgstr "&Reprendre"
  1039. msgid "&Kill"
  1040. msgstr "&Tuer"
  1041. msgid "&Full file list"
  1042. msgstr "Liste &Complète des fichiers"
  1043. msgid "&Brief file list"
  1044. msgstr "Liste &Brève des fichiers"
  1045. msgid "&Long file list"
  1046. msgstr "Liste &Longue des fichiers"
  1047. msgid "&User defined:"
  1048. msgstr "Définie par l'&Utilisateur :"
  1049. msgid "Listing mode"
  1050. msgstr "Mode de listage"
  1051. msgid "User &mini status"
  1052. msgstr ""
  1053. msgid "Other 8 bit"
  1054. msgstr "Autre 8 bits"
  1055. msgid "Display bits"
  1056. msgstr ""
  1057. msgid "Input / display codepage:"
  1058. msgstr "Entrée / affichage d'encodage :"
  1059. msgid "F&ull 8 bits input"
  1060. msgstr "Entrée 8 &bits"
  1061. msgid "&Select"
  1062. msgstr "&Sélectionner"
  1063. msgid "Running"
  1064. msgstr "En cours"
  1065. msgid "Stopped"
  1066. msgstr "Stoppé"
  1067. msgid "&Reverse"
  1068. msgstr "Inve&Rsé"
  1069. msgid "Case sensi&tive"
  1070. msgstr "Respec&t de la casse "
  1071. msgid "Executable &first"
  1072. msgstr "Exécutable en &premier"
  1073. msgid "Sort order"
  1074. msgstr "Ordre de tri"
  1075. msgid "Confirmation"
  1076. msgstr " Confirmation "
  1077. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context
  1078. #. prefix
  1079. #. 2
  1080. msgid "Confirmation|&History cleanup"
  1081. msgstr " Confirmation|Nettoyage de l'&Historique"
  1082. msgid "Confirmation|Di&rectory hotlist delete"
  1083. msgstr ""
  1084. msgid "Confirmation|E&xit"
  1085. msgstr " Confirmation|&Quitter"
  1086. msgid "Confirmation|&Execute"
  1087. msgstr " Confirmation|Exécuter"
  1088. msgid "Confirmation|O&verwrite"
  1089. msgstr " Confirmation|É&Crasement "
  1090. msgid "Confirmation|&Delete"
  1091. msgstr " Confirmation|&Supprimer"
  1092. msgid "UTF-8 output"
  1093. msgstr "Sortie UTF-8"
  1094. msgid "Full 8 bits output"
  1095. msgstr "Sortie 8 bits"
  1096. msgid "ISO 8859-1"
  1097. msgstr "ISO 8859-1"
  1098. msgid "7 bits"
  1099. msgstr "7 bits"
  1100. msgid "Directory tree"
  1101. msgstr "Arborescence des répertoires"
  1102. msgid "Use passive mode over pro&xy"
  1103. msgstr "Utiliser le mode passif à travers un pro&xy"
  1104. msgid "Use &passive mode"
  1105. msgstr "Utiliser le mode &passif"
  1106. msgid "&Use ~/.netrc"
  1107. msgstr "&Utiliser ~/.netrc"
  1108. msgid "&Always use ftp proxy"
  1109. msgstr "&Toujours utiliser le proxy FTP"
  1110. msgid "sec"
  1111. msgstr "sec"
  1112. msgid "ftpfs directory cache timeout:"
  1113. msgstr "Durée de garde du cache FTPfs:"
  1114. msgid "ftp anonymous password:"
  1115. msgstr "Mot de passe pour FTP anonyme :"
  1116. msgid "Timeout for freeing VFSs:"
  1117. msgstr "Délai pour libérer les SFVs:"
  1118. msgid "Virtual File System Setting"
  1119. msgstr " Configuration du Système de Fichier Virtuel (VFS)"
  1120. msgid "cd"
  1121. msgstr "cd"
  1122. msgid "Quick cd"
  1123. msgstr "Cd rapide"
  1124. msgid "Symbolic link filename:"
  1125. msgstr "Nom du lien symbolique :"
  1126. msgid "Existing filename (filename symlink will point to):"
  1127. msgstr "Fichier existant (vers lequel le lien va pointer) :"
  1128. msgid "Symbolic link"
  1129. msgstr "Lien symbolique"
  1130. msgid "Background Jobs"
  1131. msgstr "Processus en tâche de fond"
  1132. msgid "Domain:"
  1133. msgstr "Domaine : "
  1134. msgid "Username:"
  1135. msgstr "Nom d'utilisateur : "
  1136. #, c-format
  1137. msgid "Password for \\\\%s\\%s"
  1138. msgstr "Mot de passe pour \\\\%s\\%s"
  1139. msgid "execute/search by others"
  1140. msgstr "exéc./rech. par les autres"
  1141. msgid "write by others"
  1142. msgstr "écriture par les autres"
  1143. msgid "read by others"
  1144. msgstr "lecture par les autres"
  1145. msgid "execute/search by group"
  1146. msgstr "exécuter/rechercher par le groupe"
  1147. msgid "write by group"
  1148. msgstr "écriture par le groupe"
  1149. msgid "read by group"
  1150. msgstr "lecture par le groupe"
  1151. msgid "execute/search by owner"
  1152. msgstr "exéc./rech. par le propr."
  1153. msgid "write by owner"
  1154. msgstr "écriture par le propr."
  1155. msgid "read by owner"
  1156. msgstr "lecture par le propr."
  1157. msgid "sticky bit"
  1158. msgstr "bit collant (sticky)"
  1159. msgid "set group ID on execution"
  1160. msgstr "exécuter avec l'ID groupe"
  1161. msgid "set user ID on execution"
  1162. msgstr "exécuter avec l'ID propr."
  1163. msgid "Name:"
  1164. msgstr ""
  1165. msgid "Permissions (octal):"
  1166. msgstr ""
  1167. msgid "Owner name:"
  1168. msgstr ""
  1169. msgid "Group name:"
  1170. msgstr ""
  1171. msgid "C&lear marked"
  1172. msgstr "Supprimer les marqués"
  1173. msgid "S&et marked"
  1174. msgstr ""
  1175. msgid "&Marked all"
  1176. msgstr "Tous &Marqués"
  1177. msgid "Chmod command"
  1178. msgstr "Commande chmod"
  1179. msgid "File"
  1180. msgstr "Fichier"
  1181. msgid "Permission"
  1182. msgstr "Permission"
  1183. msgid "Set &users"
  1184. msgstr "Définir les &utilisateurs"
  1185. msgid "Set &groups"
  1186. msgstr "Définir les &groupes"
  1187. msgid "Name"
  1188. msgstr "Nom"
  1189. msgid "Owner name"
  1190. msgstr "Nom du propriétaire"
  1191. msgid "Group name"
  1192. msgstr "Nom du groupe"
  1193. msgid "Size"
  1194. msgstr "Taille"
  1195. msgid "Chown command"
  1196. msgstr " Commande chown"
  1197. msgid "<Unknown user>"
  1198. msgstr "<Utilisateur inconnu>"
  1199. msgid "<Unknown group>"
  1200. msgstr "<Groupe inconnu>"
  1201. msgid "User name"
  1202. msgstr " Nom d'utilisateur "
  1203. msgid "Enter machine name (F1 for details):"
  1204. msgstr " Saisissez le nom de la machine (F1 pour les détails) : "
  1205. msgid "Files tagged, want to cd?"
  1206. msgstr "Fichiers marqués, voulez-vous changer de répertoire?"
  1207. msgid "Cannot change directory"
  1208. msgstr " Ne peut changer de répertoire"
  1209. msgid "Filter"
  1210. msgstr " Filtre "
  1211. msgid "Set expression for filtering filenames"
  1212. msgstr " Expression pour filtrer les noms des fichiers"
  1213. msgid "&Using shell patterns"
  1214. msgstr "&Utiliser les « shell patterns »"
  1215. msgid "&Case sensitive"
  1216. msgstr "Respect de la &Casse "
  1217. msgid "&Files only"
  1218. msgstr "&Fichiers seulement"
  1219. #, c-format
  1220. msgid "Link %s to:"
  1221. msgstr " lien %s vers : "
  1222. msgid "Link"
  1223. msgstr "Lien"
  1224. #, c-format
  1225. msgid "link: %s"
  1226. msgstr " lien : %s "
  1227. #, c-format
  1228. msgid "symlink: %s"
  1229. msgstr " lien symbolique : %s "
  1230. #, c-format
  1231. msgid "Cannot chdir to \"%s\""
  1232. msgstr " Impossible d'aller dans le répertoire \"%s\""
  1233. msgid "View file"
  1234. msgstr " Voir le fichier "
  1235. msgid "Filename:"
  1236. msgstr " Nom du fichier : "
  1237. msgid "Filtered view"
  1238. msgstr "Vue &filtrée "
  1239. msgid "Filter command and arguments:"
  1240. msgstr " Filtre commande et arguments :"
  1241. msgid "Create a new Directory"
  1242. msgstr "Créer un nouveau répertoire"
  1243. msgid "Enter directory name:"
  1244. msgstr " Saisissez le nom du répertoire :"
  1245. msgid "Select"
  1246. msgstr "Sélectionner"
  1247. msgid "Unselect"
  1248. msgstr " Désélectionner "
  1249. msgid "Extension file edit"
  1250. msgstr "Éditer les extensions de fichiers"
  1251. msgid "Which extension file you want to edit?"
  1252. msgstr " Quelle extension de fichier voulez-vous éditer ? "
  1253. msgid "Highlighting groups file edit"
  1254. msgstr ""
  1255. msgid "Which highlighting file you want to edit?"
  1256. msgstr " Quel fichier de coloration syntaxique voulez-vous éditer ? "
  1257. msgid "Compare directories"
  1258. msgstr "Comparer des répertoires"
  1259. msgid "Select compare method:"
  1260. msgstr " Sélectionner la méthode de comparaison : "
  1261. msgid "&Quick"
  1262. msgstr "&Rapide"
  1263. msgid "&Size only"
  1264. msgstr "Taille &Seulement"
  1265. msgid "&Thorough"
  1266. msgstr "&Exhaustive"
  1267. msgid ""
  1268. "Both panels should be in the listing mode\n"
  1269. "to use this command"
  1270. msgstr ""
  1271. " Les deux panneaux doivent être en mode liste pour utiliser cette commande "
  1272. msgid ""
  1273. "Not an xterm or Linux console;\n"
  1274. "the panels cannot be toggled."
  1275. msgstr ""
  1276. #, c-format
  1277. msgid "Symlink `%s' points to:"
  1278. msgstr ""
  1279. msgid "Edit symlink"
  1280. msgstr " Éditer le lien symbolique "
  1281. #, c-format
  1282. msgid "edit symlink, unable to remove %s: %s"
  1283. msgstr " édition de lien symbolique, incapable d'enlever %s : %s "
  1284. #, c-format
  1285. msgid "edit symlink: %s"
  1286. msgstr " éditer le lien symbolique : %s "
  1287. #, c-format
  1288. msgid "`%s' is not a symbolic link"
  1289. msgstr "« %s » n'est pas un lien symbolique"
  1290. msgid "FTP to machine"
  1291. msgstr " FTP vers une machine "
  1292. msgid "Shell link to machine"
  1293. msgstr " Lien shell vers une machine "
  1294. msgid "SMB link to machine"
  1295. msgstr " Lien SMB vers une machine "
  1296. msgid "Undelete files on an ext2 file system"
  1297. msgstr " Récupération de fichiers effacés sur un système de fichiers ext2"
  1298. msgid ""
  1299. "Enter device (without /dev/) to undelete\n"
  1300. "files on: (F1 for details)"
  1301. msgstr ""
  1302. " Saisissez le périphérique (sans /dev/) sur\n"
  1303. " lequel la récupération doit être faite : (F1 pour les détails)"
  1304. msgid "Setup"
  1305. msgstr " Configuration "
  1306. #, c-format
  1307. msgid "Setup saved to %s"
  1308. msgstr ""
  1309. #, c-format
  1310. msgid "Unable to save setup to %s"
  1311. msgstr ""
  1312. msgid "Cannot execute commands on non-local filesystems"
  1313. msgstr " Ne peut exécuter une commande sur un système de fichiers non local"
  1314. #, c-format
  1315. msgid ""
  1316. "Cannot chdir to \"%s\"\n"
  1317. "%s"
  1318. msgstr ""
  1319. " Ne peut aller dans le répertoire « %s »\n"
  1320. "%s "
  1321. msgid "Cannot read directory contents"
  1322. msgstr " Ne peut lire le contenu du répertoire"
  1323. #, c-format
  1324. msgid ""
  1325. "Cannot create temporary command file\n"
  1326. "%s"
  1327. msgstr ""
  1328. msgid "Parameter"
  1329. msgstr "Paramètre"
  1330. #, c-format
  1331. msgid " %s%s file error"
  1332. msgstr " %s%s erreur de fichier "
  1333. #, c-format
  1334. msgid ""
  1335. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1336. "the installation failed. Please fetch a fresh copy from the Midnight "
  1337. "Commander package."
  1338. msgstr ""
  1339. #, c-format
  1340. msgid "%s%s%s file error"
  1341. msgstr ""
  1342. #, c-format
  1343. msgid ""
  1344. "The format of the %s%s%s file has changed with version 3.0. You may either "
  1345. "want to copy it from %smc.ext or use that file as an example of how to write"
  1346. " it."
  1347. msgstr ""
  1348. msgid "DialogTitle|Copy"
  1349. msgstr "TitreDialog|Copie"
  1350. msgid "DialogTitle|Move"
  1351. msgstr "TitreDialog|Déplacer"
  1352. msgid "DialogTitle|Delete"
  1353. msgstr "TitreDialog|Supprimer"
  1354. msgid "FileOperation|Copy"
  1355. msgstr "FileOperation|Copie"
  1356. msgid "FileOperation|Move"
  1357. msgstr "FileOperation|Déplace"
  1358. msgid "FileOperation|Delete"
  1359. msgstr "FileOperation|Supprime"
  1360. #, no-c-format
  1361. msgid "%o %f \"%s\"%m"
  1362. msgstr "%o %f \"%s\"%m"
  1363. #, no-c-format
  1364. msgid "%o %d %f%m"
  1365. msgstr "%o %d %f%m"
  1366. msgid "file"
  1367. msgstr "fichier"
  1368. msgid "files"
  1369. msgstr "fichiers"
  1370. msgid "directory"
  1371. msgstr "répertoire"
  1372. msgid "directories"
  1373. msgstr "répertoires"
  1374. msgid "files/directories"
  1375. msgstr "fichiers/répertoires"
  1376. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  1377. msgid " with source mask:"
  1378. msgstr " avec masque source :"
  1379. msgid "to:"
  1380. msgstr "vers :"
  1381. #, c-format
  1382. msgid "%s?"
  1383. msgstr "%s?"
  1384. msgid "Cannot make the hardlink"
  1385. msgstr ""
  1386. #, c-format
  1387. msgid ""
  1388. "Cannot read source link \"%s\"\n"
  1389. "%s"
  1390. msgstr ""
  1391. msgid ""
  1392. "Cannot make stable symlinks acrossnon-local filesystems:\n"
  1393. "\n"
  1394. "Option Stable Symlinks will be disabled"
  1395. msgstr ""
  1396. #, c-format
  1397. msgid ""
  1398. "Cannot create target symlink \"%s\"\n"
  1399. "%s"
  1400. msgstr ""
  1401. msgid "&Abort"
  1402. msgstr "&Interrompre"
  1403. msgid "Ski&p all"
  1404. msgstr ""
  1405. msgid "&Retry"
  1406. msgstr "&Ré-essayer"
  1407. msgid ""
  1408. "\n"
  1409. "Directory not empty.\n"
  1410. "Delete it recursively?"
  1411. msgstr ""
  1412. msgid ""
  1413. "\n"
  1414. "Background process: Directory not empty.\n"
  1415. "Delete it recursively?"
  1416. msgstr ""
  1417. msgid "Delete:"
  1418. msgstr ""
  1419. msgid "Non&e"
  1420. msgstr "&Aucun"
  1421. #, c-format
  1422. msgid ""
  1423. "Cannot stat file \"%s\"\n"
  1424. "%s"
  1425. msgstr ""
  1426. #, c-format
  1427. msgid ""
  1428. "\"%s\"\n"
  1429. "and\n"
  1430. "\"%s\"\n"
  1431. "are the same file"
  1432. msgstr ""
  1433. #, c-format
  1434. msgid "Cannot overwrite directory \"%s\""
  1435. msgstr ""
  1436. #, c-format
  1437. msgid ""
  1438. "Cannot move file \"%s\" to \"%s\"\n"
  1439. "%s"
  1440. msgstr ""
  1441. #, c-format
  1442. msgid ""
  1443. "Cannot remove file \"%s\"\n"
  1444. "%s"
  1445. msgstr ""
  1446. #, c-format
  1447. msgid ""
  1448. "Cannot delete file \"%s\"\n"
  1449. "%s"
  1450. msgstr ""
  1451. #, c-format
  1452. msgid ""
  1453. "Cannot remove directory \"%s\"\n"
  1454. "%s"
  1455. msgstr ""
  1456. #, c-format
  1457. msgid ""
  1458. "Cannot overwrite directory \"%s\"\n"
  1459. "%s"
  1460. msgstr ""
  1461. #, c-format
  1462. msgid ""
  1463. "Cannot stat source file \"%s\"\n"
  1464. "%s"
  1465. msgstr ""
  1466. #, c-format
  1467. msgid ""
  1468. "Cannot create special file \"%s\"\n"
  1469. "%s"
  1470. msgstr ""
  1471. #, c-format
  1472. msgid ""
  1473. "Cannot chown target file \"%s\"\n"
  1474. "%s"
  1475. msgstr ""
  1476. #, c-format
  1477. msgid ""
  1478. "Cannot chmod target file \"%s\"\n"
  1479. "%s"
  1480. msgstr ""
  1481. #, c-format
  1482. msgid ""
  1483. "Cannot open source file \"%s\"\n"
  1484. "%s"
  1485. msgstr ""
  1486. msgid "Reget failed, about to overwrite file"
  1487. msgstr ""
  1488. #, c-format
  1489. msgid ""
  1490. "Cannot fstat source file \"%s\"\n"
  1491. "%s"
  1492. msgstr ""
  1493. #, c-format
  1494. msgid ""
  1495. "Cannot create target file \"%s\"\n"
  1496. "%s"
  1497. msgstr ""
  1498. #, c-format
  1499. msgid ""
  1500. "Cannot fstat target file \"%s\"\n"
  1501. "%s"
  1502. msgstr ""
  1503. #, c-format
  1504. msgid ""
  1505. "Cannot read source file\"%s\"\n"
  1506. "%s"
  1507. msgstr ""
  1508. #, c-format
  1509. msgid ""
  1510. "Cannot write target file \"%s\"\n"
  1511. "%s"
  1512. msgstr ""
  1513. msgid "(stalled)"
  1514. msgstr "(calé)"
  1515. #, c-format
  1516. msgid ""
  1517. "Cannot close source file \"%s\"\n"
  1518. "%s"
  1519. msgstr ""
  1520. #, c-format
  1521. msgid ""
  1522. "Cannot close target file \"%s\"\n"
  1523. "%s"
  1524. msgstr ""
  1525. msgid "Incomplete file was retrieved. Keep it?"
  1526. msgstr "Le fichier récupéré est incomplet. Le conserver quand même ?"
  1527. msgid "&Keep"
  1528. msgstr "C&onserver"
  1529. #, c-format
  1530. msgid ""
  1531. "Cannot stat source directory \"%s\"\n"
  1532. "%s"
  1533. msgstr ""
  1534. #, c-format
  1535. msgid ""
  1536. "Source \"%s\" is not a directory\n"
  1537. "%s"
  1538. msgstr ""
  1539. #, c-format
  1540. msgid ""
  1541. "Cannot copy cyclic symbolic link\n"
  1542. "\"%s\""
  1543. msgstr ""
  1544. #, c-format
  1545. msgid ""
  1546. "Destination \"%s\" must be a directory\n"
  1547. "%s"
  1548. msgstr ""
  1549. #, c-format
  1550. msgid ""
  1551. "Cannot create target directory \"%s\"\n"
  1552. "%s"
  1553. msgstr ""
  1554. #, c-format
  1555. msgid ""
  1556. "Cannot chown target directory \"%s\"\n"
  1557. "%s"
  1558. msgstr ""
  1559. #, c-format
  1560. msgid ""
  1561. "\"%s\"\n"
  1562. "and\n"
  1563. "\"%s\"\n"
  1564. "are the same directory"
  1565. msgstr ""
  1566. #, c-format
  1567. msgid ""
  1568. "Cannot overwrite file \"%s\"\n"
  1569. "%s"
  1570. msgstr ""
  1571. #, c-format
  1572. msgid ""
  1573. "Cannot move directory \"%s\" to \"%s\"\n"
  1574. "%s"
  1575. msgstr ""
  1576. msgid "Directory scanning"
  1577. msgstr "Analyse du répertoire"
  1578. msgid "Cannot operate on \"..\"!"
  1579. msgstr ""
  1580. msgid "Sorry, I could not put the job in background"
  1581. msgstr ""
  1582. #, c-format
  1583. msgid "%d:%02d.%02d"
  1584. msgstr ""
  1585. #, c-format
  1586. msgid "ETA %s"
  1587. msgstr "ETA %s"
  1588. #, c-format
  1589. msgid "%.2f MB/s"
  1590. msgstr "%.2f Mo/s"
  1591. #, c-format
  1592. msgid "%.2f KB/s"
  1593. msgstr "%.2f Ko/s"
  1594. #, c-format
  1595. msgid "%ld B/s"
  1596. msgstr "%ld o/s"
  1597. msgid "Target file already exists!"
  1598. msgstr "Le fichier cible existe déjà !"
  1599. #, c-format
  1600. msgid "Source date: %s, size %llu"
  1601. msgstr "Date de la source : %s, taille %llu"
  1602. #, c-format
  1603. msgid "Target date: %s, size %llu"
  1604. msgstr "Date de la cible : %s, taille %llu"
  1605. msgid "If &size differs"
  1606. msgstr "&Si la taille diffère"
  1607. msgid "&Update"
  1608. msgstr "M-à-jo&Ur"
  1609. msgid "Overwrite all targets?"
  1610. msgstr "Écrase toutes cibles ?"
  1611. msgid "&Reget"
  1612. msgstr "&Réobtenir"
  1613. msgid "A&ppend"
  1614. msgstr "a&Joute"
  1615. msgid "Overwrite this target?"
  1616. msgstr "Écraser cette cible ?"
  1617. msgid "File exists"
  1618. msgstr ""
  1619. msgid "Background process: File exists"
  1620. msgstr ""
  1621. #, c-format
  1622. msgid "Files processed: %zu of %zu"
  1623. msgstr ""
  1624. #, c-format
  1625. msgid "Time: %s %s (%s)"
  1626. msgstr "Temps : %s %s (%s)"
  1627. #, c-format
  1628. msgid "Total: %s of %s"
  1629. msgstr ""
  1630. msgid "Source"
  1631. msgstr "Source"
  1632. msgid "Target"
  1633. msgstr "Cible"
  1634. msgid "Deleting"
  1635. msgstr "Effacement"
  1636. msgid "&Background"
  1637. msgstr "&Fond"
  1638. msgid "&Stable Symlinks"
  1639. msgstr "Lien symboliques &stables"
  1640. msgid "Di&ve into subdir if exists"
  1641. msgstr ""
  1642. msgid "Preserve &attributes"
  1643. msgstr ""
  1644. msgid "Follow &links"
  1645. msgstr ""
  1646. #, c-format
  1647. msgid "Invalid source pattern `%s'"
  1648. msgstr "Motif source invalide « %s »"
  1649. msgid "&Suspend"
  1650. msgstr "&Suspendre"
  1651. msgid "Con&tinue"
  1652. msgstr "Con&tinuer"
  1653. msgid "&Chdir"
  1654. msgstr "&Changer de répertoire"
  1655. msgid "&Again"
  1656. msgstr "e&Ncore"
  1657. msgid "Pane&lize"
  1658. msgstr "Mettre en &panneau"
  1659. msgid "&View - F3"
  1660. msgstr "&Voir - F3"
  1661. msgid "&Edit - F4"
  1662. msgstr "É&diter - F4"
  1663. #, c-format
  1664. msgid "Found: %ld"
  1665. msgstr "Trouvé : %ld"
  1666. msgid "Malformed regular expression"
  1667. msgstr ""
  1668. msgid "Cas&e sensitive"
  1669. msgstr "Sensible la ca&sse "
  1670. msgid "&Find recursively"
  1671. msgstr "Recherche récursive"
  1672. msgid "S&kip hidden"
  1673. msgstr ""
  1674. msgid "&All charsets"
  1675. msgstr "&Tout les encodages"
  1676. msgid "Sea&rch for content"
  1677. msgstr ""
  1678. msgid "Case sens&itive"
  1679. msgstr "Respec&t de la casse"
  1680. msgid "Re&gular expression"
  1681. msgstr "Expression ré&gulière"
  1682. msgid "Fir&st hit"
  1683. msgstr "Première occurence"
  1684. msgid "A&ll charsets"
  1685. msgstr ""
  1686. msgid "&Tree"
  1687. msgstr "&Arborescence"
  1688. msgid "Find File"
  1689. msgstr "Recherche de fichier"
  1690. msgid "Content:"
  1691. msgstr "Contenu :"
  1692. msgid "File name:"
  1693. msgstr "Nom du fichier :"
  1694. msgid "Ena&ble ignore directories:"
  1695. msgstr ""
  1696. msgid "Start at:"
  1697. msgstr "Commencer à :"
  1698. #, c-format
  1699. msgid "Grepping in %s"
  1700. msgstr "Recherche dans %s"
  1701. msgid "Finished"
  1702. msgstr "Terminé"
  1703. #, c-format
  1704. msgid "Finished (ignored %zd directory)"
  1705. msgid_plural "Finished (ignored %zd directories)"
  1706. msgstr[0] ""
  1707. msgstr[1] ""
  1708. #, c-format
  1709. msgid "Searching %s"
  1710. msgstr "Recherche %s"
  1711. msgid "Searching"
  1712. msgstr "Recherche en cours"
  1713. msgid "&Move"
  1714. msgstr "Déplacer"
  1715. msgid "&Remove"
  1716. msgstr "&Supprimer"
  1717. msgid "&Append"
  1718. msgstr "&Ajouter"
  1719. msgid "&Insert"
  1720. msgstr "&Insérer"
  1721. msgid "New &entry"
  1722. msgstr ""
  1723. msgid "New &group"
  1724. msgstr ""
  1725. msgid "&Up"
  1726. msgstr "&Haut"
  1727. msgid "&Add current"
  1728. msgstr "A&jouter courant"
  1729. msgid "&Refresh"
  1730. msgstr "&Rafraichir"
  1731. msgid "Fr&ee VFSs now"
  1732. msgstr "Désalou&er VFSs"
  1733. msgid "Change &to"
  1734. msgstr ""
  1735. msgid "Subgroup - press ENTER to see list"
  1736. msgstr "Sous-groupe - tapez Entrée pour voir la liste"
  1737. msgid "Active VFS directories"
  1738. msgstr "Répertoires VFS actifs"
  1739. msgid "Directory hotlist"
  1740. msgstr "Répertoire hotlist"
  1741. msgid "Directory path"
  1742. msgstr "Chemin du répertoire"
  1743. msgid "Directory label"
  1744. msgstr "Label du répertoire"
  1745. #, c-format
  1746. msgid "Moving %s"
  1747. msgstr "Déplacement de %s"
  1748. msgid "New hotlist entry"
  1749. msgstr "Nouvelle entrée hotlist"
  1750. msgid "Directory label:"
  1751. msgstr ""
  1752. msgid "Directory path:"
  1753. msgstr ""
  1754. msgid "New hotlist group"
  1755. msgstr ""
  1756. msgid "Name of new group:"
  1757. msgstr ""
  1758. msgid "Remove:"
  1759. msgstr ""
  1760. msgid "Are you sure you want to remove this entry?"
  1761. msgstr ""
  1762. msgid ""
  1763. "Group not empty.\n"
  1764. "Remove it?"
  1765. msgstr ""
  1766. msgid "Top level group"
  1767. msgstr ""
  1768. msgid "Hotlist Load"
  1769. msgstr ""
  1770. #, c-format
  1771. msgid ""
  1772. "MC was unable to write ~/%s file,\n"
  1773. "your old hotlist entries were not deleted"
  1774. msgstr ""
  1775. #, c-format
  1776. msgid "Label for \"%s\":"
  1777. msgstr "Étiquette pour « %s » :"
  1778. msgid "Add to hotlist"
  1779. msgstr ""
  1780. msgid "Information"
  1781. msgstr ""
  1782. #, c-format
  1783. msgid "Midnight Commander %s"
  1784. msgstr "Midnight Commander %s"
  1785. #, c-format
  1786. msgid "File: %s"
  1787. msgstr "Fichier : %s"
  1788. #, c-format
  1789. msgid "Free nodes: %ld (%ld%%) of %ld"
  1790. msgstr ""
  1791. msgid "No node information"
  1792. msgstr "Pas d'information sur les I-noeuds"
  1793. #, c-format
  1794. msgid "Free space: %s (%d%%) of %s"
  1795. msgstr "Espace libre : %s (%d%%) sur %s"
  1796. msgid "No space information"
  1797. msgstr "Pas d'information sur l'espace"
  1798. #, c-format
  1799. msgid "Type: %s"
  1800. msgstr ""
  1801. msgid "non-local vfs"
  1802. msgstr "VFS non local"
  1803. #, c-format
  1804. msgid "Device: %s"
  1805. msgstr "Périphérique : %s"
  1806. #, c-format
  1807. msgid "Filesystem: %s"
  1808. msgstr "Système de fichiers : %s"
  1809. #, c-format
  1810. msgid "Accessed: %s"
  1811. msgstr "Accédé : %s"
  1812. #, c-format
  1813. msgid "Modified: %s"
  1814. msgstr "Modifié : %s"
  1815. #. TRANSLATORS: Time of last status change as in stat(2) man.
  1816. #, c-format
  1817. msgid "Changed: %s"
  1818. msgstr ""
  1819. #, c-format
  1820. msgid "Dev. type: major %lu, minor %lu"
  1821. msgstr "Type périph. : majeur %lu, mineur %lu"
  1822. #, c-format
  1823. msgid "Size: %s"
  1824. msgstr "Taille : %s"
  1825. #, c-format
  1826. msgid " (%ld block)"
  1827. msgid_plural " (%ld blocks)"
  1828. msgstr[0] " (%ld bloc)"
  1829. msgstr[1] " (%ld blocs)"
  1830. #, c-format
  1831. msgid "Owner: %s/%s"
  1832. msgstr "Propriétaire : %s/%s"
  1833. #, c-format
  1834. msgid "Links: %d"
  1835. msgstr "Liens : %d"
  1836. #, c-format
  1837. msgid "Mode: %s (%04o)"
  1838. msgstr "Mode : %s (%04o)"
  1839. #, c-format
  1840. msgid "Location: %Xh:%Xh"
  1841. msgstr "Emplacement : %Xh:%Xh"
  1842. msgid "Show free sp&ace"
  1843. msgstr ""
  1844. msgid "&XTerm window title"
  1845. msgstr ""
  1846. msgid "H&intbar visible"
  1847. msgstr ""
  1848. msgid "&Keybar visible"
  1849. msgstr "Barre de &touches visibles"
  1850. msgid "Command &prompt"
  1851. msgstr ""
  1852. msgid "Menu&bar visible"
  1853. msgstr ""
  1854. msgid "&Equal split"
  1855. msgstr "Séparer en d&eux parties égales"
  1856. msgid "Panel split"
  1857. msgstr ""
  1858. msgid "Console output"
  1859. msgstr ""
  1860. msgid "Other options"
  1861. msgstr ""
  1862. msgid "&Vertical"
  1863. msgstr "&Vertical"
  1864. msgid "&Horizontal"
  1865. msgstr "&Horizontal"
  1866. msgid "Output lines:"
  1867. msgstr ""
  1868. msgid "Layout"
  1869. msgstr "Présentation"
  1870. msgid "File listin&g"
  1871. msgstr ""
  1872. msgid "&Quick view"
  1873. msgstr "Vue &rapide "
  1874. msgid "&Info"
  1875. msgstr "&Info"
  1876. msgid "&Listing mode..."
  1877. msgstr "&Mode de listage..."
  1878. msgid "&Sort order..."
  1879. msgstr "&Ordre de tri..."
  1880. msgid "&Filter..."
  1881. msgstr "&Filtre..."
  1882. msgid "&Encoding..."
  1883. msgstr "&Encodage..."
  1884. msgid "FT&P link..."
  1885. msgstr "Lien FT&P..."
  1886. msgid "S&hell link..."
  1887. msgstr "Lien S&hell..."
  1888. msgid "SM&B link..."
  1889. msgstr "Lien SM&B..."
  1890. msgid "&Rescan"
  1891. msgstr "&Rafraîchir"
  1892. msgid "&View"
  1893. msgstr "&Voir"
  1894. msgid "Vie&w file..."
  1895. msgstr " V&oir le fichier "
  1896. msgid "&Filtered view"
  1897. msgstr "Vue &filtrée "
  1898. msgid "&Copy"
  1899. msgstr "&Copier"
  1900. msgid "C&hmod"
  1901. msgstr "C&hmod"
  1902. msgid "&Link"
  1903. msgstr "&Lien"
  1904. msgid "&Symlink"
  1905. msgstr ""
  1906. msgid "Relative symlin&k"
  1907. msgstr ""
  1908. msgid "Edit s&ymlink"
  1909. msgstr " Éditer le lien s&ymbolique "
  1910. msgid "Ch&own"
  1911. msgstr "Ch&own"
  1912. msgid "&Advanced chown"
  1913. msgstr "chown &Avancé"
  1914. msgid "&Rename/Move"
  1915. msgstr "&Renommer/Déplacer"
  1916. msgid "&Mkdir"
  1917. msgstr "&Mkdir"
  1918. msgid "&Quick cd"
  1919. msgstr "Cd &rapide"
  1920. msgid "Select &group"
  1921. msgstr "Sélectionner les &groupes"
  1922. msgid "U&nselect group"
  1923. msgstr "Désélectio&nner les groups "
  1924. msgid "&Invert selection"
  1925. msgstr ""
  1926. msgid "E&xit"
  1927. msgstr "&Quitter"
  1928. msgid "&User menu"
  1929. msgstr "Menu &utilisateur"
  1930. msgid "&Directory tree"
  1931. msgstr "&Arborescence des répertoires"
  1932. msgid "&Find file"
  1933. msgstr "Recherche de &fichier"
  1934. msgid "S&wap panels"
  1935. msgstr "Échang&er les panneaux"
  1936. msgid "Switch &panels on/off"
  1937. msgstr "Inverser &Panneaux on/off"
  1938. msgid "&Compare directories"
  1939. msgstr "&Comparer des répertoires"
  1940. msgid "C&ompare files"
  1941. msgstr ""
  1942. msgid "E&xternal panelize"
  1943. msgstr ""
  1944. msgid "Show directory s&izes"
  1945. msgstr "Aff&Icher la taille des rép."
  1946. msgid "Command &history"
  1947. msgstr "&Historique des commandes"
  1948. msgid "Di&rectory hotlist"
  1949. msgstr "Répe&rtoire hotlist"
  1950. msgid "&Active VFS list"
  1951. msgstr "Liste des VFS &actifs"
  1952. msgid "&Background jobs"
  1953. msgstr "&Processus en tâche de fond"
  1954. msgid "Screen lis&t"
  1955. msgstr ""
  1956. msgid "&Undelete files (ext2fs only)"
  1957. msgstr "Réc&up. de fichiers (ext2fs seul)"
  1958. msgid "&Listing format edit"
  1959. msgstr "Édition du format de &liste"
  1960. msgid "Edit &extension file"
  1961. msgstr "Édition des &extensions de fichier"
  1962. msgid "Edit &menu file"
  1963. msgstr "Édition du fichier de &Menu"
  1964. msgid "Edit hi&ghlighting group file"
  1965. msgstr ""
  1966. msgid "&Configuration..."
  1967. msgstr "&Configuration..."
  1968. msgid "&Layout..."
  1969. msgstr "&Présentation..."
  1970. msgid "&Panel options..."
  1971. msgstr ""
  1972. msgid "C&onfirmation..."
  1973. msgstr "C&onfirmation..."
  1974. msgid "&Display bits..."
  1975. msgstr "&Bits d'affichage..."
  1976. msgid "&Virtual FS..."
  1977. msgstr "Système de Fichiers &Virtuel (VFS)..."
  1978. msgid "Panels:"
  1979. msgstr ""
  1980. msgid "The TERM environment variable is unset!\n"
  1981. msgstr "La variable d'environnement TERM n'est pas définie !\n"
  1982. #, c-format
  1983. msgid "You have %zd opened screen. Quit anyway?"
  1984. msgid_plural "You have %zd opened screens. Quit anyway?"
  1985. msgstr[0] ""
  1986. msgstr[1] ""
  1987. msgid "The Midnight Commander"
  1988. msgstr ""
  1989. msgid "Do you really want to quit the Midnight Commander?"
  1990. msgstr ""
  1991. msgid "&Above"
  1992. msgstr "&Au-dessus"
  1993. msgid "&Left"
  1994. msgstr "&Gauche"
  1995. msgid "&Below"
  1996. msgstr "&En-dessous"
  1997. msgid "&Right"
  1998. msgstr "&Droite"
  1999. msgid "ButtonBar|Menu"
  2000. msgstr "ButtonBar|Menu"
  2001. msgid "ButtonBar|View"
  2002. msgstr "ButtonBar|Vue"
  2003. msgid "ButtonBar|RenMov"
  2004. msgstr ""
  2005. msgid "ButtonBar|Mkdir"
  2006. msgstr "ButtonBar|CréRep"
  2007. msgid "&Never"
  2008. msgstr "&Jamais"
  2009. msgid "On dum&b terminals"
  2010. msgstr ""
  2011. msgid "Alwa&ys"
  2012. msgstr "&Toujours"
  2013. msgid "A&uto save setup"
  2014. msgstr ""
  2015. msgid "Sa&fe delete"
  2016. msgstr ""
  2017. msgid "Cd follows lin&ks"
  2018. msgstr ""
  2019. msgid "Rotating d&ash"
  2020. msgstr ""
  2021. msgid "Co&mplete: show all"
  2022. msgstr ""
  2023. msgid "Shell &patterns"
  2024. msgstr ""
  2025. msgid "&Drop down menus"
  2026. msgstr "&Dérouler les menus"
  2027. msgid "Auto m&enus"
  2028. msgstr ""
  2029. msgid "Use internal vie&w"
  2030. msgstr ""
  2031. msgid "Use internal edi&t"
  2032. msgstr ""
  2033. msgid "Pause after run"
  2034. msgstr ""
  2035. msgid "Timeout:"
  2036. msgstr ""
  2037. msgid "S&ingle press"
  2038. msgstr ""
  2039. msgid "Esc key mode"
  2040. msgstr ""
  2041. msgid "Mkdi&r autoname"
  2042. msgstr ""
  2043. msgid "Classic pro&gressbar"
  2044. msgstr ""
  2045. msgid "Compute tota&ls"
  2046. msgstr ""
  2047. msgid "&Verbose operation"
  2048. msgstr "&Opérations bavardes"
  2049. msgid "File operation options"
  2050. msgstr ""
  2051. msgid "Configure options"
  2052. msgstr "Configurer les options"
  2053. msgid "Case &insensitive"
  2054. msgstr ""
  2055. msgid "Case s&ensitive"
  2056. msgstr ""
  2057. msgid "Use panel sort mo&de"
  2058. msgstr ""
  2059. msgid "Quick search"
  2060. msgstr ""
  2061. msgid "&Permissions"
  2062. msgstr ""
  2063. msgid "File &types"
  2064. msgstr ""
  2065. msgid "File highlight"
  2066. msgstr ""
  2067. msgid "&Mouse page scrolling"
  2068. msgstr ""
  2069. msgid "Pa&ge scrolling"
  2070. msgstr ""
  2071. msgid "L&ynx-like motion"
  2072. msgstr "Mouvement à la L&ynx"
  2073. msgid "Navigation"
  2074. msgstr ""
  2075. msgid "A&uto save panels setup"
  2076. msgstr ""
  2077. msgid "Simple s&wap"
  2078. msgstr ""
  2079. msgid "Re&verse files only"
  2080. msgstr ""
  2081. msgid "Ma&rk moves down"
  2082. msgstr ""
  2083. msgid "&Fast dir reload"
  2084. msgstr "&Rechargement rapide des répertoires"
  2085. msgid "Show &hidden files"
  2086. msgstr ""
  2087. msgid "Show &backup files"
  2088. msgstr ""
  2089. msgid "Mi&x all files"
  2090. msgstr ""
  2091. msgid "Use SI si&ze units"
  2092. msgstr "Utiliser les &unités de taille SI"
  2093. msgid "Show mi&ni-status"
  2094. msgstr ""
  2095. msgid "Panel options"
  2096. msgstr ""
  2097. msgid ""
  2098. "Using the fast reload option may not reflect the exact\n"
  2099. "directory contents. In this case you'll need to do a\n"
  2100. "manual reload of the directory. See the man page for\n"
  2101. "the details."
  2102. msgstr ""
  2103. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2104. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2105. msgid "sort|u"
  2106. msgstr "sort|m"
  2107. msgid "&Unsorted"
  2108. msgstr "&Non Trié"
  2109. #. TRANSLATORS: one single character to represent 'name' sort mode
  2110. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2111. msgid "sort|n"
  2112. msgstr "sort|n"
  2113. msgid "&Name"
  2114. msgstr "&Nom"
  2115. #. TRANSLATORS: one single character to represent 'version' sort mode
  2116. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2117. msgid "sort|v"
  2118. msgstr "sort|v"
  2119. msgid "&Version"
  2120. msgstr "&Version"
  2121. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2122. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2123. msgid "sort|e"
  2124. msgstr "sort|e"
  2125. msgid "&Extension"
  2126. msgstr "&Extension"
  2127. #. TRANSLATORS: one single character to represent 'size' sort mode
  2128. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2129. msgid "sort|s"
  2130. msgstr "sort|t"
  2131. msgid "&Size"
  2132. msgstr "&Taille"
  2133. msgid "Block Size"
  2134. msgstr " Taille de block"
  2135. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2136. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2137. msgid "sort|m"
  2138. msgstr "sort|m"
  2139. msgid "&Modify time"
  2140. msgstr "Date de &Modification"
  2141. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2142. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2143. msgid "sort|a"
  2144. msgstr "sort|a"
  2145. msgid "&Access time"
  2146. msgstr "Date d'&Accès"
  2147. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2148. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2149. msgid "sort|h"
  2150. msgstr "sort|c"
  2151. msgid "C&hange time"
  2152. msgstr ""
  2153. msgid "Perm"
  2154. msgstr "Perm"
  2155. msgid "Nl"
  2156. msgstr "Nl"
  2157. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2158. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2159. msgid "sort|i"
  2160. msgstr "sort|i"
  2161. msgid "&Inode"
  2162. msgstr "&I-noeud"
  2163. msgid "UID"
  2164. msgstr "UID"
  2165. msgid "GID"
  2166. msgstr "GID"
  2167. msgid "Owner"
  2168. msgstr "Propriétaire"
  2169. msgid "Group"
  2170. msgstr "Groupe"
  2171. msgid "[dev]"
  2172. msgstr "[dev]"
  2173. msgid "UP--DIR"
  2174. msgstr "RÉP-SUP"
  2175. msgid "SYMLINK"
  2176. msgstr "SYMLINK"
  2177. msgid "SUB-DIR"
  2178. msgstr "SOUS-RÉP"
  2179. msgid "<readlink failed>"
  2180. msgstr "<échec de readlink>"
  2181. #, c-format
  2182. msgid "%s byte"
  2183. msgid_plural "%s bytes"
  2184. msgstr[0] "%s octet"
  2185. msgstr[1] "%s octets"
  2186. #, c-format
  2187. msgid "%s in %d file"
  2188. msgid_plural "%s in %d files"
  2189. msgstr[0] " %s octets dans %d fichier"
  2190. msgstr[1] " %s octets dans %d fichiers"
  2191. msgid "Unknown tag on display format:"
  2192. msgstr ""
  2193. msgid "Do you really want to execute?"
  2194. msgstr ""
  2195. msgid "User supplied format looks invalid, reverting to default."
  2196. msgstr ""
  2197. "Le format fourni par l'utilisateur semble invalide, retourner aux valeurs "
  2198. "par défaut."
  2199. msgid "&Add new"
  2200. msgstr "&Ajouter un nouveau"
  2201. msgid "External panelize"
  2202. msgstr "Pannneau externe"
  2203. msgid "Command"
  2204. msgstr "Commande"
  2205. msgid "Other command"
  2206. msgstr "Autre commande"
  2207. msgid "Add to external panelize"
  2208. msgstr ""
  2209. msgid "Enter command label:"
  2210. msgstr ""
  2211. msgid "Cannot invoke command."
  2212. msgstr "Ne peut invoquer la commande."
  2213. msgid "Pipe close failed"
  2214. msgstr "Ne peut fermer un tube"
  2215. msgid "Cannot run external panelize in a non-local directory"
  2216. msgstr ""
  2217. msgid "Find rejects after patching"
  2218. msgstr "Trouver les déchets de patches"
  2219. msgid "Find *.orig after patching"
  2220. msgstr "Rechercher les *.orig après un patch"
  2221. msgid "Find SUID and SGID programs"
  2222. msgstr "Rechercher les programmes SUID et SGID"
  2223. #, c-format
  2224. msgid ""
  2225. "Cannot open the %s file for writing:\n"
  2226. "%s\n"
  2227. msgstr ""
  2228. "Ne peut ouvrir le fichier %s en écriture :\n"
  2229. "%s\n"
  2230. #, c-format
  2231. msgid "Copy \"%s\" directory to:"
  2232. msgstr "Copier le répertoire « %s » dans :"
  2233. #, c-format
  2234. msgid "Move \"%s\" directory to:"
  2235. msgstr "Déplacer le répertoire « %s » dans :"
  2236. #, c-format
  2237. msgid ""
  2238. "Cannot stat the destination\n"
  2239. "%s"
  2240. msgstr ""
  2241. #, c-format
  2242. msgid "Delete %s?"
  2243. msgstr ""
  2244. msgid "ButtonBar|Static"
  2245. msgstr "ButtonBar|Statiq"
  2246. msgid "ButtonBar|Dynamc"
  2247. msgstr "ButtonBar|Dynamq"
  2248. msgid "ButtonBar|Rescan"
  2249. msgstr "ButtonBar|Raffra"
  2250. msgid "ButtonBar|Forget"
  2251. msgstr "ButtonBar|Oublie"
  2252. msgid "ButtonBar|Rmdir"
  2253. msgstr "ButtonBar|SupRep"
  2254. #, c-format
  2255. msgid ""
  2256. "Cannot write to the %s file:\n"
  2257. "%s\n"
  2258. msgstr ""
  2259. "Ne peut écrire dans le fichier %s :\n"
  2260. "%s\n"
  2261. msgid "Debug"
  2262. msgstr ""
  2263. msgid "ERROR:"
  2264. msgstr ""
  2265. msgid "True:"
  2266. msgstr ""
  2267. msgid "False:"
  2268. msgstr ""
  2269. msgid "Error calling program"
  2270. msgstr "Erreur au lancement du programme"
  2271. msgid "Warning -- ignoring file"
  2272. msgstr ""
  2273. #, c-format
  2274. msgid ""
  2275. "File %s is not owned by root or you or is world writable.\n"
  2276. "Using it may compromise your security"
  2277. msgstr ""
  2278. "Le fichier %s n'appartient ni à vous ni au root ou tout le monde peux y écrire.\n"
  2279. "Son utilisation peut compromettre la sécurité du système"
  2280. msgid "Format error on file Extensions File"
  2281. msgstr ""
  2282. #, c-format
  2283. msgid "The %%var macro has no default"
  2284. msgstr ""
  2285. #, c-format
  2286. msgid "The %%var macro has no variable"
  2287. msgstr ""
  2288. #, c-format
  2289. msgid ""
  2290. "Cannot open file%s\n"
  2291. "%s"
  2292. msgstr ""
  2293. #, c-format
  2294. msgid "No suitable entries found in %s"
  2295. msgstr ""
  2296. msgid "User menu"
  2297. msgstr ""
  2298. msgid "Help file format error\n"
  2299. msgstr ""
  2300. msgid "Internal bug: Double start of link area"
  2301. msgstr ""
  2302. #, c-format
  2303. msgid "Cannot find node %s in help file"
  2304. msgstr ""
  2305. msgid "Help"
  2306. msgstr "Aide"
  2307. msgid "ButtonBar|Index"
  2308. msgstr "ButtonBar|Index"
  2309. msgid "ButtonBar|Prev"
  2310. msgstr "ButtonBar|Préc"
  2311. msgid "Learn keys"
  2312. msgstr "Apprentissage des touches"
  2313. msgid "Teach me a key"
  2314. msgstr ""
  2315. #, c-format
  2316. msgid ""
  2317. "Please press the %s\n"
  2318. "and then wait until this message disappears.\n"
  2319. "\n"
  2320. "Then, press it again to see if OK appears\n"
  2321. "next to its button.\n"
  2322. "\n"
  2323. "If you want to escape, press a single Escape key\n"
  2324. "and wait as well."
  2325. msgstr ""
  2326. "Appuyez sur « %s »\n"
  2327. "et attendez la disparition de ce message.\n"
  2328. "\n"
  2329. "Ensuite, appuyez à nouveau pour voir « Vu » s'afficher\n"
  2330. "à l'emplacement prévu.\n"
  2331. "\n"
  2332. "Pour annuler, appuyez sur la touche Échappement\n"
  2333. "jusqu'à la disparition de ce panneau."
  2334. msgid "Cannot accept this key"
  2335. msgstr ""
  2336. #, c-format
  2337. msgid "You have entered \"%s\""
  2338. msgstr ""
  2339. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2340. msgid "OK"
  2341. msgstr "Vu"
  2342. msgid ""
  2343. "It seems that all your keys already\n"
  2344. "work fine. That's great."
  2345. msgstr ""
  2346. "Toutes les touches sont déjà\n"
  2347. "configurées. Bravo !"
  2348. msgid "&Discard"
  2349. msgstr "&Annuler"
  2350. msgid ""
  2351. "Great! You have a complete terminal database!\n"
  2352. "All your keys work well."
  2353. msgstr ""
  2354. "Bravo ! Votre configuration est correcte !\n"
  2355. "Toutes les touches sont définies."
  2356. msgid "Press all the keys mentioned here. After you have done it, check"
  2357. msgstr "Essayez toutes les touches citées ici. Vérifiez ensuite qu'elles"
  2358. msgid "which keys are not marked with OK. Press space on the missing"
  2359. msgstr "ont toutes ont été marquées « Vu ». Appuyez sur « espace » en"
  2360. msgid "key, or click with the mouse to define it. Move around with Tab."
  2361. msgstr "face des touches manquantes, ou cliquez dessus pour la définir."
  2362. #, c-format
  2363. msgid ""
  2364. "Failed to run:\n"
  2365. "%s\n"
  2366. msgstr ""
  2367. #, c-format
  2368. msgid ""
  2369. "\n"
  2370. "Failed while close:\n"
  2371. "%s\n"
  2372. msgstr ""
  2373. msgid "Choose codepage"
  2374. msgstr "Choisissez un encodage"
  2375. msgid "- < No translation >"
  2376. msgstr "- < Pas de conversion >"
  2377. msgid "%b %e %Y"
  2378. msgstr "%e %b %Y"
  2379. msgid "%b %e %H:%M"
  2380. msgstr "%e %b %H:%M"
  2381. #, c-format
  2382. msgid ""
  2383. "Cannot save file %s:\n"
  2384. "%s"
  2385. msgstr ""
  2386. "Impossible d'enregistrer le fichier %s : \n"
  2387. "%s"
  2388. msgid ""
  2389. "GNU Midnight Commander is already\n"
  2390. "running on this terminal.\n"
  2391. "Subshell support will be disabled."
  2392. msgstr ""
  2393. "GNU Midnight Commander est\n"
  2394. "en cour d'exécution sur ce terminal.\n"
  2395. "Support pour les sous-shells sera supprimé."
  2396. #, c-format
  2397. msgid "Cannot open named pipe %s\n"
  2398. msgstr "Ne peut ouvrir le tube nommé %s\n"
  2399. msgid "The shell is still active. Quit anyway?"
  2400. msgstr ""
  2401. #, c-format
  2402. msgid "Warning: Cannot change to %s.\n"
  2403. msgstr "Attention : ne peut aller à %s.\n"
  2404. msgid "Using the S-Lang library with terminfo database\n"
  2405. msgstr ""
  2406. msgid "Using the ncurses library\n"
  2407. msgstr ""
  2408. msgid "Using the ncursesw library\n"
  2409. msgstr ""
  2410. msgid "With builtin Editor\n"
  2411. msgstr "Avec l'éditeur intégré\n"
  2412. msgid "With optional subshell support\n"
  2413. msgstr ""
  2414. msgid "With subshell support as default\n"
  2415. msgstr ""
  2416. msgid "With support for background operations\n"
  2417. msgstr "Avec le support des opérations en tâche de fond\n"
  2418. msgid "With mouse support on xterm and Linux console\n"
  2419. msgstr "Avec support de la souris pour xterm et la console Linux\n"
  2420. msgid "With mouse support on xterm\n"
  2421. msgstr "Avec support de la souris pour xterm\n"
  2422. msgid "With support for X11 events\n"
  2423. msgstr "Avec le support des événements X11\n"
  2424. msgid "With internationalization support\n"
  2425. msgstr "Avec le support de l'internationalisation\n"
  2426. msgid "With multiple codepages support\n"
  2427. msgstr "Avec le support de plusieurs codepages\n"
  2428. #, c-format
  2429. msgid "Built with GLib %d.%d.%d\n"
  2430. msgstr ""
  2431. #, c-format
  2432. msgid "Virtual File Systems:"
  2433. msgstr ""
  2434. #, c-format
  2435. msgid "Data types:"
  2436. msgstr ""
  2437. msgid "System data"
  2438. msgstr ""
  2439. msgid "Config directory:"
  2440. msgstr ""
  2441. msgid "Data directory:"
  2442. msgstr ""
  2443. msgid "User data"
  2444. msgstr ""
  2445. msgid "Cache directory:"
  2446. msgstr ""
  2447. #, c-format
  2448. msgid ""
  2449. "Cannot open cpio archive\n"
  2450. "%s"
  2451. msgstr ""
  2452. "Ne peut ouvrir l'archive cpio\n"
  2453. "%s"
  2454. #, c-format
  2455. msgid ""
  2456. "Premature end of cpio archive\n"
  2457. "%s"
  2458. msgstr ""
  2459. "Fin de l'archive cpio prématuré\n"
  2460. "%s"
  2461. #, c-format
  2462. msgid ""
  2463. "Inconsistent hardlinks of\n"
  2464. "%s\n"
  2465. "in cpio archive\n"
  2466. "%s"
  2467. msgstr ""
  2468. "Lien physique inconsistant de\n"
  2469. "%s\n"
  2470. "dans l'archive cpio\n"
  2471. "%s"
  2472. #, c-format
  2473. msgid "%s contains duplicate entries! Skipping!"
  2474. msgstr "%s contient des entrées dupliquées ! ignore !"
  2475. #, c-format
  2476. msgid ""
  2477. "Corrupted cpio header encountered in\n"
  2478. "%s"
  2479. msgstr ""
  2480. "En-tête cpio corrompu rencontré dans\n"
  2481. "%s"
  2482. #, c-format
  2483. msgid ""
  2484. "Unexpected end of file\n"
  2485. "%s"
  2486. msgstr ""
  2487. "Fin de fichier inattendue\n"
  2488. "%s"
  2489. #, c-format
  2490. msgid ""
  2491. "Cannot open %s archive\n"
  2492. "%s"
  2493. msgstr ""
  2494. "Ne peut ouvrir l'archive %s\n"
  2495. "%s"
  2496. msgid "Inconsistent extfs archive"
  2497. msgstr "archive extfs incohérente"
  2498. #, c-format
  2499. msgid "Warning: cannot open %s directory\n"
  2500. msgstr "Avertissement : impossible d'ouvrir le répertoire %s\n"
  2501. #, c-format
  2502. msgid "fish: Disconnecting from %s"
  2503. msgstr "fish : déconnexion de %s"
  2504. msgid "fish: Waiting for initial line..."
  2505. msgstr "fish : attente de la première ligne..."
  2506. msgid "Sorry, we cannot do password authenticated connections for now."
  2507. msgstr ""
  2508. "Désolé, nous ne pouvons pas faire de connexion authentifiée par mot de passe"
  2509. " pour l'instant."
  2510. #, c-format
  2511. msgid "fish: Password is required for %s"
  2512. msgstr " fish : mot de passe requis pour %s"
  2513. msgid "fish: Sending password..."
  2514. msgstr "fish : envoi du mot de passe"
  2515. msgid "fish: Sending initial line..."
  2516. msgstr "fish : envoie de la ligne initiale..."
  2517. msgid "fish: Handshaking version..."
  2518. msgstr "fish : vérification des numéros de version..."
  2519. msgid "fish: Getting host info..."
  2520. msgstr "fish : recoie les infos dur l'hôte..."
  2521. msgid "fish: Setting up current directory..."
  2522. msgstr "fish: configuration du répertoire courant..."
  2523. #, c-format
  2524. msgid "fish: Connected, home %s."
  2525. msgstr "fish : connecté, home %s."
  2526. #, c-format
  2527. msgid "fish: Reading directory %s..."
  2528. msgstr "fish : lecture du répertoire %s..."
  2529. #, c-format
  2530. msgid "%s: done."
  2531. msgstr "%s : fait."
  2532. #, c-format
  2533. msgid "%s: failure"
  2534. msgstr "%s : grosse erreur"
  2535. #, c-format
  2536. msgid "fish: store %s: sending command..."
  2537. msgstr "fish : store %s : envoie de la commande..."
  2538. msgid "fish: Local read failed, sending zeros"
  2539. msgstr "fish : Échec de la lecture locale, envoie de zéros"
  2540. msgid "fish: storing zeros"
  2541. msgstr ""
  2542. msgid "fish: storing file"
  2543. msgstr ""
  2544. msgid "Aborting transfer..."
  2545. msgstr "Abandon du transfert."
  2546. msgid "Error reported after abort."
  2547. msgstr "Erreur raportée après l'abandon."
  2548. msgid "Aborted transfer would be successful."
  2549. msgstr "Le transfert abandonné devrait avoir réussi."
  2550. #, c-format
  2551. msgid "ftpfs: Disconnecting from %s"
  2552. msgstr "FTPfs : déconnexion de %s"
  2553. #, c-format
  2554. msgid "FTP: Password required for %s"
  2555. msgstr " FTP : mot de passe requis pour %s"
  2556. msgid "ftpfs: sending login name"
  2557. msgstr "FTPfs : envoi du nom de connexion"
  2558. msgid "ftpfs: sending user password"
  2559. msgstr "FTPfs : envoi du mot de passe"
  2560. #, c-format
  2561. msgid "FTP: Account required for user %s"
  2562. msgstr " FTP : compte requis pour l'utilisateur %s"
  2563. msgid "Account:"
  2564. msgstr "Compte :"
  2565. msgid "ftpfs: sending user account"
  2566. msgstr "FTPfs : envoie du compte utilisateur"
  2567. msgid "ftpfs: logged in"
  2568. msgstr "FTPfs : connecté"
  2569. #, c-format
  2570. msgid "ftpfs: Login incorrect for user %s "
  2571. msgstr "FTPfs : login incorrect pour l'utilisateur %s"
  2572. msgid "ftpfs: Invalid host name."
  2573. msgstr "FTPfs : nom d'hôte invalide."
  2574. #, c-format
  2575. msgid "ftpfs: %s"
  2576. msgstr "FTPfs : %s"
  2577. #, c-format
  2578. msgid "ftpfs: making connection to %s"
  2579. msgstr "FTPfs : établissement de la connexion à %s"
  2580. msgid "ftpfs: connection interrupted by user"
  2581. msgstr "FTPfs : connexion interrompue par l'utilisateur"
  2582. #, c-format
  2583. msgid "ftpfs: connection to server failed: %s"
  2584. msgstr "FTPfs : connexion au serveur échouée : %s"
  2585. #, c-format
  2586. msgid "Waiting to retry... %d (Control-G to cancel)"
  2587. msgstr ""
  2588. msgid "ftpfs: invalid address family"
  2589. msgstr "FTPfs : famille d'adresse"
  2590. #, c-format
  2591. msgid "ftpfs: could not create socket: %s"
  2592. msgstr "FTPfs : Ne peut créer une socket : %s "
  2593. msgid "ftpfs: could not setup passive mode"
  2594. msgstr "FTPfs : ne peut configurer le mode passif"
  2595. msgid "ftpfs: aborting transfer."
  2596. msgstr "FTPfs : abandon du transfert."
  2597. #, c-format
  2598. msgid "ftpfs: abort error: %s"
  2599. msgstr "FTPfs : erreur d'abandon : %s"
  2600. msgid "ftpfs: abort failed"
  2601. msgstr "FTPfs : échec de l'abandon"
  2602. msgid "ftpfs: CWD failed."
  2603. msgstr "FTPfs : échec de CWD."
  2604. msgid "ftpfs: couldn't resolve symlink"
  2605. msgstr "FTPfs : ne peut résoudre le lien symbolique"
  2606. msgid "Resolving symlink..."
  2607. msgstr "Résolution du lien symbolique..."
  2608. #, c-format
  2609. msgid "ftpfs: Reading FTP directory %s... %s%s"
  2610. msgstr "FTPfs : lecture du répertoire FTP %s... %s%s"
  2611. msgid "(strict rfc959)"
  2612. msgstr "(rfc959 stricte)"
  2613. msgid "(chdir first)"
  2614. msgstr "(chdir d'abord)"
  2615. msgid "ftpfs: failed; nowhere to fallback to"
  2616. msgstr "FTPfs : échec ; nulle part où retomber"
  2617. msgid "ftpfs: storing file"
  2618. msgstr ""
  2619. msgid ""
  2620. "~/.netrc file has incorrect mode\n"
  2621. "Remove password or correct mode"
  2622. msgstr ""
  2623. "Le fichier ~/.netrc n'a pas un mode correct.\n"
  2624. "Enlevez le mot de passe ou corrigez le mode."
  2625. #, c-format
  2626. msgid "%s: Warning: file %s not found\n"
  2627. msgstr ""
  2628. #, c-format
  2629. msgid ""
  2630. "Warning: Invalid line in %s:\n"
  2631. "%s\n"
  2632. msgstr ""
  2633. "Attention : ligne invalide dans %s :\n"
  2634. "%s\n"
  2635. #, c-format
  2636. msgid ""
  2637. "Warning: Invalid flag %c in %s:\n"
  2638. "%s\n"
  2639. msgstr ""
  2640. "Attention : drapeau invalide %c dans %s :\n"
  2641. "%s\n"
  2642. #, c-format
  2643. msgid "reconnect to %s failed"
  2644. msgstr " échec de la reconnexion à %s"
  2645. msgid "Authentication failed"
  2646. msgstr " Échec de l'authentification"
  2647. #, c-format
  2648. msgid "Error %s creating directory %s"
  2649. msgstr " Erreur %s la création du répertoire %s "
  2650. #, c-format
  2651. msgid "Error %s removing directory %s"
  2652. msgstr " Erreur %s destruction du répertoire %s "
  2653. #, c-format
  2654. msgid "%s opening remote file %s"
  2655. msgstr ""
  2656. #, c-format
  2657. msgid "%s removing remote file %s"
  2658. msgstr ""
  2659. #, c-format
  2660. msgid "%s renaming files\n"
  2661. msgstr ""
  2662. #, c-format
  2663. msgid ""
  2664. "Cannot open tar archive\n"
  2665. "%s"
  2666. msgstr ""
  2667. "Ne peut ouvrir l'archive tar\n"
  2668. "%s"
  2669. msgid "Inconsistent tar archive"
  2670. msgstr "Archive tar incohérente"
  2671. msgid "Unexpected EOF on archive file"
  2672. msgstr "Fin de fichier inattendue sur le fichier archive."
  2673. #, c-format
  2674. msgid ""
  2675. "%s\n"
  2676. "doesn't look like a tar archive."
  2677. msgstr ""
  2678. "%s\n"
  2679. "ne ressemble pas à une archive tar."
  2680. msgid "undelfs: error"
  2681. msgstr " undelfs : erreur"
  2682. msgid "not enough memory"
  2683. msgstr " pas assez de mémoire"
  2684. msgid "while allocating block buffer"
  2685. msgstr " lors de l'allocation d'un tampon bloc"
  2686. #, c-format
  2687. msgid "open_inode_scan: %d"
  2688. msgstr " open_inode_scan : %d"
  2689. #, c-format
  2690. msgid "while starting inode scan %d"
  2691. msgstr " lors du démarrage du scan de l'inode %d"
  2692. #, c-format
  2693. msgid "undelfs: loading deleted files information %d inodes"
  2694. msgstr ""
  2695. "undelfs : chargement le l'information de fichiers supprimés de %d inodes"
  2696. #, c-format
  2697. msgid "while calling ext2_block_iterate %d"
  2698. msgstr " lors de l'appel de ext2_block_iterate %d"
  2699. msgid "no more memory while reallocating array"
  2700. msgstr " pas plus de mémoire lors de la ré-allocation du tableau"
  2701. #, c-format
  2702. msgid "while doing inode scan %d"
  2703. msgstr " lors du scan de l'inode %d"
  2704. #, c-format
  2705. msgid "Cannot open file %s"
  2706. msgstr " Ne peut ouvrir le fichier %s"
  2707. msgid "undelfs: reading inode bitmap..."
  2708. msgstr "undelfs : lecture du bitmap d'i-noeud..."
  2709. #, c-format
  2710. msgid ""
  2711. "Cannot load inode bitmap from:\n"
  2712. "%s"
  2713. msgstr ""
  2714. " Ne peut charger le bitmap d'inode depuis : \n"
  2715. "%s"
  2716. msgid "undelfs: reading block bitmap..."
  2717. msgstr "undelfs : lecture du bitmap bloc"
  2718. #, c-format
  2719. msgid ""
  2720. "Cannot load block bitmap from:\n"
  2721. "%s"
  2722. msgstr ""
  2723. " Ne peut charger le bitmap bloc depuis :\n"
  2724. "%s"
  2725. msgid "vfs_info is not fs!"
  2726. msgstr " vfs_info n'est pas fs !"
  2727. msgid "You have to chdir to extract files first"
  2728. msgstr ""
  2729. " Vous devez changer de répertoire pour extraire les fichier en premier"
  2730. msgid "while iterating over blocks"
  2731. msgstr " lors de l'itération sur les blocs"
  2732. #, c-format
  2733. msgid "Cannot open file \"%s\""
  2734. msgstr " Ne peut ouvrir le fichier \"%s\""
  2735. msgid "Ext2lib error"
  2736. msgstr " erreur Ext2lib"
  2737. msgid "Invalid value"
  2738. msgstr "valeur invalide "
  2739. msgid "Cannot spawn child process"
  2740. msgstr ""
  2741. msgid "Empty output from child filter"
  2742. msgstr ""
  2743. msgid "&Line number (decimal)"
  2744. msgstr "&Numéro de ligne (décimal)"
  2745. msgid "Pe&rcents"
  2746. msgstr "Pou&rcents"
  2747. msgid "&Decimal offset"
  2748. msgstr ""
  2749. msgid "He&xadecimal offset"
  2750. msgstr ""
  2751. msgid "Goto"
  2752. msgstr "Aller à"
  2753. msgid "ButtonBar|Ascii"
  2754. msgstr "ButtonBar|Ascii"
  2755. msgid "ButtonBar|HxSrch"
  2756. msgstr ""
  2757. msgid "ButtonBar|UnWrap"
  2758. msgstr ""
  2759. msgid "ButtonBar|Wrap"
  2760. msgstr ""
  2761. msgid "ButtonBar|Hex"
  2762. msgstr "ButtonBar|Hex"
  2763. msgid "ButtonBar|Goto"
  2764. msgstr "ButtonBar|All. à"
  2765. msgid "ButtonBar|Raw"
  2766. msgstr "ButtonBar|Brut"
  2767. msgid "ButtonBar|Parse"
  2768. msgstr ""
  2769. msgid "ButtonBar|Unform"
  2770. msgstr ""
  2771. msgid "ButtonBar|Format"
  2772. msgstr "ButtonBar|Format"
  2773. #, c-format
  2774. msgid ""
  2775. "Error while closing the file:\n"
  2776. "%s\n"
  2777. "Data may have been written or not"
  2778. msgstr ""
  2779. #, c-format
  2780. msgid ""
  2781. "Cannot save file:\n"
  2782. "%s"
  2783. msgstr ""
  2784. msgid "View: "
  2785. msgstr ""
  2786. #, c-format
  2787. msgid ""
  2788. "Cannot open \"%s\"\n"
  2789. "%s"
  2790. msgstr ""
  2791. #, c-format
  2792. msgid ""
  2793. "Cannot stat \"%s\"\n"
  2794. "%s"
  2795. msgstr ""
  2796. msgid "Cannot view: not a regular file"
  2797. msgstr ""
  2798. msgid "Seeking to search result"
  2799. msgstr ""
  2800. msgid "Search done"
  2801. msgstr ""
  2802. msgid "Continue from beginning?"
  2803. msgstr ""