fr.po 134 KB

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