fr.po 121 KB

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