fr.po 134 KB

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