fr.po 142 KB

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