fr.po 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425
  1. # Translation of dpkg scripts messages templates to French
  2. # Copyright (C) 2007-2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
  3. # This file is distributed under the same license as the dpkg package.
  4. #
  5. # Translators:
  6. # Frédéric Bothamy <frederic.bothamy@free.fr>, 2005-2007.
  7. # Christian Perrier <bubulle@debian.org>, 2008, 2009, 2010, 2011, 2012.
  8. # Steve Petruzzello <dlist@bluewin.ch>, 2014
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: dpkg-dev 1.17.7\n"
  12. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  13. "POT-Creation-Date: 2014-08-09 12:49+0200\n"
  14. "PO-Revision-Date: 2014-04-25 13:37+0200\n"
  15. "Last-Translator: Steve Petruzzello <dlist@bluewin.ch>\n"
  16. "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
  17. "Language: fr\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=UTF-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "Plural-Forms: nplurals=2; plural=n>1;\n"
  22. "X-Generator: Lokalize 1.4\n"
  23. #: scripts/dpkg-architecture.pl:37 scripts/dpkg-buildflags.pl:33
  24. #: scripts/dpkg-buildpackage.pl:47 scripts/dpkg-checkbuilddeps.pl:39
  25. #: scripts/dpkg-distaddfile.pl:37 scripts/dpkg-genchanges.pl:113
  26. #: scripts/dpkg-gencontrol.pl:66 scripts/dpkg-gensymbols.pl:53
  27. #: scripts/dpkg-mergechangelogs.pl:54 scripts/dpkg-name.pl:46
  28. #: scripts/dpkg-parsechangelog.pl:36 scripts/dpkg-scanpackages.pl:67
  29. #: scripts/dpkg-scansources.pl:79 scripts/dpkg-shlibdeps.pl:548
  30. #: scripts/dpkg-source.pl:495 scripts/changelog/debian.pl:37
  31. #, perl-format
  32. msgid "Debian %s version %s.\n"
  33. msgstr "Debian %s version %s.\n"
  34. #: scripts/dpkg-architecture.pl:39 scripts/dpkg-buildflags.pl:35
  35. #: scripts/dpkg-buildpackage.pl:49 scripts/dpkg-distaddfile.pl:39
  36. #: scripts/dpkg-genchanges.pl:115 scripts/dpkg-gencontrol.pl:68
  37. #: scripts/dpkg-gensymbols.pl:55 scripts/dpkg-parsechangelog.pl:38
  38. #: scripts/dpkg-shlibdeps.pl:550 scripts/dpkg-source.pl:497
  39. #: scripts/changelog/debian.pl:39
  40. msgid ""
  41. "\n"
  42. "This is free software; see the GNU General Public License version 2 or\n"
  43. "later for copying conditions. There is NO warranty.\n"
  44. msgstr ""
  45. "\n"
  46. "Ce logiciel est un logiciel libre. Voyez la licence « GNU General Public "
  47. "License »\n"
  48. "dans la version 2 ou une version supérieure pour les conditions de copie. Il "
  49. "n'y a PAS de garantie.\n"
  50. #: scripts/dpkg-architecture.pl:47
  51. #, perl-format
  52. msgid "Usage: %s [<option>...] [<command>]"
  53. msgstr "Usage: %s [<option>...] [<commande>]"
  54. #: scripts/dpkg-architecture.pl:49
  55. #, fuzzy
  56. #| msgid ""
  57. #| "Options:\n"
  58. #| " -a<debian-arch> set current Debian architecture.\n"
  59. #| " -t<gnu-system> set current GNU system type.\n"
  60. #| " -L list valid architectures.\n"
  61. #| " -f force flag (override variables set in environment)."
  62. msgid ""
  63. "Options:\n"
  64. " -a<debian-arch> set current Debian architecture.\n"
  65. " -t<gnu-system> set current GNU system type.\n"
  66. " -f force flag (override variables set in environment)."
  67. msgstr ""
  68. "Options:\n"
  69. " -a<debian-arch> définir l'architecture actuelle.\n"
  70. " -t<gnu-system> définir le type de système GNU.\n"
  71. " -L afficher les architectures valables.\n"
  72. " -f drapeau de forçage (annule les variables\n"
  73. " de l'environnement)."
  74. #: scripts/dpkg-architecture.pl:54
  75. #, fuzzy
  76. #| msgid ""
  77. #| "Commands:\n"
  78. #| " -l list variables (default).\n"
  79. #| " -e<debian-arch> compare with current Debian architecture.\n"
  80. #| " -i<arch-alias> check if current Debian architecture is <arch-"
  81. #| "alias>.\n"
  82. #| " -q<variable> prints only the value of <variable>.\n"
  83. #| " -s print command to set environment variables.\n"
  84. #| " -u print command to unset environment variables.\n"
  85. #| " -c <command> set environment and run the command in it.\n"
  86. #| " -?, --help show this help message.\n"
  87. #| " --version show the version.\n"
  88. msgid ""
  89. "Commands:\n"
  90. " -l list variables (default).\n"
  91. " -L list valid architectures.\n"
  92. " -e<debian-arch> compare with current Debian architecture.\n"
  93. " -i<arch-alias> check if current Debian architecture is <arch-alias>.\n"
  94. " -q<variable> prints only the value of <variable>.\n"
  95. " -s print command to set environment variables.\n"
  96. " -u print command to unset environment variables.\n"
  97. " -c <command> set environment and run the command in it.\n"
  98. " -?, --help show this help message.\n"
  99. " --version show the version.\n"
  100. msgstr ""
  101. "Actions :\n"
  102. " -l lister les variables (défaut).\n"
  103. " -e<debian-arch> comparer avec l'architecture Debian en cours.\n"
  104. " -i<arch-alias> vérifier que l'architecture Debian en cours est <arch-"
  105. "alias>.\n"
  106. " -q<variable> n'afficher que la valeur de <variable>.\n"
  107. " -s afficher la commande pour définir les variables "
  108. "d'environnement.\n"
  109. " -u afficher la commande pour annuler les variables "
  110. "d'environnement.\n"
  111. " -c <commande> mettre en place l'environnement et exécuter la "
  112. "commande.\n"
  113. " -?, --help afficher ce message d'aide.\n"
  114. " --version afficher la version.\n"
  115. #: scripts/dpkg-architecture.pl:147
  116. #, perl-format
  117. msgid "%s is not a supported variable name"
  118. msgstr "%s n'est pas le nom d'une variable reconnue"
  119. #: scripts/dpkg-architecture.pl:165 scripts/dpkg-buildflags.pl:92
  120. #: scripts/dpkg-distaddfile.pl:69 scripts/dpkg-genchanges.pl:219
  121. #: scripts/dpkg-gencontrol.pl:140 scripts/dpkg-gensymbols.pl:140
  122. #: scripts/dpkg-name.pl:245 scripts/dpkg-parsechangelog.pl:121
  123. #: scripts/dpkg-shlibdeps.pl:133
  124. #, perl-format
  125. msgid "unknown option `%s'"
  126. msgstr "option inconnue « %s »"
  127. #: scripts/dpkg-architecture.pl:199
  128. #, perl-format
  129. msgid "unknown Debian architecture %s, you must specify GNU system type, too"
  130. msgstr ""
  131. "architecture Debian inconnue %s, vous devez aussi indiquer le type du "
  132. "système GNU "
  133. #: scripts/dpkg-architecture.pl:206
  134. #, perl-format
  135. msgid "unknown GNU system type %s, you must specify Debian architecture, too"
  136. msgstr ""
  137. "type du système GNU inconnu %s, vous devez aussi indiquer l'architecture "
  138. "Debian "
  139. #: scripts/dpkg-architecture.pl:213
  140. #, perl-format
  141. msgid "unknown default GNU system type for Debian architecture %s"
  142. msgstr "type du système GNU par défaut inconnu pour l'architecture Debian %s"
  143. #: scripts/dpkg-architecture.pl:216
  144. #, perl-format
  145. msgid ""
  146. "default GNU system type %s for Debian arch %s does not match specified GNU "
  147. "system type %s"
  148. msgstr ""
  149. "le type par défaut du système GNU %s pour l'architecture Debian %s ne "
  150. "correspond pas au type du système GNU indiqué %s"
  151. #: scripts/dpkg-architecture.pl:249
  152. #, perl-format
  153. msgid ""
  154. "specified GNU system type %s does not match gcc system type %s, try setting "
  155. "a correct CC environment variable"
  156. msgstr ""
  157. "le type du système GNU indiqué %s ne correspond pas au type de gcc %s. Vous "
  158. "devriez essayer de définir une variable d'environnement CC correcte."
  159. #: scripts/dpkg-buildflags.pl:43
  160. #, perl-format
  161. msgid "Usage: %s [<command>]"
  162. msgstr "Utilisation : %s [<commande>]"
  163. #: scripts/dpkg-buildflags.pl:45
  164. msgid ""
  165. "Commands:\n"
  166. " --get <flag> output the requested flag to stdout.\n"
  167. " --origin <flag> output the origin of the flag to stdout:\n"
  168. " value is one of vendor, system, user, env.\n"
  169. " --query-features <area>\n"
  170. " output the status of features for the given area.\n"
  171. " --list output a list of the flags supported by the current "
  172. "vendor.\n"
  173. " --export=(sh|make|cmdline|configure)\n"
  174. " output something convenient to import the compilation\n"
  175. " flags in a shell script, in make, or in a command "
  176. "line.\n"
  177. " --dump output all compilation flags with their values\n"
  178. " --status print a synopsis with all parameters affecting the\n"
  179. " behaviour of dpkg-buildflags and the resulting flags\n"
  180. " and their origin.\n"
  181. " --help show this help message.\n"
  182. " --version show the version.\n"
  183. msgstr ""
  184. "Actions:\n"
  185. " --get <drapeau> afficher le drapeau choisi sur la sortie standard.\n"
  186. " --origin <drapeau> afficher l'origine du drapeau sur la sortie standard :\n"
  187. " les valeurs possibles sont vendor, system, user, env.\n"
  188. " --query-features <zone>\n"
  189. " afficher l'état des fonctionnalités de la\n"
  190. " zone (« area ») indiquée.\n"
  191. " --list afficher une liste des drapeaux gérés par le\n"
  192. " distributeur actuel.\n"
  193. " --export=(sh|make|cmdline|configure)\n"
  194. " afficher quelque chose de commode afin d'importer les "
  195. "drapeaux de compilation dans un script shell, dans\n"
  196. " make ou dans une ligne de commande \n"
  197. " --dump afficher tous les drapeaux de compilation et leurs "
  198. "valeurs\n"
  199. " --status afficher un résumé de tous les paramètres qui influent\n"
  200. " sur le comportement de dpkg-buildflags, ainsi que les "
  201. "drapeaux\n"
  202. " qui en résultent et leur origine.\n"
  203. " --help afficher ce message d'aide.\n"
  204. " --version afficher la version.\n"
  205. #: scripts/dpkg-buildflags.pl:69 scripts/dpkg-buildflags.pl:75
  206. #: scripts/dpkg-buildflags.pl:82
  207. #, perl-format
  208. msgid "two commands specified: --%s and --%s"
  209. msgstr "deux commandes indiquées : --%s et --%s"
  210. #: scripts/dpkg-buildflags.pl:73
  211. #, perl-format
  212. msgid "%s needs a parameter"
  213. msgstr "paramètre nécessaire pour %s"
  214. #: scripts/dpkg-buildpackage.pl:57 scripts/dpkg-genchanges.pl:123
  215. #: scripts/dpkg-gencontrol.pl:76 scripts/dpkg-gensymbols.pl:63
  216. #: scripts/dpkg-parsechangelog.pl:46
  217. #, perl-format
  218. msgid "Usage: %s [<option>...]"
  219. msgstr "Utilisation : %s [<option>...]"
  220. #: scripts/dpkg-buildpackage.pl:59
  221. #, fuzzy
  222. #| msgid ""
  223. #| "Options:\n"
  224. #| " -F (default) normal full build (binaries and sources).\n"
  225. #| " -b binary-only, do not build source.\n"
  226. #| " -B binary-only, no arch-indep files.\n"
  227. #| " -A binary-only, only arch-indep files.\n"
  228. #| " -S source-only, no binary files.\n"
  229. #| " -nc do not clean source tree (implies -b).\n"
  230. #| " -tc clean source tree when finished.\n"
  231. #| " -D (default) check build dependencies and conflicts.\n"
  232. #| " -d do not check build dependencies and conflicts.\n"
  233. #| " -P<profiles> assume given build profiles as active (comma-separated "
  234. #| "list).\n"
  235. #| " -R<rules> rules file to execute (default is debian/rules).\n"
  236. #| " -T<target> call debian/rules <target> with the proper environment.\n"
  237. #| " --as-root ensure -T calls the target with root rights.\n"
  238. #| " -j[<number>] specify jobs to run simultaneously (passed to <rules>).\n"
  239. #| " -r<gain-root-command>\n"
  240. #| " command to gain root privileges (default is fakeroot).\n"
  241. #| " --check-command=<check-command>\n"
  242. #| " command to check the .changes file (no default).\n"
  243. #| " --check-option=<opt>\n"
  244. #| " pass <opt> to <check-command>.\n"
  245. #| " --hook-<hook-name>=<hook-command>\n"
  246. #| " set <hook-command> as the hook <hook-name>, known "
  247. #| "hooks:\n"
  248. #| " init preclean source build binary changes postclean\n"
  249. #| " check sign done\n"
  250. #| " -p<sign-command>\n"
  251. #| " command to sign .dsc and/or .changes files\n"
  252. #| " (default is gpg2 or gpg).\n"
  253. #| " -k<keyid> the key to use for signing.\n"
  254. #| " -ap add pause before starting signature process.\n"
  255. #| " -us unsigned source package.\n"
  256. #| " -uc unsigned .changes file.\n"
  257. #| " --force-sign\n"
  258. #| " force signing the resulting files.\n"
  259. #| " --admindir=<directory>\n"
  260. #| " change the administrative directory.\n"
  261. #| " -?, --help show this help message.\n"
  262. #| " --version show the version."
  263. msgid ""
  264. "Options:\n"
  265. " -F (default) normal full build (binaries and sources).\n"
  266. " -g source and arch-indep build.\n"
  267. " -G source and arch-specific build.\n"
  268. " -b binary-only, no source files.\n"
  269. " -B binary-only, only arch-specific files.\n"
  270. " -A binary-only, only arch-indep files.\n"
  271. " -S source-only, no binary files.\n"
  272. " -nc do not clean source tree (implies -b).\n"
  273. " -tc clean source tree when finished.\n"
  274. " -D (default) check build dependencies and conflicts.\n"
  275. " -d do not check build dependencies and conflicts.\n"
  276. " -P<profiles> assume given build profiles as active (comma-separated "
  277. "list).\n"
  278. " -R<rules> rules file to execute (default is debian/rules).\n"
  279. " -T<target> call debian/rules <target> with the proper environment.\n"
  280. " --as-root ensure -T calls the target with root rights.\n"
  281. " -j[<number>] specify jobs to run simultaneously (passed to <rules>).\n"
  282. " -r<gain-root-command>\n"
  283. " command to gain root privileges (default is fakeroot).\n"
  284. " --check-command=<check-command>\n"
  285. " command to check the .changes file (no default).\n"
  286. " --check-option=<opt>\n"
  287. " pass <opt> to <check-command>.\n"
  288. " --hook-<hook-name>=<hook-command>\n"
  289. " set <hook-command> as the hook <hook-name>, known hooks:\n"
  290. " init preclean source build binary changes postclean\n"
  291. " check sign done\n"
  292. " -p<sign-command>\n"
  293. " command to sign .dsc and/or .changes files\n"
  294. " (default is gpg2 or gpg).\n"
  295. " -k<keyid> the key to use for signing.\n"
  296. " -ap add pause before starting signature process.\n"
  297. " -us unsigned source package.\n"
  298. " -uc unsigned .changes file.\n"
  299. " --force-sign\n"
  300. " force signing the resulting files.\n"
  301. " --admindir=<directory>\n"
  302. " change the administrative directory.\n"
  303. " -?, --help show this help message.\n"
  304. " --version show the version."
  305. msgstr ""
  306. "Options:\n"
  307. " -F (défaut ) construction complète normale (sources et binaires).\n"
  308. " -b binaire uniquement sans construire les sources.\n"
  309. " -B binaire uniquement sans fichiers indépendants\n"
  310. " de l'architecture.\n"
  311. " -A binaire uniquement, seulement les fichiers indépendants\n"
  312. " de l'architecture.\n"
  313. " -S source uniquement, pas de fichiers binaires.\n"
  314. " -nc ne pas nettoyer l'arborescence source (implique -b).\n"
  315. " -tc nettoyer l'arborescence source une fois terminé.\n"
  316. " -D (default) contrôler les dépendances et les conflits de\n"
  317. " construction.\n"
  318. " -d ne pas contrôler les dépendances et les conflits de\n"
  319. " construction.\n"
  320. " -P<profils> supposer que les profils de construction donnés sont actifs "
  321. "(liste séparée par des virgules).\n"
  322. " -R<rules> fichier rules à exécuter (par défaut : debian/rules).\n"
  323. " -T<cible> appeller debian/rules <cible> avec l'environnement adapté.\n"
  324. " --as-root garantir que -T appelle la cible avec les droits du\n"
  325. " superutilisateur.\n"
  326. " -j[<nombre>] indiquer le nombre de travaux à exécuter simultanément\n"
  327. " (passé à<rules>).\n"
  328. " -r<gain-root-command>\n"
  329. " commande permettant d'obtenir les privilèges du\n"
  330. " superutilisateur.\n"
  331. " --check-command=<check-command> commande pour vérifier le fichier .changes "
  332. "(pas de valeur par défaut)\n"
  333. " --check-option=<options> passe <options> à <check-command>\n"
  334. " --hook-<nom-crochet>=<hook-command> positionne <hook-command> pour le "
  335. "crochet <nom-crochet>, crochets connus : init preclean source build binary "
  336. "changes postclean check sign done\n"
  337. " -p<sign-command>\n"
  338. " commande permettant de signer les fichiers .dsc\n"
  339. " et/ou les fichiers .changes (par défaut : gpg2 ou gpg).\n"
  340. " -k<keyid> clé à utiliser pour signer.\n"
  341. " -ap ajouter une pause avant le processus de signature.\n"
  342. " -us paquet source non signé.\n"
  343. " -uc fichier .changes non signé.\n"
  344. " --force-sign force la signature des fichers résultants\n"
  345. " --admindir=<répertoire>\n"
  346. " modifier le répertoire administratif.\n"
  347. " -?, --help afficher ce message d'aide.\n"
  348. " --version afficher la version."
  349. #: scripts/dpkg-buildpackage.pl:100
  350. msgid ""
  351. "Options passed to dpkg-architecture:\n"
  352. " -a<arch> Debian architecture we build for.\n"
  353. " -t<system> set GNU system type."
  354. msgstr ""
  355. "Options passées à dpkg-architecture:\n"
  356. " -a<arch> architecture Debian pour qui se fait la construction.\n"
  357. " -t<système> définir le type de système GNU."
  358. #: scripts/dpkg-buildpackage.pl:104
  359. #, fuzzy
  360. #| msgid ""
  361. #| "Options passed to dpkg-genchanges:\n"
  362. #| " -si (default) source includes orig if new upstream.\n"
  363. #| " -sa uploaded source always includes orig.\n"
  364. #| " -sd uploaded source is diff and .dsc only.\n"
  365. #| " -v<version> changes since version <version>.\n"
  366. #| " -m<maint> maintainer for package is <maint>.\n"
  367. #| " -e<maint> maintainer for release is <maint>.\n"
  368. #| " -C<descfile> changes are described in <descfile>.\n"
  369. #| " --changes-option=<opt>\n"
  370. #| " pass option <opt> to dpkg-genchanges."
  371. msgid ""
  372. "Options passed to dpkg-genchanges:\n"
  373. " -si (default) source includes orig, if new upstream.\n"
  374. " -sa source includes orig, always.\n"
  375. " -sd source is diff and .dsc only.\n"
  376. " -v<version> changes since version <version>.\n"
  377. " -m<maint> maintainer for package is <maint>.\n"
  378. " -e<maint> maintainer for release is <maint>.\n"
  379. " -C<descfile> changes are described in <descfile>.\n"
  380. " --changes-option=<opt>\n"
  381. " pass option <opt> to dpkg-genchanges."
  382. msgstr ""
  383. "Options passées à dpkg-genchanges:\n"
  384. " -si (défaut) la source n'inclut le fichier d'origine que si nouvelle\n"
  385. " version amont.\n"
  386. " -sa toujours inclure le fichier d'origine.\n"
  387. " -sd la source envoyée ne comporte que les fichiers\n"
  388. " diff et .dsc.\n"
  389. " -v<version> modifications depuis la version <version>.\n"
  390. " -m<resp> le responsable du paquet est <maint>.\n"
  391. " -e<resp> le responsable de la publication est <maint>.\n"
  392. " -C<fichdesc> modifications décrites dans <fichdesc>.\n"
  393. " --changes-option=<opt>\n"
  394. " passer l'option <opt> à dpkg-genchanges."
  395. #: scripts/dpkg-buildpackage.pl:115
  396. msgid ""
  397. "Options passed to dpkg-source:\n"
  398. " -sn force Debian native source format.\n"
  399. " -s[sAkurKUR] see dpkg-source for explanation.\n"
  400. " -z<level> compression level to use for source.\n"
  401. " -Z<compressor> compression to use for source (gz|xz|bzip2|lzma).\n"
  402. " -i[<regex>] ignore diffs of files matching regex.\n"
  403. " -I[<pattern>] filter out files when building tarballs.\n"
  404. " --source-option=<opt>\n"
  405. " pass option <opt> to dpkg-source.\n"
  406. msgstr ""
  407. "Options passées à dpkg-source:\n"
  408. " -sn forcer le format source natif Debian.\n"
  409. " -s[sAkurKUR] voir dpkg-source pour les détails.\n"
  410. " -z<niveau> niveau de compression à utiliser pour les sources.\n"
  411. " -Z<compressor> compression to use for source (gz|xz|bzip2|lzma).\n"
  412. " -Z<compresseur>\n"
  413. " logiciel de compression à utiliser pour les\n"
  414. " sources (gz|xz|bzip2|lzma).\n"
  415. " -i[<regex>] ignorer les différences dans les fichiers correspondant\n"
  416. " à l'expression régulière.\n"
  417. " -I[<motif>] ignorer ces fichiers en construisant les archives tar.\n"
  418. " --source-option=<opt>\n"
  419. " passer l'option <opt> à dpkg-source.\n"
  420. #: scripts/dpkg-buildpackage.pl:230
  421. #, perl-format
  422. msgid "unknown hook name %s"
  423. msgstr "nom de crochet inconnu %s"
  424. #: scripts/dpkg-buildpackage.pl:232
  425. #, perl-format
  426. msgid "missing hook %s command"
  427. msgstr "la commande du point d'ancrage %s est manquante"
  428. #: scripts/dpkg-buildpackage.pl:243
  429. #, perl-format
  430. msgid "-s%s is deprecated; always using gpg style interface"
  431. msgstr "-s%s est obsolète ; l'interface utilisée est toujours de type gpg"
  432. #: scripts/dpkg-buildpackage.pl:274 scripts/dpkg-buildpackage.pl:279
  433. #: scripts/dpkg-buildpackage.pl:284 scripts/dpkg-buildpackage.pl:289
  434. #: scripts/dpkg-buildpackage.pl:294 scripts/dpkg-buildpackage.pl:299
  435. #: scripts/dpkg-buildpackage.pl:304 scripts/dpkg-genchanges.pl:158
  436. #: scripts/dpkg-genchanges.pl:162 scripts/dpkg-genchanges.pl:166
  437. #: scripts/dpkg-genchanges.pl:170 scripts/dpkg-genchanges.pl:174
  438. #: scripts/dpkg-genchanges.pl:178
  439. #, perl-format
  440. msgid "cannot combine %s and %s"
  441. msgstr "impossible de combiner %s et %s"
  442. #: scripts/dpkg-buildpackage.pl:317 scripts/dpkg-source.pl:201
  443. msgid "-E and -W are deprecated, they are without effect"
  444. msgstr "La gestion de -E et -W est obsolète (ces paramètres sont sans effet)"
  445. #: scripts/dpkg-buildpackage.pl:322
  446. #, perl-format
  447. msgid "unknown option or argument %s"
  448. msgstr "option ou paramètre inconnu %s"
  449. #: scripts/dpkg-buildpackage.pl:343
  450. msgid "using a gain-root-command while being root"
  451. msgstr ""
  452. "utilisation d'une commande pour obtenir les privilèges administrateur en "
  453. "tant qu'administrateur"
  454. #: scripts/dpkg-buildpackage.pl:350
  455. msgid ""
  456. "fakeroot not found, either install the fakeroot\n"
  457. "package, specify a command with the -r option, or run this as root"
  458. msgstr ""
  459. "fakeroot non trouvé, veuillez soit installer le paquet fakeroot,\n"
  460. "soit indiquer une commande avec l'option -r ou exécuter cette\n"
  461. "commande en tant qu'administrateur"
  462. #: scripts/dpkg-buildpackage.pl:354
  463. #, perl-format
  464. msgid "gain-root-commmand '%s' not found"
  465. msgstr "commande pour obtenir les privilèges administrateur « %s » non trouvée"
  466. #: scripts/dpkg-buildpackage.pl:359
  467. #, perl-format
  468. msgid "check-commmand '%s' not found"
  469. msgstr "check-command « %s » non trouvé"
  470. #: scripts/dpkg-buildpackage.pl:364
  471. #, perl-format
  472. msgid "sign-commmand '%s' not found"
  473. msgstr "sign-command « %s » non trouvée"
  474. #: scripts/dpkg-buildpackage.pl:397
  475. msgid "source package"
  476. msgstr "paquet source"
  477. #: scripts/dpkg-buildpackage.pl:398
  478. msgid "source version"
  479. msgstr "version source"
  480. #: scripts/dpkg-buildpackage.pl:406
  481. msgid "source distribution"
  482. msgstr "distribution source"
  483. #: scripts/dpkg-buildpackage.pl:414
  484. msgid "source changed by"
  485. msgstr "source changé par"
  486. #: scripts/dpkg-buildpackage.pl:432
  487. msgid "host architecture"
  488. msgstr "architecture hôte"
  489. #: scripts/dpkg-buildpackage.pl:461
  490. msgid "debian/rules is not executable; fixing that"
  491. msgstr "debian/rules n'est pas exécutable ; corrigé."
  492. #: scripts/dpkg-buildpackage.pl:482
  493. msgid "build dependencies/conflicts unsatisfied; aborting"
  494. msgstr "dépendances de construction et conflits non satisfaits ; échec."
  495. #: scripts/dpkg-buildpackage.pl:483
  496. msgid "(Use -d flag to override.)"
  497. msgstr "(Utilisez l'option -d pour forcer.)"
  498. #: scripts/dpkg-buildpackage.pl:486
  499. msgid ""
  500. "this is currently a non-fatal warning with -S, but will probably become "
  501. "fatal in the future"
  502. msgstr ""
  503. "ceci est actuellement un avertissement sans conséquence avec -S, mais sera "
  504. "un échec fatal dans le futur."
  505. #: scripts/dpkg-buildpackage.pl:514
  506. msgid ""
  507. "building a source package without cleaning up as you asked; it might contain "
  508. "undesired files"
  509. msgstr ""
  510. "création d'un paquet source sans le nettoyer préalablement comme demandé ; "
  511. "il peut contenir des fichiers non souhaités"
  512. #: scripts/dpkg-buildpackage.pl:534
  513. #, perl-format
  514. msgid ""
  515. "%s must be updated to support the 'build-arch' and 'build-indep' targets (at "
  516. "least '%s' seems to be missing)"
  517. msgstr ""
  518. "%s doit être mis à jour pour gérer les cibles « build-arch » et « build-"
  519. "indep » (au moins « %s » semble manquer)"
  520. #: scripts/dpkg-buildpackage.pl:561
  521. msgid "parse changes file"
  522. msgstr "analyse du fichier changes"
  523. #: scripts/dpkg-buildpackage.pl:563
  524. msgid "dpkg-genchanges"
  525. msgstr "dpkg-genchanges"
  526. #: scripts/dpkg-buildpackage.pl:584
  527. msgid "Press the return key to start signing process\n"
  528. msgstr "Appuyez sur Entrée pour commencer le processus de signature\n"
  529. #: scripts/dpkg-buildpackage.pl:592
  530. msgid "failed to sign .dsc and .changes file"
  531. msgstr "échec de signature des fichiers .dsc et .changes"
  532. #: scripts/dpkg-buildpackage.pl:611
  533. msgid "failed to sign .changes file"
  534. msgstr "échec de signature du fichier .changes"
  535. #: scripts/dpkg-buildpackage.pl:615
  536. msgid "not signing UNRELEASED build; use --force-sign to override"
  537. msgstr ""
  538. "construction non-publiée (UNRELEASED) non signée ; veuillez utiliser --force-"
  539. "sign pour passer outre"
  540. #: scripts/dpkg-buildpackage.pl:623
  541. #, perl-format
  542. msgid "unable to determine %s"
  543. msgstr "impossible de déterminer %s"
  544. #: scripts/dpkg-buildpackage.pl:659
  545. #, fuzzy, perl-format
  546. #| msgid "unknown substitution variable ${%s}"
  547. msgid "unknown %% substitution in hook: %%%s"
  548. msgstr "variable de substitution inconnue ${%s}"
  549. #: scripts/dpkg-buildpackage.pl:704
  550. msgid "source-only upload: Debian-native package"
  551. msgstr "envoi de source uniquement : paquet Debian natif"
  552. #: scripts/dpkg-buildpackage.pl:706
  553. msgid "source-only, diff-only upload (original source NOT included)"
  554. msgstr ""
  555. "source uniquement, envoi du fichier de différences uniquement (aucune "
  556. "inclusion du code source d'origine)"
  557. #: scripts/dpkg-buildpackage.pl:708
  558. msgid "source-only upload (original source is included)"
  559. msgstr "envoi du source seulement (inclusion du code source d'origine)"
  560. #: scripts/dpkg-buildpackage.pl:711
  561. msgid "binary-only upload (no source included)"
  562. msgstr "envoi d'un binaire seulement (aucune inclusion de code source)"
  563. #: scripts/dpkg-buildpackage.pl:714
  564. msgid "full upload; Debian-native package (full source is included)"
  565. msgstr "envoi complet ; paquet Debian natif (inclusion du code source complet)"
  566. #: scripts/dpkg-buildpackage.pl:716
  567. msgid "binary and diff upload (original source NOT included)"
  568. msgstr ""
  569. "envoi d'un binaire et du fichier de différences (aucune inclusion du code "
  570. "source d'origine)"
  571. #: scripts/dpkg-buildpackage.pl:718
  572. msgid "full upload (original source is included)"
  573. msgstr "envoi complet (inclusion du code source d'origine)"
  574. #: scripts/dpkg-checkbuilddeps.pl:45
  575. #, perl-format
  576. msgid "Usage: %s [<option>...] [<control-file>]"
  577. msgstr "Utilisation : %s [<option>...] <fichier de contrôle>"
  578. #: scripts/dpkg-checkbuilddeps.pl:47
  579. msgid ""
  580. "Options:\n"
  581. " -A ignore Build-Depends-Arch and Build-Conflicts-Arch.\n"
  582. " -B ignore Build-Depends-Indep and Build-Conflicts-Indep.\n"
  583. " -d build-deps use given string as build dependencies instead of\n"
  584. " retrieving them from control file\n"
  585. " -c build-conf use given string for build conflicts instead of\n"
  586. " retrieving them from control file\n"
  587. " -a arch assume given host architecture\n"
  588. " -P profiles assume given build profiles (comma-separated list)\n"
  589. " --admindir=<directory>\n"
  590. " change the administrative directory.\n"
  591. " -?, --help show this help message.\n"
  592. " --version show the version."
  593. msgstr ""
  594. "Options :\n"
  595. " -A ignorer Build-Depends-Arch et Build-Conflicts-Arch.\n"
  596. " -B ignorer Build-Depends-Indep et Build-Conflicts-Indep.\n"
  597. " -d build-deps utiliser la chaîne indiquée comme dépendances de "
  598. "construction (« build deps ») plutôt que de les récupérer du fichier de "
  599. "contrôle\n"
  600. " -c build-conf utiliser la chaîne indiquée comme conflit de construction\n"
  601. " (« build conflicts ») plutôt que de les récupérer du "
  602. "fichier control\n"
  603. " -a arch supposer que l'architecture est celle mentionnée\n"
  604. " -P profiles supposer que les profils de construction sont ceux "
  605. "mentionnés\n"
  606. " --admindir=<répertoire>\n"
  607. " changer le répertoire d'administration.\n"
  608. " -?, --help afficher ce message d'aide.\n"
  609. " --version afficher la version."
  610. #: scripts/dpkg-checkbuilddeps.pl:61
  611. msgid ""
  612. "<control-file> is the control file to process (default: debian/control)."
  613. msgstr ""
  614. "<fichier de contrôle> est le fichier de contrôle à traiter (par défaut, "
  615. "debian/control)."
  616. #: scripts/dpkg-checkbuilddeps.pl:116 scripts/dpkg-checkbuilddeps.pl:125
  617. #: scripts/dpkg-shlibdeps.pl:151 scripts/dpkg-source.pl:252
  618. #, perl-format
  619. msgid "error occurred while parsing %s"
  620. msgstr "erreur rencontrée lors de l'analyse de %s"
  621. #: scripts/dpkg-checkbuilddeps.pl:132
  622. #, perl-format
  623. msgid "%s: Unmet build dependencies: "
  624. msgstr "%s : dépendances de construction non trouvées : "
  625. #: scripts/dpkg-checkbuilddeps.pl:136
  626. #, perl-format
  627. msgid "%s: Build conflicts: "
  628. msgstr "%s : conflits de construction du paquet : "
  629. #: scripts/dpkg-checkbuilddeps.pl:148 scripts/dpkg-name.pl:96
  630. #: scripts/Dpkg/Arch.pm:151 scripts/Dpkg/Arch.pm:175 scripts/Dpkg/Arch.pm:208
  631. #: scripts/Dpkg/Arch.pm:225 scripts/Dpkg/IPC.pm:276 scripts/Dpkg/Shlibs.pm:88
  632. #, perl-format
  633. msgid "cannot open %s"
  634. msgstr "impossible d'ouvrir %s"
  635. #: scripts/dpkg-distaddfile.pl:47
  636. #, perl-format
  637. msgid ""
  638. "Usage: %s [<option>...] <filename> <section> <priority>\n"
  639. "\n"
  640. "Options:\n"
  641. " -f<files-list-file> write files here instead of debian/files.\n"
  642. " -?, --help show this help message.\n"
  643. " --version show the version.\n"
  644. msgstr ""
  645. "Syntaxe : %s [<option>...] <fichier> <section> <priorité>\n"
  646. "\n"
  647. "Options :\n"
  648. " -f <fichier_des_fichiers> lister les fichiers dans ce fichier plutôt\n"
  649. " que debian/files.\n"
  650. " -?, --help afficher ce message d'aide.\n"
  651. " --version afficher la version.\n"
  652. #: scripts/dpkg-distaddfile.pl:72
  653. msgid "need exactly a filename, section and priority"
  654. msgstr "Il est demandé exactement un fichier, une section et une priorité"
  655. #: scripts/dpkg-distaddfile.pl:77
  656. msgid "filename, section and priority may contain no whitespace"
  657. msgstr "fichier, section et priorité ne peuvent contenir d'espace"
  658. #: scripts/dpkg-distaddfile.pl:84 scripts/dpkg-gencontrol.pl:388
  659. #: scripts/dpkg-mergechangelogs.pl:137 scripts/dpkg-mergechangelogs.pl:139
  660. #: scripts/Dpkg/Compression/FileHandle.pm:403
  661. #: scripts/Dpkg/Interface/Storable.pm:117 scripts/Dpkg/IPC.pm:285
  662. #: scripts/Dpkg/IPC.pm:294 scripts/Dpkg/Source/Functions.pm:78
  663. #: scripts/Dpkg/Source/Package.pm:506 scripts/Dpkg/Source/Package.pm:617
  664. #: scripts/Dpkg/Source/Package/V2.pm:221 scripts/Dpkg/Source/Package/V2.pm:599
  665. #: scripts/Dpkg/Source/Package/V2.pm:734
  666. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:132 scripts/Dpkg/Source/Quilt.pm:59
  667. #: scripts/Dpkg/Source/Quilt.pm:68 scripts/Dpkg/Source/Quilt.pm:74
  668. #: scripts/Dpkg/Source/Quilt.pm:304 scripts/Dpkg/Source/Quilt.pm:313
  669. #: scripts/Dpkg/Source/Quilt.pm:347
  670. #, perl-format
  671. msgid "cannot write %s"
  672. msgstr "impossible d'écrire %s"
  673. #: scripts/dpkg-distaddfile.pl:93 scripts/dpkg-gencontrol.pl:408
  674. msgid "install new files list file"
  675. msgstr "installation du nouveau fichier de liste des fichiers"
  676. #: scripts/dpkg-distaddfile.pl:96 scripts/dpkg-gencontrol.pl:411
  677. #: scripts/dpkg-gencontrol.pl:427 scripts/dpkg-shlibdeps.pl:538
  678. #: scripts/Dpkg/Interface/Storable.pm:93
  679. #: scripts/Dpkg/Interface/Storable.pm:121 scripts/Dpkg/Source/Patch.pm:302
  680. #: scripts/Dpkg/Source/Package/V2.pm:601
  681. #, perl-format
  682. msgid "cannot close %s"
  683. msgstr "impossible de fermer %s"
  684. #: scripts/dpkg-genchanges.pl:125
  685. #, fuzzy
  686. #| msgid ""
  687. #| "Options:\n"
  688. #| " -b binary-only build - no source files.\n"
  689. #| " -B arch-specific - no source or arch-indep "
  690. #| "files.\n"
  691. #| " -A only arch-indep - no source or arch-specific "
  692. #| "files.\n"
  693. #| " -S source-only upload.\n"
  694. #| " -c<control-file> get control info from this file.\n"
  695. #| " -l<changelog-file> get per-version info from this file.\n"
  696. #| " -f<files-list-file> get .deb files list from this file.\n"
  697. #| " -v<since-version> include all changes later than version.\n"
  698. #| " -C<changes-description> use change description from this file.\n"
  699. #| " -m<maintainer> override control's maintainer value.\n"
  700. #| " -e<maintainer> override changelog's maintainer value.\n"
  701. #| " -u<upload-files-dir> directory with files (default is '..').\n"
  702. #| " -si (default) src includes orig if new upstream.\n"
  703. #| " -sa source includes orig src.\n"
  704. #| " -sd source is diff and .dsc only.\n"
  705. #| " -q quiet - no informational messages on stderr.\n"
  706. #| " -F<changelog-format> force changelog format.\n"
  707. #| " -V<name>=<value> set a substitution variable.\n"
  708. #| " -T<substvars-file> read variables here, not debian/substvars.\n"
  709. #| " -D<field>=<value> override or add a field and value.\n"
  710. #| " -U<field> remove a field.\n"
  711. #| " -?, --help show this help message.\n"
  712. #| " --version show the version.\n"
  713. msgid ""
  714. "Options:\n"
  715. " -g source and arch-indep build.\n"
  716. " -G source and arch-specific build.\n"
  717. " -b binary-only, no source files.\n"
  718. " -B binary-only, only arch-specific files.\n"
  719. " -A binary-only, only arch-indep files.\n"
  720. " -S source-only, no binary files.\n"
  721. " -c<control-file> get control info from this file.\n"
  722. " -l<changelog-file> get per-version info from this file.\n"
  723. " -f<files-list-file> get .deb files list from this file.\n"
  724. " -v<since-version> include all changes later than version.\n"
  725. " -C<changes-description> use change description from this file.\n"
  726. " -m<maintainer> override control's maintainer value.\n"
  727. " -e<maintainer> override changelog's maintainer value.\n"
  728. " -u<upload-files-dir> directory with files (default is '..').\n"
  729. " -si (default) source includes orig, if new upstream.\n"
  730. " -sa source includes orig, always.\n"
  731. " -sd source is diff and .dsc only.\n"
  732. " -q quiet - no informational messages on stderr.\n"
  733. " -F<changelog-format> force changelog format.\n"
  734. " -V<name>=<value> set a substitution variable.\n"
  735. " -T<substvars-file> read variables here, not debian/substvars.\n"
  736. " -D<field>=<value> override or add a field and value.\n"
  737. " -U<field> remove a field.\n"
  738. " -?, --help show this help message.\n"
  739. " --version show the version.\n"
  740. msgstr ""
  741. "Options :\n"
  742. " -b construction du binaire seul - pas de fichier\n"
  743. " source.\n"
  744. " -B spécifique à une arch. - pas de fichier source\n"
  745. " ou arch-indep.\n"
  746. " -A indépendant d'une arch. - pas de fichier "
  747. "source ou fichiers dépendant de l'arch.\n"
  748. " -S envoi (« upload ») de source seulement.\n"
  749. " -c<fichier_de_contrôle> obtenir les informations de contrôle dans ce\n"
  750. " fichier.\n"
  751. " -l<fichier_changelog> obtenir les informations de changelog dans ce\n"
  752. " fichier.\n"
  753. " -f<fichier_des_fichiers> obtenir la liste des fichiers .deb dans ce\n"
  754. " fichier.\n"
  755. " -v<depuis_version> inclure toutes les modifications depuis cette\n"
  756. " version.\n"
  757. " -C<changesdescription> utiliser la description des changements dans "
  758. "ce\n"
  759. " fichier.\n"
  760. " -m<responsable> remplacer la valeur pour le responsable dans "
  761. "le\n"
  762. " fichier control.\n"
  763. " -e<responsable> remplacer la valeur pour le responsable dans "
  764. "le\n"
  765. " fichier changelog.\n"
  766. " -u<uploadfilesdir> répertoire avec fichiers (par défaut c'est\n"
  767. " « .. »).\n"
  768. " -si (défaut) le source inclut un orig pour debian-revision "
  769. "0\n"
  770. " ou 1.\n"
  771. " -sa le source inclut un orig.\n"
  772. " -sd le source inclut seulement un diff et un .dsc.\n"
  773. " -q silence - pas d'information sur stderr.\n"
  774. " -F<changelogformat> modifier le format du changelog.\n"
  775. " -V<nom>=<valeur> définir une substitution de variable.\n"
  776. " -T<varlistfile> lire les variables dans ce fichier, pas dans\n"
  777. " debian/substvars.\n"
  778. " -D<champ>=<valeur> remplacer ou ajouter une paire champ / valeur.\n"
  779. " -U<champ> supprimer un champ.\n"
  780. " -?, --help afficher ce message d'aide.\n"
  781. " --version afficher la version.\n"
  782. #: scripts/dpkg-genchanges.pl:249
  783. #, perl-format
  784. msgid "the current version (%s) is earlier than the previous one (%s)"
  785. msgstr "La version actuelle (%s) est inférieure à la version précédente (%s)"
  786. #: scripts/dpkg-genchanges.pl:262
  787. msgid "binary build with no binary artifacts found; cannot distribute"
  788. msgstr ""
  789. #: scripts/dpkg-genchanges.pl:313
  790. #, perl-format
  791. msgid "package %s in control file but not in files list"
  792. msgstr ""
  793. "paquet %s dans le fichier de contrôle mais pas dans le fichier de liste des "
  794. "fichiers"
  795. #: scripts/dpkg-genchanges.pl:358
  796. msgid "read changesdescription"
  797. msgstr "lecture de changesdescription"
  798. #: scripts/dpkg-genchanges.pl:364
  799. #, perl-format
  800. msgid "package %s listed in files list but not in control info"
  801. msgstr ""
  802. "paquet %s listé dans le fichier de liste des fichiers mais pas dans le "
  803. "fichier info"
  804. #: scripts/dpkg-genchanges.pl:378
  805. #, perl-format
  806. msgid "missing Section for binary package %s; using '-'"
  807. msgstr "la section du paquet binaire %s manque ; utilisation de « - »"
  808. #: scripts/dpkg-genchanges.pl:381
  809. #, perl-format
  810. msgid "package %s has section %s in control file but %s in files list"
  811. msgstr ""
  812. "le paquet %s a une section %s dans le fichier de contrôle mais une section "
  813. "%s dans le fichier de liste des fichiers"
  814. #: scripts/dpkg-genchanges.pl:389
  815. #, perl-format
  816. msgid "missing Priority for binary package %s; using '-'"
  817. msgstr ""
  818. "le champ « Priority » du paquet binaire %s manque ; utilisation de « - »"
  819. #: scripts/dpkg-genchanges.pl:392
  820. #, perl-format
  821. msgid "package %s has priority %s in control file but %s in files list"
  822. msgstr ""
  823. "le paquet %s a une priorité %s dans le fichier de contrôle mais une priorité "
  824. "%s dans le fichier de liste des fichiers"
  825. #: scripts/dpkg-genchanges.pl:404
  826. msgid "missing Section for source files"
  827. msgstr "il manque la section des fichiers source"
  828. #: scripts/dpkg-genchanges.pl:409
  829. msgid "missing Priority for source files"
  830. msgstr "il manque la priorité des fichiers source"
  831. #: scripts/dpkg-genchanges.pl:417 scripts/dpkg-source.pl:370
  832. #: scripts/Dpkg/Vendor.pm:92
  833. #, perl-format
  834. msgid "%s is empty"
  835. msgstr "%s est vide"
  836. #: scripts/dpkg-genchanges.pl:438
  837. msgid "not including original source code in upload"
  838. msgstr "pas d'inclusion du code source original dans l'envoi (« upload »)"
  839. #: scripts/dpkg-genchanges.pl:445
  840. msgid "ignoring -sd option for native Debian package"
  841. msgstr "option -sd ignorée pour les paquets Debian pure souche"
  842. #: scripts/dpkg-genchanges.pl:447
  843. msgid "including full source code in upload"
  844. msgstr "inclusion du code source original dans l'envoi (« upload »)"
  845. #: scripts/dpkg-genchanges.pl:455
  846. #, fuzzy
  847. #| msgid "%s: arch-specific upload - not including arch-independent packages"
  848. msgid ""
  849. "binary-only arch-specific upload (source code and arch-indep packages not "
  850. "included)"
  851. msgstr ""
  852. "%s : envoi d'un paquet pour une architecture - n'inclut pas de paquet "
  853. "indépendant d'une architecture."
  854. #: scripts/dpkg-genchanges.pl:458
  855. #, fuzzy
  856. #| msgid "%s: arch-indep upload - not including arch-specific packages"
  857. msgid ""
  858. "binary-only arch-indep upload (source code and arch-specific packages not "
  859. "included)"
  860. msgstr ""
  861. "%s : envoi d'un paquet indépendant de l'architecture - n'inclut pas de "
  862. "paquet spécifique d'une architecture."
  863. #: scripts/dpkg-genchanges.pl:461
  864. #, fuzzy
  865. #| msgid "binary-only upload (no source included)"
  866. msgid "binary-only upload (no source code included)"
  867. msgstr "envoi d'un binaire seulement (aucune inclusion de code source)"
  868. #: scripts/dpkg-genchanges.pl:465
  869. msgid "write original source message"
  870. msgstr "écriture du message source original"
  871. #: scripts/dpkg-genchanges.pl:523 scripts/Dpkg/Source/Package.pm:600
  872. #, perl-format
  873. msgid "missing information for critical output field %s"
  874. msgstr "il manque l'information pour l'important champ de sortie %s"
  875. #: scripts/dpkg-genchanges.pl:528 scripts/dpkg-gencontrol.pl:307
  876. #: scripts/dpkg-gencontrol.pl:311 scripts/Dpkg/Source/Package.pm:605
  877. #, perl-format
  878. msgid "missing information for output field %s"
  879. msgstr "information manquante pour le champ de sortie %s"
  880. #: scripts/dpkg-gencontrol.pl:78
  881. msgid ""
  882. "Options:\n"
  883. " -p<package> print control file for package.\n"
  884. " -c<control-file> get control info from this file.\n"
  885. " -l<changelog-file> get per-version info from this file.\n"
  886. " -F<changelog-format> force changelog format.\n"
  887. " -v<force-version> set version of binary package.\n"
  888. " -f<files-list-file> write files here instead of debian/files.\n"
  889. " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
  890. " -n<filename> assume the package filename will be <filename>.\n"
  891. " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  892. "control.\n"
  893. " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  894. " -D<field>=<value> override or add a field and value.\n"
  895. " -U<field> remove a field.\n"
  896. " -V<name>=<value> set a substitution variable.\n"
  897. " -T<substvars-file> read variables here, not debian/substvars.\n"
  898. " -?, --help show this help message.\n"
  899. " --version show the version.\n"
  900. msgstr ""
  901. "Options :\n"
  902. " -p<paquet> afficher le fichier de contrôle du paquet.\n"
  903. " -c<fichier_de_contrôle> obtenir les informations de contrôle dans ce "
  904. "fichier.\n"
  905. " -l<fichier_changelog> obtenir les informations par version de ce "
  906. "fichier.\n"
  907. " -F<changelogformat> forcer le format de changelog.\n"
  908. " -v<forceversion> définir la version du paquet binaire.\n"
  909. " -f<fichier-des-fichiers> écrire la liste des fichiers dans ce fichier, "
  910. "plutôt que dans debian/files.\n"
  911. " -P<packagebuilddir> répertoire temporaire de construction, au lieu "
  912. "de debian/tmp.\n"
  913. " -n<fichier> supposer que le nom du paquet sera <fichier>.\n"
  914. " -O[<fichier>] écrire sur la sortie standard (ou <fichier>), "
  915. "pas .../DEBIAN/control.\n"
  916. " -is, -ip, -isp, -ips options déconseillées, ignorées pour "
  917. "compatibilité.\n"
  918. " -D<champ>=<valeur> remplacer ou ajouter une paire champ et "
  919. "valeur.\n"
  920. " -U<champ> supprimer un champ.\n"
  921. " -V<nom>=<valeur> définir une substitution de variable.\n"
  922. " -T<fichier-substvars> lire les variables dans ce fichier, pas dans "
  923. "debian/substvars.\n"
  924. " -?, --help afficher ce message d'aide.\n"
  925. " --version afficher la version.\n"
  926. #: scripts/dpkg-gencontrol.pl:103 scripts/dpkg-gensymbols.pl:99
  927. #, perl-format
  928. msgid "illegal package name '%s': %s"
  929. msgstr "nom de paquet « %s » non autorisé : %s"
  930. #: scripts/dpkg-gencontrol.pl:119
  931. #, fuzzy, perl-format
  932. #| msgid "-E and -W are deprecated, they are without effect"
  933. msgid "-i%s is deprecated; it is without effect"
  934. msgstr "La gestion de -E et -W est obsolète (ces paramètres sont sans effet)"
  935. #: scripts/dpkg-gencontrol.pl:178
  936. #, perl-format
  937. msgid "package %s not in control info"
  938. msgstr "le paquet %s n'est pas dans le fichier de contrôle"
  939. #: scripts/dpkg-gencontrol.pl:183 scripts/dpkg-gensymbols.pl:158
  940. msgid "no package stanza found in control info"
  941. msgstr ""
  942. "aucune instance de paquet n'a été trouvée dans les informations de contrôle"
  943. #: scripts/dpkg-gencontrol.pl:185 scripts/dpkg-gensymbols.pl:160
  944. #, perl-format
  945. msgid "must specify package since control info has many (%s)"
  946. msgstr ""
  947. "il faut indiquer un paquet car le fichier de contrôle contient plusieurs (%s)"
  948. #: scripts/dpkg-gencontrol.pl:190
  949. #, perl-format
  950. msgid "package %s: "
  951. msgstr "paquet %s : "
  952. #: scripts/dpkg-gencontrol.pl:215
  953. #, perl-format
  954. msgid "`%s' is not a legal architecture string."
  955. msgid_plural "`%s' are not legal architecture strings."
  956. msgstr[0] "« %s » n'est pas une architecture autorisée."
  957. msgstr[1] "« %s » ne sont pas des architectures autorisées."
  958. #: scripts/dpkg-gencontrol.pl:221
  959. #, perl-format
  960. msgid ""
  961. "current host architecture '%s' does not appear in package's architecture "
  962. "list (%s)"
  963. msgstr ""
  964. "l'actuelle architecture hôte « %s » n'apparaît pas dans la liste "
  965. "d'architecture du paquet (%s)"
  966. #: scripts/dpkg-gencontrol.pl:277
  967. #, perl-format
  968. msgid "%s field of package %s: "
  969. msgstr "champ %s du paquet %s : "
  970. #: scripts/dpkg-gencontrol.pl:282 scripts/dpkg-gencontrol.pl:291
  971. #, perl-format
  972. msgid "error occurred while parsing %s field: %s"
  973. msgstr "erreur rencontrée lors de l'analyse du cmap %s : %s"
  974. #: scripts/dpkg-gencontrol.pl:296
  975. #, perl-format
  976. msgid ""
  977. "the %s field contains an arch-specific dependency but the package is "
  978. "architecture all"
  979. msgstr ""
  980. "le champ %s contient une dépendance spécifique d'une architecture mais le "
  981. "paquet utilise « architecture: all »."
  982. #: scripts/dpkg-gencontrol.pl:324
  983. #, perl-format
  984. msgid "%s package with udeb specific field %s"
  985. msgstr "paquet %s avec champ spécifique udeb %s"
  986. #: scripts/dpkg-gencontrol.pl:339 scripts/dpkg-scansources.pl:316
  987. #: scripts/dpkg-shlibdeps.pl:844 scripts/Dpkg/Changelog/Parse.pm:142
  988. #: scripts/Dpkg/IPC.pm:249 scripts/Dpkg/Shlibs/Objdump.pm:184
  989. #, perl-format
  990. msgid "cannot fork for %s"
  991. msgstr "fork impossible pour %s"
  992. #: scripts/dpkg-gencontrol.pl:343
  993. #, perl-format
  994. msgid "chdir for du to `%s'"
  995. msgstr "chdir pour du vers %s"
  996. #: scripts/dpkg-gencontrol.pl:345 scripts/dpkg-shlibdeps.pl:852
  997. #: scripts/Dpkg/IPC.pm:303 scripts/Dpkg/Shlibs/Cppfilt.pm:50
  998. #, perl-format
  999. msgid "unable to execute %s"
  1000. msgstr "impossible d'exécuter %s"
  1001. #: scripts/dpkg-gencontrol.pl:352
  1002. #, perl-format
  1003. msgid "du in `%s'"
  1004. msgstr "du dans %s"
  1005. #: scripts/dpkg-gencontrol.pl:354
  1006. #, perl-format
  1007. msgid "du gave unexpected output `%s'"
  1008. msgstr "résultat inattendu de du %s"
  1009. #: scripts/dpkg-gencontrol.pl:418
  1010. #, perl-format
  1011. msgid "cannot open new output control file `%s'"
  1012. msgstr "impossible d'ouvrir le nouveau fichier de contrôle en sortie %s"
  1013. #: scripts/dpkg-gencontrol.pl:429
  1014. #, perl-format
  1015. msgid "cannot install output control file `%s'"
  1016. msgstr "impossible d'installer le nouveau fichier de contrôle en sortie %s"
  1017. #: scripts/dpkg-gensymbols.pl:65
  1018. msgid ""
  1019. "Options:\n"
  1020. " -p<package> generate symbols file for package.\n"
  1021. " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
  1022. " -e<library> explicitly list libraries to scan.\n"
  1023. " -v<version> version of the packages (defaults to\n"
  1024. " version extracted from debian/changelog).\n"
  1025. " -c<level> compare generated symbols file with the "
  1026. "reference\n"
  1027. " template in the debian directory and fail if\n"
  1028. " difference is too important; level goes from 0 "
  1029. "for\n"
  1030. " no check, to 4 for all checks (default level is "
  1031. "1).\n"
  1032. " -q keep quiet and never emit any warnings or\n"
  1033. " generate a diff between generated symbols\n"
  1034. " file and the reference template.\n"
  1035. " -I<file> force usage of <file> as reference symbols\n"
  1036. " file instead of the default file.\n"
  1037. " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  1038. "symbols.\n"
  1039. " -t write in template mode (tags are not\n"
  1040. " processed and included in output).\n"
  1041. " -V verbose output; write deprecated symbols and "
  1042. "pattern\n"
  1043. " matching symbols as comments (in template mode "
  1044. "only).\n"
  1045. " -a<arch> assume <arch> as host architecture when "
  1046. "processing\n"
  1047. " symbol files.\n"
  1048. " -d display debug information during work.\n"
  1049. " -?, --help show this help message.\n"
  1050. " --version show the version.\n"
  1051. msgstr ""
  1052. "Options :\n"
  1053. " -p<paquet> générer le fichier des symboles pour ce paquet.\n"
  1054. " -P<répconstrpaquet> répertoire de construction temporaire au lieu de\n"
  1055. " debian/tmp.\n"
  1056. " -e<bibliothèque> Afficher explicitement les bibliothèques à\n"
  1057. " rechercher.\n"
  1058. " -v<version> version des paquets (par défaut, la version "
  1059. "extraite de\n"
  1060. " debian/changelog).\n"
  1061. " -c<niveau> comparer les symboles générés avec le fichier de "
  1062. "référence\n"
  1063. " dans le répertoire debian.\n"
  1064. " Échoue si les différences sont trop importantes\n"
  1065. " (le niveau va de 0 pour aucun contrôle à 4 pour "
  1066. "tous\n"
  1067. " les contrôles). Par défaut, le niveau de contrôle "
  1068. "est 1.\n"
  1069. " -q rester silencieux et n'afficher aucun "
  1070. "avertissement ni\n"
  1071. " créer de fichier de différences entre les "
  1072. "symboles\n"
  1073. " créés et le canevas de référence.\n"
  1074. " -I<fichier> forcer l'utilisation de <fichier> comme fichier "
  1075. "de symboles\n"
  1076. " de référence au lieu du fichier par défaut.\n"
  1077. " -O[<fichier>] écrire sur la sortie standard (ou <fichier>) au "
  1078. "lieu de .../DEBIAN/symbols.\n"
  1079. " -O écrire dans la sortie standard au lieu de .../"
  1080. "DEBIAN/symbols.\n"
  1081. " -t écrire en mode modèle (template). Les étiquettes\n"
  1082. " ne sont pas traitées et sont incluses dans la "
  1083. "sortie.\n"
  1084. " -V mode bavard. N'afficher les symboles obsolètes\n"
  1085. " et les symboles correspondant au motif que sous "
  1086. "forme\n"
  1087. " de commentaires (uniquement en mode "
  1088. "« canevas »). \n"
  1089. " -a<arch> utilise <arch> comme architecture pendant le\n"
  1090. " traitement\n"
  1091. " -d afficher les informations de déboguage pendant le "
  1092. "traitement.\n"
  1093. " -?, --help afficher ce message d'aide.\n"
  1094. " --version afficher la version.\n"
  1095. #: scripts/dpkg-gensymbols.pl:115
  1096. #, perl-format
  1097. msgid "pattern '%s' did not match any file"
  1098. msgstr "le motif « %s » ne correspond à aucun fichier"
  1099. #: scripts/dpkg-gensymbols.pl:196
  1100. #, perl-format
  1101. msgid "can't read directory %s: %s"
  1102. msgstr "lecture du répertoire %s impossible : %s"
  1103. #: scripts/dpkg-gensymbols.pl:211
  1104. #, perl-format
  1105. msgid "Dpkg::Shlibs::Objdump couldn't parse %s\n"
  1106. msgstr "Dpkg::Shlibs::Objdump ne peut analyser %s\n"
  1107. #: scripts/dpkg-gensymbols.pl:229
  1108. msgid "<standard output>"
  1109. msgstr "<sortie standard>"
  1110. #: scripts/dpkg-gensymbols.pl:257
  1111. #, perl-format
  1112. msgid "new libraries appeared in the symbols file: %s"
  1113. msgstr "nouvelles bibliothèques apparues dans le fichier des symboles : %s"
  1114. #: scripts/dpkg-gensymbols.pl:262
  1115. #, perl-format
  1116. msgid "some libraries disappeared in the symbols file: %s"
  1117. msgstr "certaines bibliothèques ont disparu du fichier des symboles : %s"
  1118. #: scripts/dpkg-gensymbols.pl:267
  1119. #, perl-format
  1120. msgid "some new symbols appeared in the symbols file: %s"
  1121. msgstr ""
  1122. "certains nouveaux symboles sont apparus dans le fichier des symboles : %s"
  1123. #: scripts/dpkg-gensymbols.pl:268 scripts/dpkg-gensymbols.pl:273
  1124. msgid "see diff output below"
  1125. msgstr "Veuillez consulter le fichier de différences ci-dessous"
  1126. #: scripts/dpkg-gensymbols.pl:272
  1127. #, perl-format
  1128. msgid "some symbols or patterns disappeared in the symbols file: %s"
  1129. msgstr "certains symboles ou motifs ont disparu du fichier des symboles : %s"
  1130. #: scripts/dpkg-gensymbols.pl:293
  1131. msgid "the generated symbols file is empty"
  1132. msgstr "le fichier des symboles généré est vide"
  1133. #: scripts/dpkg-gensymbols.pl:295
  1134. #, perl-format
  1135. msgid "%s doesn't match completely %s"
  1136. msgstr "%s ne correspond pas complètement à %s"
  1137. #: scripts/dpkg-gensymbols.pl:298
  1138. #, perl-format
  1139. msgid "no debian/symbols file used as basis for generating %s"
  1140. msgstr "pas de fichier debian/symbols utilisé comme base pour générer %s"
  1141. #: scripts/dpkg-mergechangelogs.pl:57
  1142. msgid ""
  1143. "This is free software; see the GNU General Public License version 2 or\n"
  1144. "later for copying conditions. There is NO warranty.\n"
  1145. msgstr ""
  1146. "Ce logiciel est un logiciel libre. Voyez la licence « GNU General Public "
  1147. "License »\n"
  1148. "dans la version 2 ou une version supérieure pour les conditions de copie. Il "
  1149. "n'y a PAS de garantie.\n"
  1150. #: scripts/dpkg-mergechangelogs.pl:64
  1151. #, perl-format
  1152. msgid ""
  1153. "Usage: %s [<option>...] <old> <new-a> <new-b> [<out>]\n"
  1154. "\n"
  1155. "Options:\n"
  1156. " -m, --merge-prereleases merge pre-releases together, ignores everything\n"
  1157. " after the last '~' in the version.\n"
  1158. " -?, --help show this help message.\n"
  1159. " --version show the version.\n"
  1160. msgstr ""
  1161. "Syntaxe : %s [<option>...] <ancien> <nouveau-a> <nouveau-b> [<sortie>]\n"
  1162. "\n"
  1163. "Options :\n"
  1164. " -m, --merge-prereleases fusionner les versions préliminaires en\n"
  1165. " ignorant ce qui suit le dernier caractère\n"
  1166. " « ~ » dans la version.\n"
  1167. " -?, --help, -? afficher ce message d'aide.\n"
  1168. " --version afficher la version.\n"
  1169. #: scripts/dpkg-mergechangelogs.pl:90
  1170. msgid "needs at least three arguments"
  1171. msgstr "demande au moins trois paramètres"
  1172. #: scripts/dpkg-mergechangelogs.pl:94
  1173. msgid "file arguments need to exist"
  1174. msgstr "les paramètres du fichier ont besoin d'exister"
  1175. #: scripts/dpkg-name.pl:51
  1176. #, perl-format
  1177. msgid "Usage: %s [<option>...] <file>...\n"
  1178. msgstr "Utilisation : %s [<option>...] <fichier>...\n"
  1179. #: scripts/dpkg-name.pl:53
  1180. msgid ""
  1181. "\n"
  1182. "Options:\n"
  1183. " -a, --no-architecture no architecture part in filename.\n"
  1184. " -o, --overwrite overwrite if file exists.\n"
  1185. " -k, --symlink don't create a new file, but a symlink.\n"
  1186. " -s, --subdir [dir] move file into subdir (use with care).\n"
  1187. " -c, --create-dir create target dir if not there (use with care).\n"
  1188. " -?, --help show this help message.\n"
  1189. " -v, --version show the version.\n"
  1190. "\n"
  1191. "file.deb changes to <package>_<version>_<architecture>.<package_type>\n"
  1192. "according to the 'underscores convention'.\n"
  1193. msgstr ""
  1194. "\n"
  1195. "Options:\n"
  1196. " -a, --no-architecture pas de partie architecture dans le nom de "
  1197. "fichier.\n"
  1198. " -o, --overwrite écraser si le fichier existe.\n"
  1199. " -k, --symlink ne pas créer de nouveau fichier mais un lien "
  1200. "symbolique.\n"
  1201. " -s, --subdir [dir] déplacer le fichier dans u sous-répertoire "
  1202. "(utiliser avec précaution).\n"
  1203. " -c, --create-dir créer le répertoire cible si absent (utiliser "
  1204. "avec précaution).\n"
  1205. " -?, --help afficher ce message d'aide.\n"
  1206. " -v, --version afficher la version.\n"
  1207. "\n"
  1208. "modification de fichier.deb en <paquet>_<version>_<architecture>."
  1209. "<type_paquet>\n"
  1210. "selon la « convention des 'underscores' ».\n"
  1211. #: scripts/dpkg-name.pl:75
  1212. #, perl-format
  1213. msgid "cannot find '%s'"
  1214. msgstr "impossible de trouver %s"
  1215. #: scripts/dpkg-name.pl:98
  1216. #, perl-format
  1217. msgid "binary control file %s"
  1218. msgstr "fichier de contrôle binaire %s"
  1219. #: scripts/dpkg-name.pl:111
  1220. #, perl-format
  1221. msgid "assuming architecture '%s' for '%s'"
  1222. msgstr "architecture supposée '%s' pour '%s'"
  1223. #: scripts/dpkg-name.pl:133
  1224. #, perl-format
  1225. msgid "bad package control information for '%s'"
  1226. msgstr "informations de contrôle incorrectes pour « %s »"
  1227. #: scripts/dpkg-name.pl:149
  1228. #, perl-format
  1229. msgid "assuming section '%s' for '%s'"
  1230. msgstr "section « %s » supposée pour « %s »"
  1231. #: scripts/dpkg-name.pl:174
  1232. #, perl-format
  1233. msgid "no Package field found in '%s', skipping it"
  1234. msgstr "pas de champ Package trouvé dans « %s », ignoré"
  1235. #: scripts/dpkg-name.pl:187
  1236. #, perl-format
  1237. msgid "created directory '%s'"
  1238. msgstr "répertoire « %s » créé"
  1239. #: scripts/dpkg-name.pl:189
  1240. #, perl-format
  1241. msgid "cannot create directory '%s'"
  1242. msgstr "impossible de créer le répertoire « %s »"
  1243. #: scripts/dpkg-name.pl:192
  1244. #, perl-format
  1245. msgid "no such directory '%s', try --create-dir (-c) option"
  1246. msgstr "répertoire « %s » inexistant, essayez l'option --create-dir (-c)"
  1247. #: scripts/dpkg-name.pl:207
  1248. #, perl-format
  1249. msgid "skipping '%s'"
  1250. msgstr "« %s » ignoré"
  1251. #: scripts/dpkg-name.pl:209
  1252. #, perl-format
  1253. msgid "cannot move '%s' to existing file"
  1254. msgstr "impossible de déplacer « %s » vers un fichier existant"
  1255. #: scripts/dpkg-name.pl:211
  1256. #, perl-format
  1257. msgid "moved '%s' to '%s'"
  1258. msgstr "déplacement de « %s » en « %s »"
  1259. #: scripts/dpkg-name.pl:213
  1260. msgid "mkdir can be used to create directory"
  1261. msgstr "impossible d'utiliser mkdir pour créer le répertoire"
  1262. #: scripts/dpkg-name.pl:251
  1263. msgid "need at least a filename"
  1264. msgstr "au moins un nom de fichier est nécessaire"
  1265. #: scripts/dpkg-parsechangelog.pl:48
  1266. msgid ""
  1267. "Options:\n"
  1268. " -l<changelog-file> get per-version info from this file.\n"
  1269. " -F<changelog-format> force changelog format.\n"
  1270. " -L<libdir> look for changelog parsers in <libdir>.\n"
  1271. " -S, --show-field <field> show the values for <field>.\n"
  1272. " -?, --help show this help message.\n"
  1273. " --version show the version."
  1274. msgstr ""
  1275. "Options:\n"
  1276. " -l<fichier-changements> obtenir l'information par version de ce fichier.\n"
  1277. " -F<format-fichier-changements> forcer le format "
  1278. "du journal des changements.\n"
  1279. " -L<rep-bibl> rechercher les analyseurs de journaux \n"
  1280. " dans <rep-bibl>.\n"
  1281. " -S, --show-field <champ> afficher les valeurs pour <champ>\n"
  1282. " -?, --help afficher ce message d'aide.\n"
  1283. " --version afficher la version."
  1284. #: scripts/dpkg-parsechangelog.pl:56
  1285. msgid ""
  1286. "Parser options:\n"
  1287. " --format <output-format> see man page for list of available\n"
  1288. " output formats, defaults to 'dpkg'\n"
  1289. " for compatibility with dpkg-dev\n"
  1290. " --since <version>, include all changes later than version\n"
  1291. " -s<version>, -v<version>\n"
  1292. " --until <version>, include all changes earlier than version\n"
  1293. " -u<version>\n"
  1294. " --from <version>, include all changes equal or later\n"
  1295. " -f<version> than version\n"
  1296. " --to <version>, -t<version> include all changes up to or equal\n"
  1297. " than version\n"
  1298. " --count <number>, include <number> entries from the top\n"
  1299. " -c<number>, -n<number> (or the tail if <number> is lower than 0)\n"
  1300. " --offset <number>, change the starting point for --count,\n"
  1301. " -o<number> counted from the top (or the tail if\n"
  1302. " <number> is lower than 0)\n"
  1303. " --all include all changes\n"
  1304. msgstr ""
  1305. "Options de l'analyseur :\n"
  1306. " --format <format_sortie> consulter la page de manuel pour\n"
  1307. " voir la liste\n"
  1308. " des formats de sortie disponibles. Valeur\n"
  1309. " par défaut : « dpkg » pour compatibilité\n"
  1310. " avec « dpkg-dev »\n"
  1311. " --since, -s, -v <version> inclure toutes les modifications depuis\n"
  1312. " cette version\n"
  1313. " --until, -u <version> inclure toutes les modifications "
  1314. "antérieures\n"
  1315. " à cette version\n"
  1316. " --from, -f <version> inclure toutes les modifications depuis\n"
  1317. " cette version incluse\n"
  1318. " --to, -t <version> inclure toutes les modifications "
  1319. "antérieures\n"
  1320. " à cette version incluse\n"
  1321. " --count, -c, -n <nombre> inclure <nombre> entrées depuis le début\n"
  1322. " (ou bien les dernières si <nombre> est "
  1323. "inférieur à 0)\n"
  1324. " --offset, -o <number> modifier le point de démarrage de --count,\n"
  1325. " à partir du début (ou de la fin si\n"
  1326. " <nombre> est inférieur à 0)\n"
  1327. " --all inclure toutes les modifications\n"
  1328. #: scripts/dpkg-parsechangelog.pl:124
  1329. msgid "takes no non-option arguments"
  1330. msgstr "ne prend pas de paramètre sans option"
  1331. #: scripts/dpkg-scanpackages.pl:73
  1332. #, perl-format
  1333. msgid ""
  1334. "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  1335. "Packages\n"
  1336. "\n"
  1337. "Options:\n"
  1338. " -t, --type <type> scan for <type> packages (default is 'deb').\n"
  1339. " -a, --arch <arch> architecture to scan for.\n"
  1340. " -m, --multiversion allow multiple versions of a single package.\n"
  1341. " -e, --extra-override <file>\n"
  1342. " use extra override file.\n"
  1343. " -M, --medium <medium> add X-Medium field for dselect multicd access "
  1344. "method\n"
  1345. " -?, --help show this help message.\n"
  1346. " --version show the version.\n"
  1347. msgstr ""
  1348. "Syntaxe : %s [<option> ...] <rep-de-binaires> <fichier-d'override> [<chemin-"
  1349. "à-préfixer>] >\n"
  1350. "Packages\n"
  1351. "\n"
  1352. "Options :\n"
  1353. " -t, --type <type> rechercher les paquets de <type> (par défaut, "
  1354. "« deb »).\n"
  1355. " -a, --arch <arch> architecture à rechercher.\n"
  1356. " -m, --multiversion permettre plusieurs versions d'un paquet.\n"
  1357. " -e, --extra-override <fichier\n"
  1358. " utiliser un fichier supplémentaire "
  1359. "d'« override ».\n"
  1360. " -M, --medium <medium> ajouter le champ X-Medium pour la méthode d'accès\n"
  1361. " multicd de dselect.\n"
  1362. " -?, --help afficher ce message d'aide.\n"
  1363. " --version afficher la version.\n"
  1364. #: scripts/dpkg-scanpackages.pl:112
  1365. #, perl-format
  1366. msgid " %s (package says %s, not %s)"
  1367. msgstr " %s (le paquet dit %s, pas %s)"
  1368. #: scripts/dpkg-scanpackages.pl:120
  1369. #, perl-format
  1370. msgid "unconditional maintainer override for %s"
  1371. msgstr "annulation inconditionnelle du responsable pour %s"
  1372. #: scripts/dpkg-scanpackages.pl:161 scripts/dpkg-scansources.pl:304
  1373. msgid "one to three arguments expected"
  1374. msgstr "de un à trois paramètres sont attendus"
  1375. #: scripts/dpkg-scanpackages.pl:179
  1376. #, perl-format
  1377. msgid "binary dir %s not found"
  1378. msgstr "répertoire de binaires %s non trouvé"
  1379. #: scripts/dpkg-scanpackages.pl:182
  1380. #, perl-format
  1381. msgid "override file %s not found"
  1382. msgstr "fichier override %s non trouvé"
  1383. #: scripts/dpkg-scanpackages.pl:189
  1384. #, perl-format
  1385. msgid "couldn't open %s for reading"
  1386. msgstr "lecture de %s impossible"
  1387. #: scripts/dpkg-scanpackages.pl:199
  1388. #, perl-format
  1389. msgid "couldn't parse control information from %s"
  1390. msgstr "impossible d'analyser les informations de contrôle de %s"
  1391. #: scripts/dpkg-scanpackages.pl:202
  1392. #, perl-format
  1393. msgid "`dpkg-deb -I %s control' exited with %d, skipping package"
  1394. msgstr "« dpkg-deb -I %s control », sortie avec %d, paquet sauté"
  1395. #: scripts/dpkg-scanpackages.pl:208
  1396. #, perl-format
  1397. msgid "no Package field in control file of %s"
  1398. msgstr "pas de champ Package dans le fichier de contrôle de %s"
  1399. #: scripts/dpkg-scanpackages.pl:216
  1400. #, perl-format
  1401. msgid "package %s (filename %s) is repeat but newer version;"
  1402. msgstr "le paquet %s (nom %s) est répété, mais la version est plus récente"
  1403. #: scripts/dpkg-scanpackages.pl:218
  1404. #, perl-format
  1405. msgid "used that one and ignored data from %s!"
  1406. msgstr "celui-ci a été ignoré et les données de %s ont été ignorées !"
  1407. #: scripts/dpkg-scanpackages.pl:222
  1408. #, perl-format
  1409. msgid "package %s (filename %s) is repeat;"
  1410. msgstr "le paquet %s (nom %s) est répété ;"
  1411. #: scripts/dpkg-scanpackages.pl:223
  1412. #, perl-format
  1413. msgid "ignored that one and using data from %s!"
  1414. msgstr "celui-ci a été ignoré et les données de %s ont été utilisées !"
  1415. #: scripts/dpkg-scanpackages.pl:229
  1416. #, perl-format
  1417. msgid "package %s (filename %s) has Filename field!"
  1418. msgstr "le paquet %s (nom %s) a un champ Filename !"
  1419. #: scripts/dpkg-scanpackages.pl:261
  1420. msgid "failed when writing stdout"
  1421. msgstr "échec de l'écriture sur la sortie standard"
  1422. #: scripts/dpkg-scanpackages.pl:265
  1423. msgid "couldn't close stdout"
  1424. msgstr "impossible de fermer la sortie standard"
  1425. #: scripts/dpkg-scanpackages.pl:268
  1426. msgid "Packages in override file with incorrect old maintainer value:"
  1427. msgstr ""
  1428. "Paquets dans le fichier d'override avec valeur incorrecte pour l'ancien "
  1429. "responsable :"
  1430. #: scripts/dpkg-scanpackages.pl:272
  1431. msgid "Packages specifying same maintainer as override file:"
  1432. msgstr "Paquets indiquant le même responsable que le fichier d'override :"
  1433. #: scripts/dpkg-scanpackages.pl:276
  1434. msgid "Packages in archive but missing from override file:"
  1435. msgstr "Paquets dans l'archive mais pas dans le fichier d'override :"
  1436. #: scripts/dpkg-scanpackages.pl:280
  1437. msgid "Packages in override file but not in archive:"
  1438. msgstr "Paquets dans le fichier d'override mais pas dans l'archive :"
  1439. #: scripts/dpkg-scanpackages.pl:284
  1440. #, perl-format
  1441. msgid "Wrote %s entries to output Packages file."
  1442. msgstr "%s entrées écrites dans le fichier Packages."
  1443. #: scripts/dpkg-scansources.pl:85
  1444. #, perl-format
  1445. msgid ""
  1446. "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  1447. "Sources\n"
  1448. "\n"
  1449. "Options:\n"
  1450. " -n, --no-sort don't sort by package before outputting.\n"
  1451. " -e, --extra-override <file>\n"
  1452. " use extra override file.\n"
  1453. " -s, --source-override <file>\n"
  1454. " use file for additional source overrides, "
  1455. "default\n"
  1456. " is regular override file with .src appended.\n"
  1457. " --debug turn debugging on.\n"
  1458. " -?, --help show this help message.\n"
  1459. " --version show the version.\n"
  1460. "\n"
  1461. "See the man page for the full documentation.\n"
  1462. msgstr ""
  1463. "Syntaxe : %s [<option>...] <rep-de-binaires> <fichier-d'override> [<chemin-à-"
  1464. "préfixer>] >\n"
  1465. "Sources\n"
  1466. "\n"
  1467. "Options :\n"
  1468. " -n, --no-sort ne pas trier par paquet avant affichage\n"
  1469. " -e, --extra-override <fichier>\n"
  1470. " utiliser un fichier supplémentaire d'override.\n"
  1471. " -s, --source-override <fichier>\n"
  1472. " utiliser fichier pour d'autres annulations,\n"
  1473. " par défaut c'est le fichier d'override normal\n"
  1474. " qui est utilisé.\n"
  1475. " --debug activer le débogage.\n"
  1476. " -?, --help afficher ce message d'aide.\n"
  1477. " --version afficher la version.\n"
  1478. #: scripts/dpkg-scansources.pl:104
  1479. #, perl-format
  1480. msgid "error closing %s ($? %d, $! `%s')"
  1481. msgstr "erreur en fermant %s ($? %d, $! `%s')"
  1482. #: scripts/dpkg-scansources.pl:120
  1483. #, perl-format
  1484. msgid "invalid override entry at line %d (%d fields)"
  1485. msgstr "entrée invalide, ligne %d (champs %d)"
  1486. #: scripts/dpkg-scansources.pl:126
  1487. #, perl-format
  1488. msgid "ignoring duplicate override entry for %s at line %d"
  1489. msgstr "entrée en double %s ignorée, ligne %d"
  1490. #: scripts/dpkg-scansources.pl:131
  1491. #, perl-format
  1492. msgid "ignoring override entry for %s, invalid priority %s"
  1493. msgstr "entrée en double %s ignorée, priorité %s non valable"
  1494. #: scripts/dpkg-scansources.pl:185
  1495. #, perl-format
  1496. msgid "invalid source override entry at line %d (%d fields)"
  1497. msgstr ""
  1498. "entrée non valable dans le fichier d'override pour les sources, ligne %d "
  1499. "(champs %d)"
  1500. #: scripts/dpkg-scansources.pl:193
  1501. #, perl-format
  1502. msgid "ignoring duplicate source override entry for %s at line %d"
  1503. msgstr ""
  1504. "entrée en double %s ignorée dans le fichier d'override pour les sources, "
  1505. "ligne %d"
  1506. #: scripts/dpkg-scansources.pl:243
  1507. #, perl-format
  1508. msgid "no binary packages specified in %s"
  1509. msgstr "pas de paquet binaire indiqué dans %s"
  1510. #: scripts/dpkg-shlibdeps.pl:105
  1511. #, perl-format
  1512. msgid "administrative directory '%s' does not exist"
  1513. msgstr "répertoire d'administration %s n'existe pas"
  1514. #: scripts/dpkg-shlibdeps.pl:111
  1515. #, perl-format
  1516. msgid "unrecognized dependency field '%s'"
  1517. msgstr "champ de dépendance non reconnu « %s »"
  1518. #: scripts/dpkg-shlibdeps.pl:145
  1519. msgid "need at least one executable"
  1520. msgstr "au moins un exécutable est nécessaire"
  1521. #: scripts/dpkg-shlibdeps.pl:188
  1522. #, perl-format
  1523. msgid "couldn't find library %s needed by %s (ELF format: '%s'; RPATH: '%s')"
  1524. msgstr ""
  1525. "impossible de trouver la bibliothèque %s utilisée par %s (format "
  1526. "ELF : « %s »; RPATH : « %s »)"
  1527. #: scripts/dpkg-shlibdeps.pl:272
  1528. #, perl-format
  1529. msgid "%s has an unexpected SONAME (%s)"
  1530. msgstr "%s utilise un SONAME inattendu (%s)"
  1531. #: scripts/dpkg-shlibdeps.pl:293
  1532. #, fuzzy, perl-format
  1533. #| msgid "no dependency information found for %s (used by %s)"
  1534. msgid ""
  1535. "no dependency information found for %s (used by %s)\\nHint: check if the "
  1536. "library actually comes from a package."
  1537. msgstr "pas d'information de dépendance trouvée pour %s (utilisé par %s)"
  1538. #: scripts/dpkg-shlibdeps.pl:326
  1539. msgid ""
  1540. "binaries to analyze should already be installed in their package's directory"
  1541. msgstr ""
  1542. "les binaires à analyser devraient déjà être présents dans le répertoire de "
  1543. "leur paquet"
  1544. #: scripts/dpkg-shlibdeps.pl:369
  1545. #, perl-format
  1546. msgid "symbol %s used by %s found in none of the libraries"
  1547. msgstr "symbole %s utilisé par %s non trouvé dans les bibliothèques"
  1548. #: scripts/dpkg-shlibdeps.pl:372
  1549. #, perl-format
  1550. msgid ""
  1551. "%s contains an unresolvable reference to symbol %s: it's probably a plugin"
  1552. msgstr ""
  1553. "%s contient une référence au symbole %s qui ne peut être résolue : il peut "
  1554. "s'agir d'un greffon (« plugin »)"
  1555. #: scripts/dpkg-shlibdeps.pl:394
  1556. #, perl-format
  1557. msgid "%d similar warning has been skipped (use -v to see it)"
  1558. msgid_plural ""
  1559. "%d other similar warnings have been skipped (use -v to see them all)"
  1560. msgstr[0] ""
  1561. "%d autre avertissement semblable a été sauté (utiliser -v pour les voir tous)"
  1562. msgstr[1] ""
  1563. "%d autres avertissements semblables ont été sautés (utiliser -v pour les "
  1564. "voir tous)."
  1565. #: scripts/dpkg-shlibdeps.pl:421
  1566. #, perl-format
  1567. msgid ""
  1568. "%s should not be linked against %s (it uses none of the library's symbols)"
  1569. msgstr ""
  1570. "%s ne devrait pas être lié avec %s (il n'utilise aucun des symboles de la "
  1571. "bibliothèque)"
  1572. #: scripts/dpkg-shlibdeps.pl:434
  1573. #, perl-format
  1574. msgid ""
  1575. "package could avoid a useless dependency if %s was not linked against %s (it "
  1576. "uses none of the library's symbols)"
  1577. msgid_plural ""
  1578. "package could avoid a useless dependency if %s were not linked against %s "
  1579. "(they use none of the library's symbols)"
  1580. msgstr[0] ""
  1581. "la dépendance pourrait être évitée si « %s » n'y était pas lié avec %s sans "
  1582. "nécessité (il n'utilise aucun des symboles de la bibliothèque)"
  1583. msgstr[1] ""
  1584. "la dépendance pourrait être évitée si « %s » n'y étaient pas lié avec %s "
  1585. "sans nécessité (ils n'utilisent aucun des symboles de la bibliothèque)."
  1586. #: scripts/dpkg-shlibdeps.pl:445
  1587. msgid ""
  1588. "Note: libraries are not searched in other binary packages that do not have "
  1589. "any shlibs or symbols file.\n"
  1590. "To help dpkg-shlibdeps find private libraries, you might need to use -l."
  1591. msgstr ""
  1592. "Note : les bibliothèques ne sont pas recherchées dans d'autres paquets "
  1593. "binaires qui n'ont pas de fichier shlibs ou de fichier de symboles.\n"
  1594. "Pour aider dpkg-shlibdeps à trouver des bibliothèques privées, vous pourriez "
  1595. "avoir besoin d'utiliser -l."
  1596. #: scripts/dpkg-shlibdeps.pl:448
  1597. msgid "cannot continue due to the error above"
  1598. msgid_plural "cannot continue due to the errors listed above"
  1599. msgstr[0] "impossible de continuer à causer de l'erreur ci-dessus"
  1600. msgstr[1] "Impossible de continuer à cause des erreurs ci-dessus"
  1601. #: scripts/dpkg-shlibdeps.pl:459
  1602. #, perl-format
  1603. msgid "open new substvars file `%s'"
  1604. msgstr "ouverture du nouveau fichier substvars %s"
  1605. #: scripts/dpkg-shlibdeps.pl:462
  1606. #, perl-format
  1607. msgid "open old varlist file `%s' for reading"
  1608. msgstr "lecture de l'ancien fichier varlist %s"
  1609. #: scripts/dpkg-shlibdeps.pl:466
  1610. #, perl-format
  1611. msgid "copy old entry to new varlist file `%s'"
  1612. msgstr "copie d'une ancienne entrée dans le nouveau fichier varlist %s"
  1613. #: scripts/dpkg-shlibdeps.pl:530
  1614. #, perl-format
  1615. msgid "invalid dependency got generated: %s"
  1616. msgstr "Une dépendance non valable a été créée : %s"
  1617. #: scripts/dpkg-shlibdeps.pl:540
  1618. #, perl-format
  1619. msgid "install new varlist file `%s'"
  1620. msgstr "installation du nouveau fichier varlist %s"
  1621. #: scripts/dpkg-shlibdeps.pl:558
  1622. #, perl-format
  1623. msgid "Usage: %s [<option>...] <executable>|-e<executable> [<option>...]"
  1624. msgstr "Usage: %s [<option>...] <exécutable>|-e<exécutable> [<option>...]"
  1625. #: scripts/dpkg-shlibdeps.pl:560
  1626. msgid ""
  1627. "Positional options (order is significant):\n"
  1628. " <executable> include dependencies for <executable>,\n"
  1629. " -e<executable> (use -e if <executable> starts with '-')\n"
  1630. " -d<dependency-field> next executable(s) set shlibs:<dependency-field>."
  1631. msgstr ""
  1632. "Options de positionnement (l'ordre est significatif) :\n"
  1633. " <exécutable> inclure les dépendances pour <executable>,\n"
  1634. " -e<exécutable> (utiliser -e if <exécutable> commence par « - »)\n"
  1635. " -d<champ-dépendance> le prochain exécutable positionne shlibs:<champ-"
  1636. "dépendance>."
  1637. #: scripts/dpkg-shlibdeps.pl:565
  1638. msgid ""
  1639. "Options:\n"
  1640. " -l<library-dir> add directory to private shared library search "
  1641. "list.\n"
  1642. " -p<varname-prefix> set <varname-prefix>:* instead of shlibs:*.\n"
  1643. " -O[<file>] write variable settings to stdout (or <file>).\n"
  1644. " -L<local-shlibs-file> shlibs override file, not debian/shlibs.local.\n"
  1645. " -T<substvars-file> update variables here, not debian/substvars.\n"
  1646. " -t<type> set package type (default is deb).\n"
  1647. " -x<package> exclude package from the generated dependencies.\n"
  1648. " -S<package-build-dir> search needed libraries in the given\n"
  1649. " package build directory first.\n"
  1650. " -v enable verbose mode (can be used multiple "
  1651. "times).\n"
  1652. " --ignore-missing-info don't fail if dependency information can't be "
  1653. "found.\n"
  1654. " --warnings=<value> define set of active warnings (see manual page).\n"
  1655. " --admindir=<directory> change the administrative directory.\n"
  1656. " -?, --help show this help message.\n"
  1657. " --version show the version."
  1658. msgstr ""
  1659. "Options :\n"
  1660. " -l<rep-biblio> ajouter le répertoire à la recherche de la "
  1661. "bibliothèque partagée privée -p<varnameprefix> définir "
  1662. "<varnameprefix>:* au lieu de shlibs:*.\n"
  1663. " -O[<fichier>] écrire les paramètre de la variable sur la "
  1664. "sortie standard (ou <fichier>).\n"
  1665. " -L<fichier-shlibs-local> fichier d'override pour shlibs, pas debian/"
  1666. "shlibs.local.\n"
  1667. " -T<fichier-substvars> mettre à jour les variables ici, pas debian/"
  1668. "substvars.\n"
  1669. " -t<type> définir le type de paquet (.deb par défaut).\n"
  1670. " -x<paquet> exclure le paquet des dépendances générées.\n"
  1671. " -S<paquet-build-dir> rechercher les bibliothèques nécessaires\n"
  1672. " dans le répertoire de construction indiqué\n"
  1673. " en premier lieu.\n"
  1674. " -v activer le mode bavard (peut être utilisé\n"
  1675. " plusieurs fois).\n"
  1676. " --ignore-missing-info ne pas échouer si les informations de\n"
  1677. " dépendance ne sont pas trouvées.\n"
  1678. " --warnings=<valeur> définir le jeu d'avertissements actifs\n"
  1679. " (voir la page de manuel).\n"
  1680. " --admindir=<répertoire> changer de répertoire d'administration.\n"
  1681. " -?, --help afficher ce message d'aide.\n"
  1682. " --version afficher la version."
  1683. #: scripts/dpkg-shlibdeps.pl:582
  1684. #, perl-format
  1685. msgid ""
  1686. "Dependency fields recognized are:\n"
  1687. " %s\n"
  1688. msgstr ""
  1689. "Champs de dépendance reconnus :\n"
  1690. " %s\n"
  1691. #: scripts/dpkg-shlibdeps.pl:686
  1692. #, perl-format
  1693. msgid "can't extract name and version from library name '%s'"
  1694. msgstr ""
  1695. "impossible d'extraire le nom et la version du nom de la bibliothèque « %s »"
  1696. #: scripts/dpkg-shlibdeps.pl:692
  1697. #, perl-format
  1698. msgid "unable to open shared libs info file `%s'"
  1699. msgstr ""
  1700. "impossible d'ouvrir le fichier d'info sur les bibliothèques partagées %s"
  1701. #: scripts/dpkg-shlibdeps.pl:698
  1702. #, perl-format
  1703. msgid "shared libs info file `%s' line %d: bad line `%s'"
  1704. msgstr ""
  1705. "fichier info sur les bibliothèques partagées « %s », ligne %d : ligne mal "
  1706. "formée « %s »"
  1707. #: scripts/dpkg-shlibdeps.pl:757 scripts/dpkg-shlibdeps.pl:849
  1708. #, perl-format
  1709. msgid "cannot open file %s"
  1710. msgstr "impossible d'ouvrir le fichier %s"
  1711. #: scripts/dpkg-shlibdeps.pl:791
  1712. #, perl-format
  1713. msgid ""
  1714. "$ORIGIN is used in RPATH of %s and the corresponding directory could not be "
  1715. "identified due to lack of DEBIAN sub-directory in the root of package's "
  1716. "build tree"
  1717. msgstr ""
  1718. "$ORIGIN est utilisé dans le RPATH de %s et le répertoire correspondant n'a "
  1719. "pas pu être identifié en raison de l'absence de sous-répertoire DEBIAN dans "
  1720. "la racine de l'arborescence de construction du paquet"
  1721. #: scripts/dpkg-shlibdeps.pl:857
  1722. msgid "diversions involved - output may be incorrect"
  1723. msgstr "détournements en jeu, la sortie peut être incorrecte"
  1724. #: scripts/dpkg-shlibdeps.pl:859
  1725. msgid "write diversion info to stderr"
  1726. msgstr "info sur le détournement envoyée sur stderr"
  1727. #: scripts/dpkg-shlibdeps.pl:864
  1728. #, perl-format
  1729. msgid "unknown output from dpkg --search: '%s'"
  1730. msgstr "résultat de dpkg --search inconnu : %s"
  1731. #: scripts/dpkg-source.pl:103
  1732. #, perl-format
  1733. msgid "%s needs a directory"
  1734. msgstr "répertoire nécessaire pour %s"
  1735. #: scripts/dpkg-source.pl:109
  1736. #, perl-format
  1737. msgid "cannot stat directory %s"
  1738. msgstr "« stat » du répertoire %s impossible"
  1739. #: scripts/dpkg-source.pl:111
  1740. #, perl-format
  1741. msgid "directory argument %s is not a directory"
  1742. msgstr "paramètre répertoire %s n'est pas un répertoire"
  1743. #: scripts/dpkg-source.pl:116 scripts/Dpkg/Source/Package/V2.pm:462
  1744. #: scripts/Dpkg/Source/Package/V2.pm:464 scripts/Dpkg/Source/Package/V2.pm:466
  1745. #: scripts/Dpkg/Source/Package/V2.pm:468
  1746. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:113
  1747. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:137
  1748. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:203
  1749. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:209
  1750. #: scripts/Dpkg/Source/Package/V3/Git.pm:106
  1751. #: scripts/Dpkg/Source/Package/V3/Git.pm:146
  1752. #: scripts/Dpkg/Source/Package/V3/Git.pm:158
  1753. #: scripts/Dpkg/Source/Package/V3/Git.pm:176
  1754. #, perl-format
  1755. msgid "unable to chdir to `%s'"
  1756. msgstr "impossible de changer de répertoire vers « %s »"
  1757. #: scripts/dpkg-source.pl:134
  1758. #, perl-format
  1759. msgid "using options from %s: %s"
  1760. msgstr "utilisation des options depuis %s : %s"
  1761. #: scripts/dpkg-source.pl:148 scripts/Dpkg/Compression.pm:177
  1762. #, perl-format
  1763. msgid "%s is not a supported compression"
  1764. msgstr "%s n'est pas une compression gérée"
  1765. #: scripts/dpkg-source.pl:154 scripts/Dpkg/Compression.pm:206
  1766. #: scripts/Dpkg/Compression/Process.pm:88
  1767. #, perl-format
  1768. msgid "%s is not a compression level"
  1769. msgstr "%s n'est pas un niveau de compression"
  1770. #: scripts/dpkg-source.pl:213
  1771. msgid ""
  1772. "need a command (-x, -b, --before-build, --after-build, --print-format, --"
  1773. "commit)"
  1774. msgstr ""
  1775. "a besoin d'une commande (-x, -b, --before-build, --after-build, --print-"
  1776. "format, --commit)"
  1777. #: scripts/dpkg-source.pl:237
  1778. #, perl-format
  1779. msgid "%s doesn't contain any information about the source package"
  1780. msgstr "%s ne contient pas d'information sur le paquet source"
  1781. #: scripts/dpkg-source.pl:291
  1782. #, perl-format
  1783. msgid "`%s' is not a legal architecture string"
  1784. msgstr "« %s » n'est pas une architecture autorisée"
  1785. #: scripts/dpkg-source.pl:294
  1786. #, perl-format
  1787. msgid "architecture %s only allowed on its own (list for package %s is `%s')"
  1788. msgstr ""
  1789. "architecture %s seulement autorisée toute seule (la liste pour le paquet %s "
  1790. "est « %s »)"
  1791. #: scripts/dpkg-source.pl:309
  1792. #, perl-format
  1793. msgid "%s doesn't list any binary package"
  1794. msgstr "%s ne comporte aucun paquet binaire"
  1795. #: scripts/dpkg-source.pl:348
  1796. msgid "building source for a binary-only release"
  1797. msgstr "construction des sources pour une publication binaire seule"
  1798. #: scripts/dpkg-source.pl:367 scripts/Dpkg/BuildFlags.pm:316
  1799. #: scripts/Dpkg/Compression/FileHandle.pm:422
  1800. #: scripts/Dpkg/Interface/Storable.pm:89 scripts/Dpkg/Shlibs/Objdump.pm:125
  1801. #: scripts/Dpkg/Source/Package/V2.pm:282 scripts/Dpkg/Source/Package/V2.pm:554
  1802. #: scripts/Dpkg/Source/Package/V2.pm:709 scripts/Dpkg/Source/Quilt.pm:232
  1803. #: scripts/Dpkg/Source/Quilt.pm:289 scripts/Dpkg/Source/Quilt.pm:323
  1804. #, perl-format
  1805. msgid "cannot read %s"
  1806. msgstr "impossible de lire %s"
  1807. #: scripts/dpkg-source.pl:374
  1808. #, perl-format
  1809. msgid "no source format specified in %s, see dpkg-source(1)"
  1810. msgstr "aucun format source indiqué dans %s, voir dpkg-source(1)"
  1811. #: scripts/dpkg-source.pl:402
  1812. #, perl-format
  1813. msgid "can't build with source format '%s': %s"
  1814. msgstr "impossible de construire avec le format source « %s » : %s"
  1815. #: scripts/dpkg-source.pl:405
  1816. #, perl-format
  1817. msgid "using source format `%s'"
  1818. msgstr "utilisation du format source « %s »"
  1819. #: scripts/dpkg-source.pl:412 scripts/Dpkg/Source/Package/V1.pm:315
  1820. #: scripts/Dpkg/Source/Package/V1.pm:360 scripts/Dpkg/Source/Package/V2.pm:533
  1821. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:156
  1822. #: scripts/Dpkg/Source/Package/V3/Native.pm:92
  1823. #, perl-format
  1824. msgid "building %s in %s"
  1825. msgstr "construction de %s dans %s"
  1826. #: scripts/dpkg-source.pl:423
  1827. msgid "-x needs at least one argument, the .dsc"
  1828. msgstr "-x demande au moins un paramètre, le fichier .dsc"
  1829. #: scripts/dpkg-source.pl:426
  1830. msgid "-x takes no more than two arguments"
  1831. msgstr "-x ne prend pas plus de deux paramètres"
  1832. #: scripts/dpkg-source.pl:430
  1833. msgid "-x needs the .dsc file as first argument, not a directory"
  1834. msgstr "-x demande le fichier .dsc comme premier paramètre, pas un répertoire"
  1835. #: scripts/dpkg-source.pl:446
  1836. #, perl-format
  1837. msgid "unpack target exists: %s"
  1838. msgstr "cible non compressée existe : %s"
  1839. #: scripts/dpkg-source.pl:456
  1840. #, perl-format
  1841. msgid "%s doesn't contain a valid OpenPGP signature"
  1842. msgstr "%s ne contient pas de signature OpenPGP valable"
  1843. #: scripts/dpkg-source.pl:458
  1844. #, perl-format
  1845. msgid "extracting unsigned source package (%s)"
  1846. msgstr "extraction d'un paquet source non signé (%s)"
  1847. #: scripts/dpkg-source.pl:465
  1848. #, perl-format
  1849. msgid "extracting %s in %s"
  1850. msgstr "extraction de %s dans %s"
  1851. #: scripts/dpkg-source.pl:480
  1852. #, perl-format
  1853. msgid "%s field contains value %s, but no tests control file %s"
  1854. msgstr ""
  1855. #: scripts/dpkg-source.pl:489
  1856. msgid "only one of -x, -b or --print-format allowed, and only once"
  1857. msgstr ""
  1858. "une seule option -x, -b ou --print-format est autorisée, et une seule fois"
  1859. #: scripts/dpkg-source.pl:505
  1860. #, perl-format
  1861. msgid "Usage: %s [<option>...] <command>"
  1862. msgstr "Usage: %s [<option>...] <commande>"
  1863. #: scripts/dpkg-source.pl:507
  1864. msgid ""
  1865. "Commands:\n"
  1866. " -x <filename>.dsc [<output-dir>]\n"
  1867. " extract source package.\n"
  1868. " -b <dir> build source package.\n"
  1869. " --print-format <dir> print the source format that would be\n"
  1870. " used to build the source package.\n"
  1871. " --commit [<dir> [<patch-name>]]\n"
  1872. " store upstream changes in a new patch."
  1873. msgstr ""
  1874. "Commandes :\n"
  1875. " -x <fichier>.dsc [<rep_sortie]\n"
  1876. " extraire le paquet source.\n"
  1877. " -b <rep>\n"
  1878. " construire le paquet source.\n"
  1879. " --print-format <rep> afficher le format source qui serait\n"
  1880. " utilisé pour construire le paquet source.\n"
  1881. " --commit [<rep> [nom-de-correctif]]\n"
  1882. " conserve les modifications amont dans\n"
  1883. " un nouveau correctif."
  1884. #: scripts/dpkg-source.pl:516
  1885. #, fuzzy, perl-format
  1886. #| msgid ""
  1887. #| "Build options:\n"
  1888. #| " -c<control-file> get control info from this file.\n"
  1889. #| " -l<changelog-file> get per-version info from this file.\n"
  1890. #| " -F<changelog-format> force changelog format.\n"
  1891. #| " -V<name>=<value> set a substitution variable.\n"
  1892. #| " -T<substvars-file> read variables here.\n"
  1893. #| " -D<field>=<value> override or add a .dsc field and value.\n"
  1894. #| " -U<field> remove a field.\n"
  1895. #| " -q quiet mode.\n"
  1896. #| " -i[<regex>] filter out files to ignore diffs of\n"
  1897. #| " (defaults to: '%s').\n"
  1898. #| " -I[<pattern>] filter out files when building tarballs\n"
  1899. #| " (defaults to: %s).\n"
  1900. #| " -Z<compression> select compression to use (defaults to '%s',\n"
  1901. #| " supported are: %s).\n"
  1902. #| " -z<level> compression level to use (defaults to '%d',\n"
  1903. #| " supported are: '1'-'9', 'best', 'fast')"
  1904. msgid ""
  1905. "Build options:\n"
  1906. " -c<control-file> get control info from this file.\n"
  1907. " -l<changelog-file> get per-version info from this file.\n"
  1908. " -F<changelog-format> force changelog format.\n"
  1909. " --format=<source-format> set the format to be used for the source "
  1910. "package.\n"
  1911. " -V<name>=<value> set a substitution variable.\n"
  1912. " -T<substvars-file> read variables here.\n"
  1913. " -D<field>=<value> override or add a .dsc field and value.\n"
  1914. " -U<field> remove a field.\n"
  1915. " -q quiet mode.\n"
  1916. " -i[<regex>] filter out files to ignore diffs of\n"
  1917. " (defaults to: '%s').\n"
  1918. " -I[<pattern>] filter out files when building tarballs\n"
  1919. " (defaults to: %s).\n"
  1920. " -Z<compression> select compression to use (defaults to '%s',\n"
  1921. " supported are: %s).\n"
  1922. " -z<level> compression level to use (defaults to '%d',\n"
  1923. " supported are: '1'-'9', 'best', 'fast')"
  1924. msgstr ""
  1925. "Options de construction :\n"
  1926. " -c<fichier_de_contrôle> obtenir les informations de contrôle de ce "
  1927. "fichier.\n"
  1928. " -l<fichier_changelog> obtenir les informations par version de ce "
  1929. "fichier.\n"
  1930. " -F<changelogformat> forcer le format du changelog.\n"
  1931. " -V<nom>=<valeur> définir une substitution de variable.\n"
  1932. " -T<fichier-substvars> lire ici les variables.\n"
  1933. " -D<champ>=<valeur> remplacer ou ajouter une paire champ et valeur ."
  1934. "dsc.\n"
  1935. " -U<champ> supprimer un champ.\n"
  1936. " -q mode silencieux -i[<regexp>] "
  1937. "éliminer les fichiers différence à ignorer (par défaut : %s).\n"
  1938. " -I[<motif>] éliminer des fichiers en construisant les "
  1939. "tarballs (par défaut : %s).\n"
  1940. " -Z<compression> choisir la compression à utiliser (par défaut : "
  1941. "« %s », les valeurs gérées sont : %s)\n"
  1942. " -z<niveau> niveau de compression à utiliser (par défaut, "
  1943. "« %d » ,\n"
  1944. " les valeurs gérées sont : « 1 » - « 9 », "
  1945. "« best », « fast »)"
  1946. #: scripts/dpkg-source.pl:535
  1947. #, fuzzy
  1948. #| msgid ""
  1949. #| "Extract options:\n"
  1950. #| " --no-copy don't copy .orig tarballs\n"
  1951. #| " --no-check don't check signature and checksums before "
  1952. #| "unpacking\n"
  1953. #| " --require-valid-signature abort if the package doesn't have a valid "
  1954. #| "signature"
  1955. msgid ""
  1956. "Extract options:\n"
  1957. " --no-copy don't copy .orig tarballs\n"
  1958. " --no-check don't check signature and checksums before "
  1959. "unpacking\n"
  1960. " --require-valid-signature abort if the package doesn't have a valid "
  1961. "signature\n"
  1962. " --ignore-bad-version allow bad source package versions."
  1963. msgstr ""
  1964. "Options d'extraction :\n"
  1965. " --no-copy ne pas copier l'archive originale\n"
  1966. " --no-check ne pas contrôler la signature et les\n"
  1967. " sommes de contrôle avant de décompacter.\n"
  1968. " ---require-valid-signature imposer que le paquet comporte une\n"
  1969. " signature valable."
  1970. #: scripts/dpkg-source.pl:541
  1971. msgid ""
  1972. "General options:\n"
  1973. " -?, --help show this help message.\n"
  1974. " --version show the version."
  1975. msgstr ""
  1976. "Options générales :\n"
  1977. " -?, --help afficher ce message d'aide.\n"
  1978. " --version afficher la version."
  1979. #: scripts/dpkg-source.pl:545
  1980. msgid ""
  1981. "More options are available but they depend on the source package format.\n"
  1982. "See dpkg-source(1) for more info."
  1983. msgstr ""
  1984. "Des options supplémentaires sont disponibles mais dépendent du format de "
  1985. "paquet source utilisé.\n"
  1986. "Veuillez consulter la page de manuel dpkg-source(1) pour plus d'informations."
  1987. #: scripts/changelog/debian.pl:47
  1988. #, perl-format
  1989. msgid ""
  1990. "Usage: %s [<option>...] [<changelogfile>]\n"
  1991. "\n"
  1992. "Options:\n"
  1993. " -?, --help print usage information\n"
  1994. " --version, -V print version information\n"
  1995. " --label, -l <file> name of the changelog file to\n"
  1996. " use in error messages\n"
  1997. " --file <file> changelog file to parse, defaults\n"
  1998. " to '-' (standard input)\n"
  1999. " --format <outputformat> see man page for list of available\n"
  2000. " output formats, defaults to 'dpkg'\n"
  2001. " for compatibility with dpkg-dev\n"
  2002. " --since, -s, -v <version> include all changes later than version\n"
  2003. " --until, -u <version> include all changes earlier than version\n"
  2004. " --from, -f <version> include all changes equal or later\n"
  2005. " than version\n"
  2006. " --to, -t <version> include all changes up to or equal\n"
  2007. " than version\n"
  2008. " --count, -c, -n <number> include <number> entries from the top\n"
  2009. " (or the tail if <number> is lower than 0)\n"
  2010. " --offset, -o <number> change the starting point for --count,\n"
  2011. " counted from the top (or the tail if\n"
  2012. " <number> is lower than 0)\n"
  2013. " --all include all changes\n"
  2014. msgstr ""
  2015. "Syntaxe : %s [<option>...] [<fichier_changelog>]\n"
  2016. "\n"
  2017. "Options:\n"
  2018. " -?, --help afficher les informations d'utilisation\n"
  2019. " --version, -V afficher la version\n"
  2020. " --label, -l <fichier> nom du fichier de changements\n"
  2021. " à utiliser dans les messages d'erreur\n"
  2022. " --file <fichier> fichier de changements à analyser. La\n"
  2023. " valeur par défaut est « - » (entrée "
  2024. "standard)\n"
  2025. " --format <format_sortie> voir la page de manuel pour la liste\n"
  2026. " des formats de sortie. La valeur par\n"
  2027. " défaut est « dpkg » pour compatibilité\n"
  2028. " avec dpkg-dev\n"
  2029. " --since, -s, -v <version> inclure toutes les modifications depuis\n"
  2030. " cette version\n"
  2031. " --until, -u <version> inclure toutes les modifications "
  2032. "antérieures\n"
  2033. " à cette version\n"
  2034. " --from, -f <version> inclure toutes les modifications depuis\n"
  2035. " cette version incluse\n"
  2036. " --to, -t <version> inclure toutes les modifications "
  2037. "antérieures\n"
  2038. " à cette version, incluse\n"
  2039. " --count, -c, -n <nombre> inclure <nombre> entrées depuis le début\n"
  2040. " (ou bien les dernières si <nombre> est "
  2041. "inférieur à 0)\n"
  2042. " --offset, -o <number> modifier le point de démarrage de --count,\n"
  2043. " à partir du début (ou de la fin si\n"
  2044. " <nombre> est inférieur à 0)\n"
  2045. " --all inclure toutes les modifications\n"
  2046. #: scripts/changelog/debian.pl:86
  2047. #, perl-format
  2048. msgid "output format %s not supported"
  2049. msgstr "format de sortie %s non géré"
  2050. #: scripts/changelog/debian.pl:116
  2051. #, perl-format
  2052. msgid "more than one file specified (%s and %s)"
  2053. msgstr "plus d'un fichier indiqué (%s et %s)"
  2054. #: scripts/changelog/debian.pl:140
  2055. #, perl-format
  2056. msgid "fatal error occurred while parsing %s"
  2057. msgstr "erreur fatale rencontrée lors de l'analyse de %s"
  2058. #: scripts/Dpkg/Arch.pm:96
  2059. msgid ""
  2060. "couldn't determine gcc system type, falling back to default (native "
  2061. "compilation)"
  2062. msgstr ""
  2063. "impossible de déterminer le type de système gcc utilisé, retour au système "
  2064. "par défaut (compilation native)"
  2065. #: scripts/Dpkg/Arch.pm:105
  2066. #, perl-format
  2067. msgid ""
  2068. "unknown gcc system type %s, falling back to default (native compilation)"
  2069. msgstr ""
  2070. "type de système gcc %s inconnu, retour au système par défaut (compilation "
  2071. "native)"
  2072. #: scripts/Dpkg/BuildFlags.pm:324
  2073. #, perl-format
  2074. msgid "line %d of %s mentions unknown flag %s"
  2075. msgstr "La ligne %d de %s comprend un drapeau %s inconnu"
  2076. #: scripts/Dpkg/BuildFlags.pm:337
  2077. #, perl-format
  2078. msgid "line %d of %s is invalid, it has been ignored"
  2079. msgstr "la ligne %d de %s n'est pas valable et a été ignorée"
  2080. #: scripts/Dpkg/BuildOptions.pm:95
  2081. #, perl-format
  2082. msgid "invalid flag in %s: %s"
  2083. msgstr "drapeau non valable dans %s : %s"
  2084. #: scripts/Dpkg/Compression/Process.pm:73
  2085. #, perl-format
  2086. msgid "%s is not a supported compression method"
  2087. msgstr "%s n'est pas une méthode compression gérée"
  2088. #: scripts/Dpkg/Compression/Process.pm:124
  2089. msgid "Dpkg::Compression::Process can only start one subprocess at a time"
  2090. msgstr ""
  2091. "Dpkg::compression::Process ne peut démarrer qu'un sous-processus à la fois"
  2092. #: scripts/Dpkg/Changelog.pm:171 scripts/Dpkg/Changelog.pm:173
  2093. #: scripts/Dpkg/ErrorHandling.pm:59
  2094. msgid "warning"
  2095. msgstr "avertissement"
  2096. #: scripts/Dpkg/Changelog.pm:171
  2097. #, perl-format
  2098. msgid ""
  2099. "%s(l%s): %s\n"
  2100. "LINE: %s"
  2101. msgstr ""
  2102. "%s(l%s): %s\n"
  2103. "LIGNE : %s"
  2104. #: scripts/Dpkg/Changelog.pm:173
  2105. #, perl-format
  2106. msgid "%s(l%s): %s"
  2107. msgstr "%s(l%s) : %s"
  2108. #: scripts/Dpkg/Changelog.pm:221
  2109. msgid "'offset' without 'count' has no effect"
  2110. msgstr "« offset » sans « count » n'a aucun effet"
  2111. #: scripts/Dpkg/Changelog.pm:230
  2112. msgid "you can't combine 'count' or 'offset' with any other range option"
  2113. msgstr ""
  2114. "impossible de combiner « count » et « offset » avec une autre option de "
  2115. "limitation"
  2116. #: scripts/Dpkg/Changelog.pm:238
  2117. msgid "you can only specify one of 'from' and 'since', using 'since'"
  2118. msgstr ""
  2119. "impossible d'indiquer « from » et « since » simultanément. « since » sera "
  2120. "utilisé"
  2121. #: scripts/Dpkg/Changelog.pm:243
  2122. msgid "you can only specify one of 'to' and 'until', using 'until'"
  2123. msgstr ""
  2124. "impossible d'indiquer « to » et « until » simultanément. « until » sera "
  2125. "utilisé"
  2126. #: scripts/Dpkg/Changelog.pm:255 scripts/Dpkg/Changelog.pm:271
  2127. #: scripts/Dpkg/Changelog.pm:287 scripts/Dpkg/Changelog.pm:303
  2128. #, perl-format
  2129. msgid "'%s' option specifies non-existing version"
  2130. msgstr "l'option « %s » indique une version inexistante"
  2131. #: scripts/Dpkg/Changelog.pm:256 scripts/Dpkg/Changelog.pm:304
  2132. msgid "use newest entry that is earlier than the one specified"
  2133. msgstr "utiliser l'entrée la plus récente qui est inférieure à celle indiquée"
  2134. #: scripts/Dpkg/Changelog.pm:265
  2135. msgid "none found, starting from the oldest entry"
  2136. msgstr "aucune trouvée, démarrage depuis la dernière entrée"
  2137. #: scripts/Dpkg/Changelog.pm:272 scripts/Dpkg/Changelog.pm:288
  2138. msgid "use oldest entry that is later than the one specified"
  2139. msgstr "utiliser l'entrée la plus ancienne qui est supérieure à celle indiquée"
  2140. #: scripts/Dpkg/Changelog.pm:282 scripts/Dpkg/Changelog.pm:298
  2141. #: scripts/Dpkg/Changelog.pm:313
  2142. #, perl-format
  2143. msgid "no such entry found, ignoring '%s' parameter"
  2144. msgstr "aucune telle entrée n'a été trouvée, paramètre « %s » ignoré"
  2145. #: scripts/Dpkg/Changelog.pm:319
  2146. msgid "'since' option specifies most recent version, ignoring"
  2147. msgstr "l'option « since » indique la version la plus récente et est ignorée"
  2148. #: scripts/Dpkg/Changelog.pm:323
  2149. msgid "'until' option specifies oldest version, ignoring"
  2150. msgstr "l'option « until » indique la version la plus ancienne et est ignorée"
  2151. #: scripts/Dpkg/Changelog/Debian.pm:56
  2152. msgid "first heading"
  2153. msgstr "premier en-tête"
  2154. #: scripts/Dpkg/Changelog/Debian.pm:57
  2155. msgid "next heading or eof"
  2156. msgstr "en-tête suivant ou fin de fichier"
  2157. #: scripts/Dpkg/Changelog/Debian.pm:58
  2158. msgid "start of change data"
  2159. msgstr "début des données de modifications"
  2160. #: scripts/Dpkg/Changelog/Debian.pm:59
  2161. msgid "more change data or trailer"
  2162. msgstr "données de modifications supplémentaires ou de fin"
  2163. #: scripts/Dpkg/Changelog/Debian.pm:91
  2164. #, perl-format
  2165. msgid "found start of entry where expected %s"
  2166. msgstr "début d'une entrée trouvé, %s attendu"
  2167. #: scripts/Dpkg/Changelog/Debian.pm:128
  2168. msgid "badly formatted heading line"
  2169. msgstr "ligne d'en-tête mal formée"
  2170. #: scripts/Dpkg/Changelog/Debian.pm:132
  2171. #, perl-format
  2172. msgid "found trailer where expected %s"
  2173. msgstr "ligne de fin trouvée, %s attendu"
  2174. #: scripts/Dpkg/Changelog/Debian.pm:142
  2175. #: scripts/Dpkg/Changelog/Entry/Debian.pm:160
  2176. msgid "badly formatted trailer line"
  2177. msgstr "ligne de fin mal formée"
  2178. #: scripts/Dpkg/Changelog/Debian.pm:145
  2179. #, perl-format
  2180. msgid "found change data where expected %s"
  2181. msgstr "changements trouvés, %s attendu"
  2182. #: scripts/Dpkg/Changelog/Debian.pm:167
  2183. #, perl-format
  2184. msgid "found blank line where expected %s"
  2185. msgstr "ligne blanche trouvée, %s attendu"
  2186. #: scripts/Dpkg/Changelog/Debian.pm:171
  2187. msgid "unrecognized line"
  2188. msgstr "ligne non reconnue"
  2189. #: scripts/Dpkg/Changelog/Debian.pm:182
  2190. #, perl-format
  2191. msgid "found eof where expected %s"
  2192. msgstr "fin de fichier trouvée, %s attendu"
  2193. #: scripts/Dpkg/Changelog/Entry/Debian.pm:126
  2194. #, perl-format
  2195. msgid "bad key-value after `;': `%s'"
  2196. msgstr "mauvaise clé-valeur après « ; » : %s"
  2197. #: scripts/Dpkg/Changelog/Entry/Debian.pm:131
  2198. #, perl-format
  2199. msgid "repeated key-value %s"
  2200. msgstr "clé-valeur répété %s"
  2201. #: scripts/Dpkg/Changelog/Entry/Debian.pm:135
  2202. #, perl-format
  2203. msgid "badly formatted urgency value: %s"
  2204. msgstr "valeur urgency mal formée : %s"
  2205. #: scripts/Dpkg/Changelog/Entry/Debian.pm:138
  2206. #, perl-format
  2207. msgid "bad binary-only value: %s"
  2208. msgstr "valeur binary-only incorrecte : %s"
  2209. #: scripts/Dpkg/Changelog/Entry/Debian.pm:142
  2210. #, perl-format
  2211. msgid "unknown key-value %s"
  2212. msgstr "clé clé-valeur inconnue %s"
  2213. #: scripts/Dpkg/Changelog/Entry/Debian.pm:147
  2214. #, perl-format
  2215. msgid "version '%s' is invalid: %s"
  2216. msgstr "la version « %s » n'est pas valable : %s"
  2217. #: scripts/Dpkg/Changelog/Entry/Debian.pm:150
  2218. msgid "the header doesn't match the expected regex"
  2219. msgstr "l'en-tête ne correspond pas à l'expression régulière attendue"
  2220. #: scripts/Dpkg/Changelog/Entry/Debian.pm:163
  2221. #, perl-format
  2222. msgid "couldn't parse date %s"
  2223. msgstr "impossible d'analyser la date %s"
  2224. #: scripts/Dpkg/Changelog/Entry/Debian.pm:166
  2225. msgid "the trailer doesn't match the expected regex"
  2226. msgstr ""
  2227. "la partie finale (« trailer ») ne correspond pas à l'expression régulière "
  2228. "attendue"
  2229. #: scripts/Dpkg/Changelog/Parse.pm:106
  2230. #, perl-format
  2231. msgid "cannot create pipe for %s"
  2232. msgstr "impossible de créer le tube pour %s"
  2233. #: scripts/Dpkg/Changelog/Parse.pm:110
  2234. #, perl-format
  2235. msgid "tail of %s"
  2236. msgstr "fin de %s"
  2237. #: scripts/Dpkg/Changelog/Parse.pm:122
  2238. #, perl-format
  2239. msgid "format parser %s not executable"
  2240. msgstr "l'analyseur de format %s n'est pas exécutable"
  2241. #: scripts/Dpkg/Changelog/Parse.pm:125
  2242. #, perl-format
  2243. msgid "changelog format %s is unknown"
  2244. msgstr "format de fichier de changements %s inconnu"
  2245. #: scripts/Dpkg/Changelog/Parse.pm:144
  2246. #, perl-format
  2247. msgid "cannot exec format parser: %s"
  2248. msgstr "impossible d'exécuter l'analyseur de format : %s"
  2249. #: scripts/Dpkg/Changelog/Parse.pm:151
  2250. msgid "output of changelog parser"
  2251. msgstr "affichage de l'analyseur de fichier de changements"
  2252. #: scripts/Dpkg/Changelog/Parse.pm:154
  2253. #, perl-format
  2254. msgid "changelog parser %s"
  2255. msgstr "analyseur de fichier de changements : %s"
  2256. #: scripts/Dpkg/Checksums.pm:173
  2257. #, perl-format
  2258. msgid "cannot fstat file %s"
  2259. msgstr "fstat impossible pour le fichier %s"
  2260. #: scripts/Dpkg/Checksums.pm:176
  2261. #, perl-format
  2262. msgid "file %s has size %u instead of expected %u"
  2263. msgstr "la taille du fichier %s est %u au lieu de %u attendu"
  2264. #: scripts/Dpkg/Checksums.pm:190
  2265. #, perl-format
  2266. msgid "file %s has checksum %s instead of expected %s (algorithm %s)"
  2267. msgstr ""
  2268. "la somme de contrôle du fichier %s est %s au lieu de %s (algorithme %s)"
  2269. #: scripts/Dpkg/Checksums.pm:195
  2270. #, perl-format
  2271. msgid "checksum program gave bogus output `%s'"
  2272. msgstr ""
  2273. "le programme de calcul de somme de contrôle a fourni un résultat "
  2274. "anormal : « %s »"
  2275. #: scripts/Dpkg/Checksums.pm:224
  2276. #, perl-format
  2277. msgid "invalid line in %s checksums string: %s"
  2278. msgstr "ligne non valable dans la chaîne de somme de contrôle %s : %s"
  2279. #: scripts/Dpkg/Checksums.pm:230
  2280. #, perl-format
  2281. msgid "conflicting checksums '%s' and '%s' for file '%s'"
  2282. msgstr ""
  2283. "sommes de contrôle en conflit : « %s » et « %s » pour le fichier « %s »"
  2284. #: scripts/Dpkg/Checksums.pm:235
  2285. #, perl-format
  2286. msgid "conflicting file sizes '%u' and '%u' for file '%s'"
  2287. msgstr "conflit de taille de fichiers %u et %u pour le fichier %s"
  2288. #: scripts/Dpkg/Conf.pm:107
  2289. #, perl-format
  2290. msgid "short option not allowed in %s, line %d"
  2291. msgstr "option courte non autorisée dans %s à la ligne %d"
  2292. #: scripts/Dpkg/Conf.pm:121
  2293. #, perl-format
  2294. msgid "invalid syntax for option in %s, line %d"
  2295. msgstr "erreur de syntaxe pour l'option %s à la ligne %d"
  2296. #: scripts/Dpkg/Control.pm:153
  2297. msgid "general section of control info file"
  2298. msgstr "section générale dans le fichier info"
  2299. #: scripts/Dpkg/Control.pm:155
  2300. msgid "package's section of control info file"
  2301. msgstr "section du paquet dans le fichier info"
  2302. #: scripts/Dpkg/Control.pm:157
  2303. msgid "parsed version of changelog"
  2304. msgstr "version analysée de changelog"
  2305. #: scripts/Dpkg/Control.pm:159 scripts/Dpkg/Control.pm:161
  2306. #, perl-format
  2307. msgid "entry in repository's %s file"
  2308. msgstr "entrée dans le fichier %s de dépôt"
  2309. #: scripts/Dpkg/Control.pm:163 scripts/Dpkg/Control.pm:167
  2310. #, perl-format
  2311. msgid "%s file"
  2312. msgstr "fichier %s"
  2313. #: scripts/Dpkg/Control.pm:165
  2314. msgid "control info of a .deb package"
  2315. msgstr "information de contrôle d'un paquet .deb"
  2316. #: scripts/Dpkg/Control.pm:169
  2317. msgid "vendor file"
  2318. msgstr "fichier du fournisseur (« vendor »)"
  2319. #: scripts/Dpkg/Control.pm:171
  2320. msgid "entry in dpkg's status file"
  2321. msgstr "entrée dans le fichier d'état de dpkg"
  2322. #: scripts/Dpkg/Control/FieldsCore.pm:507
  2323. #, perl-format
  2324. msgid "unknown information field '%s' in input data in %s"
  2325. msgstr "champ d'information inconnu « %s » dans les données d'entrée de %s"
  2326. #: scripts/Dpkg/Control/FieldsCore.pm:508
  2327. msgid "control information"
  2328. msgstr "information de contrôle"
  2329. #: scripts/Dpkg/Control/Info.pm:103
  2330. msgid "first block lacks a source field"
  2331. msgstr "le premier bloc ne comporte pas de champ source"
  2332. #: scripts/Dpkg/Control/Info.pm:110 scripts/Dpkg/Control/Info.pm:114
  2333. #, perl-format
  2334. msgid "block lacks the '%s' field"
  2335. msgstr "le bloc ne comporte pas de champ « %s »"
  2336. #: scripts/Dpkg/Control/HashCore.pm:177
  2337. #, perl-format
  2338. msgid "syntax error in %s at line %d: %s"
  2339. msgstr "erreur de syntaxe dans %s à la ligne %d : %s"
  2340. #: scripts/Dpkg/Control/HashCore.pm:207
  2341. msgid "field cannot start with a hyphen"
  2342. msgstr "le champ ne peut débuter par un trait d'union"
  2343. #: scripts/Dpkg/Control/HashCore.pm:211
  2344. #, perl-format
  2345. msgid "duplicate field %s found"
  2346. msgstr "champ %s en double"
  2347. #: scripts/Dpkg/Control/HashCore.pm:219
  2348. msgid "continued value line not in field"
  2349. msgstr "la ligne continuée n'est pas dans le champ"
  2350. #: scripts/Dpkg/Control/HashCore.pm:233
  2351. #, fuzzy
  2352. #| msgid "PGP signature not allowed here"
  2353. msgid "OpenPGP signature not allowed here"
  2354. msgstr "signature PGP non autorisée ici"
  2355. #: scripts/Dpkg/Control/HashCore.pm:240
  2356. #, fuzzy
  2357. #| msgid "expected PGP signature, found EOF after blank line"
  2358. msgid "expected OpenPGP signature, found EOF after blank line"
  2359. msgstr "signature PGP attendue, EOF après ligne blanche trouvé"
  2360. #: scripts/Dpkg/Control/HashCore.pm:245
  2361. #, fuzzy, perl-format
  2362. #| msgid "expected PGP signature, found something else `%s'"
  2363. msgid "expected OpenPGP signature, found something else `%s'"
  2364. msgstr "signature PGP attendue, « %s » trouvé"
  2365. #: scripts/Dpkg/Control/HashCore.pm:254 scripts/Dpkg/Control/HashCore.pm:268
  2366. #, fuzzy
  2367. #| msgid "unfinished PGP signature"
  2368. msgid "unfinished OpenPGP signature"
  2369. msgstr "signature PGP non terminée"
  2370. #: scripts/Dpkg/Control/HashCore.pm:263
  2371. msgid "line with unknown format (not field-colon-value)"
  2372. msgstr ""
  2373. "ligne de format inconnu, format différent de « champ-deux points-valeur »"
  2374. #: scripts/Dpkg/Control/HashCore.pm:368
  2375. msgid "write error on control data"
  2376. msgstr "erreur d'écriture sur des données de contrôle"
  2377. #: scripts/Dpkg/Deps.pm:271
  2378. #, perl-format
  2379. msgid "can't parse dependency %s"
  2380. msgstr "impossible d'analyser la dépendance %s"
  2381. #: scripts/Dpkg/Deps.pm:303
  2382. msgid "an union dependency can only contain simple dependencies"
  2383. msgstr "Une union de dépendances ne peut pas contenir de simple dépendances"
  2384. #: scripts/Dpkg/Dist/Files.pm:70
  2385. #, perl-format
  2386. msgid "badly formed line in files list file, line %d"
  2387. msgstr "ligne %d mal formée dans le fichier de liste des fichiers"
  2388. #: scripts/Dpkg/Dist/Files.pm:74
  2389. #, perl-format
  2390. msgid "duplicate files list entry for file %s (line %d)"
  2391. msgstr ""
  2392. "entrée en double dans le fichier de liste des fichiers pour le fichier %s "
  2393. "(ligne %d)"
  2394. #: scripts/Dpkg/ErrorHandling.pm:54
  2395. msgid "info"
  2396. msgstr "info"
  2397. #: scripts/Dpkg/ErrorHandling.pm:65 scripts/Dpkg/ErrorHandling.pm:70
  2398. #: scripts/Dpkg/ErrorHandling.pm:75
  2399. msgid "error"
  2400. msgstr "erreur"
  2401. #: scripts/Dpkg/ErrorHandling.pm:87
  2402. #, perl-format
  2403. msgid "%s gave error exit status %s"
  2404. msgstr "%s a produit une erreur de sortie de type %s"
  2405. #: scripts/Dpkg/ErrorHandling.pm:89
  2406. #, perl-format
  2407. msgid "%s died from signal %s"
  2408. msgstr "%s tué par le signal %s"
  2409. #: scripts/Dpkg/ErrorHandling.pm:91
  2410. #, perl-format
  2411. msgid "%s failed with unknown exit code %d"
  2412. msgstr "%s a échoué avec une erreur de sortie de type inconnu %d"
  2413. #: scripts/Dpkg/ErrorHandling.pm:95
  2414. msgid "Use --help for program usage information."
  2415. msgstr "Utilisez --help pour de l'information sur l'utilisation du programme."
  2416. #: scripts/Dpkg/Interface/Storable.pm:86
  2417. msgid "<standard input>"
  2418. msgstr "<entrée standard>"
  2419. #: scripts/Dpkg/IPC.pm:231 scripts/Dpkg/IPC.pm:237 scripts/Dpkg/IPC.pm:243
  2420. #, perl-format
  2421. msgid "pipe for %s"
  2422. msgstr "pipe pour %s"
  2423. #: scripts/Dpkg/IPC.pm:271
  2424. #, perl-format
  2425. msgid "chdir to %s"
  2426. msgstr "chdir vers %s"
  2427. #: scripts/Dpkg/IPC.pm:279
  2428. msgid "reopen stdin"
  2429. msgstr "réouverture stdin"
  2430. #: scripts/Dpkg/IPC.pm:288 scripts/Dpkg/IPC.pm:297
  2431. msgid "reopen stdout"
  2432. msgstr "réouverture de la sortie standard"
  2433. #: scripts/Dpkg/IPC.pm:371
  2434. msgid "child process"
  2435. msgstr "processus fils"
  2436. #: scripts/Dpkg/IPC.pm:376
  2437. #, perl-format
  2438. msgid "wait for %s"
  2439. msgstr "attente de %s"
  2440. #: scripts/Dpkg/IPC.pm:381
  2441. #, perl-format
  2442. msgid "%s didn't complete in %d second"
  2443. msgid_plural "%s didn't complete in %d seconds"
  2444. msgstr[0] "%s ne s'est pas terminé en %d seconde"
  2445. msgstr[1] "%s ne s'est pas terminé en %d secondes"
  2446. #: scripts/Dpkg/Package.pm:33
  2447. msgid "may not be empty string"
  2448. msgstr "ne peut pas être une chaîne vide"
  2449. #: scripts/Dpkg/Package.pm:36
  2450. #, perl-format
  2451. msgid "character '%s' not allowed"
  2452. msgstr "caractère « %s » non autorisé"
  2453. #: scripts/Dpkg/Package.pm:39
  2454. msgid "must start with an alphanumeric character"
  2455. msgstr "doit commencer par un caractère alphanumérique"
  2456. #: scripts/Dpkg/Shlibs/Objdump.pm:225
  2457. #, perl-format
  2458. msgid "couldn't parse dynamic relocation record: %s"
  2459. msgstr "impossible d'analyser l'enregistrement d'allocation dynamique : %s"
  2460. #: scripts/Dpkg/Shlibs/Objdump.pm:344
  2461. #, perl-format
  2462. msgid "couldn't parse dynamic symbol definition: %s"
  2463. msgstr "impossible d'analyser la définition de symboles dynamique : %s"
  2464. #: scripts/Dpkg/Shlibs/Symbol.pm:112
  2465. #, perl-format
  2466. msgid "symbol name unspecified: %s"
  2467. msgstr "nom de symbole non précisé : %s"
  2468. #: scripts/Dpkg/Shlibs/Symbol.pm:169
  2469. #, perl-format
  2470. msgid "you can't use symver tag to catch unversioned symbols: %s"
  2471. msgstr ""
  2472. "impossible d'utiliser l'étiquette symver pour identifier les symboles non "
  2473. "versionnés : %s"
  2474. #: scripts/Dpkg/Shlibs/SymbolFile.pm:224
  2475. #, perl-format
  2476. msgid "symbol information must be preceded by a header (file %s, line %s)"
  2477. msgstr ""
  2478. "les informations de symboles doivent être précédées par un en-tête (fichier "
  2479. "%s, ligne %s)"
  2480. #: scripts/Dpkg/Shlibs/SymbolFile.pm:232
  2481. #, perl-format
  2482. msgid "failed to parse line in %s: %s"
  2483. msgstr "impossible d'analyser une ligne dans %s : %s"
  2484. #: scripts/Dpkg/Shlibs/SymbolFile.pm:264
  2485. #, perl-format
  2486. msgid "failed to parse a line in %s: %s"
  2487. msgstr "impossible d'analyser une ligne dans %s : %s"
  2488. #: scripts/Dpkg/Shlibs/SymbolFile.pm:277
  2489. #, perl-format
  2490. msgid "tried to merge the same object (%s) twice in a symfile"
  2491. msgstr ""
  2492. "tentative de fusion du même objet (%s) deux fois dans un fichier de symboles"
  2493. #: scripts/Dpkg/Shlibs/SymbolFile.pm:396
  2494. msgid "cannot merge symbols from objects without SONAME"
  2495. msgstr "impossible de fusionner les symboles depuis des objets sans SONAME"
  2496. #: scripts/Dpkg/Source/Archive.pm:64
  2497. msgid "write on tar input"
  2498. msgstr "écriture sur l'entrée de tar"
  2499. #: scripts/Dpkg/Source/Archive.pm:91
  2500. msgid "close on tar input"
  2501. msgstr "écriture sur la sortie de tar"
  2502. #: scripts/Dpkg/Source/Archive.pm:116 scripts/Dpkg/Source/Patch.pm:543
  2503. #, perl-format
  2504. msgid "cannot create directory %s"
  2505. msgstr "impossible de créer le répertoire %s"
  2506. #: scripts/Dpkg/Source/Archive.pm:147 scripts/Dpkg/Source/Package.pm:354
  2507. #: scripts/Dpkg/Source/Package/V2.pm:202
  2508. #, perl-format
  2509. msgid "cannot opendir %s"
  2510. msgstr "impossible d'ouvrir le répertoire %s"
  2511. #: scripts/Dpkg/Source/Archive.pm:154 scripts/Dpkg/Source/Archive.pm:158
  2512. #, perl-format
  2513. msgid "unable to rename %s to %s"
  2514. msgstr "impossible de renommer %s en %s"
  2515. #: scripts/Dpkg/Source/Functions.pm:34
  2516. #, perl-format
  2517. msgid "cannot stat directory %s (before removal)"
  2518. msgstr "stat du répertoire %s impossible (avant suppression)"
  2519. #: scripts/Dpkg/Source/Functions.pm:40
  2520. #, perl-format
  2521. msgid "unable to check for removal of dir `%s'"
  2522. msgstr "impossible de vérifier la suppression du répertoire %s"
  2523. #: scripts/Dpkg/Source/Functions.pm:42
  2524. #, perl-format
  2525. msgid "rm -rf failed to remove `%s'"
  2526. msgstr "rm -rf n'a pas supprimé « %s »"
  2527. #: scripts/Dpkg/Source/Functions.pm:83 scripts/Dpkg/Source/Patch.pm:590
  2528. #, perl-format
  2529. msgid "cannot change timestamp for %s"
  2530. msgstr "impossible de modifier la date de %s"
  2531. #: scripts/Dpkg/Source/Functions.pm:85
  2532. #, perl-format
  2533. msgid "cannot read timestamp from %s"
  2534. msgstr "impossible de lire la date de %s"
  2535. #: scripts/Dpkg/Source/Patch.pm:71 scripts/Dpkg/Source/Package/V2.pm:494
  2536. msgid "binary file contents changed"
  2537. msgstr "contenu d'un fichier binaire modifié"
  2538. #: scripts/Dpkg/Source/Patch.pm:121
  2539. #, perl-format
  2540. msgid "file %s has no final newline (either original or modified version)"
  2541. msgstr ""
  2542. "fichier %s sans caractère nouvelle ligne terminal (soit l'original soit la "
  2543. "version modifiée)"
  2544. #: scripts/Dpkg/Source/Patch.pm:125
  2545. #, perl-format
  2546. msgid "unknown line from diff -u on %s: `%s'"
  2547. msgstr "ligne inconnue dans diff -u sur %s : « %s »"
  2548. #: scripts/Dpkg/Source/Patch.pm:128 scripts/Dpkg/Source/Patch.pm:131
  2549. msgid "failed to write"
  2550. msgstr "échec d'écriture"
  2551. #: scripts/Dpkg/Source/Patch.pm:141
  2552. #, perl-format
  2553. msgid "diff on %s"
  2554. msgstr "diff sur %s"
  2555. #: scripts/Dpkg/Source/Patch.pm:167 scripts/Dpkg/Source/Patch.pm:190
  2556. #: scripts/Dpkg/Source/Patch.pm:214 scripts/Dpkg/Source/Patch.pm:227
  2557. #, perl-format
  2558. msgid "cannot stat file %s"
  2559. msgstr "stat impossible pour le fichier %s"
  2560. #: scripts/Dpkg/Source/Patch.pm:177 scripts/Dpkg/Source/Patch.pm:181
  2561. #, perl-format
  2562. msgid "cannot read link %s"
  2563. msgstr "impossible de lire le lien %s"
  2564. #: scripts/Dpkg/Source/Patch.pm:210
  2565. msgid "device or socket is not allowed"
  2566. msgstr "périphérique ou socket non autorisé"
  2567. #: scripts/Dpkg/Source/Patch.pm:220
  2568. msgid "unknown file type"
  2569. msgstr "type de fichier inconnu"
  2570. #: scripts/Dpkg/Source/Patch.pm:233
  2571. #, fuzzy, perl-format
  2572. #| msgid "ignoring deletion of file %s"
  2573. msgid "ignoring deletion of file %s, use --include-removal to override"
  2574. msgstr "suppression du fichier %s ignorée"
  2575. #: scripts/Dpkg/Source/Patch.pm:236
  2576. #, perl-format
  2577. msgid "ignoring deletion of directory %s"
  2578. msgstr "suppression du répertoire %s ignorée"
  2579. #: scripts/Dpkg/Source/Patch.pm:238
  2580. #, perl-format
  2581. msgid "ignoring deletion of symlink %s"
  2582. msgstr "suppression du lien symbolique %s ignorée"
  2583. #: scripts/Dpkg/Source/Patch.pm:283
  2584. #, perl-format
  2585. msgid "newly created empty file '%s' will not be represented in diff"
  2586. msgstr ""
  2587. "le fichier vide « %s », nouvellement créé, ne sera pas représenté dans le "
  2588. "fichier de différences"
  2589. #: scripts/Dpkg/Source/Patch.pm:287
  2590. #, perl-format
  2591. msgid "executable mode %04o of '%s' will not be represented in diff"
  2592. msgstr ""
  2593. "le mode exécutable %04o de « %s » ne sera pas représenté dans le fichier de "
  2594. "différences"
  2595. #: scripts/Dpkg/Source/Patch.pm:292
  2596. #, perl-format
  2597. msgid "special mode %04o of '%s' will not be represented in diff"
  2598. msgstr ""
  2599. "le mode spécial %04o de « %s » ne sera pas représenté dans le fichier de "
  2600. "différences"
  2601. #: scripts/Dpkg/Source/Patch.pm:312 scripts/Dpkg/Source/Package/V2.pm:493
  2602. #, perl-format
  2603. msgid "cannot represent change to %s: %s"
  2604. msgstr "impossible d'identifier les changements de %s : %s"
  2605. #: scripts/Dpkg/Source/Patch.pm:319
  2606. #, perl-format
  2607. msgid "cannot represent change to %s:"
  2608. msgstr "impossible d'identifier les changements de %s :"
  2609. #: scripts/Dpkg/Source/Patch.pm:320
  2610. #, perl-format
  2611. msgid " new version is %s"
  2612. msgstr " la nouvelle version est %s"
  2613. #: scripts/Dpkg/Source/Patch.pm:321
  2614. #, perl-format
  2615. msgid " old version is %s"
  2616. msgstr " l'ancienne version est %s"
  2617. #: scripts/Dpkg/Source/Patch.pm:346
  2618. #, fuzzy, perl-format
  2619. #| msgid "diff `%s' patches file with name ending .dpkg-orig"
  2620. msgid "diff %s patches file with C-style encoded filename"
  2621. msgstr "diff « %s » modifie un fichier dont le nom de termine par .dpkg-orig"
  2622. #: scripts/Dpkg/Source/Patch.pm:423
  2623. #, perl-format
  2624. msgid "expected ^--- in line %d of diff `%s'"
  2625. msgstr "dans la ligne %d du fichier de différences « %s », « ^--- » attendu"
  2626. #: scripts/Dpkg/Source/Patch.pm:428
  2627. #, perl-format
  2628. msgid "diff `%s' patches file with name ending .dpkg-orig"
  2629. msgstr "diff « %s » modifie un fichier dont le nom de termine par .dpkg-orig"
  2630. #: scripts/Dpkg/Source/Patch.pm:432
  2631. #, perl-format
  2632. msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
  2633. msgstr "diff « %s » se termine au milieu de ---/+++ (ligne %d)"
  2634. #: scripts/Dpkg/Source/Patch.pm:435
  2635. #, perl-format
  2636. msgid "line after --- isn't as expected in diff `%s' (line %d)"
  2637. msgstr "ligne après --- n'est pas comme attendu dans diff « %s » (ligne %d)"
  2638. #: scripts/Dpkg/Source/Patch.pm:441
  2639. #, perl-format
  2640. msgid "none of the filenames in ---/+++ are valid in diff '%s' (line %d)"
  2641. msgstr ""
  2642. "aucun des fichiers indiqués par « ---/+++ » n'est valable dans le fichier de "
  2643. "différences « %s » (ligne %d)"
  2644. #: scripts/Dpkg/Source/Patch.pm:449 scripts/Dpkg/Source/Quilt.pm:337
  2645. #, perl-format
  2646. msgid "%s contains an insecure path: %s"
  2647. msgstr "%s contient un chemin d'accès non sûr : %s"
  2648. #: scripts/Dpkg/Source/Patch.pm:454
  2649. #, perl-format
  2650. msgid "diff %s modifies file %s through a symlink: %s"
  2651. msgstr ""
  2652. "le fichier de différences %s modifie le fichier %s via un lien "
  2653. "symbolique : %s"
  2654. #: scripts/Dpkg/Source/Patch.pm:463
  2655. #, perl-format
  2656. msgid "original and modified files are /dev/null in diff `%s' (line %d)"
  2657. msgstr ""
  2658. "les fichiers originaux et modifiés sont /dev/null dans le fichier de "
  2659. "différences %s (ligne %d)"
  2660. #: scripts/Dpkg/Source/Patch.pm:466
  2661. #, perl-format
  2662. msgid "file removal without proper filename in diff `%s' (line %d)"
  2663. msgstr "suppression de fichier sans nom approprié dans diff « %s » (ligne %d)"
  2664. #: scripts/Dpkg/Source/Patch.pm:469
  2665. #, perl-format
  2666. msgid "diff %s removes a non-existing file %s (line %d)"
  2667. msgstr ""
  2668. "le fichier de différences %s supprime un fichier %s qui n'existe pas (ligne "
  2669. "%d)"
  2670. #: scripts/Dpkg/Source/Patch.pm:481
  2671. #, perl-format
  2672. msgid "diff `%s' patches something which is not a plain file"
  2673. msgstr "diff « %s » modifie un objet qui n'est pas un fichier texte"
  2674. #: scripts/Dpkg/Source/Patch.pm:485
  2675. #, perl-format
  2676. msgid "diff `%s' patches file %s twice"
  2677. msgstr "le fichier de différences « %s » modifie deux fois le fichier %s"
  2678. #: scripts/Dpkg/Source/Patch.pm:503 scripts/Dpkg/Source/Patch.pm:507
  2679. #, perl-format
  2680. msgid "unexpected end of diff `%s'"
  2681. msgstr "fin inattendue de diff « %s »"
  2682. #: scripts/Dpkg/Source/Patch.pm:516
  2683. #, perl-format
  2684. msgid "expected [ +-] at start of line %d of diff `%s'"
  2685. msgstr "[ +-] attendu au début de la ligne %d du fichier de différences « %s »"
  2686. #: scripts/Dpkg/Source/Patch.pm:523
  2687. #, perl-format
  2688. msgid "expected ^@@ at line %d of diff `%s'"
  2689. msgstr "^@@ attendu ligne %d du fichier de différences « %s »"
  2690. #: scripts/Dpkg/Source/Patch.pm:528
  2691. #, perl-format
  2692. msgid "diff `%s' doesn't contain any patch"
  2693. msgstr "le fichier de différences « %s » ne contient pas de changement"
  2694. #: scripts/Dpkg/Source/Patch.pm:594
  2695. #, perl-format
  2696. msgid "remove patch backup file %s"
  2697. msgstr "suppression du fichier de différences de sauvegarde %s"
  2698. #: scripts/Dpkg/Source/Patch.pm:634
  2699. msgid "nonexistent"
  2700. msgstr "inexistant"
  2701. #: scripts/Dpkg/Source/Patch.pm:635 scripts/Dpkg/Source/Package.pm:517
  2702. #, perl-format
  2703. msgid "cannot stat %s"
  2704. msgstr "stat de %s impossible"
  2705. #: scripts/Dpkg/Source/Patch.pm:637
  2706. msgid "plain file"
  2707. msgstr "fichier texte"
  2708. #: scripts/Dpkg/Source/Patch.pm:638
  2709. msgid "directory"
  2710. msgstr "répertoire"
  2711. #: scripts/Dpkg/Source/Patch.pm:639
  2712. #, perl-format
  2713. msgid "symlink to %s"
  2714. msgstr "lien symbolique vers %s"
  2715. #: scripts/Dpkg/Source/Patch.pm:640
  2716. msgid "block device"
  2717. msgstr "périphérique bloc"
  2718. #: scripts/Dpkg/Source/Patch.pm:641
  2719. msgid "character device"
  2720. msgstr "périphérique caractère"
  2721. #: scripts/Dpkg/Source/Patch.pm:642
  2722. msgid "named pipe"
  2723. msgstr "tube nommé"
  2724. #: scripts/Dpkg/Source/Patch.pm:643
  2725. msgid "named socket"
  2726. msgstr "« socket » nommé"
  2727. #: scripts/Dpkg/Source/Package.pm:240
  2728. #, perl-format
  2729. msgid "%s is not the name of a file"
  2730. msgstr "%s n'est pas le nom d'un fichier"
  2731. #: scripts/Dpkg/Source/Package.pm:252
  2732. #, perl-format
  2733. msgid "missing critical source control field %s"
  2734. msgstr "champ de contrôle vital manquant, %s"
  2735. #: scripts/Dpkg/Source/Package.pm:271 scripts/Dpkg/Source/Package.pm:285
  2736. #, perl-format
  2737. msgid "source package format '%s' is not supported: %s"
  2738. msgstr "le format de paquet source « %s » n'est pas géré : %s"
  2739. #: scripts/Dpkg/Source/Package.pm:272
  2740. msgid "format variant must be in lowercase"
  2741. msgstr "la variante de ce format doit être écrite en minuscules"
  2742. #: scripts/Dpkg/Source/Package.pm:290
  2743. #, perl-format
  2744. msgid "invalid Format field `%s'"
  2745. msgstr "champ Format « %s » erroné"
  2746. #: scripts/Dpkg/Source/Package.pm:338
  2747. msgid "source and version are required to compute the source basename"
  2748. msgstr ""
  2749. "la source et la version sont indispensables pour calculer le nom de base de "
  2750. "la source"
  2751. #: scripts/Dpkg/Source/Package.pm:423 scripts/Dpkg/Source/Package.pm:425
  2752. #, perl-format
  2753. msgid "failed to verify signature on %s"
  2754. msgstr "impossible de vérifier la signature sur %s"
  2755. #: scripts/Dpkg/Source/Package.pm:432 scripts/Dpkg/Source/Package.pm:434
  2756. #, perl-format
  2757. msgid "could not verify signature on %s since gpg isn't installed"
  2758. msgstr ""
  2759. "impossible de vérifier la signature sur %s puisque gpg n'est pas installé"
  2760. #: scripts/Dpkg/Source/Package.pm:443
  2761. #, perl-format
  2762. msgid "%s is not a valid option for %s"
  2763. msgstr "%s n'est pas une option valable pour %s"
  2764. #: scripts/Dpkg/Source/Package.pm:519
  2765. #, perl-format
  2766. msgid "%s does not exist"
  2767. msgstr "%s n'existe pas"
  2768. #: scripts/Dpkg/Source/Package.pm:523
  2769. #, perl-format
  2770. msgid "cannot make %s executable"
  2771. msgstr "impossible de rendre %s exécutable"
  2772. #: scripts/Dpkg/Source/Package.pm:525
  2773. #, perl-format
  2774. msgid "%s is not a plain file"
  2775. msgstr "%s n'est pas un fichier texte"
  2776. #: scripts/Dpkg/Source/Package.pm:585
  2777. #, perl-format
  2778. msgid "'%s' is not supported by the source format '%s'"
  2779. msgstr "« %s » n'est pas géré par le format source « %s »"
  2780. #: scripts/Dpkg/Source/Package/V1.pm:69
  2781. #, perl-format
  2782. msgid "-s%s option overrides earlier -s%s option"
  2783. msgstr "l'option -s%s annule une précédente option -s%s"
  2784. #: scripts/Dpkg/Source/Package/V1.pm:94
  2785. #, perl-format
  2786. msgid "source handling style -s%s not allowed with -x"
  2787. msgstr "gestion des sources avec -s%s non autorisée avec -x"
  2788. #: scripts/Dpkg/Source/Package/V1.pm:107
  2789. #: scripts/Dpkg/Source/Package/V3/Native.pm:53
  2790. msgid "multiple tarfiles in v1.0 source package"
  2791. msgstr "plusieurs fichiers tar dans un paquet source v1.0"
  2792. #: scripts/Dpkg/Source/Package/V1.pm:112 scripts/Dpkg/Source/Package/V2.pm:132
  2793. #, perl-format
  2794. msgid "unrecognized file for a %s source package: %s"
  2795. msgstr "type de fichier non reconnu pour un fichier source %s : %s"
  2796. #: scripts/Dpkg/Source/Package/V1.pm:117
  2797. #: scripts/Dpkg/Source/Package/V3/Native.pm:60
  2798. msgid "no tarfile in Files field"
  2799. msgstr "pas de fichier tar dans le champ Files"
  2800. #: scripts/Dpkg/Source/Package/V1.pm:120
  2801. msgid "native package with .orig.tar"
  2802. msgstr "paquet natif avec .orig.tar"
  2803. #: scripts/Dpkg/Source/Package/V1.pm:133
  2804. #, perl-format
  2805. msgid "unable to rename `%s' to `%s'"
  2806. msgstr "impossible de renommer « %s » en « %s »"
  2807. #: scripts/Dpkg/Source/Package/V1.pm:137 scripts/Dpkg/Source/Package/V2.pm:144
  2808. #: scripts/Dpkg/Source/Package/V2.pm:156 scripts/Dpkg/Source/Package/V2.pm:169
  2809. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:195
  2810. #: scripts/Dpkg/Source/Package/V3/Native.pm:63
  2811. #, perl-format
  2812. msgid "unpacking %s"
  2813. msgstr "extraction de %s"
  2814. #: scripts/Dpkg/Source/Package/V1.pm:144
  2815. msgid "unable to keep orig directory (already exists)"
  2816. msgstr "impossible de garder le répertoire orig, il existe déjà"
  2817. #: scripts/Dpkg/Source/Package/V1.pm:151
  2818. #, perl-format
  2819. msgid "failed to rename newly-extracted %s to %s"
  2820. msgstr "impossible de renommer le fichier extrait %s en %s"
  2821. #: scripts/Dpkg/Source/Package/V1.pm:157
  2822. #, perl-format
  2823. msgid "failed to rename saved %s to %s"
  2824. msgstr "impossible de renommer le fichier sauvegardé %s en %s"
  2825. #: scripts/Dpkg/Source/Package/V1.pm:164 scripts/Dpkg/Source/Package/V2.pm:226
  2826. #: scripts/Dpkg/Source/Quilt.pm:176
  2827. #, perl-format
  2828. msgid "applying %s"
  2829. msgstr "mise en place de %s"
  2830. #: scripts/Dpkg/Source/Package/V1.pm:169
  2831. #, perl-format
  2832. msgid "upstream files that have been modified: %s"
  2833. msgstr "fichiers amont modifiés : %s"
  2834. #: scripts/Dpkg/Source/Package/V1.pm:179
  2835. msgid "only supports gzip compression"
  2836. msgstr "ne gère que la compression gzip"
  2837. #: scripts/Dpkg/Source/Package/V1.pm:192
  2838. msgid ""
  2839. "-b takes at most a directory and an orig source argument (with v1.0 source "
  2840. "package)"
  2841. msgstr ""
  2842. "il faut au plus un paramètre répertoire et un paramètre source d'origine "
  2843. "avec -b (pour les paquets source v1.0)"
  2844. #: scripts/Dpkg/Source/Package/V1.pm:198
  2845. #, perl-format
  2846. msgid "source handling style -s%s not allowed with -b"
  2847. msgstr "gestion des sources avec -s%s non autorisée avec -b"
  2848. #: scripts/Dpkg/Source/Package/V1.pm:213
  2849. #, perl-format
  2850. msgid "packed orig `%s' exists but is not a plain file"
  2851. msgstr ""
  2852. "le fichier original compressé %s existe mais ce n'est pas un fichier texte"
  2853. #: scripts/Dpkg/Source/Package/V1.pm:225
  2854. #, perl-format
  2855. msgid "cannot stat orig argument %s"
  2856. msgstr "« stat » du paramètre origine %s impossible"
  2857. #: scripts/Dpkg/Source/Package/V1.pm:231
  2858. #, perl-format
  2859. msgid ""
  2860. "orig argument is unpacked but source handling style -s%s calls for packed (."
  2861. "orig.tar.<ext>)"
  2862. msgstr ""
  2863. "le paramètre source n'est pas compressé mais l'option -s%s demande des "
  2864. "sources compressées (.orig.tar.<ext>)"
  2865. #: scripts/Dpkg/Source/Package/V1.pm:239
  2866. #, perl-format
  2867. msgid ""
  2868. "orig argument is packed but source handling style -s%s calls for unpacked (."
  2869. "orig/)"
  2870. msgstr ""
  2871. "le paramètre source est compressé mais l'option -s%s demande des sources non "
  2872. "compressées (.orig/)"
  2873. #: scripts/Dpkg/Source/Package/V1.pm:244
  2874. #, perl-format
  2875. msgid "orig argument %s is not a plain file or directory"
  2876. msgstr "le paramètre source %s n'est pas un fichier ou un répertoire"
  2877. #: scripts/Dpkg/Source/Package/V1.pm:250
  2878. #, perl-format
  2879. msgid ""
  2880. "orig argument is empty (means no orig, no diff) but source handling style -s"
  2881. "%s wants something"
  2882. msgstr ""
  2883. "le paramètre source est vide (pas d'orig, pas de diff) mais l'option -s%s "
  2884. "attend quelque chose."
  2885. #: scripts/Dpkg/Source/Package/V1.pm:264
  2886. #, perl-format
  2887. msgid "unpacked orig `%s' exists but is not a directory"
  2888. msgstr ""
  2889. "le fichier original non compressé « %s » existe mais ce n'est pas un "
  2890. "répertoire"
  2891. #: scripts/Dpkg/Source/Package/V1.pm:269
  2892. #, perl-format
  2893. msgid "unable to stat putative unpacked orig `%s'"
  2894. msgstr "stat impossible du supposé orig non compressé « %s »"
  2895. #: scripts/Dpkg/Source/Package/V1.pm:278
  2896. #, perl-format
  2897. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  2898. msgstr ""
  2899. "répertoire source « %s » n'est pas <paquet_source>-<version_amont> « %s »"
  2900. #: scripts/Dpkg/Source/Package/V1.pm:287
  2901. #, perl-format
  2902. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  2903. msgstr "répertoire .orig %s n'est pas <paquet>-<version_amont> (%s demandé)"
  2904. #: scripts/Dpkg/Source/Package/V1.pm:296
  2905. #, perl-format
  2906. msgid ""
  2907. ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
  2908. msgstr ".orig.tar %s n'est pas <paquet>_<version_amont>.orig.tar (%s demandé)"
  2909. #: scripts/Dpkg/Source/Package/V1.pm:308
  2910. #, perl-format
  2911. msgid ""
  2912. "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
  2913. "override"
  2914. msgstr ""
  2915. "le fichier tar « %s » existe déjà, pas de modification, abandon ; utiliser -"
  2916. "sU ou -sR pour forcer."
  2917. #: scripts/Dpkg/Source/Package/V1.pm:312
  2918. #, perl-format
  2919. msgid "unable to check for existence of `%s'"
  2920. msgstr "impossible de vérifier l'existence de « %s »"
  2921. #: scripts/Dpkg/Source/Package/V1.pm:327 scripts/Dpkg/Source/Package/V1.pm:390
  2922. #: scripts/Dpkg/Source/Package/V3/Native.pm:106
  2923. #, perl-format
  2924. msgid "unable to rename `%s' (newly created) to `%s'"
  2925. msgstr "impossible de renommer « %s » (nouvellement créé) en « %s »"
  2926. #: scripts/Dpkg/Source/Package/V1.pm:330 scripts/Dpkg/Source/Package/V1.pm:393
  2927. #: scripts/Dpkg/Source/Package/V2.pm:596
  2928. #: scripts/Dpkg/Source/Package/V3/Native.pm:110
  2929. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:232
  2930. #: scripts/Dpkg/Source/Quilt.pm:372
  2931. #, perl-format
  2932. msgid "unable to change permission of `%s'"
  2933. msgstr "impossible de modifier les permissions de « %s »"
  2934. #: scripts/Dpkg/Source/Package/V1.pm:332 scripts/Dpkg/Source/Package/V2.pm:356
  2935. #, perl-format
  2936. msgid "building %s using existing %s"
  2937. msgstr "construction de %s en utilisant le %s existant"
  2938. #: scripts/Dpkg/Source/Package/V1.pm:341
  2939. #, perl-format
  2940. msgid ""
  2941. "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or -"
  2942. "sP to override"
  2943. msgstr ""
  2944. "le répertoire orig « %s » existe déjà, pas de modification, abandon ; "
  2945. "utiliser -sA, -sK ou -sP pour forcer."
  2946. #: scripts/Dpkg/Source/Package/V1.pm:349
  2947. #, perl-format
  2948. msgid "unable to check for existence of orig dir `%s'"
  2949. msgstr "impossible de vérifier l'existence du répertoire orig « %s »"
  2950. #: scripts/Dpkg/Source/Package/V1.pm:381
  2951. #, perl-format
  2952. msgid "the diff modifies the following upstream files: %s"
  2953. msgstr "le fichier de différences modifie les fichiers amont suivants : %s"
  2954. #: scripts/Dpkg/Source/Package/V1.pm:383
  2955. msgid ""
  2956. "use the '3.0 (quilt)' format to have separate and documented changes to "
  2957. "upstream files, see dpkg-source(1)"
  2958. msgstr ""
  2959. "choisissez le format « 3.0 (quilt) » pour utiliser des modifications "
  2960. "séparées et documentées dans les sources amont, voir dpkg-source(1)"
  2961. #: scripts/Dpkg/Source/Package/V1.pm:385
  2962. msgid "aborting due to --abort-on-upstream-changes"
  2963. msgstr "abandon suite à --abort-on-upstream-changes"
  2964. #: scripts/Dpkg/Source/Package/V1.pm:403
  2965. #, perl-format
  2966. msgid "%s: unrepresentable changes to source"
  2967. msgstr "%s : modifications non représentables des sources"
  2968. #: scripts/Dpkg/Source/Package/V2.pm:122
  2969. #, perl-format
  2970. msgid "duplicate files in %s source package: %s.*"
  2971. msgstr "fichiers mentionnés deux fois dans le paquet source %s : %s.*"
  2972. #: scripts/Dpkg/Source/Package/V2.pm:138
  2973. msgid "missing orig.tar or debian.tar file in v2.0 source package"
  2974. msgstr "fichier orig.tar ou debian.tar manquant dans un paquet source v2.0"
  2975. #: scripts/Dpkg/Source/Package/V2.pm:158
  2976. #, perl-format
  2977. msgid "required removal of `%s' installed by original tarball"
  2978. msgstr ""
  2979. "suppression indispensable de « %s » installé par l'archive tar originale"
  2980. #: scripts/Dpkg/Source/Package/V2.pm:244 scripts/Dpkg/Source/Quilt.pm:206
  2981. #, perl-format
  2982. msgid "unapplying %s"
  2983. msgstr "retrait de %s"
  2984. #: scripts/Dpkg/Source/Package/V2.pm:267 scripts/Dpkg/Source/Package/V2.pm:352
  2985. #, perl-format
  2986. msgid "no upstream tarball found at %s"
  2987. msgstr "pas de tarball de sources amont à %s"
  2988. #: scripts/Dpkg/Source/Package/V2.pm:321
  2989. msgid "patches are not applied, applying them now"
  2990. msgstr "les correctifs n'ont pas été appliqués, ils vont l'être maintenant"
  2991. #: scripts/Dpkg/Source/Package/V2.pm:339
  2992. #, perl-format
  2993. msgid "several orig.tar files found (%s and %s) but only one is allowed"
  2994. msgstr ""
  2995. "plusieurs fichiers orig.tar ont été trouvés (%s et %s) mais un seul est "
  2996. "autorisé"
  2997. #: scripts/Dpkg/Source/Package/V2.pm:378
  2998. msgid "copy of the debian directory"
  2999. msgstr "copie du répertoire debian"
  3000. #: scripts/Dpkg/Source/Package/V2.pm:403
  3001. msgid "unrepresentable changes to source"
  3002. msgstr "modifications non représentables des sources"
  3003. #: scripts/Dpkg/Source/Package/V2.pm:406
  3004. msgid "local changes detected, the modified files are:"
  3005. msgstr "modifications locales détectées, les fichiers modifiés sont :"
  3006. #: scripts/Dpkg/Source/Package/V2.pm:425
  3007. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:100
  3008. #: scripts/Dpkg/Source/Package/V3/Native.pm:84
  3009. #, perl-format
  3010. msgid "-b takes only one parameter with format `%s'"
  3011. msgstr "-b n'utilise qu'un paramètre avec le format « %s »"
  3012. #: scripts/Dpkg/Source/Package/V2.pm:444
  3013. #, perl-format
  3014. msgid "unwanted binary file: %s"
  3015. msgstr "fichier binaire non souhaité : %s"
  3016. #: scripts/Dpkg/Source/Package/V2.pm:479
  3017. #, perl-format
  3018. msgid ""
  3019. "detected %d unwanted binary file (add it in debian/source/include-binaries "
  3020. "to allow its inclusion)."
  3021. msgid_plural ""
  3022. "detected %d unwanted binary files (add them in debian/source/include-"
  3023. "binaries to allow their inclusion)."
  3024. msgstr[0] ""
  3025. "%d fichier binaire non souhaité a été détecté (il est nécessaire de "
  3026. "l'ajouter dans debian/source/include-binaries pour autoriser son inclusion)."
  3027. msgstr[1] ""
  3028. "%d fichiers binaires non souhaités ont été détectés (il est nécessaire de "
  3029. "les ajouter dans debian/source/include-binaries pour autoriser leur "
  3030. "inclusion)."
  3031. #: scripts/Dpkg/Source/Package/V2.pm:495
  3032. #, perl-format
  3033. msgid ""
  3034. "add %s in debian/source/include-binaries if you want to store the modified "
  3035. "binary in the debian tarball"
  3036. msgstr ""
  3037. "ajoutez %s dans debian/source/include-binaries si vous souhaitez conserver "
  3038. "le binaire modifié dans le ficher tar debian"
  3039. #: scripts/Dpkg/Source/Package/V2.pm:511
  3040. #, perl-format
  3041. msgid "you can integrate the local changes with %s"
  3042. msgstr "vous pouvez intégrer les modifications locales avec %s"
  3043. #: scripts/Dpkg/Source/Package/V2.pm:513
  3044. #, perl-format
  3045. msgid "aborting due to unexpected upstream changes, see %s"
  3046. msgstr "abandon suite à des modifications amont inattendues, voir %s"
  3047. #: scripts/Dpkg/Source/Package/V2.pm:524 scripts/Dpkg/Source/Package/V2.pm:672
  3048. #, perl-format
  3049. msgid "local changes have been recorded in a new patch: %s"
  3050. msgstr ""
  3051. "les modifications locales ont été enregistrées dans un nouveau patch: %s"
  3052. #: scripts/Dpkg/Source/Package/V2.pm:528 scripts/Dpkg/Source/Package/V2.pm:603
  3053. #: scripts/Dpkg/Source/Package/V2.pm:650 scripts/Dpkg/Source/Package/V2.pm:670
  3054. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:234
  3055. #, perl-format
  3056. msgid "cannot remove %s"
  3057. msgstr "impossible de supprimer %s"
  3058. #: scripts/Dpkg/Source/Package/V2.pm:594
  3059. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:230
  3060. #: scripts/Dpkg/Source/Quilt.pm:370
  3061. #, perl-format
  3062. msgid "failed to copy %s to %s"
  3063. msgstr "impossible de copier %s en %s"
  3064. #: scripts/Dpkg/Source/Package/V2.pm:616
  3065. #, perl-format
  3066. msgid "cannot register changes in %s, this patch already exists"
  3067. msgstr ""
  3068. "impossible d'enregistrer les changements dans %s, le fichier de différence "
  3069. "existe déjà "
  3070. #: scripts/Dpkg/Source/Package/V2.pm:633
  3071. #, perl-format
  3072. msgid "patch file '%s' doesn't exist"
  3073. msgstr "le fichier de correctifs « %s » n'existe pas"
  3074. #: scripts/Dpkg/Source/Package/V2.pm:651
  3075. msgid "there are no local changes to record"
  3076. msgstr "aucune modification locale à enregistrer"
  3077. #: scripts/Dpkg/Source/Package/V2.pm:656
  3078. msgid "Enter the desired patch name: "
  3079. msgstr "Saisissez le nom du fichier de différences : "
  3080. #: scripts/Dpkg/Source/Package/V2.pm:666
  3081. #, fuzzy
  3082. #| msgid "cannot find '%s'"
  3083. msgid "cannot find an editor"
  3084. msgstr "impossible de trouver %s"
  3085. #: scripts/Dpkg/Source/Package/V2.pm:737
  3086. #, perl-format
  3087. msgid "adding %s to %s"
  3088. msgstr "ajout de %s à %s"
  3089. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:52
  3090. msgid "cannot unpack bzr-format source package because bzr is not in the PATH"
  3091. msgstr ""
  3092. "impossible de décompresser le paquet source au format bzr car la commande "
  3093. "bzr n'est pas dans PATH"
  3094. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:60
  3095. #, perl-format
  3096. msgid ""
  3097. "source directory is not the top directory of a bzr repository (%s/.bzr not "
  3098. "present), but Format bzr was specified"
  3099. msgstr ""
  3100. "le répertoire source n'est pas le sommet d'un dépôt bzr (%s/.bzr absent) "
  3101. "bien que le format bzr ait été indiqué"
  3102. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:67
  3103. #, perl-format
  3104. msgid "%s is a symlink"
  3105. msgstr "%s est un lien symbolique"
  3106. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:73
  3107. #, perl-format
  3108. msgid "%s is a symlink to outside %s"
  3109. msgstr "%s est un lien symbolique vers l'extérieur %s"
  3110. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:85
  3111. msgid "doesn't contain a bzr repository"
  3112. msgstr "ne contient pas de dépôt bzr"
  3113. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:131
  3114. msgid "bzr status exited nonzero"
  3115. msgstr "état de sortie non nul pour bzr"
  3116. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:133
  3117. #: scripts/Dpkg/Source/Package/V3/Git.pm:137
  3118. #, perl-format
  3119. msgid "uncommitted, not-ignored changes in working directory: %s"
  3120. msgstr ""
  3121. "non « commité », modifications non ignorées dans le répertoire de "
  3122. "travail : %s"
  3123. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:183
  3124. msgid "format v3.0 uses only one source file"
  3125. msgstr "le format v3.0 n'utilise qu'un fichier source"
  3126. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:188
  3127. #, perl-format
  3128. msgid "expected %s, got %s"
  3129. msgstr "%s attendu, %s reçu"
  3130. #: scripts/Dpkg/Source/Package/V3/Custom.pm:40
  3131. msgid "Format `3.0 (custom)' is only used to create source packages"
  3132. msgstr ""
  3133. "Le format « 3.0 (personnalisé) » (« 3.0 (custom) ») n'est utilisé que pour "
  3134. "créer des paquets source"
  3135. #: scripts/Dpkg/Source/Package/V3/Custom.pm:46
  3136. msgid "no files indicated on command line"
  3137. msgstr "pas de fichiers indiqués à la ligne de commande"
  3138. #: scripts/Dpkg/Source/Package/V3/Custom.pm:55
  3139. msgid "--target-format option is missing"
  3140. msgstr "l'option --target-format est absente"
  3141. #: scripts/Dpkg/Source/Package/V3/Native.pm:56
  3142. #, perl-format
  3143. msgid "unrecognized file for a native source package: %s"
  3144. msgstr "fichier non reconnu pour un paquet source natif : %s"
  3145. #: scripts/Dpkg/Source/Package/V3/Native.pm:72
  3146. msgid "native package version may not have a revision"
  3147. msgstr "la version du paquet natif ne peut avoir de numéro de révision"
  3148. #: scripts/Dpkg/Source/Package/V3/Git.pm:55
  3149. msgid "cannot unpack git-format source package because git is not in the PATH"
  3150. msgstr ""
  3151. "impossible de décompresser le paquet source au format git car la commande "
  3152. "git n'est pas dans PATH"
  3153. #: scripts/Dpkg/Source/Package/V3/Git.pm:63
  3154. #, perl-format
  3155. msgid ""
  3156. "source directory is not the top directory of a git repository (%s/.git not "
  3157. "present), but Format git was specified"
  3158. msgstr ""
  3159. "le répertoire source n'est pas le sommet d'un dépôt git (%s/.git absent) "
  3160. "bien que le format git ait été indiqué"
  3161. #: scripts/Dpkg/Source/Package/V3/Git.pm:68
  3162. #, perl-format
  3163. msgid "git repository %s uses submodules; this is not yet supported"
  3164. msgstr ""
  3165. "le dépôt git %s utilise des sous-modules ; cela n'est actuellement pas géré"
  3166. #: scripts/Dpkg/Source/Package/V3/Git.pm:91
  3167. msgid "doesn't contain a git repository"
  3168. msgstr "ne contient pas de dépôt git"
  3169. #: scripts/Dpkg/Source/Package/V3/Git.pm:135
  3170. msgid "git ls-files exited nonzero"
  3171. msgstr "état de sortie non nul de git ls-files"
  3172. #: scripts/Dpkg/Source/Package/V3/Git.pm:152
  3173. #, perl-format
  3174. msgid "creating shallow clone with depth %s"
  3175. msgstr ""
  3176. "création d'un clone de surface (« shallow clone ») avec la profondeur %s"
  3177. #: scripts/Dpkg/Source/Package/V3/Git.pm:168
  3178. #, perl-format
  3179. msgid "bundling: %s"
  3180. msgstr "jonction (bundling) : %s"
  3181. #: scripts/Dpkg/Source/Package/V3/Git.pm:203
  3182. msgid "format v3.0 (git) uses only one .git file"
  3183. msgstr "le format v3.0 (git) n'utilise qu'un fichier .git"
  3184. #: scripts/Dpkg/Source/Package/V3/Git.pm:209
  3185. msgid "format v3.0 (git) uses only one .gitshallow file"
  3186. msgstr "le format v3.0 (git) n'utilise qu'un fichier .gitshallow"
  3187. #: scripts/Dpkg/Source/Package/V3/Git.pm:212
  3188. #, perl-format
  3189. msgid "format v3.0 (git) unknown file: %s"
  3190. msgstr "fichier inconnu pour le format v3.0 (git) : %s"
  3191. #: scripts/Dpkg/Source/Package/V3/Git.pm:216
  3192. #, perl-format
  3193. msgid "format v3.0 (git) expected %s"
  3194. msgstr "le format v3.0 (git) attend %s"
  3195. #: scripts/Dpkg/Source/Package/V3/Git.pm:222
  3196. #, perl-format
  3197. msgid "cloning %s"
  3198. msgstr "clonage de %s"
  3199. #: scripts/Dpkg/Source/Package/V3/Git.pm:229
  3200. msgid "setting up shallow clone"
  3201. msgstr "configuration du clone de surface"
  3202. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:77
  3203. msgid "non-native package version does not contain a revision"
  3204. msgstr "la version du paquet non natif ne contient pas de numéro de révision"
  3205. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:120
  3206. #, perl-format
  3207. msgid "can't create symlink %s"
  3208. msgstr "impossible de lire le lien symbolique %s"
  3209. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:188
  3210. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:190
  3211. #, perl-format
  3212. msgid "unsupported version of the quilt metadata: %s"
  3213. msgstr "version inconnue des métadonnées de quilt : %s"
  3214. #: scripts/Dpkg/Source/Quilt.pm:55
  3215. #, perl-format
  3216. msgid "cannot mkdir %s"
  3217. msgstr "impossible de créer le répertoire %s"
  3218. #: scripts/Dpkg/Source/Quilt.pm:186
  3219. msgid "the patch has fuzz which is not allowed, or is malformed"
  3220. msgstr ""
  3221. #: scripts/Dpkg/Source/Quilt.pm:187
  3222. #, perl-format
  3223. msgid "if patch '%s' is correctly applied by quilt, use '%s' to update it"
  3224. msgstr ""
  3225. "si le correctif « %s » est correctement appliqué par quilt, utiliser « %s » "
  3226. "pour le mettre à jour"
  3227. #: scripts/Dpkg/Source/Quilt.pm:245
  3228. #, perl-format
  3229. msgid "%s should be a directory or non-existing"
  3230. msgstr "%s devrait être un répertoire ou ne pas exister"
  3231. #: scripts/Dpkg/Source/Quilt.pm:249
  3232. #, perl-format
  3233. msgid "%s should be a file or non-existing"
  3234. msgstr "%s devrait être un fichier ou ne pas exister"
  3235. #: scripts/Dpkg/Source/Quilt.pm:331
  3236. #, perl-format
  3237. msgid ""
  3238. "the series file (%s) contains unsupported options ('%s', line %s); dpkg-"
  3239. "source might fail when applying patches"
  3240. msgstr ""
  3241. "le fichier « series » (%s) contient des options non gérées (« %s », ligne "
  3242. "%s) ; dpkg-source pourrait échouer dans l'application des correctifs"
  3243. #: scripts/Dpkg/Source/Quilt.pm:358
  3244. #, perl-format
  3245. msgid "restoring quilt backup files for %s"
  3246. msgstr "restauration des fichiers de sauvegarde de quilt pour %s"
  3247. #: scripts/Dpkg/Substvars.pm:206
  3248. #, perl-format
  3249. msgid "bad line in substvars file %s at line %d"
  3250. msgstr "fichier substvars %s : ligne %d mal formée"
  3251. #: scripts/Dpkg/Substvars.pm:283
  3252. #, perl-format
  3253. msgid "too many substitutions - recursive ? - in `%s'"
  3254. msgstr "trop de substitutions - mode récursif ? - dans « %s »"
  3255. #: scripts/Dpkg/Substvars.pm:293
  3256. #, fuzzy, perl-format
  3257. #| msgid "unused substitution variable ${%s}"
  3258. msgid "deprecated substitution variable ${%s}"
  3259. msgstr "variable de substitution inutilisée ${%s}"
  3260. #: scripts/Dpkg/Substvars.pm:296
  3261. #, perl-format
  3262. msgid "unknown substitution variable ${%s}"
  3263. msgstr "variable de substitution inconnue ${%s}"
  3264. #: scripts/Dpkg/Substvars.pm:320
  3265. #, perl-format
  3266. msgid "unused substitution variable ${%s}"
  3267. msgstr "variable de substitution inutilisée ${%s}"
  3268. #: scripts/Dpkg/Vars.pm:40
  3269. #, perl-format
  3270. msgid "source package name '%s' is illegal: %s"
  3271. msgstr "le nom du paquet source « %s » n'est pas autorisé : %s"
  3272. #: scripts/Dpkg/Vars.pm:45
  3273. #, perl-format
  3274. msgid "source package has two conflicting values - %s and %s"
  3275. msgstr "le paquet source a deux valeurs en conflit : %s et %s"
  3276. #: scripts/Dpkg/Vendor/Debian.pm:91
  3277. #, fuzzy, perl-format
  3278. #| msgid "unknown hardening feature: %s"
  3279. msgid "unknown %s feature: %s"
  3280. msgstr "fonctionnalité de renforcement (« hardening ») inconnue : %s"
  3281. #: scripts/Dpkg/Vendor/Debian.pm:95
  3282. #, fuzzy, perl-format
  3283. #| msgid "incorrect value in hardening option of DEB_BUILD_MAINT_OPTIONS: %s"
  3284. msgid "incorrect value in %s option of DEB_BUILD_MAINT_OPTIONS: %s"
  3285. msgstr ""
  3286. "valeur incorrecte dans l'option de renforcement de DEB_BUILD_MAINT_OPTIONS : "
  3287. "%s"
  3288. #: scripts/Dpkg/Vendor/Debian.pm:107
  3289. #, perl-format
  3290. msgid "unknown host architecture '%s'"
  3291. msgstr "architecture hôte « %s » inconnue"
  3292. #: scripts/Dpkg/Vendor/Ubuntu.pm:62 scripts/Dpkg/Vendor/Ubuntu.pm:64
  3293. msgid ""
  3294. "Version number suggests Ubuntu changes, but Maintainer: does not have Ubuntu "
  3295. "address"
  3296. msgstr ""
  3297. "Le numéro de version indique des modifications provenant d'Ubuntu mais le "
  3298. "champ « Maintainer: » ne comporte pas d'adresse Ubuntu"
  3299. #: scripts/Dpkg/Vendor/Ubuntu.pm:68
  3300. msgid ""
  3301. "Version number suggests Ubuntu changes, but there is no XSBC-Original-"
  3302. "Maintainer field"
  3303. msgstr ""
  3304. "Le numéro de version indique des modifications provenant d'Ubuntu mais il "
  3305. "n'existe pas de champ « XSBC-Original-Maintainer: »"
  3306. #: scripts/Dpkg/Vendor/Ubuntu.pm:126
  3307. msgid "'hardening' flag found but 'hardening-wrapper' not installed"
  3308. msgstr "drapeau « hardening » mais « hardening-wrapper » n'est pas installé"
  3309. #: scripts/Dpkg/Vendor/Ubuntu.pm:145
  3310. #, perl-format
  3311. msgid "overriding %s in environment: %s"
  3312. msgstr "remplacement de %s dans l'environnement : %s"
  3313. #: scripts/Dpkg/Version.pm:235 scripts/Dpkg/Version.pm:237
  3314. #, perl-format
  3315. msgid "%s is not a valid version"
  3316. msgstr "%s n'est pas une version valable"
  3317. #: scripts/Dpkg/Version.pm:403
  3318. msgid "version number cannot be empty"
  3319. msgstr "le numéro de version ne peut pas être vide"
  3320. #: scripts/Dpkg/Version.pm:408
  3321. msgid "version number does not start with digit"
  3322. msgstr "le numéro de version ne commence par par un chiffre"
  3323. #: scripts/Dpkg/Version.pm:413
  3324. #, perl-format
  3325. msgid "version number contains illegal character `%s'"
  3326. msgstr "le numéro de version contient un caractère « %s » non autorisé"
  3327. #: scripts/Dpkg/Version.pm:418
  3328. #, perl-format
  3329. msgid "epoch part of the version number is not a number: '%s'"
  3330. msgstr ""
  3331. "la partie d'ère (« epoch ») du numéro de version n'est pas un nombre : « %s »"
  3332. #~ msgid "binary-only upload - not including any source code"
  3333. #~ msgstr "envoi d'un binaire - aucune inclusion de code source"
  3334. #~ msgid "fuzz is not allowed when applying patches"
  3335. #~ msgstr ""
  3336. #~ "les décalages (« fuzz ») ne sont pas autorisés lors de l'application des "
  3337. #~ "correctifs"
  3338. #, fuzzy
  3339. #~| msgid "diff `%s' patches file with name ending .dpkg-orig"
  3340. #~ msgid "diff %s patches file with unknown escape sequence \\%s"
  3341. #~ msgstr ""
  3342. #~ "diff « %s » modifie un fichier dont le nom de termine par .dpkg-orig"
  3343. #~ msgid "open new files list file"
  3344. #~ msgstr "ouverture du nouveau fichier de liste des fichiers"
  3345. #~ msgid "copy old entry to new files list file"
  3346. #~ msgstr ""
  3347. #~ "copie de l'ancienne entrée dans le nouveau fichier de liste des fichiers"
  3348. #~ msgid "read old files list file"
  3349. #~ msgstr "lecture du nouveau fichier de liste des fichiers"
  3350. #~ msgid "write new entry to new files list file"
  3351. #~ msgstr ""
  3352. #~ "écriture de la nouvelle entrée dans le nouveau fichier de liste des "
  3353. #~ "fichiers"
  3354. #~ msgid "close new files list file"
  3355. #~ msgstr "fermeture du nouveau fichier de liste des fichiers"
  3356. #~ msgid "cannot read files list file"
  3357. #~ msgstr "impossible de lire le fichier de liste des fichiers."
  3358. #~ msgid "duplicate files list entry for package %s (line %d)"
  3359. #~ msgstr ""
  3360. #~ "entrée en double dans le fichier de liste des fichiers pour le paquet %s "
  3361. #~ "(ligne %d) "
  3362. #~ msgid "close old files list file"
  3363. #~ msgstr "fermeture de l'ancien fichier de liste des fichiers"
  3364. #~ msgid "internal error"
  3365. #~ msgstr "erreur interne"
  3366. #~ msgid "fatal error occurred while parsing input"
  3367. #~ msgstr "erreur fatale rencontrée lors de l'analyse des données"
  3368. #~ msgid ""
  3369. #~ "\n"
  3370. #~ "Usage: %s [<options> ...]\n"
  3371. #~ "\n"
  3372. #~ "Options:\n"
  3373. #~ " -r<gain-root-command>\n"
  3374. #~ " command to gain root privileges (default is fakeroot).\n"
  3375. #~ " -R<rules> rules file to execute (default is debian/rules).\n"
  3376. #~ " -p<sign-command>\n"
  3377. #~ " -d do not check build dependencies and conflicts.\n"
  3378. #~ " -D check build dependencies and conflicts.\n"
  3379. #~ " -T<target> call debian/rules <target> with the proper environment\n"
  3380. #~ " --as-root ensure -T calls the target with root rights\n"
  3381. #~ " -j[<number>] specify jobs to run simultaneously } passed to debian/"
  3382. #~ "rules\n"
  3383. #~ " -k<keyid> the key to use for signing.\n"
  3384. #~ " -sgpg the sign-command is called like GPG.\n"
  3385. #~ " -spgp the sign-command is called like PGP.\n"
  3386. #~ " -us unsigned source.\n"
  3387. #~ " -uc unsigned changes.\n"
  3388. #~ " -a<arch> Debian architecture we build for (implies -d).\n"
  3389. #~ " -b binary-only, do not build source. } also passed to\n"
  3390. #~ " -B binary-only, no arch-indep files. } dpkg-genchanges\n"
  3391. #~ " -A binary-only, only arch-indep files. }\n"
  3392. #~ " -S source only, no binary files. }\n"
  3393. #~ " -F normal full build (binaries and sources).\n"
  3394. #~ " -t<system> set GNU system type. } passed to dpkg-"
  3395. #~ "architecture\n"
  3396. #~ " -v<version> changes since version <version>. }\n"
  3397. #~ " -m<maint> maintainer for package is <maint>. }\n"
  3398. #~ " -e<maint> maintainer for release is <maint>. } only passed\n"
  3399. #~ " -C<descfile> changes are described in <descfile>. } to dpkg-"
  3400. #~ "genchanges\n"
  3401. #~ " -si (default) src includes orig if new upstream. }\n"
  3402. #~ " -sa uploaded src always includes orig. }\n"
  3403. #~ " -sd uploaded src is diff and .dsc only. }\n"
  3404. #~ " -sn force Debian native source format. }\n"
  3405. #~ " -s[sAkurKUR] see dpkg-source for explanation. } only passed\n"
  3406. #~ " -z<level> compression level of source } to dpkg-"
  3407. #~ "source\n"
  3408. #~ " -Z<compressor> compression to use for source }\n"
  3409. #~ " -nc do not clean source tree (implies -b).\n"
  3410. #~ " -tc clean source tree when finished.\n"
  3411. #~ " -ap add pause before starting signature process.\n"
  3412. #~ " -i[<regex>] ignore diffs of files matching regex. } only passed\n"
  3413. #~ " -I[<pattern>] filter out files when building tarballs. } to dpkg-"
  3414. #~ "source\n"
  3415. #~ " --source-option=<opt>\n"
  3416. #~ "\t\t pass option <opt> to dpkg-source\n"
  3417. #~ " --changes-option=<opt>\n"
  3418. #~ "\t\t pass option <opt> to dpkg-genchanges\n"
  3419. #~ " --admindir=<directory>\n"
  3420. #~ " change the administrative directory.\n"
  3421. #~ " -h, --help show this help message.\n"
  3422. #~ " --version show the version.\n"
  3423. #~ msgstr ""
  3424. #~ "\n"
  3425. #~ "Syntaxe : %s [<options> ...]\n"
  3426. #~ "\n"
  3427. #~ "Options :\n"
  3428. #~ " -r<commande-gain-root>\n"
  3429. #~ " commande pour obtenir les privilèges administrateur\n"
  3430. #~ " (par défaut, fakeroot).\n"
  3431. #~ " -R<rules> fichier rules à exécuter (par défaut, debian/rules).\n"
  3432. #~ " -p<commande-sign>\n"
  3433. #~ " -d ne pas vérifier les dépendances de construction et les "
  3434. #~ "conflits.\n"
  3435. #~ " -D vérifier les dépendances de construction et les "
  3436. #~ "conflits.\n"
  3437. #~ " -T<cible> lancer « debian/rules <cible> » avec l'environnement\n"
  3438. #~ " adéquat.\n"
  3439. #~ " --as-root avec -T, appeler la cible avec les droits du\n"
  3440. #~ " superutilisateur.\n"
  3441. #~ " -j[<nombre>] spécifier le nombre de tâches à exécuter "
  3442. #~ "simultanément } \n"
  3443. #~ " passé à debian/rules\n"
  3444. #~ " -k<id-clé> clé à utiliser pour la signature.\n"
  3445. #~ " -sgpg la commande de signature est appelée comme GPG.\n"
  3446. #~ " -spgp la commande de signature est appelée comme PGP.\n"
  3447. #~ " -us fichier source non signé.\n"
  3448. #~ " -uc fichier changes non signé.\n"
  3449. #~ " -a<arch> architecture Debian de construction (implique -d).\n"
  3450. #~ " -b binaire uniquement, ne pas construire } également\n"
  3451. #~ " les sources.} } passé\n"
  3452. #~ " -B binaire uniquement, pas de fichier } à\n"
  3453. #~ " « arch-indep ». } dpkg-\n"
  3454. #~ " -A binaire uniquement, seulement les } genchanges\n"
  3455. #~ " fichiers « arch-indep » }\n"
  3456. #~ " -S source uniquement, pas de fichier }\n"
  3457. #~ " binaire. }\n"
  3458. #~ " -F construction complète normale (binaires et sources).\n"
  3459. #~ " -t<système> définir le type système GNU. } passé à dpkg-"
  3460. #~ "architecture\n"
  3461. #~ " -v<version> changements depuis la version <version>. }\n"
  3462. #~ " -m<resp> le responsable pour le paquet est <resp>. }\n"
  3463. #~ " -e<resp> le responsable pour la publication est <resp>. } "
  3464. #~ "uniquement passé\n"
  3465. #~ " -C<fichier-desc> les changements sont décrits dans <fichier-desc>. } à "
  3466. #~ "dpkg-genchanges\n"
  3467. #~ " -si (défaut) src inclut l'orig si nouvelle version amont. }\n"
  3468. #~ " -sa le source envoyé inclut toujours l'orig. }\n"
  3469. #~ " -sd le source envoyé ne comprend que le diff et le .dsc. }\n"
  3470. #~ " -sn force le format source natif Debian. }\n"
  3471. #~ " -s[sAkurKUR] voir dpkg-source pour l'explication. } seulement "
  3472. #~ "passé\n"
  3473. #~ " -z<niveau> niveau de compression des sources } à dpkg-"
  3474. #~ "source\n"
  3475. #~ " -Z<compression>\n"
  3476. #~ " type de compression à utiliser pour les sources }\n"
  3477. #~ " -nc ne pas nettoyer l'arborescence des sources (implique -"
  3478. #~ "b).\n"
  3479. #~ " -tc nettoyer l'arborescence des sources à la fin.\n"
  3480. #~ " -ap ajouter une pause avant de lancer le processus de "
  3481. #~ "signature.\n"
  3482. #~ " -i[<regex>] ignorer les différences de fichiers correspondant à "
  3483. #~ "regex. } uniquement passé\n"
  3484. #~ " -I[<format>] filtrer les fichiers lors de la construction des "
  3485. #~ "tarballs. } à dpkg-source\n"
  3486. #~ " --source-option=<opt>\n"
  3487. #~ "\t\t passer l'option <opt> à dpkg-source\n"
  3488. #~ " --changes-option=<opt>\n"
  3489. #~ "\t\t passer l'option <opt> à dpkg-genchanges\n"
  3490. #~ " --admindir=<répertoire>\n"
  3491. #~ " changer le répertoire d'administration.\n"
  3492. #~ " -h, --help afficher ce message d'aide.\n"
  3493. #~ " --version afficher la version.\n"
  3494. #~ msgid "PGP support is deprecated (see README.feature-removal-schedule)"
  3495. #~ msgstr ""
  3496. #~ "La gestion de PGP est obsolète (voir le fichier README.feature-removal-"
  3497. #~ "schedule)."
  3498. #~ msgid "will probably become fatal in the future."
  3499. #~ msgstr "deviendra fatal dans le futur."
  3500. #~ msgid ""
  3501. #~ "-u, --udeb option is deprecated (see README.feature-removal-schedule)"
  3502. #~ msgstr "-u, --udeb option obsolète (voir README.feature-removal-schedule)"
  3503. #~ msgid ""
  3504. #~ "This source package can only be manipulated using bzr, which is not in "
  3505. #~ "the PATH."
  3506. #~ msgstr ""
  3507. #~ "Ce paquet source ne peut être manipulé qu'avez bzr, qui n'est pas "
  3508. #~ "accessible dans le chemin de recherche par défaut (PATH)."
  3509. #~ msgid "source package name `%s' starts with non-alphanum"
  3510. #~ msgstr ""
  3511. #~ "le nom du paquet source « %s » ne commence ni par une lettre ni par un "
  3512. #~ "chiffre"
  3513. #~ msgid ""
  3514. #~ "\n"
  3515. #~ "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  3516. #~ "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  3517. #~ msgstr ""
  3518. #~ "\n"
  3519. #~ "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  3520. #~ "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  3521. #, fuzzy
  3522. #~| msgid ""
  3523. #~| "\n"
  3524. #~| "Copyright (C) 2010 Raphael Hertzog <hertzog@debian.org>."
  3525. #~ msgid ""
  3526. #~ "\n"
  3527. #~ "Copyright (C) 2010-2011 Raphael Hertzog <hertzog@debian.org>."
  3528. #~ msgstr ""
  3529. #~ "\n"
  3530. #~ "Copyright (C) 2010 Raphael Hertzog <hertzog@debian.org>."
  3531. #~ msgid ""
  3532. #~ "\n"
  3533. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3534. #~ "Copyright (C) 2000 Wichert Akkerman\n"
  3535. #~ "Copyright (C) 2007 Frank Lichtenheld"
  3536. #~ msgstr ""
  3537. #~ "\n"
  3538. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3539. #~ "Copyright (C) 2000 Wichert Akkerman.\n"
  3540. #~ "Copyright (C) 2007 Frank Lichtenheld."
  3541. #, fuzzy
  3542. #~| msgid "%s: export %s from dpkg-buildflags (origin: %s): %s\n"
  3543. #~ msgid "%s: dpkg-buildflags (origin: %s): %s = %s\n"
  3544. #~ msgstr "%s: export de %s depuis dpkg-buildflags (origine : %s): %s\n"
  3545. #~ msgid ""
  3546. #~ "\n"
  3547. #~ "Copyright (C) 1996 Ian Jackson."
  3548. #~ msgstr ""
  3549. #~ "\n"
  3550. #~ "Copyright (C) 1996 Ian Jackson."
  3551. #~ msgid ""
  3552. #~ "\n"
  3553. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3554. #~ "Copyright (C) 2000,2001 Wichert Akkerman."
  3555. #~ msgstr ""
  3556. #~ "\n"
  3557. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3558. #~ "Copyright (C) 2000,2001 Wichert Akkerman."
  3559. #~ msgid ""
  3560. #~ "\n"
  3561. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3562. #~ "Copyright (C) 2000,2002 Wichert Akkerman."
  3563. #~ msgstr ""
  3564. #~ "\n"
  3565. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3566. #~ "Copyright (C) 2000,2002 Wichert Akkerman."
  3567. #~ msgid ""
  3568. #~ "\n"
  3569. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  3570. #~ msgstr ""
  3571. #~ "\n"
  3572. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  3573. #~ msgid "Copyright (C) 2009-2010 Raphael Hertzog."
  3574. #~ msgstr "Copyright (C) 2009-2010 Raphael Hertzog."
  3575. #~ msgid ""
  3576. #~ "\n"
  3577. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3578. #~ "Copyright (C) 2001 Wichert Akkerman"
  3579. #~ msgstr ""
  3580. #~ "\n"
  3581. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3582. #~ "Copyright (C) 2001 Wichert Akkerman"
  3583. #~ msgid ""
  3584. #~ "\n"
  3585. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3586. #~ "Copyright (C) 2000 Wichert Akkerman.\n"
  3587. #~ "Copyright (C) 2006 Frank Lichtenheld.\n"
  3588. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  3589. #~ msgstr ""
  3590. #~ "\n"
  3591. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3592. #~ "Copyright (C) 2000 Wichert Akkerman.\n"
  3593. #~ "Copyright (C) 2006 Frank Lichtenheld.\n"
  3594. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  3595. #~ msgid ""
  3596. #~ "\n"
  3597. #~ "Copyright (C) 1996 Ian Jackson\n"
  3598. #~ "Copyright (C) 1997 Klee Dienes\n"
  3599. #~ "Copyright (C) 2008 Raphael Hertzog"
  3600. #~ msgstr ""
  3601. #~ "\n"
  3602. #~ "Copyright (C) 1996 Ian Jackson\n"
  3603. #~ "Copyright (C) 1997 Klee Dienes\n"
  3604. #~ "Copyright (C) 2008 Raphael Hertzog"
  3605. #~ msgid ""
  3606. #~ "\n"
  3607. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3608. #~ "Copyright (C) 2005,2007 Frank Lichtenheld."
  3609. #~ msgstr ""
  3610. #~ "\n"
  3611. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3612. #~ "Copyright (C) 2005,2007 Frank Lichtenheld."
  3613. #~ msgid "1 to 3 args expected\n"
  3614. #~ msgstr "de 1 à 3 paramètres attendus\n"
  3615. #~ msgid "need an action option"
  3616. #~ msgstr "option d'action indispensable"
  3617. #~ msgid "entry of APT's %s file"
  3618. #~ msgstr "entrée du fichier %s d'APT"
  3619. #~ msgid "no orig.tar file found"
  3620. #~ msgstr "pas de fichier orig.tar trouvé"
  3621. #~ msgid "cannot rename %s to %s"
  3622. #~ msgstr "impossible de renommer %s en %s"
  3623. #~ msgid "exec %s"
  3624. #~ msgstr "exec %s"
  3625. #~ msgid "cannot exec dpkg"
  3626. #~ msgstr "impossible d'exécuter dpkg"
  3627. #~ msgid "git config exited nonzero"
  3628. #~ msgstr "état non nul de sortie pour la configuration de git"
  3629. #~ msgid "executable bit set on %s; clearing"
  3630. #~ msgstr "bit exécutable placé sur %s, suppression"
  3631. #~ msgid "unable to remove `%s'"
  3632. #~ msgstr "impossible de supprimer %s"
  3633. #~ msgid "modifying .git/config to comment out some settings"
  3634. #~ msgstr "modification de .git/config pour activer certains réglages"
  3635. #~ msgid "unable to append to %s"
  3636. #~ msgstr "impossible d'ajouter à %s"
  3637. #~ msgid "The following setting(s) were disabled by dpkg-source"
  3638. #~ msgstr "Le(s) réglage(s) suivant(s) est(sont) désactivé(s) par dpkg-source"
  3639. #~ msgid "need -x or -b"
  3640. #~ msgstr "-x ou -b nécessaire"
  3641. #~ msgid "objdump on `%s'"
  3642. #~ msgstr "objdump sur %s"
  3643. #~ msgid "%s: set %s to default value: %s\n"
  3644. #~ msgstr "%s : définir %s à la valeur par défaut : %s\n"
  3645. #~ msgid "cannot open .dsc file %s"
  3646. #~ msgstr "impossible d'ouvrir le fichier .dsc %s"
  3647. #~ msgid "source control file %s"
  3648. #~ msgstr "fichier de contrôle des sources %s"
  3649. #~ msgid "Files field contains bad line `%s'"
  3650. #~ msgstr "le champ Files contient une ligne mal formée « %s »"
  3651. #~ msgid "Conflicting sizes `%u' and `%u' for file `%s'"
  3652. #~ msgstr "Tailles en conflit : « %u » et « %u » pour le fichier « %s »"
  3653. #~ msgid "fork for du"
  3654. #~ msgstr "fork pour du"
  3655. #~ msgid "source format `%s' discarded: %s"
  3656. #~ msgstr "format source « %s » abandonné : %s"
  3657. #~ msgid "fork for %s"
  3658. #~ msgstr "fork for %s"
  3659. #~ msgid "Unknown checksum algorithm `%s', ignoring"
  3660. #~ msgstr "Algorithme de calcul de somme de contrôle %s inconnu et ignoré"
  3661. #~ msgid "Checksums-%s field contains bad line `%s'"
  3662. #~ msgstr "Le champ Checksums-%s contient une ligne mal formée « %s »"
  3663. #~ msgid "file `%s' listed twice in Files field"
  3664. #~ msgstr "le fichier « %s » est mentionné deux fois dans le champ Files"
  3665. #~ msgid "applying all patches with %s"
  3666. #~ msgstr "application de toutes les corrections avec %s"
  3667. #~ msgid "unable to open substvars file %s: %s"
  3668. #~ msgstr "impossible d'ouvrir le fichier substvars %s : %s"
  3669. #~ msgid "Couldn't call dpkg-deb on %s: %s, skipping package"
  3670. #~ msgstr "Impossible d'appeler dpkg-deb sur %s : %s, paquet sauté"
  3671. #~ msgid "Couldn't open override file %s"
  3672. #~ msgstr "Impossible d'ouvrir le fichier d'override %s"
  3673. #~ msgid ""
  3674. #~ "Unprocessed text from %s control file; info:\n"
  3675. #~ "%s / %s"
  3676. #~ msgstr ""
  3677. #~ "Texte non traité du fichier de contrôle %s ; info :\n"
  3678. #~ "%s / %s"
  3679. #~ msgid "can't read override file %s"
  3680. #~ msgstr "impossible de lire le fichier d'override %s"
  3681. #~ msgid "error closing override file"
  3682. #~ msgstr "erreur en fermant le fichier d'override"
  3683. #~ msgid "can't read source override file %s"
  3684. #~ msgstr "impossible de lire le fichier d'override pour les sources %s"
  3685. #~ msgid "error closing source override file"
  3686. #~ msgstr "erreur en fermant le fichier d'override pour les sources"
  3687. #, fuzzy
  3688. #~ msgid "parsing an empty file %s"
  3689. #~ msgstr "impossible d'ouvrir le fichier %s"
  3690. #~ msgid "fatal error"
  3691. #~ msgstr "erreur fatale"
  3692. #~ msgid "can't open file %s: %s"
  3693. #~ msgstr "impossible d'ouvrir le fichier %s : %s"
  3694. #~ msgid "can't load IO::String: %s"
  3695. #~ msgstr "impossible de charger IO::String: %s"
  3696. #~ msgid "no changelog file specified"
  3697. #~ msgstr "pas de fichier de changements indiqué"
  3698. #~ msgid "can't close file %s: %s"
  3699. #~ msgstr "impossible de fermer le fichier %s : %s"
  3700. #~ msgid "exec du"
  3701. #~ msgstr "exec du"
  3702. #~ msgid "%s has PGP start token but not end token"
  3703. #~ msgstr "%s possède un indicateur de début de PGP mais pas de fin"
  3704. #~ msgid "can't read %s: %s"
  3705. #~ msgstr "impossible de lire %s : %s"
  3706. #~ msgid "error closing %s: %s"
  3707. #~ msgstr "erreur en fermant %s : %s"
  3708. #~ msgid "%s invalid (contains blank line)"
  3709. #~ msgstr "%s invalide (contient une ligne blanche)"
  3710. #~ msgid "duplicate source field in %s"
  3711. #~ msgstr "champ source en double dans %s"
  3712. #~ msgid "invalid source field in %s"
  3713. #~ msgstr "champ source invalide dans %s"
  3714. #~ msgid "duplicate binary field in %s"
  3715. #~ msgstr "champ binary en double dans %s"
  3716. #~ msgid "can't fork"
  3717. #~ msgstr "fork impossible"
  3718. #~ msgid "cannot fork for dpkg --search"
  3719. #~ msgstr "fork impossible pour dpkg --search"
  3720. #~ msgid "unable to open ostable"
  3721. #~ msgstr "impossible d'ouvrir « ostable »"
  3722. #~ msgid "unable to open triplettable"
  3723. #~ msgstr "impossible d'ouvrir « triplettable »"
  3724. #~ msgid "cannot fork for objdump"
  3725. #~ msgstr "fork impossible pour objdump"
  3726. #~ msgid "can't write %s"
  3727. #~ msgstr "impossible d'écrire sur %s"
  3728. #~ msgid "can't read %s"
  3729. #~ msgstr "impossible de lire %s"
  3730. #~ msgid "Strange text from 'md5sum < %s': '%s'"
  3731. #~ msgstr "Texte étrange produit par « md5sum < %s » : « %s »"
  3732. #~ msgid "Couldn't stat %s"
  3733. #~ msgstr "stat de %s impossible"
  3734. #~ msgid "error doing fstat on %s:"
  3735. #~ msgstr "erreur lors de fstat %s :"
  3736. #~ msgid "can't dup %s:"
  3737. #~ msgstr "dup %s impossible :"
  3738. #~ msgid "can't rewind %s:"
  3739. #~ msgstr "impossible de rembobiner %s :"
  3740. #~ msgid "can't exec md5sum:"
  3741. #~ msgstr "exec md5sum impossible :"
  3742. #~ msgid "invalid md5 output for %s (%s)"
  3743. #~ msgstr "résultat md5 non valable pour %s (%s)"
  3744. #~ msgid "Usage: 822-date"
  3745. #~ msgstr "Syntaxe : 822-date"
  3746. #~ msgid "This program is deprecated. Please use 'date -R' instead."
  3747. #~ msgstr ""
  3748. #~ "Ce programme est obsolète. Veuillez utiliser à la place « date -R »."
  3749. #~ msgid "cannot combine %s and -S"
  3750. #~ msgstr "impossible de combiner %s et -S"
  3751. #~ msgid ""
  3752. #~ "substvars support is deprecated (see README.feature-removal-schedule)"
  3753. #~ msgstr ""
  3754. #~ "La gestion de substvars est obsolète (voir le fichier README.feature-"
  3755. #~ "removal-schedule)."
  3756. #~ msgid "Dpkg::Deps::Simple can't evaluate implication with a %s!"
  3757. #~ msgstr "Dpkg::Deps::Simple ne peut pas évaluer l'implication avec un %s!"
  3758. #~ msgid "failure"
  3759. #~ msgstr "échec"
  3760. #~ msgid "field %s has newline then non whitespace >%s<"
  3761. #~ msgstr ""
  3762. #~ "le champ %s contient un caractère nouvelle ligne puis un caractère >%s<"
  3763. #~ msgid "field %s has blank lines >%s<"
  3764. #~ msgstr "le champ %s contient des lignes blanches >%s<"
  3765. #~ msgid "field %s has trailing newline >%s<"
  3766. #~ msgstr "le champ %s se termine par un caractère nouvelle ligne >%s<"
  3767. #~ msgid "invalid exec parameter in fork_and_exec()"
  3768. #~ msgstr "paramètre exec non valable dans fork_and_exec()"
  3769. #~ msgid "no PID set, cannot wait end of process"
  3770. #~ msgstr "pas de PID défini, impossible d'attendre la fin du processus"
  3771. #~ msgid "tried to add file `%s' twice"
  3772. #~ msgstr "fichier %s ajouté deux fois"