fr.po 152 KB

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