fr.po 133 KB

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