fr.po 161 KB

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