fr.po 160 KB

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