fr.po 167 KB

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