fr.po 142 KB

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